summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'opentrack-compat/options.cpp')
-rw-r--r--opentrack-compat/options.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/opentrack-compat/options.cpp b/opentrack-compat/options.cpp
index f86e32da..783cf5ec 100644
--- a/opentrack-compat/options.cpp
+++ b/opentrack-compat/options.cpp
@@ -285,31 +285,3 @@ bool slider_value::operator==(const slider_value& v) const
} // end options
-QT_BEGIN_NAMESPACE
-
-QDebug operator << (QDebug dbg, const options::slider_value& val)
-{
- dbg.nospace() << "cur=" << val.cur()
- << ", min=" << val.min()
- << ", max=" << val.max();
-
- return dbg.space();
-}
-
-QDataStream& operator <<(QDataStream& out, const options::slider_value& v)
-{
- out << v.cur() << v.min() << v.max();
- return out;
-}
-
-QDataStream& operator >>(QDataStream& in, options::slider_value& v)
-{
- double cur, min, max;
- in >> cur;
- in >> min;
- in >> max;
- v = options::slider_value(cur, min, max);
- return in;
-}
-
-QT_END_NAMESPACE