diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kcontrol/componentchooser/componentchooser.h | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kcontrol/componentchooser/componentchooser.h')
-rw-r--r-- | kcontrol/componentchooser/componentchooser.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kcontrol/componentchooser/componentchooser.h b/kcontrol/componentchooser/componentchooser.h index af5d688ab..0407989cf 100644 --- a/kcontrol/componentchooser/componentchooser.h +++ b/kcontrol/componentchooser/componentchooser.h @@ -28,7 +28,7 @@ class TQListBoxItem; class KEMailSettings; -class KConfig; +class TDEConfig; /* The CfgPlugin class is an exception. It is LGPL. It will be parted of the plugin interface which I plan for KDE 3.2. @@ -38,8 +38,8 @@ class CfgPlugin public: CfgPlugin(){}; virtual ~CfgPlugin(){}; - virtual void load(KConfig *cfg)=0; - virtual void save(KConfig *cfg)=0; + virtual void load(TDEConfig *cfg)=0; + virtual void save(TDEConfig *cfg)=0; virtual void defaults()=0; }; @@ -50,8 +50,8 @@ Q_OBJECT public: CfgComponent(TQWidget *parent); virtual ~CfgComponent(); - virtual void load(KConfig *cfg); - virtual void save(KConfig *cfg); + virtual void load(TDEConfig *cfg); + virtual void save(TDEConfig *cfg); virtual void defaults(); protected: @@ -70,8 +70,8 @@ Q_OBJECT public: CfgEmailClient(TQWidget *parent); virtual ~CfgEmailClient(); - virtual void load(KConfig *cfg); - virtual void save(KConfig *cfg); + virtual void load(TDEConfig *cfg); + virtual void save(TDEConfig *cfg); virtual void defaults(); private: @@ -90,8 +90,8 @@ Q_OBJECT public: CfgTerminalEmulator(TQWidget *parent); virtual ~CfgTerminalEmulator(); - virtual void load(KConfig *cfg); - virtual void save(KConfig *cfg); + virtual void load(TDEConfig *cfg); + virtual void save(TDEConfig *cfg); virtual void defaults(); protected slots: @@ -108,8 +108,8 @@ Q_OBJECT public: CfgBrowser(TQWidget *parent); virtual ~CfgBrowser(); - virtual void load(KConfig *cfg); - virtual void save(KConfig *cfg); + virtual void load(TDEConfig *cfg); + virtual void save(TDEConfig *cfg); virtual void defaults(); protected slots: |