diff options
Diffstat (limited to 'doc/html/layout-example.html')
-rw-r--r-- | doc/html/layout-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/layout-example.html b/doc/html/layout-example.html index 272713f50..6abf2a7ed 100644 --- a/doc/html/layout-example.html +++ b/doc/html/layout-example.html @@ -50,9 +50,9 @@ classes, <a href="qgridlayout.html">TQGridLayout</a>, <a href="qboxlayout.html"> #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqcolor-h.html">tqcolor.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qlineedit-h.html">ntqlineedit.h</a>> +#include <<a href="tqlineedit-h.html">tqlineedit.h</a>> #include <<a href="qmultilineedit-h.html">ntqmultilineedit.h</a>> #include <<a href="tqmenubar-h.html">tqmenubar.h</a>> #include <<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>> @@ -86,7 +86,7 @@ public: <a href="qboxlayout.html">TQBoxLayout</a> *buttons = new <a href="qhboxlayout.html">TQHBoxLayout</a>( topLayout ); int i; for ( i = 1; i <= 4; i++ ) { - <a href="ntqpushbutton.html">TQPushButton</a>* but = new <a href="ntqpushbutton.html">TQPushButton</a>( this ); + <a href="tqpushbutton.html">TQPushButton</a>* but = new <a href="tqpushbutton.html">TQPushButton</a>( this ); <a href="tqstring.html">TQString</a> s; <a name="x542"></a> s.<a href="tqstring.html#sprintf">sprintf</a>( "Button %d", i ); <a name="x530"></a> but-><a href="ntqbutton.html#setText">setText</a>( s ); @@ -104,10 +104,10 @@ public: // Make another hbox that will hold a left-justified row of buttons. <a href="qboxlayout.html">TQBoxLayout</a> *buttons2 = new <a href="qhboxlayout.html">TQHBoxLayout</a>( topLayout ); - <a href="ntqpushbutton.html">TQPushButton</a>* but = new <a href="ntqpushbutton.html">TQPushButton</a>( "Button five", this ); + <a href="tqpushbutton.html">TQPushButton</a>* but = new <a href="tqpushbutton.html">TQPushButton</a>( "Button five", this ); buttons2-><a href="qboxlayout.html#addWidget">addWidget</a>( but ); - but = new <a href="ntqpushbutton.html">TQPushButton</a>( "Button 6", this ); + but = new <a href="tqpushbutton.html">TQPushButton</a>( "Button 6", this ); buttons2-><a href="qboxlayout.html#addWidget">addWidget</a>( but ); // Fill up the rest of the hbox with stretchable space, so that @@ -141,7 +141,7 @@ public: int row; for ( row = 0; row < numRows; row++ ) { - <a href="ntqlineedit.html">TQLineEdit</a> *ed = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + <a href="tqlineedit.html">TQLineEdit</a> *ed = new <a href="tqlineedit.html">TQLineEdit</a>( this ); // The line edit goes in the second column <a name="x533"></a> grid-><a href="qgridlayout.html#addWidget">addWidget</a>( ed, row, linedCol ); |