summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-22 05:27:10 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-22 05:27:10 +0000
commit4721accb32717dd310ae2abbeca266360c7720d3 (patch)
tree293c18dfc60d31af4c888f6b45609323d071cc75 /kopete/protocols/groupwise
parent1e22120bb373a2cc274a8494b614577168241102 (diff)
downloadtdenetwork-4721accb32717dd310ae2abbeca266360c7720d3.tar.gz
tdenetwork-4721accb32717dd310ae2abbeca266360c7720d3.zip
Fix kdenetwork Qt3 FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237929 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/groupwise')
-rw-r--r--kopete/protocols/groupwise/libgroupwise/responseprotocol.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/responseprotocol.cpp b/kopete/protocols/groupwise/libgroupwise/responseprotocol.cpp
index 1145583a..652cd5f2 100644
--- a/kopete/protocols/groupwise/libgroupwise/responseprotocol.cpp
+++ b/kopete/protocols/groupwise/libgroupwise/responseprotocol.cpp
@@ -299,16 +299,16 @@ bool ResponseProtocol::readGroupWiseLine( TQCString & line )
while ( true )
{
TQ_UINT8 c;
-
+
if (! okToProceed() )
return false;
m_din >> c;
m_bytes++;
- line += TQChar(c).ascii();
+ line += TQChar(c).latin1();
if ( c == '\n' )
break;
}
- return true;
+ return true;
}
#include "responseprotocol.moc"