diff options
Diffstat (limited to 'doc/html/progress-example.html')
-rw-r--r-- | doc/html/progress-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
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 <a href="ntqwidget.html">TQWidget</a> { - <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> + <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> enum { first_draw_item = 1000, last_draw_item = 1006 }; @@ -183,10 +183,10 @@ public: pb(0) { menubar = new <a href="ntqmenubar.html">TQMenuBar</a>( this, "menu" ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( menubar ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( menubar ); <a href="ntqpopupmenu.html">TQPopupMenu</a>* file = new <a href="ntqpopupmenu.html">TQPopupMenu</a>(); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( file ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( file ); menubar-><a href="ntqmenudata.html#insertItem">insertItem</a>( "&File", file ); for (int i=first_draw_item; i<=last_draw_item; i++) file-><a href="ntqmenudata.html#insertItem">insertItem</a>( drawItemText(i), i ); @@ -195,7 +195,7 @@ public: file-><a href="ntqmenudata.html#insertItem">insertItem</a>( "Quit", qApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); options = new <a href="ntqpopupmenu.html">TQPopupMenu</a>(); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( options ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( options ); menubar-><a href="ntqmenudata.html#insertItem">insertItem</a>( "&Options", options ); td_id = options-><a href="ntqmenudata.html#insertItem">insertItem</a>( "Timer driven", this, SLOT(timerDriven()) ); ld_id = options-><a href="ntqmenudata.html#insertItem">insertItem</a>( "Loop driven", this, SLOT(loopDriven()) ); |