diff options
Diffstat (limited to 'qtools/qstrlist.h')
-rw-r--r-- | qtools/qstrlist.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qtools/qstrlist.h b/qtools/qstrlist.h index c6a1864..ebf97c5 100644 --- a/qtools/qstrlist.h +++ b/qtools/qstrlist.h @@ -40,18 +40,18 @@ #ifndef QT_H #include "qstring.h" -#include "qlist.h" +#include "qinternallist.h" #include "qdatastream.h" #endif // QT_H #if defined(Q_TEMPLATEDLL) -template class Q_EXPORT QList<char>; -template class Q_EXPORT QListIterator<char>; +template class Q_EXPORT QInternalList<char>; +template class Q_EXPORT QInternalListIterator<char>; #endif -typedef QList<char> QStrListBase; -typedef QListIterator<char> QStrListIterator; +typedef QInternalList<char> QStrListBase; +typedef QInternalListIterator<char> QStrListIterator; class Q_EXPORT QStrList : public QStrListBase |