summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/ksgrd/SensorSocketAgent.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ksysguard/gui/ksgrd/SensorSocketAgent.cc')
-rw-r--r--ksysguard/gui/ksgrd/SensorSocketAgent.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksysguard/gui/ksgrd/SensorSocketAgent.cc b/ksysguard/gui/ksgrd/SensorSocketAgent.cc
index 0fee27c95..6289e4405 100644
--- a/ksysguard/gui/ksgrd/SensorSocketAgent.cc
+++ b/ksysguard/gui/ksgrd/SensorSocketAgent.cc
@@ -100,19 +100,19 @@ void SensorSocketAgent::connectionClosed()
void SensorSocketAgent::error( int id )
{
switch ( id ) {
- case KNetwork::KSocketBase::ConnectionRefused:
+ case KNetwork::TDESocketBase::ConnectionRefused:
SensorMgr->notify( i18n( "Connection to %1 refused" )
.arg( hostName() ) );
break;
- case KNetwork::KSocketBase::LookupFailure:
+ case KNetwork::TDESocketBase::LookupFailure:
SensorMgr->notify( i18n( "Host %1 not found" )
.arg( hostName() ) );
break;
- case KNetwork::KSocketBase::Timeout:
+ case KNetwork::TDESocketBase::Timeout:
SensorMgr->notify( i18n( "Timeout at host %1")
.arg( hostName() ) );
break;
- case KNetwork::KSocketBase::NetFailure:
+ case KNetwork::TDESocketBase::NetFailure:
SensorMgr->notify( i18n( "Network failure host %1")
.arg( hostName() ) );
break;