From 359640943bcf155faa9a067dde9e00a123276290 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Feb 2012 17:43:39 -0600 Subject: Automated update from Qt3 --- doc/html/progress-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/progress-example.html') diff --git a/doc/html/progress-example.html b/doc/html/progress-example.html index 009b4dab0..a5ae52bca 100644 --- a/doc/html/progress-example.html +++ b/doc/html/progress-example.html @@ -160,7 +160,7 @@ private: class CPUWaster : public TQWidget { - Q_OBJECT + TQ_OBJECT enum { first_draw_item = 1000, last_draw_item = 1006 }; @@ -183,10 +183,10 @@ public: pb(0) { menubar = new TQMenuBar( this, "menu" ); - Q_CHECK_PTR( menubar ); + TQ_CHECK_PTR( menubar ); TQPopupMenu* file = new TQPopupMenu(); - Q_CHECK_PTR( file ); + TQ_CHECK_PTR( file ); menubar->insertItem( "&File", file ); for (int i=first_draw_item; i<=last_draw_item; i++) file->insertItem( drawItemText(i), i ); @@ -195,7 +195,7 @@ public: file->insertItem( "Quit", qApp, SLOT(quit()) ); options = new TQPopupMenu(); - Q_CHECK_PTR( options ); + TQ_CHECK_PTR( options ); menubar->insertItem( "&Options", options ); td_id = options->insertItem( "Timer driven", this, SLOT(timerDriven()) ); ld_id = options->insertItem( "Loop driven", this, SLOT(loopDriven()) ); -- cgit v1.2.3