summaryrefslogtreecommitdiffstats
path: root/doc/html/customlayout-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/customlayout-example.html')
-rw-r--r--doc/html/customlayout-example.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/customlayout-example.html b/doc/html/customlayout-example.html
index 61a72baa6..ca3f3ae53 100644
--- a/doc/html/customlayout-example.html
+++ b/doc/html/customlayout-example.html
@@ -759,7 +759,7 @@ CardLayout::~CardLayout()
#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="qgroupbox-h.html">ntqgroupbox.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="qmultilineedit-h.html">ntqmultilineedit.h</a>&gt;
#include &lt;<a href="tqcolor-h.html">tqcolor.h</a>&gt;
@@ -772,12 +772,12 @@ int main( int argc, char **argv )
SimpleFlow *b1 = new SimpleFlow( gm );
-<a name="x1536"></a> b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Short", f ) );
- b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Longer", f ) );
- b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Different text", f ) );
- b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "More text", f ) );
- b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="ntqpushbutton.html">TQPushButton</a>( "Even longer button text", f ) );
- <a href="ntqpushbutton.html">TQPushButton</a>* qb = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", f );
+<a name="x1536"></a> b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Short", f ) );
+ b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Longer", f ) );
+ b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Different text", f ) );
+ b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "More text", f ) );
+ b1-&gt;<a href="ntqlayout.html#add">add</a>( new <a href="tqpushbutton.html">TQPushButton</a>( "Even longer button text", f ) );
+ <a href="tqpushbutton.html">TQPushButton</a>* qb = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", f );
a.<a href="tqobject.html#connect">connect</a>( qb, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), TQ_SLOT( quit() ) );
b1-&gt;<a href="ntqlayout.html#add">add</a>( qb );
@@ -785,16 +785,16 @@ int main( int argc, char **argv )
BorderLayout *large = new BorderLayout( wid );
<a name="x1537"></a> large-&gt;<a href="ntqlayout.html#setSpacing">setSpacing</a>( 5 );
- large-&gt;addWidget( new <a href="ntqpushbutton.html">TQPushButton</a>( "North", wid ), BorderLayout::North );
- large-&gt;addWidget( new <a href="ntqpushbutton.html">TQPushButton</a>( "West", wid ), BorderLayout::West );
+ large-&gt;addWidget( new <a href="tqpushbutton.html">TQPushButton</a>( "North", wid ), BorderLayout::North );
+ large-&gt;addWidget( new <a href="tqpushbutton.html">TQPushButton</a>( "West", wid ), BorderLayout::West );
<a href="ntqmultilineedit.html">TQMultiLineEdit</a>* m = new <a href="ntqmultilineedit.html">TQMultiLineEdit</a>( wid );
m-&gt;<a href="tqtextedit.html#setText">setText</a>( "Central\nWidget" );
large-&gt;addWidget( m, BorderLayout::Center );
- <a href="tqwidget.html">TQWidget</a> *east1 = new <a href="ntqpushbutton.html">TQPushButton</a>( "East", wid );
+ <a href="tqwidget.html">TQWidget</a> *east1 = new <a href="tqpushbutton.html">TQPushButton</a>( "East", wid );
large-&gt;addWidget( east1, BorderLayout::East );
- <a href="tqwidget.html">TQWidget</a> *east2 = new <a href="ntqpushbutton.html">TQPushButton</a>( "East 2", wid );
+ <a href="tqwidget.html">TQWidget</a> *east2 = new <a href="tqpushbutton.html">TQPushButton</a>( "East 2", wid );
large-&gt;addWidget( east2 , BorderLayout::East );
- large-&gt;addWidget( new <a href="ntqpushbutton.html">TQPushButton</a>( "South", wid ), BorderLayout::South );
+ large-&gt;addWidget( new <a href="tqpushbutton.html">TQPushButton</a>( "South", wid ), BorderLayout::South );
//Left-to-right tab order looks better:
<a name="x1542"></a> <a href="tqwidget.html">TQWidget</a>::<a href="tqwidget.html#setTabOrder">setTabOrder</a>( east2, east1 );
gm-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( wid );