diff options
Diffstat (limited to 'doc/html/scrollview-example.html')
-rw-r--r-- | doc/html/scrollview-example.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/scrollview-example.html b/doc/html/scrollview-example.html index 5f5ddd7b5..0c33a7ff1 100644 --- a/doc/html/scrollview-example.html +++ b/doc/html/scrollview-example.html @@ -72,7 +72,7 @@ static const int max_mw = 10; class BigShrinker : public <a href="ntqframe.html">TQFrame</a> { - <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> + <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: BigShrinker(TQWidget* parent) : <a href="ntqframe.html">TQFrame</a>(parent) @@ -235,22 +235,22 @@ private: }; class ScrollViewExample : public <a href="ntqwidget.html">TQWidget</a> { - Q_OBJECT + TQ_OBJECT public: ScrollViewExample(int technique, TQWidget* parent=0, const char* name=0) : <a href="ntqwidget.html">TQWidget</a>(parent,name) { <a href="ntqmenubar.html">TQMenuBar</a>* menubar = new <a href="ntqmenubar.html">TQMenuBar</a>(this); - <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>( menubar ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( file ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( file ); <a name="x634"></a> menubar-><a href="ntqmenudata.html#insertItem">insertItem</a>( "&File", file ); file-><a href="ntqmenudata.html#insertItem">insertItem</a>( "Quit", qApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); vp_options = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( vp_options ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( vp_options ); <a name="x644"></a> vp_options-><a href="ntqpopupmenu.html#setCheckable">setCheckable</a>( TRUE ); menubar-><a href="ntqmenudata.html#insertItem">insertItem</a>( "&ScrollView", vp_options ); <a name="x642"></a> connect( vp_options, SIGNAL(<a href="ntqpopupmenu.html#activated">activated</a>(int)), @@ -288,7 +288,7 @@ public: } f_options = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( f_options ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( f_options ); f_options-><a href="ntqpopupmenu.html#setCheckable">setCheckable</a>( TRUE ); menubar-><a href="ntqmenudata.html#insertItem">insertItem</a>( "F&rame", f_options ); connect( f_options, SIGNAL(<a href="ntqpopupmenu.html#activated">activated</a>(int)), @@ -305,7 +305,7 @@ public: f_options-><a href="ntqmenudata.html#insertItem">insertItem</a>( "Sunken", style_id|TQFrame::Sunken )); f_options-><a href="ntqmenudata.html#insertSeparator">insertSeparator</a>(); lw_options = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( lw_options ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( lw_options ); lw_options-><a href="ntqpopupmenu.html#setCheckable">setCheckable</a>( TRUE ); for (int lw = 1; lw <= max_lw; lw++) { <a href="ntqstring.html">TQString</a> str; @@ -316,7 +316,7 @@ public: connect( lw_options, SIGNAL(<a href="ntqpopupmenu.html#activated">activated</a>(int)), this, SLOT(doFMenuItem(int)) ); mlw_options = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( mlw_options ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( mlw_options ); mlw_options-><a href="ntqpopupmenu.html#setCheckable">setCheckable</a>( TRUE ); for (int mlw = 0; mlw <= max_mlw; mlw++) { <a href="ntqstring.html">TQString</a> str; @@ -327,7 +327,7 @@ public: connect( mlw_options, SIGNAL(<a href="ntqpopupmenu.html#activated">activated</a>(int)), this, SLOT(doFMenuItem(int)) ); mw_options = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); - <a href="ntqapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( mw_options ); + <a href="ntqapplication.html#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( mw_options ); mw_options-><a href="ntqpopupmenu.html#setCheckable">setCheckable</a>( TRUE ); for (int mw = 0; mw <= max_mw; mw++) { <a href="ntqstring.html">TQString</a> str; |