summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqintvalidator.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-31 18:33:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-31 18:41:44 +0900
commite42ec295c2134770a1eb07032f5f22ca4ba1daa6 (patch)
tree1ecbc3ad607c79f1ce75ba953f9fe46ea1425b85 /doc/man/man3/tqintvalidator.3qt
parent0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (diff)
downloadtqt3-e42ec295c2134770a1eb07032f5f22ca4ba1daa6.tar.gz
tqt3-e42ec295c2134770a1eb07032f5f22ca4ba1daa6.zip
Rename remaining ntq[d-h]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 31c868d97..d9bdbdd13 100644
--- a/doc/man/man3/tqintvalidator.3qt
+++ b/doc/man/man3/tqintvalidator.3qt
@@ -9,9 +9,9 @@
.SH NAME
QIntValidator \- Validator which ensures that a string contains a valid integer within a specified range
.SH SYNOPSIS
-\fC#include <ntqvalidator.h>\fR
+\fC#include <tqvalidator.h>\fR
.PP
-Inherits QValidator.
+Inherits TQValidator.
.PP
.SS "Public Members"
.in +1c
@@ -25,7 +25,7 @@ Inherits QValidator.
.BI "\fB~QIntValidator\fR ()"
.br
.ti -1c
-.BI "virtual QValidator::State \fBvalidate\fR ( TQString & input, int & ) const"
+.BI "virtual TQValidator::State \fBvalidate\fR ( TQString & input, int & ) const"
.br
.ti -1c
.BI "void \fBsetBottom\fR ( int )"
@@ -59,7 +59,7 @@ Example of use:
.PP
.nf
.br
- QValidator* validator = new QIntValidator( 100, 999, this );
+ TQValidator* validator = new QIntValidator( 100, 999, this );
.br
TQLineEdit* edit = new TQLineEdit( this );
.br
@@ -119,7 +119,7 @@ Below we present some examples of validators. In practice they would normally be
.PP
The minimum and maximum values are set in one call with setRange() or individually with setBottom() and setTop().
.PP
-See also QDoubleValidator, TQRegExpValidator, and Miscellaneous Classes.
+See also TQDoubleValidator, TQRegExpValidator, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QIntValidator::QIntValidator ( TQObject * parent, const char * name = 0 )"
Constructs a validator called \fIname\fR with parent \fIparent\fR, that accepts all integers.
@@ -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 ( TQString & input, int & ) const\fC [virtual]\fR"
+.SH "TQValidator::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.
@@ -162,7 +162,7 @@ Note: If the valid range consists of just positive integers (e.g. 32 - 100) and
.br
.fi
.PP
-Reimplemented from QValidator.
+Reimplemented from TQValidator.
.SS "Property Documentation"
.SH "int bottom"
This property holds the validator's lowest acceptable value.