diff options
author | Michele Calgaro <[email protected]> | 2024-09-09 14:57:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-09-12 18:58:18 +0900 |
commit | 6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch) | |
tree | 4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/man/man3/tqsignal.3qt | |
parent | 0582c90a9ed4b965629267713f51c0da7c38b39d (diff) | |
download | tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip |
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqsignal.3qt')
-rw-r--r-- | doc/man/man3/tqsignal.3qt | 12 |
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" |