summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2010-02-01 15:03:12 (GMT)
committerJesper Thomschutz <jesper.thomschutz@nokia.com>2010-02-03 12:34:25 (GMT)
commit22c1105e6ed1290d59041aead78a3996cde30fa3 (patch)
tree75bfb0cd1eae64369a27599571da06e445454959
parent525f23d23e0eda5dcd29f6a4e07de172d325b632 (diff)
downloadQt-22c1105e6ed1290d59041aead78a3996cde30fa3.zip
Qt-22c1105e6ed1290d59041aead78a3996cde30fa3.tar.gz
Qt-22c1105e6ed1290d59041aead78a3996cde30fa3.tar.bz2
Documented limitations of add/setLibraryPath(s) on Symbian OS
Symbian OS limits applications to loading libraries only from /sys/bin directory, so user defined library paths can only be useful for locating Qt extension plugin stubs. Task-number: QTBUG-7517 Reviewed-by: Janne Koskinen (cherry picked from commit 00c4f1dbd8484ec887aea259021f5089334f45d7)
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index be5d9b3..c5ec0f4 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -2267,6 +2267,10 @@ QStringList QCoreApplication::libraryPaths()
\a paths. All existing paths will be deleted and the path list
will consist of the paths given in \a paths.
+ In Symbian this function is only useful for setting paths for
+ finding Qt extension plugin stubs, since the OS can only
+ load libraries from the \c{/sys/bin} directory.
+
\sa libraryPaths(), addLibraryPath(), removeLibraryPath(), QLibrary
*/
void QCoreApplication::setLibraryPaths(const QStringList &paths)
@@ -2290,6 +2294,10 @@ void QCoreApplication::setLibraryPaths(const QStringList &paths)
is \c INSTALL/plugins, where \c INSTALL is the directory where Qt was
installed.
+ In Symbian this function is only useful for adding paths for
+ finding Qt extension plugin stubs, since the OS can only
+ load libraries from the \c{/sys/bin} directory.
+
\sa removeLibraryPath(), libraryPaths(), setLibraryPaths()
*/
void QCoreApplication::addLibraryPath(const QString &path)