diff options
Diffstat (limited to 'doc/html/fileiconview-example.html')
-rw-r--r-- | doc/html/fileiconview-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/fileiconview-example.html b/doc/html/fileiconview-example.html index a4619fe8d..bd5959802 100644 --- a/doc/html/fileiconview-example.html +++ b/doc/html/fileiconview-example.html @@ -1096,7 +1096,7 @@ protected: TQtFileIconView *fileview; DirectoryView *dirlist; <a href="ntqprogressbar.html">TQProgressBar</a> *progress; - <a href="ntqlabel.html">TQLabel</a> *label; + <a href="tqlabel.html">TQLabel</a> *label; <a href="ntqcombobox.html">TQComboBox</a> *pathCombo; <a href="tqtoolbutton.html">TQToolButton</a> *upButton, *mkdirButton; @@ -1136,7 +1136,7 @@ protected slots: #include <<a href="qsplitter-h.html">ntqsplitter.h</a>> #include <<a href="qprogressbar-h.html">ntqprogressbar.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqstatusbar-h.html">tqstatusbar.h</a>> #include <<a href="tqtoolbar-h.html">tqtoolbar.h</a>> #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> @@ -1215,7 +1215,7 @@ void <a name="f325"></a>FileMainWindow::setup() <a href="tqtoolbar.html">TQToolBar</a> *toolbar = new <a href="tqtoolbar.html">TQToolBar</a>( this, "toolbar" ); <a href="tqmainwindow.html#setRightJustification">setRightJustification</a>( TRUE ); - (void)new <a href="ntqlabel.html">TQLabel</a>( <a href="tqobject.html#tr">tr</a>( " Path: " ), toolbar ); + (void)new <a href="tqlabel.html">TQLabel</a>( <a href="tqobject.html#tr">tr</a>( " Path: " ), toolbar ); pathCombo = new <a href="ntqcombobox.html">TQComboBox</a>( TRUE, toolbar ); <a name="x880"></a> pathCombo-><a href="ntqcombobox.html#setAutoCompletion">setAutoCompletion</a>( TRUE ); @@ -1249,7 +1249,7 @@ void <a name="f325"></a>FileMainWindow::setup() <a href="tqmainwindow.html#setDockEnabled">setDockEnabled</a>( DockLeft, FALSE ); <a href="tqmainwindow.html#setDockEnabled">setDockEnabled</a>( DockRight, FALSE ); - label = new <a href="ntqlabel.html">TQLabel</a>( <a href="tqmainwindow.html#statusBar">statusBar</a>() ); + label = new <a href="tqlabel.html">TQLabel</a>( <a href="tqmainwindow.html#statusBar">statusBar</a>() ); <a href="tqmainwindow.html#statusBar">statusBar</a>()->addWidget( label, 2, TRUE ); progress = new <a href="ntqprogressbar.html">TQProgressBar</a>( <a href="tqmainwindow.html#statusBar">statusBar</a>() ); <a href="tqmainwindow.html#statusBar">statusBar</a>()->addWidget( progress, 1, TRUE ); @@ -1293,7 +1293,7 @@ void <a name="f327"></a>FileMainWindow::directoryChanged( const <a href="tqstrin void <a name="f328"></a>FileMainWindow::slotStartReadDir( int dirs ) { - label-><a href="ntqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory..." ) ); + label-><a href="tqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory..." ) ); <a name="x890"></a> progress-><a href="ntqprogressbar.html#reset">reset</a>(); <a name="x892"></a> progress-><a href="ntqprogressbar.html#setTotalSteps">setTotalSteps</a>( dirs ); } @@ -1306,7 +1306,7 @@ void <a name="f329"></a>FileMainWindow::slotReadNextDir() void <a name="f330"></a>FileMainWindow::slotReadDirDone() { - label-><a href="ntqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory Done." ) ); + label-><a href="tqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory Done." ) ); <a name="x893"></a> progress-><a href="ntqprogressbar.html#setProgress">setProgress</a>( progress-><a href="ntqprogressbar.html#totalSteps">totalSteps</a>() ); } |