diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 19:46:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 19:46:32 +0900 |
commit | 79113dda15348e659bdf729f2c6119b2ba49d397 (patch) | |
tree | 25bce3d8731251655e3e7d2369e5d9f7d2b2a559 /configure.py | |
parent | 2638efc545425aa7d79ed0efd1cfb12408c75a2b (diff) | |
download | pytqt-79113dda15348e659bdf729f2c6119b2ba49d397.tar.gz pytqt-79113dda15348e659bdf729f2c6119b2ba49d397.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'configure.py')
-rw-r--r-- | configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index 39057b6..de047fb 100644 --- a/configure.py +++ b/configure.py @@ -716,7 +716,7 @@ int main(int argc,char **argv) fprintf(fp,"-x TQt_THREAD_SUPPORT\\n"); #endif -#if !defined(Q_WS_WIN) || TQT_VERSION < 0x030000 || defined(QT_NO_STYLE_WINDOWSXP) +#if !defined(Q_WS_WIN) || TQT_VERSION < 0x030000 || defined(TQT_NO_STYLE_WINDOWSXP) fprintf(fp,"-x TQt_STYLE_WINDOWSXP\\n"); #endif @@ -728,7 +728,7 @@ int main(int argc,char **argv) for feat in flist: f.write( """ -#if defined(QT_NO_%s) +#if defined(TQT_NO_%s) fprintf(fp,"-x TQt_%s\\n"); #endif """ % (feat, feat)) |