diff options
Diffstat (limited to 'kopete/plugins/texteffect/texteffectpreferences.cpp')
-rw-r--r-- | kopete/plugins/texteffect/texteffectpreferences.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/plugins/texteffect/texteffectpreferences.cpp b/kopete/plugins/texteffect/texteffectpreferences.cpp index e567f1a8..e2a05469 100644 --- a/kopete/plugins/texteffect/texteffectpreferences.cpp +++ b/kopete/plugins/texteffect/texteffectpreferences.cpp @@ -38,7 +38,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_kopete_texteffect, TextEffectPreferencesFactory( TextEffectPreferences::TextEffectPreferences(TQWidget *parent, const char* /*name*/, const TQStringList &args) - : KCModule(TextEffectPreferencesFactory::instance(), parent, args) + : TDECModule(TextEffectPreferencesFactory::instance(), parent, args) { ( new TQVBoxLayout( this ) )->setAutoAdd( true ); @@ -107,7 +107,7 @@ void TextEffectPreferences::load() // Call parent's save method - KCModule::load(); + TDECModule::load(); // Indicate that we have not changed ^_^ emit changed( false ); @@ -135,7 +135,7 @@ void TextEffectPreferences::save() //TextEffectPlugin::plugin()->slotSettingsChanged(); // Call parent's save method - KCModule::save(); + TDECModule::save(); // Indicate that we have not changed ^_^ emit changed( false ); |