summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-07.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/tutorial1-07.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/tutorial1-07.html')
-rw-r--r--doc/html/tutorial1-07.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tutorial1-07.html b/doc/html/tutorial1-07.html
index 8af0bd97..0a5ee023 100644
--- a/doc/html/tutorial1-07.html
+++ b/doc/html/tutorial1-07.html
@@ -110,10 +110,10 @@ signal you'll see called <i>something</i>Changed().
<p> This file is mainly lifted from <a href="tutorial1-06.html#main">t6/main.cpp</a>, and
only the changes are noted here.
-<p> <pre> <a name="x2333"></a> <a href="ntqobject.html#connect">connect</a>( slider, SIGNAL(<a href="ntqslider.html#valueChanged">valueChanged</a>(int)),
- <a name="x2330"></a> lcd, SLOT(<a href="ntqlcdnumber.html#display">display</a>(int)) );
- <a href="ntqobject.html#connect">connect</a>( slider, SIGNAL(<a href="ntqslider.html#valueChanged">valueChanged</a>(int)),
- SIGNAL(valueChanged(int)) );
+<p> <pre> <a name="x2333"></a> <a href="ntqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="ntqslider.html#valueChanged">valueChanged</a>(int)),
+ <a name="x2330"></a> lcd, TQ_SLOT(<a href="ntqlcdnumber.html#display">display</a>(int)) );
+ <a href="ntqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="ntqslider.html#valueChanged">valueChanged</a>(int)),
+ TQ_SIGNAL(valueChanged(int)) );
</pre>
<p> This code is from the LCDRange constructor.
<p> The first connect is the same that you have seen in the previous chapter.
@@ -158,8 +158,8 @@ outside its legal range.
for( int c = 0 ; c &lt; 4 ; c++ ) {
LCDRange* lr = new LCDRange( grid );
if ( previous )
- <a href="ntqobject.html#connect">connect</a>( lr, SIGNAL(valueChanged(int)),
- previous, SLOT(setValue(int)) );
+ <a href="ntqobject.html#connect">connect</a>( lr, TQ_SIGNAL(valueChanged(int)),
+ previous, TQ_SLOT(setValue(int)) );
previous = lr;
}
}