summaryrefslogtreecommitdiffstats
path: root/lib/interfaces/extensions/Mainpage.dox
diff options
context:
space:
mode:
Diffstat (limited to 'lib/interfaces/extensions/Mainpage.dox')
-rw-r--r--lib/interfaces/extensions/Mainpage.dox10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/interfaces/extensions/Mainpage.dox b/lib/interfaces/extensions/Mainpage.dox
index 3b493fde..37c72c16 100644
--- a/lib/interfaces/extensions/Mainpage.dox
+++ b/lib/interfaces/extensions/Mainpage.dox
@@ -10,8 +10,8 @@ This library contains extension interfaces used by TDevelop plugin architecture.
\section whatisextension What is the TDevelop extension
Extension is a TDevelop plugin which implements one of extension interfaces.
-Extension is usually not important enough to be returned by @ref KDevApi and @ref KDevPlugin
-methods. Therefore extension instance can be obtained by @ref KDevPlugin::extension method.
+Extension is usually not important enough to be returned by @ref TDevApi and @ref TDevPlugin
+methods. Therefore extension instance can be obtained by @ref TDevPlugin::extension method.
Note: extension plugins can be either core, global and project plugins. They are loaded
in the same way other plugins are. But extensions differ from usual plugins.
@@ -36,10 +36,10 @@ those should be loaded at a time. This can be accomplished by:
@endcode
- Define an abstract base class for an extension like:
@code
- class KDevMyExtension: public KDevPlugin {
+ class KDevMyExtension: public TDevPlugin {
public:
- KDevMyExtension(const KDevPluginInfo *info, QObject* parent, const char* name)
- :KDevPlugin(info, parent, name) {}
+ KDevMyExtension(const TDevPluginInfo *info, QObject* parent, const char* name)
+ :TDevPlugin(info, parent, name) {}
virtual void doSomething() = 0;
};