diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:14:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:14:14 -0600 |
commit | ae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d (patch) | |
tree | 20f26768274e8db3212123cf1991ec916f01d0cb /systemsettings/kcmodulemenu.h | |
parent | 46164d2bf7219e6db2daf81d76cf45301d97c10f (diff) | |
download | tde-systemsettings-ae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d.tar.gz tde-systemsettings-ae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'systemsettings/kcmodulemenu.h')
-rw-r--r-- | systemsettings/kcmodulemenu.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/systemsettings/kcmodulemenu.h b/systemsettings/kcmodulemenu.h index d6b61c0..7350b19 100644 --- a/systemsettings/kcmodulemenu.h +++ b/systemsettings/kcmodulemenu.h @@ -22,7 +22,7 @@ #include <kcmoduleinfo.h> -class KCModuleMenuPrivate; +class TDECModuleMenuPrivate; /** * List of all KCM modules inside a FreeDesktop.org menu @@ -79,11 +79,11 @@ public: bool menu; TQString subMenu; TQString caption; - KCModuleInfo item; + TDECModuleInfo item; }; -class KCModuleMenu : public TQValueList<KCModuleInfo> +class TDECModuleMenu : public TQValueList<TDECModuleInfo> { public: @@ -98,12 +98,12 @@ public: * X-TDE-BaseGroup=examplemenu * so menuName should be "systemsettings" */ - KCModuleMenu( const TQString &menuName ); + TDECModuleMenu( const TQString &menuName ); /** * Deconstructor */ - virtual ~KCModuleMenu(); + virtual ~TDECModuleMenu(); /** * Returns item of a menu path. An empty string is the top level. @@ -118,7 +118,7 @@ public: * @param menu to return modules from. * @returns only the top level modules of menuPath */ - TQValueList<KCModuleInfo> modules( const TQString &menuPath=TQString() ); + TQValueList<TDECModuleInfo> modules( const TQString &menuPath=TQString() ); /** * Returns the sub menus of a menu path. An empty string is the top level. @@ -150,7 +150,7 @@ protected: virtual bool addEntry( KSycocaEntry *entry ); private: - KCModuleMenuPrivate *d; + TDECModuleMenuPrivate *d; TQString deriveCaptionFromPath( const TQString &menuPath ); }; |