summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-05-25 08:45:19 +0300
committerOrgad Shaneh <orgads@gmail.com>2014-05-26 08:21:14 +0200
commit2ce5b3bc0b01546c6d96395ac7d9dc9d977ca37a (patch)
tree90e4e3808fcd03b9506754b5d0809bc0a85401dc /doc
parent8d587fa816d065358eb507c1c8f9f508275fd244 (diff)
downloadqt-creator-2ce5b3bc0b01546c6d96395ac7d9dc9d977ca37a.tar.gz
Remove remaining PROVIDER references
Change-Id: I0bfcd7136ec0329cfe15983278c25f6b62415b68 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/examples/exampleplugin/example.pro12
-rw-r--r--doc/api/first-plugin.qdoc8
2 files changed, 5 insertions, 15 deletions
diff --git a/doc/api/examples/exampleplugin/example.pro b/doc/api/examples/exampleplugin/example.pro
index a264c42e24..c100894b7b 100644
--- a/doc/api/examples/exampleplugin/example.pro
+++ b/doc/api/examples/exampleplugin/example.pro
@@ -34,11 +34,7 @@ isEmpty(IDE_BUILD_TREE):IDE_BUILD_TREE=/Users/example/qtcreator-build
# USE_USER_DESTDIR = yes
#! [4]
-#![5]
-PROVIDER = MyCompany
-#![5]
-
-#! [6]
+#! [5]
###### If the plugin can be depended upon by other plugins, this code needs to be outsourced to
###### <dirname>_dependencies.pri, where <dirname> is the name of the directory containing the
###### plugin's sources.
@@ -54,10 +50,10 @@ QTC_PLUGIN_RECOMMENDS += \
# optional plugin dependencies. nothing here at this time
###### End _dependencies.pri contents ######
-#! [6]
+#! [5]
-#![7]
+#![6]
include($$QTCREATOR_SOURCES/src/qtcreatorplugin.pri)
-#![7]
+#![6]
diff --git a/doc/api/first-plugin.qdoc b/doc/api/first-plugin.qdoc
index 7cebae7614..7f78439a76 100644
--- a/doc/api/first-plugin.qdoc
+++ b/doc/api/first-plugin.qdoc
@@ -204,12 +204,6 @@
\snippet exampleplugin/example.pro 5
- The \c{PROVIDER} variable is for example used to deploy your plugin to a provider specific
- plugin subdirectory, and the value is taken from the information that
- you gave in the plugin project wizard.
-
- \snippet exampleplugin/example.pro 6
-
This section defines the name and dependencies of your plugin.
The \c{QTC_PLUGIN_NAME} variable defines the name of your plugin, and the name of the
dynamic library that is created for it. The \c{QTC_LIB_DEPENDS} variable is a list of
@@ -220,7 +214,7 @@
variable defines the \QC plugins that your plugin optionally depends on. For more information,
see \l{Optional Dependencies}.
- \snippet exampleplugin/example.pro 7
+ \snippet exampleplugin/example.pro 6
The included file \c{qtcreatorplugin.pri} makes sure that you build a plugin that is suitable
for use in \QC, by using the information you gave above.