summaryrefslogtreecommitdiffstats
path: root/qtinterface/tqt4/Qt/qlist.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2018-09-27 18:25:39 +0900
committerMichele Calgaro <[email protected]>2018-09-27 18:25:39 +0900
commit65ff0e19f47662065572e1d9efbd347b2181e12e (patch)
tree010125608d403d0fb7349b71e61e6a4e7047f25d /qtinterface/tqt4/Qt/qlist.h
parent7b9c011fa0b2632d63f37918bc006f6b041a92e8 (diff)
downloadtqtinterface-65ff0e19f47662065572e1d9efbd347b2181e12e.tar.gz
tqtinterface-65ff0e19f47662065572e1d9efbd347b2181e12e.zip
qt -> tqt conversion:
QT_NO_ASCII_CAST -> TQT_NO_ASCII_CAST QT_NO_STL -> TQT_NO_STL QT_NO_COMPAT -> TQT_NO_COMPAT QT_NO_TRANSLATION -> TQT_NO_TRANSLATION Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'qtinterface/tqt4/Qt/qlist.h')
-rw-r--r--qtinterface/tqt4/Qt/qlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtinterface/tqt4/Qt/qlist.h b/qtinterface/tqt4/Qt/qlist.h
index 9a16b9e..ba072a4 100644
--- a/qtinterface/tqt4/Qt/qlist.h
+++ b/qtinterface/tqt4/Qt/qlist.h
@@ -46,7 +46,7 @@
#include <QtCore/qatomic.h>
#include <QtCore/qalgorithms.h>
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
#include <iterator>
#include <list>
#endif
@@ -332,7 +332,7 @@ public:
static QList<T> fromVector(const QVector<T> &vector);
static QList<T> fromSet(const QSet<T> &set);
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
static inline QList<T> fromStdList(const std::list<T> &list)
{ QList<T> tmp; qCopy(list.begin(), list.end(), std::back_inserter(tmp)); return tmp; }
inline std::list<T> toStdList() const