summaryrefslogtreecommitdiffstats
path: root/examples/drawdemo/drawdemo.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /examples/drawdemo/drawdemo.cpp
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'examples/drawdemo/drawdemo.cpp')
-rw-r--r--examples/drawdemo/drawdemo.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/drawdemo/drawdemo.cpp b/examples/drawdemo/drawdemo.cpp
index 63211057..013da846 100644
--- a/examples/drawdemo/drawdemo.cpp
+++ b/examples/drawdemo/drawdemo.cpp
@@ -7,13 +7,13 @@
**
*****************************************************************************/
-#include <qwidget.h>
-#include <qpainter.h>
-#include <qprinter.h>
-#include <qpushbutton.h>
-#include <qradiobutton.h>
-#include <qbuttongroup.h>
-#include <qapplication.h>
+#include <ntqwidget.h>
+#include <ntqpainter.h>
+#include <ntqprinter.h>
+#include <ntqpushbutton.h>
+#include <ntqradiobutton.h>
+#include <ntqbuttongroup.h>
+#include <ntqapplication.h>
#include <math.h>
//
@@ -176,7 +176,7 @@ DrawView::DrawView()
// ourDrawFunctions-array.
for ( i=0; (n=ourDrawFunctions[i].name) != 0; i++ ) {
int w = fm.width( n );
- maxwidth = TQMAX(w,maxwidth); // TQMAX is a macro defined in qglobal.h
+ maxwidth = TQMAX(w,maxwidth); // TQMAX is a macro defined in ntqglobal.h
// and returns the biggest of to values.
// Due to its macro nature one should use it with care and with
// constant parameters only.