diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /doc/html/qdir-example.html | |
parent | a9d178f1000475ba1727ffe123a2c54585488c01 (diff) | |
download | tqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qdir-example.html')
-rw-r--r-- | doc/html/qdir-example.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/qdir-example.html b/doc/html/qdir-example.html index 618a7dd0f..4fed687d0 100644 --- a/doc/html/qdir-example.html +++ b/doc/html/qdir-example.html @@ -239,8 +239,8 @@ 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, SIGNAL( <a href="ntqpopupmenu.html#activated">activated</a>( int ) ), - this, SLOT( bookmarkChosen( int ) ) ); +<a name="x1835"></a> <a href="ntqobject.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" ) ); bookmarkMenu-><a href="ntqmenudata.html#insertSeparator">insertSeparator</a>(); @@ -260,16 +260,16 @@ 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, SIGNAL( folderSelected( const <a href="ntqstring.html">TQString</a> & ) ), - this, SLOT( setDir2( const <a href="ntqstring.html">TQString</a> & ) ) ); - <a href="ntqobject.html#connect">connect</a>( this, SIGNAL( <a href="ntqfiledialog.html#dirEntered">dirEntered</a>( const <a href="ntqstring.html">TQString</a> & ) ), - dirView, SLOT( <a href="ntqfiledialog.html#setDir">setDir</a>( const <a href="ntqstring.html">TQString</a> & ) ) ); + <a href="ntqobject.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> & ) ), + 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, SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), - this, SLOT( goHome() ) ); + <a href="ntqobject.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 ); |