summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdir.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdir.3qt')
-rw-r--r--doc/man/man3/tqdir.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqdir.3qt b/doc/man/man3/tqdir.3qt
index e28daa8f..4ba6ebf2 100644
--- a/doc/man/man3/tqdir.3qt
+++ b/doc/man/man3/tqdir.3qt
@@ -97,16 +97,16 @@ All the functions in this class are reentrant when TQt is built with thread supp
.BI "TQString \fBoperator[]\fR ( int index ) const"
.br
.ti -1c
-.BI "virtual QStrList encodedEntryList ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const \fI(obsolete)\fR"
+.BI "virtual TQStrList encodedEntryList ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const \fI(obsolete)\fR"
.br
.ti -1c
-.BI "virtual QStrList encodedEntryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const \fI(obsolete)\fR"
+.BI "virtual TQStrList encodedEntryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const \fI(obsolete)\fR"
.br
.ti -1c
-.BI "virtual QStringList \fBentryList\fR ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const"
+.BI "virtual TQStringList \fBentryList\fR ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const"
.br
.ti -1c
-.BI "virtual QStringList \fBentryList\fR ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const"
+.BI "virtual TQStringList \fBentryList\fR ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const"
.br
.ti -1c
.BI "virtual const QFileInfoList * \fBentryInfoList\fR ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const"
@@ -187,7 +187,7 @@ All the functions in this class are reentrant when TQt is built with thread supp
.BI "TQString \fBrootDirPath\fR ()"
.br
.ti -1c
-.BI "bool \fBmatch\fR ( const QStringList & filters, const TQString & fileName )"
+.BI "bool \fBmatch\fR ( const TQStringList & filters, const TQString & fileName )"
.br
.ti -1c
.BI "bool \fBmatch\fR ( const TQString & filter, const TQString & fileName )"
@@ -488,13 +488,13 @@ Returns a list of the root directories on this system. On Windows this returns a
The returned pointer is owned by Qt. Callers should \fInot\fR delete or modify it.
.PP
Example: dirview/main.cpp.
-.SH "QStrList QDir::encodedEntryList ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
+.SH "TQStrList QDir::encodedEntryList ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
This function is included to easy porting from TQt 1.x to TQt 2.0, it is the same as entryList(), but encodes the filenames as 8-bit strings using QFile::encodedName().
.PP
It is more efficient to use entryList().
-.SH "QStrList QDir::encodedEntryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
+.SH "TQStrList QDir::encodedEntryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -531,7 +531,7 @@ The returned pointer is a const pointer to a QFileInfoList. The list is owned by
Note: QFileInfoList is really a TQPtrList<QFileInfo>.
.PP
See also entryList(), setNameFilter(), setSorting(), and setFilter().
-.SH "QStringList QDir::entryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
+.SH "TQStringList QDir::entryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
Returns a list of the names of all the files and directories in the directory, ordered in accordance with setSorting() and filtered in accordance with setFilter() and setNameFilter().
.PP
The filter and sorting specifications can be overridden using the \fInameFilter\fR, \fIfilterSpec\fR and \fIsortSpec\fR arguments.
@@ -541,7 +541,7 @@ Returns an empty list if the directory is unreadable or does not exist.
See also entryInfoList(), setNameFilter(), setSorting(), and setFilter().
.PP
Example: table/statistics/statistics.cpp.
-.SH "QStringList QDir::entryList ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
+.SH "TQStringList QDir::entryList ( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns a list of the names of all the files and directories in the directory, ordered in accordance with setSorting() and filtered in accordance with setFilter() and setNameFilter().
@@ -626,7 +626,7 @@ Returns TRUE if the \fIfileName\fR matches the wildcard (glob) pattern \fIfilter
(See QRegExp wildcard matching.)
.PP
See also QRegExp::match().
-.SH "bool QDir::match ( const QStringList & filters, const TQString & fileName )\fC [static]\fR"
+.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.