diff options
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 |