summaryrefslogtreecommitdiffstats
path: root/doc/html/tabdialog-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/tabdialog-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz
tqt-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tabdialog-example.html')
-rw-r--r--doc/html/tabdialog-example.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html
index 3f0a91189..970d7e535 100644
--- a/doc/html/tabdialog-example.html
+++ b/doc/html/tabdialog-example.html
@@ -61,7 +61,7 @@ class TabDialog : public <a href="ntqtabdialog.html">TQTabDialog</a>
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
- TabDialog( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name, const <a href="ntqstring.html">TQString</a> &amp;_filename );
+ TabDialog( <a href="tqwidget.html">TQWidget</a> *parent, const char *name, const <a href="ntqstring.html">TQString</a> &amp;_filename );
protected:
<a href="ntqstring.html">TQString</a> filename;
@@ -99,7 +99,7 @@ protected:
#include &lt;<a href="qlistbox-h.html">ntqlistbox.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-<a name="f200"></a>TabDialog::TabDialog( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name, const <a href="ntqstring.html">TQString</a> &amp;_filename )
+<a name="f200"></a>TabDialog::TabDialog( <a href="tqwidget.html">TQWidget</a> *parent, const char *name, const <a href="ntqstring.html">TQString</a> &amp;_filename )
: <a href="ntqtabdialog.html">TQTabDialog</a>( parent, name ), filename( _filename ), fileinfo( filename )
{
setupTab1();
@@ -116,7 +116,7 @@ void <a name="f201"></a>TabDialog::setupTab1()
(void)new <a href="ntqlabel.html">TQLabel</a>( "Filename:", tab1 );
<a href="ntqlineedit.html">TQLineEdit</a> *fname = new <a href="ntqlineedit.html">TQLineEdit</a>( filename, tab1 );
- fname-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+ fname-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
(void)new <a href="ntqlabel.html">TQLabel</a>( "Path:", tab1 );
<a href="ntqlabel.html">TQLabel</a> *path = new <a href="ntqlabel.html">TQLabel</a>( fileinfo.dirPath( TRUE ), tab1 );
@@ -213,8 +213,8 @@ int main( int argc, char **argv )
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
TabDialog tabdialog( 0, "tabdialog", TQString( argc &lt; 2 ? "." : argv[1] ) );
-<a name="x60"></a> tabdialog.<a href="ntqwidget.html#resize">resize</a>( 450, 350 );
- tabdialog.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Tabbed Dialog" );
+<a name="x60"></a> tabdialog.<a href="tqwidget.html#resize">resize</a>( 450, 350 );
+ tabdialog.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Tabbed Dialog" );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;tabdialog );
<a name="x61"></a> tabdialog.<a href="ntqdialog.html#show">show</a>();