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.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/customlayout-example.html b/doc/html/customlayout-example.html
index ca3f3ae53..a2ff2fdb7 100644
--- a/doc/html/customlayout-example.html
+++ b/doc/html/customlayout-example.html
@@ -760,7 +760,7 @@ CardLayout::~CardLayout()
#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="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
-#include &lt;<a href="qmultilineedit-h.html">ntqmultilineedit.h</a>&gt;
+#include &lt;<a href="tqmultilineedit-h.html">tqmultilineedit.h</a>&gt;
#include &lt;<a href="tqcolor-h.html">tqcolor.h</a>&gt;
int main( int argc, char **argv )
@@ -778,7 +778,7 @@ int main( int argc, char **argv )
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() ) );
+ a.<a href="tqobject.html#connect">connect</a>( qb, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), TQ_SLOT( quit() ) );
b1-&gt;<a href="ntqlayout.html#add">add</a>( qb );
<a href="tqwidget.html">TQWidget</a> *wid = new <a href="tqwidget.html">TQWidget</a>( f );
@@ -787,7 +787,7 @@ int main( int argc, char **argv )
<a name="x1537"></a> large-&gt;<a href="ntqlayout.html#setSpacing">setSpacing</a>( 5 );
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 );
+ <a href="tqmultilineedit.html">TQMultiLineEdit</a>* m = new <a href="tqmultilineedit.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="tqpushbutton.html">TQPushButton</a>( "East", wid );
@@ -826,7 +826,7 @@ int main( int argc, char **argv )
<a href="tqlabel.html">TQLabel</a>* s = new <a href="tqlabel.html">TQLabel</a>( f );
s-&gt;<a href="tqlabel.html#setText">setText</a>( "outermost box" );
- s-&gt;<a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken );
+ s-&gt;<a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken );
s-&gt;<a href="tqlabel.html#setAlignment">setAlignment</a>( TQt::AlignVCenter | TQt::AlignHCenter );
gm-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( s );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( f );