summaryrefslogtreecommitdiffstats
path: root/kabc/agent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/agent.cpp')
-rw-r--r--kabc/agent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kabc/agent.cpp b/kabc/agent.cpp
index 571b7803e..d21fa2998 100644
--- a/kabc/agent.cpp
+++ b/kabc/agent.cpp
@@ -124,7 +124,7 @@ TQString Agent::asString() const
TQDataStream &KABC::operator<<( TQDataStream &s, const Agent &agent )
{
- TQ_UINT32 hasAddressee = ( agent.mAddressee != 0 );
+ Q_UINT32 hasAddressee = ( agent.mAddressee != 0 );
s << agent.mIntern << agent.mUrl << hasAddressee;
if ( hasAddressee )
@@ -135,7 +135,7 @@ TQDataStream &KABC::operator<<( TQDataStream &s, const Agent &agent )
TQDataStream &KABC::operator>>( TQDataStream &s, Agent &agent )
{
- TQ_UINT32 hasAddressee;
+ Q_UINT32 hasAddressee;
s >> agent.mIntern >> agent.mUrl >> hasAddressee;