diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:36:20 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:36:20 -0600 |
commit | f21aaec952493cb5688c73de6e82a569ddbd7fb2 (patch) | |
tree | 78ccb5117063da3e08e3277e11054b912a9f2ae7 /kopete/plugins/smpppdcs/smpppdcspreferences.cpp | |
parent | c48e769eb275917717e2b55eb869f7e559293ac8 (diff) | |
download | tdenetwork-f21aaec952493cb5688c73de6e82a569ddbd7fb2.tar.gz tdenetwork-f21aaec952493cb5688c73de6e82a569ddbd7fb2.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kopete/plugins/smpppdcs/smpppdcspreferences.cpp')
-rw-r--r-- | kopete/plugins/smpppdcs/smpppdcspreferences.cpp | 10 |
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" |