diff options
Diffstat (limited to 'kontact/plugins/korganizer/kcmkorgsummary.cpp')
-rw-r--r-- | kontact/plugins/korganizer/kcmkorgsummary.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kontact/plugins/korganizer/kcmkorgsummary.cpp b/kontact/plugins/korganizer/kcmkorgsummary.cpp index 48b6d3c8c..203055d5a 100644 --- a/kontact/plugins/korganizer/kcmkorgsummary.cpp +++ b/kontact/plugins/korganizer/kcmkorgsummary.cpp @@ -41,14 +41,14 @@ extern "C" { - KDE_EXPORT KCModule *create_korgsummary( TQWidget *parent, const char * ) + KDE_EXPORT TDECModule *create_korgsummary( TQWidget *parent, const char * ) { return new KCMKOrgSummary( parent, "kcmkorgsummary" ); } } KCMKOrgSummary::KCMKOrgSummary( TQWidget *parent, const char *name ) - : KCModule( parent, name ) + : TDECModule( parent, name ) { initGUI(); @@ -135,7 +135,7 @@ void KCMKOrgSummary::initGUI() void KCMKOrgSummary::load() { - KConfig config( "kcmkorgsummaryrc" ); + TDEConfig config( "kcmkorgsummaryrc" ); config.setGroup( "Calendar" ); int days = config.readNumEntry( "DaysToShow", 1 ); @@ -166,7 +166,7 @@ void KCMKOrgSummary::load() void KCMKOrgSummary::save() { - KConfig config( "kcmkorgsummaryrc" ); + TDEConfig config( "kcmkorgsummaryrc" ); config.setGroup( "Calendar" ); |