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