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/performance/kcmperformance.cpp | |
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/performance/kcmperformance.cpp')
-rw-r--r-- | kcontrol/performance/kcmperformance.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kcontrol/performance/kcmperformance.cpp b/kcontrol/performance/kcmperformance.cpp index 11ea51438..3795cc39a 100644 --- a/kcontrol/performance/kcmperformance.cpp +++ b/kcontrol/performance/kcmperformance.cpp @@ -28,12 +28,12 @@ extern "C" { - KDE_EXPORT KCModule* create_performance( TQWidget* parent_P, const char* name_P ) + KDE_EXPORT TDECModule* create_performance( TQWidget* parent_P, const char* name_P ) { return new KCMPerformance::Config( parent_P, name_P ); } - KDE_EXPORT KCModule* create_konqueror( TQWidget* parent_P, const char* name_P ) + KDE_EXPORT TDECModule* create_konqueror( TQWidget* parent_P, const char* name_P ) { return new KCMPerformance::KonquerorConfig( parent_P, name_P ); } @@ -43,7 +43,7 @@ namespace KCMPerformance { Config::Config( TQWidget* parent_P, const char* ) - : KCModule( parent_P, "kcmperformance" ) + : TDECModule( parent_P, "kcmperformance" ) { setQuickHelp( i18n( "<h1>TDE Performance</h1>" " You can configure settings that improve TDE performance here." )); @@ -86,7 +86,7 @@ void Config::defaults() } KonquerorConfig::KonquerorConfig( TQWidget* parent_P, const char* ) - : KCModule( parent_P, "kcmperformance" ) + : TDECModule( parent_P, "kcmperformance" ) { setQuickHelp( i18n( "<h1>Konqueror Performance</h1>" " You can configure several settings that improve Konqueror performance here." |