diff options
Diffstat (limited to 'doc/html/rot-example.html')
-rw-r--r-- | doc/html/rot-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/rot-example.html b/doc/html/rot-example.html index a1b9424d6..be9fd0eaa 100644 --- a/doc/html/rot-example.html +++ b/doc/html/rot-example.html @@ -55,11 +55,11 @@ the rot13 algorithm. #ifndef ROT13_H #define ROT13_H -#include <<a href="qwidget-h.html">ntqwidget.h</a>> +#include <<a href="tqwidget-h.html">tqwidget.h</a>> class TQMultiLineEdit; -class Rot13: public <a href="ntqwidget.html">TQWidget</a> { +class Rot13: public <a href="tqwidget.html">TQWidget</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: Rot13(); @@ -104,7 +104,7 @@ private: <a href="tqobject.html#connect">connect</a>( right, TQ_SIGNAL(<a href="ntqtextedit.html#textChanged">textChanged</a>()), this, TQ_SLOT(changeLeft()) ); <a href="ntqpushbutton.html">TQPushButton</a> * quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "&Quit", this ); -<a name="x1379"></a> quit-><a href="ntqwidget.html#setFocusPolicy">setFocusPolicy</a>( NoFocus ); +<a name="x1379"></a> quit-><a href="tqwidget.html#setFocusPolicy">setFocusPolicy</a>( NoFocus ); <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); <a href="qgridlayout.html">TQGridLayout</a> * l = new <a href="qgridlayout.html">TQGridLayout</a>( this, 2, 2, 5 ); @@ -112,7 +112,7 @@ private: l-><a href="qgridlayout.html#addWidget">addWidget</a>( right, 0, 1 ); l-><a href="qgridlayout.html#addWidget">addWidget</a>( quit, 1, 1, AlignRight ); -<a name="x1378"></a> left-><a href="ntqwidget.html#setFocus">setFocus</a>(); +<a name="x1378"></a> left-><a href="tqwidget.html#setFocus">setFocus</a>(); } @@ -152,10 +152,10 @@ int main( int argc, char ** argv ) { <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); Rot13 r; - r.<a href="ntqwidget.html#resize">resize</a>( 400, 400 ); + r.<a href="tqwidget.html#resize">resize</a>( 400, 400 ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &r ); - r.<a href="ntqwidget.html#setCaption">setCaption</a>("TQt Example - ROT13"); - r.<a href="ntqwidget.html#show">show</a>(); + r.<a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - ROT13"); + r.<a href="tqwidget.html#show">show</a>(); return a.<a href="ntqapplication.html#exec">exec</a>(); } </pre> |