summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/networkstatuscommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/networkstatuscommon.cpp')
-rw-r--r--kopete/libkopete/networkstatuscommon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/libkopete/networkstatuscommon.cpp b/kopete/libkopete/networkstatuscommon.cpp
index acf53f96..ef6d488e 100644
--- a/kopete/libkopete/networkstatuscommon.cpp
+++ b/kopete/libkopete/networkstatuscommon.cpp
@@ -8,7 +8,7 @@ TQDataStream & operator<< ( TQDataStream & s, const NetworktqStatus::Properties
s << (int)p.onDemandPolicy;
s << p.service;
s << ( p.internet ? 1 : 0 );
- s << p.nettqmasks;
+ s << p.netmasks;
return s;
}
@@ -26,7 +26,7 @@ TQDataStream & operator>> ( TQDataStream & s, NetworktqStatus::Properties &p )
p.internet = true;
else
p.internet = false;
- s >> p.nettqmasks;
+ s >> p.netmasks;
kdDebug() << k_funcinfo << "enum converted status is: " << p.status << endl;
return s;
}