summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/comapp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/comapp/main.cpp')
-rw-r--r--examples/activeqt/comapp/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/activeqt/comapp/main.cpp b/examples/activeqt/comapp/main.cpp
index 74b7fa3..62f92b8 100644
--- a/examples/activeqt/comapp/main.cpp
+++ b/examples/activeqt/comapp/main.cpp
@@ -53,6 +53,7 @@
#include <QTabWidget>
#include <QScopedPointer>
#include <QTimer>
+#include <QVector>
class Application;
class DocumentList;
@@ -104,7 +105,7 @@ public slots:
Document *item(int index) const;
private:
- QList<Document *> m_list;
+ QVector<Document *> m_list;
};
//! [1]