summaryrefslogtreecommitdiffstats
path: root/qmake/library
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/library')
-rw-r--r--qmake/library/proitems.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/qmake/library/proitems.h b/qmake/library/proitems.h
index bef93795d2..24412098d6 100644
--- a/qmake/library/proitems.h
+++ b/qmake/library/proitems.h
@@ -32,10 +32,10 @@
#include "qmake_global.h"
#include <qdebug.h>
-#include <qstring.h>
-#include <qvector.h>
#include <qhash.h>
+#include <qlist.h>
#include <qmap.h>
+#include <qstring.h>
QT_BEGIN_NAMESPACE
@@ -311,7 +311,7 @@ private:
const ProString *m_ps;
};
-class ProStringList : public QVector<ProString> {
+class ProStringList : public QList<ProString> {
public:
ProStringList() {}
ProStringList(const ProString &str) { *this << str; }
@@ -319,7 +319,7 @@ public:
QStringList toQStringList() const;
ProStringList &operator<<(const ProString &str)
- { QVector<ProString>::operator<<(str); return *this; }
+ { QList<ProString>::operator<<(str); return *this; }
int length() const { return size(); }