summaryrefslogtreecommitdiffstats
path: root/doc/html/signalsandslots.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/signalsandslots.html')
-rw-r--r--doc/html/signalsandslots.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/signalsandslots.html b/doc/html/signalsandslots.html
index 8f453eae..122c918b 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>