From cc74f360bb40da3d79f58048f8e8611804980aa6 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:30:47 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kdepasswd/kcm/chfacedlg.cpp | 2 +- kdepasswd/kcm/main.cpp | 10 +++++----- kdepasswd/kcm/main.h | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'kdepasswd') diff --git a/kdepasswd/kcm/chfacedlg.cpp b/kdepasswd/kcm/chfacedlg.cpp index 8344164db..512b7e55f 100644 --- a/kdepasswd/kcm/chfacedlg.cpp +++ b/kdepasswd/kcm/chfacedlg.cpp @@ -45,7 +45,7 @@ #include #include "chfacedlg.h" -#include "settings.h" // KConfigXT +#include "settings.h" // TDEConfigXT diff --git a/kdepasswd/kcm/main.cpp b/kdepasswd/kcm/main.cpp index fc58dcea7..bc763243d 100644 --- a/kdepasswd/kcm/main.cpp +++ b/kdepasswd/kcm/main.cpp @@ -57,7 +57,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_useraccount, Factory("useraccount") ) KCMUserAccount::KCMUserAccount( TQWidget *parent, const char *name, const TQStringList &) - : KCModule( parent, name) + : TDECModule( parent, name) { TQVBoxLayout *topLayout = new TQVBoxLayout(this); _mw = new MainWidget(this); @@ -192,13 +192,13 @@ void KCMUserAccount::load() _mw->btnChangeFace->setPixmap( _facePixmap ); } - KCModule::load(); /* KConfigXT */ + TDECModule::load(); /* TDEConfigXT */ } void KCMUserAccount::save() { - KCModule::save(); /* KConfigXT */ + TDECModule::save(); /* TDEConfigXT */ /* Save KDE's homebrewn settings */ _kes->setSetting( KEMailSettings::RealName, _mw->leRealname->text() ); @@ -305,9 +305,9 @@ bool KCMUserAccount::eventFilter(TQObject *, TQEvent *e) if (url) { TQString pixPath; - KIO::NetAccess::download(*url, pixPath, this); + TDEIO::NetAccess::download(*url, pixPath, this); changeFace( TQPixmap( pixPath ) ); - KIO::NetAccess::removeTempFile(pixPath); + TDEIO::NetAccess::removeTempFile(pixPath); delete url; } return true; diff --git a/kdepasswd/kcm/main.h b/kdepasswd/kcm/main.h index 4ca6c77f9..a2b8b5ba9 100644 --- a/kdepasswd/kcm/main.h +++ b/kdepasswd/kcm/main.h @@ -34,7 +34,7 @@ class Config; /** * Please see the README */ -class KCMUserAccount : public KCModule +class KCMUserAccount : public TDECModule { Q_OBJECT -- cgit v1.2.3