diff options
Diffstat (limited to 'doc/html/tabdialog-example.html')
-rw-r--r-- | doc/html/tabdialog-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html index 970d7e535..fd8288feb 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -53,7 +53,7 @@ file separated onto different tabs. #define TABDIALOG_H #include <<a href="qtabdialog-h.html">ntqtabdialog.h</a>> -#include <<a href="qstring-h.html">ntqstring.h</a>> +#include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="qfileinfo-h.html">ntqfileinfo.h</a>> class TabDialog : public <a href="ntqtabdialog.html">TQTabDialog</a> @@ -61,10 +61,10 @@ class TabDialog : public <a href="ntqtabdialog.html">TQTabDialog</a> <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: - TabDialog( <a href="tqwidget.html">TQWidget</a> *parent, const char *name, const <a href="ntqstring.html">TQString</a> &_filename ); + TabDialog( <a href="tqwidget.html">TQWidget</a> *parent, const char *name, const <a href="tqstring.html">TQString</a> &_filename ); protected: - <a href="ntqstring.html">TQString</a> filename; + <a href="tqstring.html">TQString</a> filename; <a href="ntqfileinfo.html">TQFileInfo</a> fileinfo; void setupTab1(); @@ -99,7 +99,7 @@ protected: #include <<a href="qlistbox-h.html">ntqlistbox.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> -<a name="f200"></a>TabDialog::TabDialog( <a href="tqwidget.html">TQWidget</a> *parent, const char *name, const <a href="ntqstring.html">TQString</a> &_filename ) +<a name="f200"></a>TabDialog::TabDialog( <a href="tqwidget.html">TQWidget</a> *parent, const char *name, const <a href="tqstring.html">TQString</a> &_filename ) : <a href="ntqtabdialog.html">TQTabDialog</a>( parent, name ), filename( _filename ), fileinfo( filename ) { setupTab1(); @@ -180,7 +180,7 @@ void <a name="f203"></a>TabDialog::setupTab3() <a href="ntqlistbox.html">TQListBox</a> *prgs = new <a href="ntqlistbox.html">TQListBox</a>( tab3 ); for ( unsigned int i = 0; i < 30; i++ ) { - <a href="ntqstring.html">TQString</a> prg = TQString( "Application %1" ).arg( i ); + <a href="tqstring.html">TQString</a> prg = TQString( "Application %1" ).arg( i ); <a name="x55"></a> prgs-><a href="ntqlistbox.html#insertItem">insertItem</a>( prg ); } <a name="x56"></a> prgs-><a href="ntqlistbox.html#setCurrentItem">setCurrentItem</a>( 3 ); @@ -205,7 +205,7 @@ void <a name="f203"></a>TabDialog::setupTab3() #include "tabdialog.h" #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qstring-h.html">ntqstring.h</a>> +#include <<a href="tqstring-h.html">tqstring.h</a>> int main( int argc, char **argv ) { |