diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 17:59:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 17:59:14 +0900 |
commit | 5514eaadfac721d2383f589cbb50329da1efd7e7 (patch) | |
tree | 00ed826d7eeef156fe2d75363d773af7561906c7 /configure.py | |
parent | 7847ebf44efa91be3d161b96e8830ea144cef5a5 (diff) | |
download | pytde-5514eaadfac721d2383f589cbb50329da1efd7e7.tar.gz pytde-5514eaadfac721d2383f589cbb50329da1efd7e7.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 'configure.py')
-rw-r--r-- | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index d719b13..8d3529c 100644 --- a/configure.py +++ b/configure.py @@ -641,7 +641,7 @@ def generate_code(mname, imports=None, extra_cflags=None, extra_cxxflags=None, e # finally, run SIP and generate the C++ code os.system (string.join(argv)) - # post process the C++ code for QT_NO_TRANSLATION + # post process the C++ code for TQT_NO_TRANSLATION if os.system (string.join ([sys.executable, srcPath("postproc")] + ['-p', mname, "-o", "tr", "*.cpp"])) != 0: sipconfig.error ("Post processing of C++ code failed %s (tr)" % mname) |