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 | |
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')
-rw-r--r-- | kopete/plugins/smpppdcs/Changelog.smpppdcs | 4 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/kopete_smpppdcs_config.desktop | 2 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/smpppdcspreferences.cpp | 10 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/smpppdcspreferences.h | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/kopete/plugins/smpppdcs/Changelog.smpppdcs b/kopete/plugins/smpppdcs/Changelog.smpppdcs index 80854a86..74942692 100644 --- a/kopete/plugins/smpppdcs/Changelog.smpppdcs +++ b/kopete/plugins/smpppdcs/Changelog.smpppdcs @@ -16,7 +16,7 @@ Changelog ========= 0.79 (2006/01/25) -* using KConfigXT for configuration +* using TDEConfigXT for configuration * using dcopidl2cpp stub generated from kinternetiface.h (from kinternet package), no more own implementation * experimental implementation of the the KDED-NetworkStatus (not active, yet) @@ -27,7 +27,7 @@ Changelog * even more speed improvements 0.75 (2006/01/01) -* use of KSocketStream instead of deprecated KExtendedSocket +* use of TDESocketStream instead of deprecated KExtendedSocket * progressbar while searching for an smpppd on the local network * automatically found smpppd server is resolved via DNS * Fixed Bug 111369: better detection of a SMPPPD and no more freeze of Kopete diff --git a/kopete/plugins/smpppdcs/kopete_smpppdcs_config.desktop b/kopete/plugins/smpppdcs/kopete_smpppdcs_config.desktop index e7241fe7..c8b33de5 100644 --- a/kopete/plugins/smpppdcs/kopete_smpppdcs_config.desktop +++ b/kopete/plugins/smpppdcs/kopete_smpppdcs_config.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Icon=smpppdcs Type=Service -ServiceTypes=KCModule +ServiceTypes=TDECModule X-TDE-ModuleType=Library X-TDE-Library=kopete_smpppdcs 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" diff --git a/kopete/plugins/smpppdcs/smpppdcspreferences.h b/kopete/plugins/smpppdcs/smpppdcspreferences.h index f9ccf914..19368313 100644 --- a/kopete/plugins/smpppdcs/smpppdcspreferences.h +++ b/kopete/plugins/smpppdcs/smpppdcspreferences.h @@ -36,7 +36,7 @@ public: * * @author Heiko Schäfer <[email protected]> */ -class SMPPPDCSPreferences : public KCModule { +class SMPPPDCSPreferences : public TDECModule { Q_OBJECT |