diff options
author | Michele Calgaro <[email protected]> | 2018-09-18 01:19:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-09-18 01:19:46 +0900 |
commit | 2df70f03d493f5226821dd2e1da3759e3abceb02 (patch) | |
tree | f105d7829be7401bd27b833e0e26cf64c6a62ad1 /qmake/book | |
parent | f849f22528ee9eb5eeb1f9aa92822846b2b3e01f (diff) | |
download | qt3-2df70f03d493f5226821dd2e1da3759e3abceb02.tar.gz qt3-2df70f03d493f5226821dd2e1da3759e3abceb02.zip |
Revert "QT_THREAD_SUPPORT -> TQT_THREAD_SUPPORT conversion to align to updated admin module"
The original commit was a mistake and should not have been pushed.
This reverts commit f849f22528ee9eb5eeb1f9aa92822846b2b3e01f.
Diffstat (limited to 'qmake/book')
-rw-r--r-- | qmake/book/qmake-advanced.leaf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qmake/book/qmake-advanced.leaf b/qmake/book/qmake-advanced.leaf index e4d7621..d1b8c4b 100644 --- a/qmake/book/qmake-advanced.leaf +++ b/qmake/book/qmake-advanced.leaf @@ -141,7 +141,7 @@ this: \code win32 { thread { - DEFINES += TQT_THREAD_SUPPORT + DEFINES += QT_THREAD_SUPPORT } } \endcode @@ -151,7 +151,7 @@ like this: \code win32:thread { - DEFINES += TQT_THREAD_SUPPORT + DEFINES += QT_THREAD_SUPPORT } \endcode @@ -162,7 +162,7 @@ colons as above) for example: \code win32:thread { - DEFINES += TQT_THREAD_SUPPORT + DEFINES += QT_THREAD_SUPPORT } else:debug { DEFINES += QT_NOTHREAD_DEBUG } else { @@ -276,12 +276,12 @@ For example: \code contains( CONFIG, thread ) { - DEFINES += TQT_THREAD_SUPPORT + DEFINES += QT_THREAD_SUPPORT } \endcode If \e thread is in the list of values for the \e CONFIG variable, then -TQT_THREAD_SUPPORT will be added to the list of values in the \e +QT_THREAD_SUPPORT will be added to the list of values in the \e DEFINES variable. \section2 count( variablename, number ) |