diff options
Diffstat (limited to 'kopete/plugins/smpppdcs')
-rw-r--r-- | kopete/plugins/smpppdcs/detectordcop.cpp | 4 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/detectornetstat.cpp | 2 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/detectorsmpppd.cpp | 2 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp | 6 | ||||
-rw-r--r-- | kopete/plugins/smpppdcs/smpppdsearcher.cpp | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/kopete/plugins/smpppdcs/detectordcop.cpp b/kopete/plugins/smpppdcs/detectordcop.cpp index 931d5e3a..f3e84c96 100644 --- a/kopete/plugins/smpppdcs/detectordcop.cpp +++ b/kopete/plugins/smpppdcs/detectordcop.cpp @@ -34,7 +34,7 @@ DetectorDCOP::~DetectorDCOP() {} \fn DetectorDCOP::getKInternetDCOP() */ TQCString DetectorDCOP::getKInternetDCOP() const { - DCOPClient * client = kapp->dcopClient(); + DCOPClient * client = tdeApp->dcopClient(); if(m_kinternetApp.isEmpty() && client && client->isAttached()) { // get all registered dcop apps and search for kinternet QCStringList apps = client->registeredApplications(); @@ -56,7 +56,7 @@ DetectorDCOP::KInternetDCOPState DetectorDCOP::getConnectionStatusDCOP() const { kdDebug(14312) << k_funcinfo << "Start inquiring " << m_kinternetApp << " via DCOP" << endl; - KInternetIface_stub stub = KInternetIface_stub(kapp->dcopClient(), m_kinternetApp, "KInternetIface"); + KInternetIface_stub stub = KInternetIface_stub(tdeApp->dcopClient(), m_kinternetApp, "KInternetIface"); bool status = stub.isOnline(); diff --git a/kopete/plugins/smpppdcs/detectornetstat.cpp b/kopete/plugins/smpppdcs/detectornetstat.cpp index 9d6d8159..54ab8450 100644 --- a/kopete/plugins/smpppdcs/detectornetstat.cpp +++ b/kopete/plugins/smpppdcs/detectornetstat.cpp @@ -15,7 +15,7 @@ */ #include <kdebug.h> -#include <kprocess.h> +#include <tdeprocess.h> #include "iconnector.h" #include "detectornetstat.h" diff --git a/kopete/plugins/smpppdcs/detectorsmpppd.cpp b/kopete/plugins/smpppdcs/detectorsmpppd.cpp index 009780c8..8e24a08c 100644 --- a/kopete/plugins/smpppdcs/detectorsmpppd.cpp +++ b/kopete/plugins/smpppdcs/detectorsmpppd.cpp @@ -38,7 +38,7 @@ void DetectorSMPPPD::checkStatus() const { #ifndef NOKINTERNETDCOP m_kinternetApp = getKInternetDCOP(); - if(kapp->dcopClient() && m_kinternetApp != "") { + if(tdeApp->dcopClient() && m_kinternetApp != "") { switch(getConnectionStatusDCOP()) { case CONNECTED: m_connector->setConnectedStatus(true); diff --git a/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp b/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp index ca4462e8..99c4fc63 100644 --- a/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp +++ b/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp @@ -20,7 +20,7 @@ #include <tqradiobutton.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include <tdeapplication.h> #include <kpushbutton.h> #include <kresolver.h> @@ -72,7 +72,7 @@ void SMPPPDCSPrefs::determineCSType() { // while we search, we'll disable the button autoCSTest->setEnabled(false); - //kapp->processEvents(); + //tdeApp->processEvents(); /* broadcast network for a smpppd. If one is available set to smpppd method */ @@ -109,7 +109,7 @@ void SMPPPDCSPrefs::scanStarted(uint total) { void SMPPPDCSPrefs::scanProgress(uint cur) { m_scanProgressDlg->progressBar()->setProgress(cur); - kapp->processEvents(); + tdeApp->processEvents(); } void SMPPPDCSPrefs::cancelScanning() { diff --git a/kopete/plugins/smpppdcs/smpppdsearcher.cpp b/kopete/plugins/smpppdcs/smpppdsearcher.cpp index d121292b..193a6f21 100644 --- a/kopete/plugins/smpppdcs/smpppdsearcher.cpp +++ b/kopete/plugins/smpppdcs/smpppdsearcher.cpp @@ -17,7 +17,7 @@ #include <tqregexp.h> #include <tqfile.h> -#include <kprocess.h> +#include <tdeprocess.h> #include <kdebug.h> #include "smpppdclient.h" |