summaryrefslogtreecommitdiffstats
path: root/doc/html/tabdialog-example.html
diff options
context:
space:
mode:
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>();