summaryrefslogtreecommitdiffstats
path: root/doc/html/layout-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/layout-example.html')
-rw-r--r--doc/html/layout-example.html12
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 &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="tqcolor-h.html">tqcolor.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
-#include &lt;<a href="qlineedit-h.html">ntqlineedit.h</a>&gt;
+#include &lt;<a href="tqlineedit-h.html">tqlineedit.h</a>&gt;
#include &lt;<a href="qmultilineedit-h.html">ntqmultilineedit.h</a>&gt;
#include &lt;<a href="tqmenubar-h.html">tqmenubar.h</a>&gt;
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
@@ -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 &lt;= 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-&gt;<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-&gt;<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-&gt;<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 &lt; 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-&gt;<a href="qgridlayout.html#addWidget">addWidget</a>( ed, row, linedCol );