diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/signalsandslots.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt-8ac0e970.tar.gz tqt-8ac0e970.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/signalsandslots.html')
-rw-r--r-- | doc/html/signalsandslots.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/signalsandslots.html b/doc/html/signalsandslots.html index 8f453eae4..122c918b4 100644 --- a/doc/html/signalsandslots.html +++ b/doc/html/signalsandslots.html @@ -71,7 +71,7 @@ called with the signal's parameters at the right time. Signals and slots can take any number of arguments of any type. They are completely typesafe: no more callback core dumps! <p> All classes that inherit from <a href="tqobject.html">TQObject</a> or one of its subclasses -(e.g. <a href="ntqwidget.html">TQWidget</a>) can contain signals and slots. Signals are emitted by +(e.g. <a href="tqwidget.html">TQWidget</a>) can contain signals and slots. Signals are emitted by objects when they change their state in a way that may be interesting to the outside world. This is all the object does to communicate. It does not know or care whether anything is receiving the signals it @@ -279,7 +279,7 @@ doesn't TQt use templates for signals and slots?</a>.) </pre> <p> <a href="ntqlcdnumber.html">TQLCDNumber</a> inherits <a href="tqobject.html">TQObject</a>, which has most of the signal/slot -knowledge, via <a href="ntqframe.html">TQFrame</a> and <a href="ntqwidget.html">TQWidget</a>, and #include's the relevant +knowledge, via <a href="ntqframe.html">TQFrame</a> and <a href="tqwidget.html">TQWidget</a>, and #include's the relevant declarations. <p> <pre> { @@ -293,7 +293,7 @@ you have probably forgotten to <a href="moc.html">run the moc</a> or to include the moc output in the link command. <p> <pre> public: - <a href="ntqlcdnumber.html">TQLCDNumber</a>( <a href="ntqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); + <a href="ntqlcdnumber.html">TQLCDNumber</a>( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); TQLCDNumber( uint numDigits, TQWidget *parent=0, const char *name=0 ); </pre> |