diff options
Diffstat (limited to 'doc/html/tabdialog-example.html')
-rw-r--r-- | doc/html/tabdialog-example.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html index fa33e954d..22ef50441 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -92,10 +92,10 @@ protected: #include <<a href="qvbox-h.html">ntqvbox.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> -#include <<a href="qlineedit-h.html">ntqlineedit.h</a>> +#include <<a href="tqlineedit-h.html">tqlineedit.h</a>> #include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> -#include <<a href="qcheckbox-h.html">ntqcheckbox.h</a>> +#include <<a href="tqcheckbox-h.html">tqcheckbox.h</a>> #include <<a href="qlistbox-h.html">ntqlistbox.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> @@ -115,7 +115,7 @@ void <a name="f201"></a>TabDialog::setupTab1() <a name="x53"></a> tab1-><a href="ntqframe.html#setMargin">setMargin</a>( 5 ); (void)new <a href="tqlabel.html">TQLabel</a>( "Filename:", tab1 ); - <a href="ntqlineedit.html">TQLineEdit</a> *fname = new <a href="ntqlineedit.html">TQLineEdit</a>( filename, tab1 ); + <a href="tqlineedit.html">TQLineEdit</a> *fname = new <a href="tqlineedit.html">TQLineEdit</a>( filename, tab1 ); fname-><a href="tqwidget.html#setFocus">setFocus</a>(); (void)new <a href="tqlabel.html">TQLabel</a>( "Path:", tab1 ); @@ -145,17 +145,17 @@ void <a name="f202"></a>TabDialog::setupTab2() <a href="ntqbuttongroup.html">TQButtonGroup</a> *bg = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Permissions", tab2 ); - <a href="ntqcheckbox.html">TQCheckBox</a> *readable = new <a href="ntqcheckbox.html">TQCheckBox</a>( "Readable", bg ); + <a href="tqcheckbox.html">TQCheckBox</a> *readable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Readable", bg ); if ( fileinfo.isReadable() ) -<a name="x51"></a> readable-><a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE ); +<a name="x51"></a> readable-><a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE ); - <a href="ntqcheckbox.html">TQCheckBox</a> *writable = new <a href="ntqcheckbox.html">TQCheckBox</a>( "Writeable", bg ); + <a href="tqcheckbox.html">TQCheckBox</a> *writable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Writeable", bg ); if ( fileinfo.isWritable() ) - writable-><a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE ); + writable-><a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE ); - <a href="ntqcheckbox.html">TQCheckBox</a> *executable = new <a href="ntqcheckbox.html">TQCheckBox</a>( "Executable", bg ); + <a href="tqcheckbox.html">TQCheckBox</a> *executable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Executable", bg ); if ( fileinfo.isExecutable() ) - executable-><a href="ntqcheckbox.html#setChecked">setChecked</a>( TRUE ); + executable-><a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE ); <a href="ntqbuttongroup.html">TQButtonGroup</a> *bg2 = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( 2, TQGroupBox::Horizontal, "Owner", tab2 ); @@ -185,7 +185,7 @@ void <a name="f203"></a>TabDialog::setupTab3() } <a name="x56"></a> prgs-><a href="ntqlistbox.html#setCurrentItem">setCurrentItem</a>( 3 ); - (void)new <a href="ntqcheckbox.html">TQCheckBox</a>( TQString( "Open files with the extension '%1' always with this application" ).arg( fileinfo.extension() ), tab3 ); + (void)new <a href="tqcheckbox.html">TQCheckBox</a>( TQString( "Open files with the extension '%1' always with this application" ).arg( fileinfo.extension() ), tab3 ); <a href="ntqtabdialog.html#addTab">addTab</a>( tab3, "Applications" ); } @@ -216,7 +216,7 @@ int main( int argc, char **argv ) <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>( &tabdialog ); -<a name="x61"></a> tabdialog.<a href="ntqdialog.html#show">show</a>(); +<a name="x61"></a> tabdialog.<a href="tqdialog.html#show">show</a>(); return a.<a href="ntqapplication.html#exec">exec</a>(); } |