diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
commit | b35e0845dc9b3c8b9a5e52a682c769f383933fae (patch) | |
tree | e4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqdoublevalidator.3qt | |
parent | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff) | |
download | tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqdoublevalidator.3qt')
-rw-r--r-- | doc/man/man3/tqdoublevalidator.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqdoublevalidator.3qt b/doc/man/man3/tqdoublevalidator.3qt index 34e594df9..84cbb241a 100644 --- a/doc/man/man3/tqdoublevalidator.3qt +++ b/doc/man/man3/tqdoublevalidator.3qt @@ -16,16 +16,16 @@ Inherits QValidator. .SS "Public Members" .in +1c .ti -1c -.BI "\fBQDoubleValidator\fR ( QObject * parent, const char * name = 0 )" +.BI "\fBQDoubleValidator\fR ( TQObject * parent, const char * name = 0 )" .br .ti -1c -.BI "\fBQDoubleValidator\fR ( double bottom, double top, int decimals, QObject * parent, const char * name = 0 )" +.BI "\fBQDoubleValidator\fR ( double bottom, double top, int decimals, TQObject * parent, const char * name = 0 )" .br .ti -1c .BI "\fB~QDoubleValidator\fR ()" .br .ti -1c -.BI "virtual QValidator::State \fBvalidate\fR ( QString & input, int & ) const" +.BI "virtual QValidator::State \fBvalidate\fR ( TQString & input, int & ) const" .br .ti -1c .BI "virtual void \fBsetRange\fR ( double minimum, double maximum, int decimals = 0 )" @@ -70,9 +70,9 @@ You can set the acceptable range in one call with setRange(), or with setBottom( .PP See also QIntValidator, QRegExpValidator, and Miscellaneous Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QDoubleValidator::QDoubleValidator ( QObject * parent, const char * name = 0 )" +.SH "QDoubleValidator::QDoubleValidator ( TQObject * parent, const char * name = 0 )" Constructs a validator object with parent \fIparent\fR, called \fIname\fR, which accepts any double. -.SH "QDoubleValidator::QDoubleValidator ( double bottom, double top, int decimals, QObject * parent, const char * name = 0 )" +.SH "QDoubleValidator::QDoubleValidator ( double bottom, double top, int decimals, TQObject * parent, const char * name = 0 )" Constructs a validator object with parent \fIparent\fR, called \fIname\fR. This validator will accept doubles from \fIbottom\fR to \fItop\fR inclusive, with up to \fIdecimals\fR digits after the decimal point. .SH "QDoubleValidator::~QDoubleValidator ()" Destroys the validator, freeing any resources used. @@ -90,7 +90,7 @@ Sets the validator to accept doubles from \fIminimum\fR to \fImaximum\fR inclusi Sets the validator's maximum acceptable value. See the "top" property for details. .SH "double QDoubleValidator::top () const" Returns the validator's maximum acceptable value. See the "top" property for details. -.SH "QValidator::State QDoubleValidator::validate ( QString & input, int & ) const\fC [virtual]\fR" +.SH "QValidator::State QDoubleValidator::validate ( TQString & input, int & ) const\fC [virtual]\fR" Returns Acceptable if the string \fIinput\fR contains a double that is within the valid range and is in the correct format. .PP Returns Intermediate if \fIinput\fR contains a double that is outside the range or is in the wrong format, e.g. with too many digits after the decimal point or is empty. |