summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqintvalidator.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
committerMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqintvalidator.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqintvalidator.3qt')
-rw-r--r--doc/man/man3/tqintvalidator.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqintvalidator.3qt b/doc/man/man3/tqintvalidator.3qt
index 787866029..f4f0badcc 100644
--- a/doc/man/man3/tqintvalidator.3qt
+++ b/doc/man/man3/tqintvalidator.3qt
@@ -16,16 +16,16 @@ Inherits QValidator.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQIntValidator\fR ( QObject * parent, const char * name = 0 )"
+.BI "\fBQIntValidator\fR ( TQObject * parent, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQIntValidator\fR ( int minimum, int maximum, QObject * parent, const char * name = 0 )"
+.BI "\fBQIntValidator\fR ( int minimum, int maximum, TQObject * parent, const char * name = 0 )"
.br
.ti -1c
.BI "\fB~QIntValidator\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 "void \fBsetBottom\fR ( int )"
@@ -74,7 +74,7 @@ Below we present some examples of validators. In practice they would normally be
.PP
.nf
.br
- QString str;
+ TQString str;
.br
int pos = 0;
.br
@@ -121,9 +121,9 @@ The minimum and maximum values are set in one call with setRange() or individual
.PP
See also QDoubleValidator, QRegExpValidator, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QIntValidator::QIntValidator ( QObject * parent, const char * name = 0 )"
+.SH "QIntValidator::QIntValidator ( TQObject * parent, const char * name = 0 )"
Constructs a validator called \fIname\fR with parent \fIparent\fR, that accepts all integers.
-.SH "QIntValidator::QIntValidator ( int minimum, int maximum, QObject * parent, const char * name = 0 )"
+.SH "QIntValidator::QIntValidator ( int minimum, int maximum, TQObject * parent, const char * name = 0 )"
Constructs a validator called \fIname\fR with parent \fIparent\fR, that accepts integers from \fIminimum\fR to \fImaximum\fR inclusive.
.SH "QIntValidator::~QIntValidator ()"
Destroys the validator, freeing any resources allocated.
@@ -137,7 +137,7 @@ Sets the range of the validator to only accept integers between \fIbottom\fR and
Sets the validator's highest acceptable value. See the "top" property for details.
.SH "int QIntValidator::top () const"
Returns the validator's highest acceptable value. See the "top" property for details.
-.SH "QValidator::State QIntValidator::validate ( QString & input, int & ) const\fC [virtual]\fR"
+.SH "QValidator::State QIntValidator::validate ( TQString & input, int & ) const\fC [virtual]\fR"
Returns Acceptable if the \fIinput\fR is an integer within the valid range, Intermediate if the \fIinput\fR is an integer outside the valid range and Invalid if the \fIinput\fR is not an integer.
.PP
Note: If the valid range consists of just positive integers (e.g. 32 - 100) and \fIinput\fR is a negative integer then Invalid is returned.