summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqintvalidator.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/man/man3/tqintvalidator.3qt
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt3-r14.1.1.tar.gz
tqt3-r14.1.1.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
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 78786602..f4f0badc 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.