summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qvariant.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qvariant.h')
-rw-r--r--src/corelib/kernel/qvariant.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/corelib/kernel/qvariant.h b/src/corelib/kernel/qvariant.h
index 1f79bdfd89..2f21ef418f 100644
--- a/src/corelib/kernel/qvariant.h
+++ b/src/corelib/kernel/qvariant.h
@@ -448,23 +448,13 @@ class Q_CORE_EXPORT QVariant
};
public:
typedef bool (*f_null)(const Private *);
-#ifndef QT_NO_DATASTREAM
- typedef void (*f_load)(Private *, QDataStream &);
- typedef void (*f_save)(const Private *, QDataStream &);
-#endif
typedef bool (*f_compare)(const Private *, const Private *);
typedef bool (*f_convert)(const QVariant::Private *d, int t, void *, bool *);
- typedef bool (*f_canConvert)(const QVariant::Private *d, int t);
typedef void (*f_debugStream)(QDebug, const QVariant &);
struct Handler {
f_null isNull;
-#ifndef QT_NO_DATASTREAM
- f_load load;
- f_save save;
-#endif
f_compare compare;
f_convert convert;
- f_canConvert canConvert;
f_debugStream debugStream;
};