summaryrefslogtreecommitdiffstats
path: root/doc/src/frameworks-technologies
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2009-09-07 12:22:16 (GMT)
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2009-09-07 12:22:16 (GMT)
commitc41e03887ca8fb749b6edd12cdb04dbc6590328a (patch)
treeb3c8275cc3b0c9baac21e2caec77ca8a6e759cd6 /doc/src/frameworks-technologies
parent807185d250fd8f5152cafdb416f28abe4438275f (diff)
downloadQt-c41e03887ca8fb749b6edd12cdb04dbc6590328a.zip
Qt-c41e03887ca8fb749b6edd12cdb04dbc6590328a.tar.gz
Qt-c41e03887ca8fb749b6edd12cdb04dbc6590328a.tar.bz2
Re-added Symbian specific plugins documentation that had gotten lost.
Documentation structure changes had caused Symbian plugin documentation to be lost, so revised and re-added it to plugins-howto.qdoc. Reviewed-by: Janne Anttila
Diffstat (limited to 'doc/src/frameworks-technologies')
-rw-r--r--doc/src/frameworks-technologies/plugins-howto.qdoc14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/src/frameworks-technologies/plugins-howto.qdoc b/doc/src/frameworks-technologies/plugins-howto.qdoc
index 78e5c20..43bc695 100644
--- a/doc/src/frameworks-technologies/plugins-howto.qdoc
+++ b/doc/src/frameworks-technologies/plugins-howto.qdoc
@@ -226,6 +226,20 @@
located to your applications root folder (i.e., do not include the
\c plugins directory).
+ \note In Symbian all binaries must be located in the directory \\sys\\bin,
+ so each Qt plugin has a stub with the same basename as the plugin dll
+ and suffix ".qtplugin" to make Qt extension plugins work similarly to
+ other platforms.
+ When trying to locate the plugin, Qt actually looks for the stub
+ instead of the plugin binary. While plugin stub files have the
+ suffix ".qtplugin", they can still be loaded also by specifying a filename
+ with the normal library suffix ".dll" for QPluginLoader, so normally application
+ developer doesn't need to care about the different suffix of the stub.
+ Because of the way applications can be installed
+ on ROM or various other drives in Symbian, Qt looks for the stub from
+ the same directory on all available drives if it is not located in the given
+ directory when loading a plugin.
+
For more information about deployment,
see the \l {Deploying Qt Applications} and \l {Deploying Plugins}
documentation.