summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsignal.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqsignal.3qt')
-rw-r--r--doc/man/man3/tqsignal.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqsignal.3qt b/doc/man/man3/tqsignal.3qt
index d00d757f9..621f1488e 100644
--- a/doc/man/man3/tqsignal.3qt
+++ b/doc/man/man3/tqsignal.3qt
@@ -31,10 +31,10 @@ Inherits TQObject.
.BI "void \fBactivate\fR ()"
.br
.ti -1c
-.BI "void \fBsetValue\fR ( const QVariant & value )"
+.BI "void \fBsetValue\fR ( const TQVariant & value )"
.br
.ti -1c
-.BI "QVariant \fBvalue\fR () const"
+.BI "TQVariant \fBvalue\fR () const"
.br
.in -1c
.SH DESCRIPTION
@@ -44,7 +44,7 @@ If you want to send signals from a class that does not inherit TQObject, you can
.PP
In general, we recommend inheriting TQObject instead. TQObject provides much more functionality.
.PP
-You can set a single QVariant parameter for the signal with setValue().
+You can set a single TQVariant parameter for the signal with setValue().
.PP
Note that TQObject is a \fIprivate\fR base class of TQSignal, i.e. you cannot call any TQObject member functions from a TQSignal object.
.PP
@@ -125,7 +125,7 @@ Constructs a signal object called \fIname\fR, with the parent object \fIparent\f
.SH "TQSignal::~TQSignal ()"
Destroys the signal. All connections are removed, as is the case with all TQObjects.
.SH "void TQSignal::activate ()"
-Emits the signal. If the platform supports QVariant and a parameter has been set with setValue(), this value is passed in the signal.
+Emits the signal. If the platform supports TQVariant and a parameter has been set with setValue(), this value is passed in the signal.
.SH "bool TQSignal::connect ( const TQObject * receiver, const char * member )"
Connects the signal to \fImember\fR in object \fIreceiver\fR.
.PP
@@ -134,9 +134,9 @@ See also disconnect() and TQObject::connect().
Disonnects the signal from \fImember\fR in object \fIreceiver\fR.
.PP
See also connect() and TQObject::disconnect().
-.SH "void TQSignal::setValue ( const QVariant & value )"
+.SH "void TQSignal::setValue ( const TQVariant & value )"
Sets the signal's parameter to \fIvalue\fR
-.SH "QVariant TQSignal::value () const"
+.SH "TQVariant TQSignal::value () const"
Returns the signal's parameter
.SH "SEE ALSO"