summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Bugge Monsen <mmonsen@trolltech.com>2009-07-22 14:04:10 +1000
committerMarius Bugge Monsen <mmonsen@trolltech.com>2009-07-22 14:04:10 +1000
commit95f3f0507943d6ddfaff2bfa73a3ab4ca82c0c91 (patch)
treea4336d608025ef00224144b81e539ff580320dc7
parent7b051514b67348a6d1ea628f1ccf63e8150f2cdd (diff)
Include qmetatype for qlistselectionmanager.
-rw-r--r--src/qlistselectionmanager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qlistselectionmanager.h b/src/qlistselectionmanager.h
index 0950f4e..7763d4f 100644
--- a/src/qlistselectionmanager.h
+++ b/src/qlistselectionmanager.h
@@ -27,6 +27,7 @@
#include <QtCore/qobject.h>
#include <QtCore/qlist.h>
#include <QtCore/qshareddata.h>
+#include <QtCore/qmetatype.h>
QT_BEGIN_HEADER
@@ -43,6 +44,7 @@ class Q_ITEMVIEWSNG_EXPORT QtListSelectionChange
public:
QtListSelectionChange();
QtListSelectionChange(const QtListSelectionChange &other);
+ ~QtListSelectionChange();
int index() const;
int count() const;
QList<int> indexes() const;
@@ -53,6 +55,7 @@ private:
};
Q_DECLARE_TYPEINFO(QtListSelectionChange, Q_MOVABLE_TYPE);
+Q_DECLARE_METATYPE(QtListSelectionChange);
class Q_ITEMVIEWSNG_EXPORT QtListSelectionManager : public QObject
{