summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdir.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/man/man3/tqdir.3qt
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqdir.3qt')
-rw-r--r--doc/man/man3/tqdir.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqdir.3qt b/doc/man/man3/tqdir.3qt
index 4ba6ebf20..9fca59162 100644
--- a/doc/man/man3/tqdir.3qt
+++ b/doc/man/man3/tqdir.3qt
@@ -623,17 +623,17 @@ See also root() and rootDirPath().
.SH "bool QDir::match ( const TQString & filter, const TQString & fileName )\fC [static]\fR"
Returns TRUE if the \fIfileName\fR matches the wildcard (glob) pattern \fIfilter\fR; otherwise returns FALSE. The \fIfilter\fR may contain multiple patterns separated by spaces or semicolons.
.PP
-(See QRegExp wildcard matching.)
+(See TQRegExp wildcard matching.)
.PP
-See also QRegExp::match().
+See also TQRegExp::match().
.SH "bool QDir::match ( const TQStringList & filters, const TQString & fileName )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns TRUE if the \fIfileName\fR matches any of the wildcard (glob) patterns in the list of \fIfilters\fR; otherwise returns FALSE.
.PP
-(See QRegExp wildcard matching.)
+(See TQRegExp wildcard matching.)
.PP
-See also QRegExp::match().
+See also TQRegExp::match().
.SH "bool QDir::matchAllDirs () const"
Returns the value set by setMatchAllDirs()
.PP
@@ -759,7 +759,7 @@ See also matchAllDirs().
.SH "void QDir::setNameFilter ( const TQString & nameFilter )\fC [virtual]\fR"
Sets the name filter used by entryList() and entryInfoList() to \fInameFilter\fR.
.PP
-The \fInameFilter\fR is a wildcard (globbing) filter that understands" *" and "?" wildcards. (See QRegExp wildcard matching.) You may specify several filter entries all separated by a single space " " or by a semi-colon" ;".
+The \fInameFilter\fR is a wildcard (globbing) filter that understands" *" and "?" wildcards. (See TQRegExp wildcard matching.) You may specify several filter entries all separated by a single space " " or by a semi-colon" ;".
.PP
For example, if you want entryList() and entryInfoList() to list all files ending with either ".cpp" or ".h", you would use either dir.setNameFilter("*.cpp *.h") or dir.setNameFilter("*.cpp;*.h").
.PP