diff options
Diffstat (limited to 'systemsettings/kcmultiwidget.h')
-rw-r--r-- | systemsettings/kcmultiwidget.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/systemsettings/kcmultiwidget.h b/systemsettings/kcmultiwidget.h index 61a144e..a64ce72 100644 --- a/systemsettings/kcmultiwidget.h +++ b/systemsettings/kcmultiwidget.h @@ -29,9 +29,9 @@ #include <klocale.h> #include <kservice.h> -class KCModuleProxy; -class KCModuleInfo; -class KCModule; +class TDECModuleProxy; +class TDECModuleInfo; +class TDECModule; /** * @short A method that offers a KDialogBase containing arbitrary @@ -86,7 +86,7 @@ public: /** * Add a module. * - * @param moduleinfo Pass a KCModuleInfo object which will be + * @param moduleinfo Pass a TDECModuleInfo object which will be * used for creating the module. It will be added * to the list of modules the dialog will show. * @@ -98,17 +98,17 @@ public: * @param withfallback Try harder to load the module. Might result * in the module appearing outside the dialog. **/ - void addModule(const KCModuleInfo& moduleinfo, TQStringList + void addModule(const TDECModuleInfo& moduleinfo, TQStringList parentmodulenames = TQStringList(), bool withfallback=false); /** * @return the current module that is being shown. */ - KCModuleProxy * currentModule(); + TDECModuleProxy * currentModule(); signals: /** - * Emitted after all KCModules have been told to save their configuration. + * Emitted after all TDECModules have been told to save their configuration. * * The applyClicked and okClicked signals are emitted before the * configuration is saved. @@ -116,7 +116,7 @@ signals: void configCommitted(); /** - * Emitted after the KCModules have been told to save their configuration. + * Emitted after the TDECModules have been told to save their configuration. * It is emitted once for every instance the KCMs that were changed belong * to. * @@ -139,7 +139,7 @@ signals: * @param moduleinfo The module that is about to be shown. * @sense 3.4 */ - void aboutToShow( KCModuleProxy *moduleProxy ); + void aboutToShow( TDECModuleProxy *moduleProxy ); void close(); @@ -226,14 +226,14 @@ private slots: private: - void applyOrRevert(KCModuleProxy * module); + void applyOrRevert(TDECModuleProxy * module); void init(); void apply(); struct CreatedModule { - KCModuleProxy * kcm; + TDECModuleProxy * kcm; KService::Ptr service; bool adminmode; int buttons; @@ -241,7 +241,7 @@ private: typedef TQValueList<CreatedModule> ModuleList; ModuleList m_modules; - typedef TQMap<KService::Ptr, KCModuleProxy*> OrphanMap; + typedef TQMap<KService::Ptr, TDECModuleProxy*> OrphanMap; OrphanMap m_orphanModules; TQPtrDict<TQStringList> moduleParentComponents; |