summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqapplication.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r--doc/man/man3/tqapplication.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index bf39cc92..582175ac 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -337,10 +337,10 @@ Inherits TQObject.
.BI "QSize \fBglobalStrut\fR ()"
.br
.ti -1c
-.BI "void \fBsetLibraryPaths\fR ( const QStringList & paths )"
+.BI "void \fBsetLibraryPaths\fR ( const TQStringList & paths )"
.br
.ti -1c
-.BI "QStringList \fBlibraryPaths\fR ()"
+.BI "TQStringList \fBlibraryPaths\fR ()"
.br
.ti -1c
.BI "void \fBaddLibraryPath\fR ( const TQString & path )"
@@ -990,16 +990,16 @@ See also mainWidget(), topLevelWidgets(), TQWidget::isTopLevel, and TQWidget::cl
.PP
Examples:
.)l addressbook/main.cpp, extension/main.cpp, helpviewer/main.cpp, mdi/main.cpp, network/archivesearch/main.cpp, qwerty/main.cpp, and regexptester/main.cpp.
-.SH "QStringList QApplication::libraryPaths ()\fC [static]\fR"
+.SH "TQStringList QApplication::libraryPaths ()\fC [static]\fR"
Returns a list of paths that the application will search when dynamically loading libraries. The installation directory for plugins is the only entry if no paths have been set. The default installation directory for plugins is \fCINSTALL/plugins\fR, where \fCINSTALL\fR is the directory where TQt was installed. The directory of the application executable (NOT the working directory) is also added to the plugin paths.
.PP
If you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = app.libraryPaths();
+ TQStringList list = app.libraryPaths();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
@@ -1395,7 +1395,7 @@ Example:
.fi
.PP
See also globalStrut().
-.SH "void QApplication::setLibraryPaths ( const QStringList & paths )\fC [static]\fR"
+.SH "void QApplication::setLibraryPaths ( const TQStringList & paths )\fC [static]\fR"
Sets the list of directories to search when loading libraries to \fIpaths\fR. All existing paths will be deleted and the path list will consist of the paths given in \fIpaths\fR.
.PP
See also libraryPaths(), addLibraryPath(), removeLibraryPath(), and QLibrary.