diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 18:25:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 18:25:39 +0900 |
commit | 65ff0e19f47662065572e1d9efbd347b2181e12e (patch) | |
tree | 010125608d403d0fb7349b71e61e6a4e7047f25d /qtinterface/tqt4/Qt/qvector.h | |
parent | 7b9c011fa0b2632d63f37918bc006f6b041a92e8 (diff) | |
download | tqtinterface-65ff0e19.tar.gz tqtinterface-65ff0e19.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'qtinterface/tqt4/Qt/qvector.h')
-rw-r--r-- | qtinterface/tqt4/Qt/qvector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtinterface/tqt4/Qt/qvector.h b/qtinterface/tqt4/Qt/qvector.h index 301f163..fb76d75 100644 --- a/qtinterface/tqt4/Qt/qvector.h +++ b/qtinterface/tqt4/Qt/qvector.h @@ -47,7 +47,7 @@ #include <QtCore/qalgorithms.h> #include <QtCore/qlist.h> -#ifndef QT_NO_STL +#ifndef TQT_NO_STL #include <iterator> #include <vector> #endif @@ -292,7 +292,7 @@ public: static QVector<T> fromList(const QList<T> &list); -#ifndef QT_NO_STL +#ifndef TQT_NO_STL static inline QVector<T> fromStdVector(const std::vector<T> &vector) { QVector<T> tmp; qCopy(vector.begin(), vector.end(), std::back_inserter(tmp)); return tmp; } inline std::vector<T> toStdVector() const |