summaryrefslogtreecommitdiffstats
path: root/doc/html/fileiconview-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/fileiconview-example.html')
-rw-r--r--doc/html/fileiconview-example.html12
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 &lt;<a href="qsplitter-h.html">ntqsplitter.h</a>&gt;
#include &lt;<a href="qprogressbar-h.html">ntqprogressbar.h</a>&gt;
-#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
+#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="tqstatusbar-h.html">tqstatusbar.h</a>&gt;
#include &lt;<a href="tqtoolbar-h.html">tqtoolbar.h</a>&gt;
#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
@@ -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-&gt;<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>()-&gt;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>()-&gt;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-&gt;<a href="ntqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory..." ) );
+ label-&gt;<a href="tqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory..." ) );
<a name="x890"></a> progress-&gt;<a href="ntqprogressbar.html#reset">reset</a>();
<a name="x892"></a> progress-&gt;<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-&gt;<a href="ntqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory Done." ) );
+ label-&gt;<a href="tqlabel.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( " Reading Directory Done." ) );
<a name="x893"></a> progress-&gt;<a href="ntqprogressbar.html#setProgress">setProgress</a>( progress-&gt;<a href="ntqprogressbar.html#totalSteps">totalSteps</a>() );
}