diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qregexpvalidator.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qregexpvalidator.html')
-rw-r--r-- | doc/html/qregexpvalidator.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/qregexpvalidator.html b/doc/html/qregexpvalidator.html index 1d3933c10..cff00616c 100644 --- a/doc/html/qregexpvalidator.html +++ b/doc/html/qregexpvalidator.html @@ -76,7 +76,7 @@ normally be associated with a widget as in the example above. <a href="ntqregexp.html">TQRegExp</a> rx( "[1-9]\\d{0,3}" ); // the validator treats the regexp as "^[1-9]\\d{0,3}$" TQRegExpValidator v( rx, 0 ); - <a href="ntqstring.html">TQString</a> s; + <a href="tqstring.html">TQString</a> s; int pos = 0; s = "0"; v.<a href="#validate">validate</a>( s, pos ); // returns Invalid @@ -136,7 +136,7 @@ Destroys the validator, freeing any resources allocated. Sets the <a href="ntqregexp.html#regular-expression">regular expression</a> used for validation to <em>rx</em>. <p> <p>See also <a href="#regExp">regExp</a>(). -<h3 class=fn><a href="ntqvalidator.html#State-enum">TQValidator::State</a> <a name="validate"></a>TQRegExpValidator::validate ( <a href="ntqstring.html">TQString</a> & input, int & pos ) const<tt> [virtual]</tt> +<h3 class=fn><a href="ntqvalidator.html#State-enum">TQValidator::State</a> <a name="validate"></a>TQRegExpValidator::validate ( <a href="tqstring.html">TQString</a> & input, int & pos ) const<tt> [virtual]</tt> </h3> Returns <a href="ntqvalidator.html#State-enum">Acceptable</a> if <em>input</em> is matched by the <a href="ntqregexp.html#regular-expression">regular expression</a> for this validator, <a href="ntqvalidator.html#State-enum">Intermediate</a> if it has matched partially (i.e. could be a valid match if additional valid |