summaryrefslogtreecommitdiffstats
path: root/doc/html/moc.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/html/moc.html
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt-42957a3f.tar.gz
tqt-42957a3f.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/moc.html')
-rw-r--r--doc/html/moc.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/moc.html b/doc/html/moc.html
index 5398c8e67..a69924380 100644
--- a/doc/html/moc.html
+++ b/doc/html/moc.html
@@ -254,7 +254,7 @@ not usually a problem in practice.
<p> The moc does not handle all of C++. The main problem is that class
templates cannot have signals or slots. Here is an example:
<p> <pre>
- class SomeTemplate&lt;int&gt; : public <a href="ntqframe.html">TQFrame</a> {
+ class SomeTemplate&lt;int&gt; : public <a href="tqframe.html">TQFrame</a> {
TQ_OBJECT
...
signals:
@@ -329,10 +329,10 @@ illegal syntax:
public status is not extended to cover signals and slots. Here is an
illegal example:
<p> <pre>
- class Whatever : public <a href="ntqbuttongroup.html">TQButtonGroup</a> {
+ class Whatever : public <a href="tqbuttongroup.html">TQButtonGroup</a> {
...
public slots:
- <a href="ntqbuttongroup.html">TQButtonGroup</a>::buttonPressed; // WRONG
+ <a href="tqbuttongroup.html">TQButtonGroup</a>::buttonPressed; // WRONG
...
};
</pre>