summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqapplication.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/man/man3/tqapplication.3qt
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30.tar.gz
tqt-e6077c30.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 bf39cc926..582175acd 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.