diff options
Diffstat (limited to 'doc/html/buttongroups-example.html')
-rw-r--r-- | doc/html/buttongroups-example.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/buttongroups-example.html b/doc/html/buttongroups-example.html index dc565ff22..53661833c 100644 --- a/doc/html/buttongroups-example.html +++ b/doc/html/buttongroups-example.html @@ -50,17 +50,17 @@ different kinds of buttons (checkboxes, radiobuttons, pushbuttons, etc.). #ifndef BUTTONS_GROUPS_H #define BUTTONS_GROUPS_H -#include <<a href="qwidget-h.html">ntqwidget.h</a>> +#include <<a href="tqwidget-h.html">tqwidget.h</a>> class TQCheckBox; class TQRadioButton; -class ButtonsGroups : public <a href="ntqwidget.html">TQWidget</a> +class ButtonsGroups : public <a href="tqwidget.html">TQWidget</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: - ButtonsGroups( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); + ButtonsGroups( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); protected: <a href="ntqcheckbox.html">TQCheckBox</a> *state; @@ -102,8 +102,8 @@ protected slots: * Creates all child widgets of the ButtonGroups window */ -<a name="f261"></a>ButtonsGroups::ButtonsGroups( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqwidget.html">TQWidget</a>( parent, name ) +<a name="f261"></a>ButtonsGroups::ButtonsGroups( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) + : <a href="tqwidget.html">TQWidget</a>( parent, name ) { // Create Widgets which allow easy layouting <a href="qvboxlayout.html">TQVBoxLayout</a> *vbox = new <a href="qvboxlayout.html">TQVBoxLayout</a>( this, 11, 6 ); @@ -193,9 +193,9 @@ protected slots: void <a name="f262"></a>ButtonsGroups::slotChangeGrp3State() { -<a name="x560"></a><a name="x551"></a> rb21-><a href="ntqwidget.html#setEnabled">setEnabled</a>( state-><a href="ntqcheckbox.html#isChecked">isChecked</a>() ); - rb22-><a href="ntqwidget.html#setEnabled">setEnabled</a>( state-><a href="ntqcheckbox.html#isChecked">isChecked</a>() ); - rb23-><a href="ntqwidget.html#setEnabled">setEnabled</a>( state-><a href="ntqcheckbox.html#isChecked">isChecked</a>() ); +<a name="x560"></a><a name="x551"></a> rb21-><a href="tqwidget.html#setEnabled">setEnabled</a>( state-><a href="ntqcheckbox.html#isChecked">isChecked</a>() ); + rb22-><a href="tqwidget.html#setEnabled">setEnabled</a>( state-><a href="ntqcheckbox.html#isChecked">isChecked</a>() ); + rb23-><a href="tqwidget.html#setEnabled">setEnabled</a>( state-><a href="ntqcheckbox.html#isChecked">isChecked</a>() ); } </pre> @@ -219,10 +219,10 @@ int main( int argc, char **argv ) <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); ButtonsGroups buttonsgroups; - buttonsgroups.<a href="ntqwidget.html#resize">resize</a>( 500, 250 ); - buttonsgroups.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Buttongroups" ); + buttonsgroups.<a href="tqwidget.html#resize">resize</a>( 500, 250 ); + buttonsgroups.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Buttongroups" ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &buttonsgroups ); - buttonsgroups.<a href="ntqwidget.html#show">show</a>(); + buttonsgroups.<a href="tqwidget.html#show">show</a>(); return a.<a href="ntqapplication.html#exec">exec</a>(); } |