diff options
Diffstat (limited to 'lib/interfaces/kdevplugincontroller.h')
-rw-r--r-- | lib/interfaces/kdevplugincontroller.h | 18 |
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.*/ |