diff options
Diffstat (limited to 'doc/html/lineedits-example.html')
-rw-r--r-- | doc/html/lineedits-example.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html index d2f5b7434..be92b16cf 100644 --- a/doc/html/lineedits-example.html +++ b/doc/html/lineedits-example.html @@ -60,7 +60,7 @@ class LineEdits : public <a href="ntqgroupbox.html">TQGroupBox</a> <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: - LineEdits( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); + LineEdits( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); protected: <a href="ntqlineedit.html">TQLineEdit</a> *lined1, *lined2, *lined3, *lined4, *lined5; @@ -105,12 +105,12 @@ protected slots: * Creates child widgets of the LineEdits widget */ -<a name="f219"></a>LineEdits::LineEdits( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) +<a name="f219"></a>LineEdits::LineEdits( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) : <a href="ntqgroupbox.html">TQGroupBox</a>( 0, Horizontal, "Line edits", parent, name ) { <a href="ntqframe.html#setMargin">setMargin</a>( 10 ); - <a href="qvboxlayout.html">TQVBoxLayout</a>* box = new <a href="qvboxlayout.html">TQVBoxLayout</a>( <a href="ntqwidget.html#layout">layout</a>() ); + <a href="qvboxlayout.html">TQVBoxLayout</a>* box = new <a href="qvboxlayout.html">TQVBoxLayout</a>( <a href="tqwidget.html#layout">layout</a>() ); <a href="qhboxlayout.html">TQHBoxLayout</a> *row1 = new <a href="qhboxlayout.html">TQHBoxLayout</a>( box ); <a name="x173"></a> row1-><a href="ntqlayout.html#setMargin">setMargin</a>( 5 ); @@ -219,7 +219,7 @@ protected slots: box-><a href="qboxlayout.html#addWidget">addWidget</a>( lined5 ); // give the first LineEdit the focus at the beginning -<a name="x181"></a> lined1-><a href="ntqwidget.html#setFocus">setFocus</a>(); +<a name="x181"></a> lined1-><a href="tqwidget.html#setFocus">setFocus</a>(); } /* @@ -244,7 +244,7 @@ void <a name="f220"></a>LineEdits::slotEchoChanged( int i ) break; } - lined1-><a href="ntqwidget.html#setFocus">setFocus</a>(); + lined1-><a href="tqwidget.html#setFocus">setFocus</a>(); } /* @@ -273,7 +273,7 @@ void <a name="f221"></a>LineEdits::slotValidatorChanged( int i ) } <a name="x179"></a> lined2-><a href="ntqlineedit.html#setText">setText</a>( "" ); - lined2-><a href="ntqwidget.html#setFocus">setFocus</a>(); + lined2-><a href="tqwidget.html#setFocus">setFocus</a>(); } @@ -299,7 +299,7 @@ void <a name="f222"></a>LineEdits::slotAlignmentChanged( int i ) break; } - lined3-><a href="ntqwidget.html#setFocus">setFocus</a>(); + lined3-><a href="tqwidget.html#setFocus">setFocus</a>(); } /* @@ -328,7 +328,7 @@ void <a name="f223"></a>LineEdits::slotInputMaskChanged( int i ) lined4-><a href="ntqlineedit.html#setInputMask">setInputMask</a>( ">AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#" ); break; } - lined4-><a href="ntqwidget.html#setFocus">setFocus</a>(); + lined4-><a href="tqwidget.html#setFocus">setFocus</a>(); } /* @@ -349,7 +349,7 @@ void <a name="f224"></a>LineEdits::slotReadOnlyChanged( int i ) break; } - lined5-><a href="ntqwidget.html#setFocus">setFocus</a>(); + lined5-><a href="tqwidget.html#setFocus">setFocus</a>(); } </pre> @@ -374,9 +374,9 @@ int main( int argc, char **argv ) <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); LineEdits lineedits; - lineedits.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Lineedits" ); + lineedits.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Lineedits" ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &lineedits ); - lineedits.<a href="ntqwidget.html#show">show</a>(); + lineedits.<a href="tqwidget.html#show">show</a>(); return a.<a href="ntqapplication.html#exec">exec</a>(); } |