From kde-bugs-dist Sat Nov 30 22:57:37 2002 From: Martijn Klingens Date: Sat, 30 Nov 2002 22:57:37 +0000 To: kde-bugs-dist Subject: [Bug 50343] MSN error 223 on connect X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=103869708531526 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=50343 klingens@kde.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From klingens@kde.org 2002-11-30 23:57 ------- Subject: kdenonbeta/kopete/protocols/msn CVS commit by mklingens: Allow unicode characters in the MSN contact list: QString MSNSocket::escape( const QString &str ) { - return ( KURL::encode_string(str) ); + return ( KURL::encode_string( str, 106 ) ); } QString MSNSocket::unescape( const QString &str ) { - return ( KURL::decode_string(str) ); + return ( KURL::decode_string( str, 106 ) ); } Patch by kdebugs@berteun.dds.nl, sent as comment to this bug report, but I forgot to apply this. CCMAIL: 50343-done@bugs.kde.org M +2 -2 msnsocket.cpp 1.42