diff options
Diffstat (limited to 'kopete/plugins/history/historypreferences.cpp')
-rw-r--r-- | kopete/plugins/history/historypreferences.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/plugins/history/historypreferences.cpp b/kopete/plugins/history/historypreferences.cpp index 370e6721..b1bca2f6 100644 --- a/kopete/plugins/history/historypreferences.cpp +++ b/kopete/plugins/history/historypreferences.cpp @@ -30,7 +30,7 @@ typedef KGenericFactory<HistoryPreferences> HistoryConfigFactory; K_EXPORT_COMPONENT_FACTORY( kcm_kopete_history, HistoryConfigFactory( "kcm_kopete_history" ) ) HistoryPreferences::HistoryPreferences(TQWidget *parent, const char*/*name*/, const TQStringList &args) - : KCModule(HistoryConfigFactory::instance(), parent, args) + : TDECModule(HistoryConfigFactory::instance(), parent, args) { kdDebug(14310) << k_funcinfo << "called." << endl; (new TQVBoxLayout(this))->setAutoAdd(true); @@ -61,7 +61,7 @@ void HistoryPreferences::load() p->Number_ChatWindow->setValue(HistoryConfig::number_ChatWindow()); p->History_color->setColor(HistoryConfig::history_color()); //p-> HistoryConfig::browserStyle(); - emit KCModule::changed(false); + emit TDECModule::changed(false); } void HistoryPreferences::save() @@ -72,17 +72,17 @@ void HistoryPreferences::save() HistoryConfig::setNumber_ChatWindow(p->Number_ChatWindow->value()); HistoryConfig::setHistory_color(p->History_color->color()); HistoryConfig::self()->writeConfig(); - emit KCModule::changed(false); + emit TDECModule::changed(false); } void HistoryPreferences::slotModified() { - emit KCModule::changed(true); + emit TDECModule::changed(true); } void HistoryPreferences::slotShowPreviousChanged(bool on) { - emit KCModule::changed(true); + emit TDECModule::changed(true); } #include "historypreferences.moc" |