diff options
Diffstat (limited to 'doc/html/qdir-example.html')
-rw-r--r-- | doc/html/qdir-example.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/qdir-example.html b/doc/html/qdir-example.html index 4fed687d0..9058146fc 100644 --- a/doc/html/qdir-example.html +++ b/doc/html/qdir-example.html @@ -159,7 +159,7 @@ void <a name="f498"></a>Preview::showPreview( const <a href="ntqurl.html">TQUrl< <a name="x1850"></a> <a href="ntqstring.html">TQString</a> path = u.<a href="ntqurl.html#path">path</a>(); <a href="ntqfileinfo.html">TQFileInfo</a> fi( path ); <a name="x1825"></a><a name="x1824"></a> if ( fi.<a href="ntqfileinfo.html#isFile">isFile</a>() && (int)fi.<a href="ntqfileinfo.html#size">size</a>() > size * 1000 ) { -<a name="x1846"></a> normalText-><a href="ntqtextedit.html#setText">setText</a>( <a href="ntqobject.html#tr">tr</a>( "The File\n%1\nis too large, so I don't show it!" ).arg( path ) ); +<a name="x1846"></a> normalText-><a href="ntqtextedit.html#setText">setText</a>( <a href="tqobject.html#tr">tr</a>( "The File\n%1\nis too large, so I don't show it!" ).arg( path ) ); <a href="ntqwidgetstack.html#raiseWidget">raiseWidget</a>( normalText ); return; } @@ -205,7 +205,7 @@ void <a name="f498"></a>Preview::showPreview( const <a href="ntqurl.html">TQUrl< setMargin( 5 ); <a href="ntqhbox.html">TQHBox</a> *row = new <a href="ntqhbox.html">TQHBox</a>( this ); <a name="x1826"></a> row-><a href="ntqhbox.html#setSpacing">setSpacing</a>( 5 ); - (void)new <a href="ntqlabel.html">TQLabel</a>( <a href="ntqobject.html#tr">tr</a>( "Only show files smaller than: " ), row ); + (void)new <a href="ntqlabel.html">TQLabel</a>( <a href="tqobject.html#tr">tr</a>( "Only show files smaller than: " ), row ); sizeSpinBox = new <a href="ntqspinbox.html">TQSpinBox</a>( 1, 10000, 1, row ); <a name="x1838"></a> sizeSpinBox-><a href="ntqspinbox.html#setSuffix">setSuffix</a>( " KB" ); <a name="x1839"></a> sizeSpinBox-><a href="ntqspinbox.html#setValue">setValue</a>( 64 ); @@ -239,9 +239,9 @@ void <a name="f500"></a>PreviewWidget::previewUrl( const <a href="ntqurl.html">T <a name="x1848"></a> TQToolTip::<a href="ntqtooltip.html#add">add</a>( p, tr( "Bookmarks" ) ); bookmarkMenu = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( this ); -<a name="x1835"></a> <a href="ntqobject.html#connect">connect</a>( bookmarkMenu, TQ_SIGNAL( <a href="ntqpopupmenu.html#activated">activated</a>( int ) ), +<a name="x1835"></a> <a href="tqobject.html#connect">connect</a>( bookmarkMenu, TQ_SIGNAL( <a href="ntqpopupmenu.html#activated">activated</a>( int ) ), this, TQ_SLOT( bookmarkChosen( int ) ) ); - addId = bookmarkMenu-><a href="ntqmenudata.html#insertItem">insertItem</a>( <a href="ntqobject.html#tr">tr</a>( "Add bookmark" ) ); + addId = bookmarkMenu-><a href="ntqmenudata.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>( "Add bookmark" ) ); bookmarkMenu-><a href="ntqmenudata.html#insertSeparator">insertSeparator</a>(); <a href="ntqfile.html">TQFile</a> f( ".bookmarks" ); @@ -260,15 +260,15 @@ void <a name="f500"></a>PreviewWidget::previewUrl( const <a href="ntqurl.html">T <a href="ntqfiledialog.html#addToolButton">addToolButton</a>( p, TRUE ); - <a href="ntqobject.html#connect">connect</a>( dirView, TQ_SIGNAL( folderSelected( const <a href="ntqstring.html">TQString</a> & ) ), + <a href="tqobject.html#connect">connect</a>( dirView, TQ_SIGNAL( folderSelected( const <a href="ntqstring.html">TQString</a> & ) ), this, TQ_SLOT( setDir2( const <a href="ntqstring.html">TQString</a> & ) ) ); - <a href="ntqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="ntqfiledialog.html#dirEntered">dirEntered</a>( const <a href="ntqstring.html">TQString</a> & ) ), + <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="ntqfiledialog.html#dirEntered">dirEntered</a>( const <a href="ntqstring.html">TQString</a> & ) ), dirView, TQ_SLOT( <a href="ntqfiledialog.html#setDir">setDir</a>( const <a href="ntqstring.html">TQString</a> & ) ) ); <a href="ntqtoolbutton.html">TQToolButton</a> *b = new <a href="ntqtoolbutton.html">TQToolButton</a>( this ); TQToolTip::<a href="ntqtooltip.html#add">add</a>( b, tr( "Go Home!" ) ); b-><a href="ntqbutton.html#setPixmap">setPixmap</a>( TQPixmap( home ) ); - <a href="ntqobject.html#connect">connect</a>( b, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), + <a href="tqobject.html#connect">connect</a>( b, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( goHome() ) ); <a href="ntqfiledialog.html#addToolButton">addToolButton</a>( b ); @@ -290,9 +290,9 @@ CustomFileDialog::~CustomFileDialog() void <a name="f492"></a>CustomFileDialog::setDir2( const <a href="ntqstring.html">TQString</a> &s ) { - <a href="ntqobject.html#blockSignals">blockSignals</a>( TRUE ); + <a href="tqobject.html#blockSignals">blockSignals</a>( TRUE ); <a href="ntqfiledialog.html#setDir">setDir</a>( s ); - <a href="ntqobject.html#blockSignals">blockSignals</a>( FALSE ); + <a href="tqobject.html#blockSignals">blockSignals</a>( FALSE ); } <a name="x1854"></a>void CustomFileDialog::<a href="ntqwidget.html#showEvent">showEvent</a>( <a href="qshowevent.html">TQShowEvent</a> *e ) |