-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 extends the QStyleSheet::convertFromPlainText hack so multible spaces and tabs are show in history. i tried for the htab "	" but dont work. -----BEGIN PGP SIGNATURE-----
iD8DBQE9JjyDUMlRieHkprgRAvmEAJ9TSxZwvsBQMyACFMgg03Knz6a9oACeJxRe Ky/O9W8WEZkD/Klxsd56ZKk= =Uh30 -----END PGP SIGNATURE-----
Index: plugins/qt-gui/src/userinfodlg.cpp =================================================================== RCS file: /cvsroot/licq/qt-gui/src/userinfodlg.cpp,v retrieving revision 1.42 diff -u -1 -b -p -r1.42 userinfodlg.cpp --- plugins/qt-gui/src/userinfodlg.cpp 3 Jul 2002 23:27:52 -0000 1.42 +++ plugins/qt-gui/src/userinfodlg.cpp 6 Jul 2002 00:38:31 -0000 @@ -1117,2 +1117,4 @@ void UserInfoDlg::ShowHistory() messageText.replace(QRegExp("\n"), "<br>"); + messageText.replace(QRegExp(" "), " "); + messageText.replace(QRegExp("\t"), " ");