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/ntqprocess.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/ntqprocess.html')
-rw-r--r-- | doc/html/ntqprocess.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/ntqprocess.html b/doc/html/ntqprocess.html index 22afc994b..0f84b5b72 100644 --- a/doc/html/ntqprocess.html +++ b/doc/html/ntqprocess.html @@ -153,8 +153,8 @@ this: proc-><a href="#addArgument">addArgument</a>( "i18n" ); proc-><a href="#addArgument">addArgument</a>( "small_dialog.ui" ); - <a name="x2123"></a> <a href="ntqobject.html#connect">connect</a>( proc, SIGNAL(<a href="#readyReadStdout">readyReadStdout</a>()), - this, SLOT(readFromStdout()) ); + <a name="x2123"></a> <a href="ntqobject.html#connect">connect</a>( proc, TQ_SIGNAL(<a href="#readyReadStdout">readyReadStdout</a>()), + this, TQ_SLOT(readFromStdout()) ); </pre><pre> <a name="x2124"></a> if ( !proc-><a href="#start">start</a>() ) { // error handling </pre><pre> } @@ -347,7 +347,7 @@ tryTerminate(). is to do something like this: <pre> process->tryTerminate(); - TQTimer::<a href="ntqtimer.html#singleShot">singleShot</a>( 5000, process, SLOT( <a href="#kill">kill</a>() ) ); + TQTimer::<a href="ntqtimer.html#singleShot">singleShot</a>( 5000, process, TQ_SLOT( <a href="#kill">kill</a>() ) ); </pre> <p> This tries to terminate the process the nice way. If the process |