diff options
Diffstat (limited to 'doc/html/moc.html')
-rw-r--r-- | doc/html/moc.html | 6 |
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<int> : public <a href="ntqframe.html">TQFrame</a> { + class SomeTemplate<int> : 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> |