summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqtimer.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /doc/html/ntqtimer.html
parenta9d178f1000475ba1727ffe123a2c54585488c01 (diff)
downloadtqt3-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/ntqtimer.html')
-rw-r--r--doc/html/ntqtimer.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/ntqtimer.html b/doc/html/ntqtimer.html
index b04fa1a9..b6789035 100644
--- a/doc/html/ntqtimer.html
+++ b/doc/html/ntqtimer.html
@@ -71,7 +71,7 @@ parent object is destroyed.
<p> Example:
<pre>
TQTimer *timer = new TQTimer( myObject );
- <a href="ntqobject.html#connect">connect</a>( timer, SIGNAL(<a href="#timeout">timeout</a>()), myObject, SLOT(timerDone()) );
+ <a href="ntqobject.html#connect">connect</a>( timer, TQ_SIGNAL(<a href="#timeout">timeout</a>()), myObject, TQ_SLOT(timerDone()) );
timer-&gt;<a href="#start">start</a>( 2000, TRUE ); // 2 seconds single-shot timer
</pre>
@@ -84,7 +84,7 @@ processed.
user interface:
<pre>
TQTimer *t = new TQTimer( myObject );
- <a href="ntqobject.html#connect">connect</a>( t, SIGNAL(<a href="#timeout">timeout</a>()), SLOT(processOneThing()) );
+ <a href="ntqobject.html#connect">connect</a>( t, TQ_SIGNAL(<a href="#timeout">timeout</a>()), TQ_SLOT(processOneThing()) );
t-&gt;<a href="#start">start</a>( 0, FALSE );
</pre>
@@ -147,7 +147,7 @@ to create a local TQTimer object.
int main( int argc, char **argv )
{
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
- TQTimer::<a href="#singleShot">singleShot</a>( 10*60*1000, &amp;a, SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+ TQTimer::<a href="#singleShot">singleShot</a>( 10*60*1000, &amp;a, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
... // create and show your widgets
return a.<a href="ntqapplication.html#exec">exec</a>();
}