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 /examples3 | |
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 'examples3')
-rwxr-xr-x | examples3/canvas/canvas.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples3/canvas/canvas.py b/examples3/canvas/canvas.py index 2fa3bf9..5f7f774 100755 --- a/examples3/canvas/canvas.py +++ b/examples3/canvas/canvas.py @@ -518,7 +518,7 @@ class Main (TQMainWindow): rows = h / dist cols = w / dist - #ifndef QT_NO_PROGRESSDIALOG + #ifndef TQT_NO_PROGRESSDIALOG #progress=TQProgressDialog( "Creating mesh...", "Abort", rows, # self, "progress", True ); #endif @@ -554,13 +554,13 @@ class Main (TQMainWindow): el.show() lastRow[n-1]=prev - #ifndef QT_NO_PROGRESSDIALOG + #ifndef TQT_NO_PROGRESSDIALOG #progress.setProgress( j ) #if progress.wasCancelled() : # break #endif - #ifndef QT_NO_PROGRESSDIALOG + #ifndef TQT_NO_PROGRESSDIALOG #progress.setProgress( rows ) #endif #// tqDebug( "%d nodes, %d edges", nodecount, EdgeItem::count() ); |