static QString toString (const QByteArray &ba)
{
int len = ba.count(); QString result;
for (int i=0; i
}
result.append( ba );
return result;
}
I went thru the docs of QString::append( const QByteArray & ) and it uses fromAscii …. This differs from the original…. ( and i think is correct in case unicode is in effect … )
— cheers atul
