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