summaryrefslogtreecommitdiffstats
path: root/lib/interfaces/kdevplugincontroller.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-07-04 16:46:19 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-07-04 16:46:19 -0500
commit998ebd2e683e45140493910f76e692e96887b5d2 (patch)
tree4d75be7d82ab9ba5ebd7c95c5b64a265971183d2 /lib/interfaces/kdevplugincontroller.h
parent9ba3adb356665bc27c3416c0b916efa89b366bde (diff)
downloadtdevelop-998ebd2e683e45140493910f76e692e96887b5d2.tar.gz
tdevelop-998ebd2e683e45140493910f76e692e96887b5d2.zip
Fix help files, kdevelop->tdevelop branding, fix startup.
Diffstat (limited to 'lib/interfaces/kdevplugincontroller.h')
-rw-r--r--lib/interfaces/kdevplugincontroller.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/interfaces/kdevplugincontroller.h b/lib/interfaces/kdevplugincontroller.h
index 8458e8ef..6097e2c1 100644
--- a/lib/interfaces/kdevplugincontroller.h
+++ b/lib/interfaces/kdevplugincontroller.h
@@ -26,14 +26,14 @@
/**
@file kdevplugincontroller.h
-KDevelop plugin controller interface.
+TDevelop plugin controller interface.
*/
class KDevPlugin;
class ProfileEngine;
/**
-The base class for KDevelop plugin controller.
+The base class for TDevelop plugin controller.
Plugin controller is responsible for quering, loading and unloading available plugins.
*/
class KDevPluginController: public TQObject
@@ -66,23 +66,23 @@ public:
All already loaded plugins will be queried and the first one to support the service type
will be returned. Any plugin can be an extension, only "ServiceTypes=..." entry is
required in .desktop file for that plugin.
- @param serviceType The service type of an extension (like "KDevelop/SourceFormatter")
+ @param serviceType The service type of an extension (like "TDevelop/SourceFormatter")
@param constraint The constraint which is applied when quering for the service. This
- constraint is a usual KTrader constraint statement (like "[X-KDevelop-Foo]=='MyFoo'").
+ constraint is a usual KTrader constraint statement (like "[X-TDevelop-Foo]=='MyFoo'").
@return A KDevelop extension plugin for given service type or 0 if no plugin supports it*/
virtual KDevPlugin *extension(const TQString &serviceType, const TQString &constraint = "") = 0;
/**Queries KDevelop services. Version is checked automatically
- by adding proper X-KDevelop-Version=N statement into the query.
- @param serviceType The service type to query, for example "KDevelop/Plugin" or
- "KDevelop/SourceFormatter."
+ by adding proper X-TDevelop-Version=N statement into the query.
+ @param serviceType The service type to query, for example "TDevelop/Plugin" or
+ "TDevelop/SourceFormatter."
@param constraint A constraint for the service. Do not include plugin version number - it
is done automatically.
@return The list of plugin offers.*/
static KTrader::OfferList query(const TQString &serviceType, const TQString &constraint);
- /**Queries KDevelop plugins. Works like
- KDevPluginController::query with serviceType set to "KDevelop/Plugin".
+ /**Queries TDevelop plugins. Works like
+ KDevPluginController::query with serviceType set to "TDevelop/Plugin".
@param constraint A constraint for the service. Do not include plugin version number - it
is done automatically.
@return The list of plugin offers.*/