summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/smpppdcs/smpppdcspreferences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/plugins/smpppdcs/smpppdcspreferences.cpp')
-rw-r--r--kopete/plugins/smpppdcs/smpppdcspreferences.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/plugins/smpppdcs/smpppdcspreferences.cpp b/kopete/plugins/smpppdcs/smpppdcspreferences.cpp
index 671008bc..1815fe9e 100644
--- a/kopete/plugins/smpppdcs/smpppdcspreferences.cpp
+++ b/kopete/plugins/smpppdcs/smpppdcspreferences.cpp
@@ -36,7 +36,7 @@ typedef KGenericFactory<SMPPPDCSPreferences> SMPPPDCSPreferencesFactory;
K_EXPORT_COMPONENT_FACTORY(kcm_kopete_smpppdcs, SMPPPDCSPreferencesFactory("kcm_kopete_smpppdcs"))
SMPPPDCSPreferences::SMPPPDCSPreferences(TQWidget * parent, const char * /* name */, const TQStringList& args)
- : KCModule(SMPPPDCSPreferencesFactory::instance(), parent, args), m_ui(NULL) {
+ : TDECModule(SMPPPDCSPreferencesFactory::instance(), parent, args), m_ui(NULL) {
Kopete::AccountManager * manager = Kopete::AccountManager::self();
(new TQVBoxLayout(this))->setAutoAdd(true);
@@ -98,7 +98,7 @@ void SMPPPDCSPreferences::listClicked(TQListViewItem * item)
break;
}
}
- emit KCModule::changed(change);
+ emit TDECModule::changed(change);
}
m_accountMapCur[cli->text(0)].m_on = cli->isOn();
}
@@ -149,7 +149,7 @@ void SMPPPDCSPreferences::load()
m_ui->SMPPPDLocation->port->setValue(SMPPPDCSConfig::self()->port());
m_ui->SMPPPDLocation->Password->setText(SMPPPDCSConfig::self()->password());
- emit KCModule::changed(false);
+ emit TDECModule::changed(false);
}
void SMPPPDCSPreferences::save()
@@ -177,11 +177,11 @@ void SMPPPDCSPreferences::save()
SMPPPDCSConfig::self()->writeConfig();
- emit KCModule::changed(false);
+ emit TDECModule::changed(false);
}
void SMPPPDCSPreferences::slotModified() {
- emit KCModule::changed(true);
+ emit TDECModule::changed(true);
}
#include "smpppdcspreferences.moc"