summaryrefslogtreecommitdiffstats
path: root/doc/html/toplevel-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/toplevel-example.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/toplevel-example.html')
-rw-r--r--doc/html/toplevel-example.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/toplevel-example.html b/doc/html/toplevel-example.html
index 376ee1563..7b0791999 100644
--- a/doc/html/toplevel-example.html
+++ b/doc/html/toplevel-example.html
@@ -166,7 +166,7 @@ automatically. Popup menus are a typical example for such widgets.
}
</pre>A modal widget blocks input to other toplevel widgets, unless
those are in a different modal group (see <tt>WGroupLeader</tt>).
-Dialogs are often modal, and the <a href="ntqdialog.html">TQDialog</a> class provides an easy API
+Dialogs are often modal, and the <a href="tqdialog.html">TQDialog</a> class provides an easy API
to create and display them without the need to explicitly use this
flag.
<p> <pre> if ( cbBehaviorTool-&gt;isChecked() ) {
@@ -187,7 +187,7 @@ modeless dialogs.
<a name="x2533"></a> <a href="tqlabel.html">TQLabel</a> *label = new <a href="tqlabel.html">TQLabel</a>(flagList.<a href="tqstringlist.html#join">join</a>("&amp;nbsp;| "), widget);
<a name="x2532"></a> label-&gt;<a href="tqlabel.html#setTextFormat">setTextFormat</a>(RichText);
<a name="x2531"></a> label-&gt;<a href="tqlabel.html#setAlignment">setAlignment</a>(WordBreak);
- <a href="ntqpushbutton.html">TQPushButton</a> *okButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "Close", widget );
+ <a href="tqpushbutton.html">TQPushButton</a> *okButton = new <a href="tqpushbutton.html">TQPushButton</a>( "Close", widget );
<a name="x2535"></a> connect( okButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), widget, TQ_SLOT(<a href="tqwidget.html#close">close</a>()) );
<a name="x2537"></a> widget-&gt;<a href="tqwidget.html#move">move</a>( pos() );
</pre>The widget is created if it has not been created yet, or if it was