diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:35:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:35:07 -0600 |
commit | 703fb0c89c2eee56a1e613e67a446db9d4287929 (patch) | |
tree | dd8c5ca66075cd89c2638a2b48cf78386a9870a7 /kutils/kpluginselector.h | |
parent | 818e7abec3d5d3809b6b77293558678371c16b71 (diff) | |
download | tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.tar.gz tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kutils/kpluginselector.h')
-rw-r--r-- | kutils/kpluginselector.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kutils/kpluginselector.h b/kutils/kpluginselector.h index 87026154e..4316f4880 100644 --- a/kutils/kpluginselector.h +++ b/kutils/kpluginselector.h @@ -28,8 +28,8 @@ class TDEInstance; class KPluginInfo; class TQWidgetStack; -class KConfig; -class KConfigGroup; +class TDEConfig; +class TDEConfigGroup; /** * @ingroup main @@ -89,10 +89,10 @@ class KUTILS_EXPORT KPluginSelector : public TQWidget * with the Category key == @p category. If @p * category is not set the Category key is ignored * and all plugins are shown. - * @param config The KConfig object that holds the state of the + * @param config The TDEConfig object that holds the state of the * plugins being enabled or not. By default it should * be instance->config(). It is recommended to - * always pass a KConfig object if you use + * always pass a TDEConfig object if you use * KSettings::PluginPage since you never know from where the * page will be called (think global config app). * For example KViewCanvas passes KSimpleConfig( @@ -101,7 +101,7 @@ class KUTILS_EXPORT KPluginSelector : public TQWidget void addPlugins( const TQString & instanceName, const TQString & catname = TQString::null, const TQString & category = TQString::null, - KConfig * config = 0 ); + TDEConfig * config = 0 ); /** * Add a list of KParts plugins. Convenience method for the one above. @@ -110,7 +110,7 @@ class KUTILS_EXPORT KPluginSelector : public TQWidget void addPlugins( const TDEInstance * instance, const TQString & catname = TQString::null, const TQString & category = TQString::null, - KConfig * config = 0 ); + TDEConfig * config = 0 ); /** * Add a list of non-KParts plugins @@ -128,10 +128,10 @@ class KUTILS_EXPORT KPluginSelector : public TQWidget * with the Category key == @p category. If @p * category is not set the Category key is ignored * and all plugins are shown. - * @param config The KConfig object that holds the state of the + * @param config The TDEConfig object that holds the state of the * plugins being enabled or not. By default it will * use TDEGlobal::config(). It is recommended to - * always pass a KConfig object if you use + * always pass a TDEConfig object if you use * KSettings::PluginPage since you never know from where the * page will be called (think global config app). * For example KViewCanvas passes KSimpleConfig( @@ -140,7 +140,7 @@ class KUTILS_EXPORT KPluginSelector : public TQWidget void addPlugins( const TQValueList<KPluginInfo*> & plugininfos, const TQString & catname = TQString::null, const TQString & category = TQString::null, - KConfig * config = 0 ); + TDEConfig * config = 0 ); /** * Set whether the area for showing the KCMs of the plugins should be @@ -208,7 +208,7 @@ class KUTILS_EXPORT KPluginSelector : public TQWidget */ void addPluginsInternal( const TQValueList<KPluginInfo*> plugininfos, const TQString & catname, const TQString & category, - KConfigGroup* cfgGroup ); + TDEConfigGroup* cfgGroup ); class KPluginSelectorPrivate; KPluginSelectorPrivate * d; |