X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fuistyle.cpp;h=6ebc17fe34592d15974eea8184e8ab8f37dcfad8;hp=bd3f247bfdaa58aa50446e5500334e69f3118caf;hb=4113f929beb94cbef10e2e665b84af7b344ecc3f;hpb=edacd25bf9957dddf6c4151f694728443dc5463a diff --git a/src/uisupport/uistyle.cpp b/src/uisupport/uistyle.cpp index bd3f247b..6ebc17fe 100644 --- a/src/uisupport/uistyle.cpp +++ b/src/uisupport/uistyle.cpp @@ -416,7 +416,7 @@ UiStyle::FormatType UiStyle::StyledMessage::senderFormat() const { // To produce random like but stable nick colorings some sort of hashing should work best. // In this case we just use the qt function qChecksum which produces a // CRC16 hash. This should be fast and 16 bits are more than enough. - hash = qChecksum(_sender.toAscii().data(), _sender.toAscii().size()); + hash = qChecksum(sender().toAscii().data(), sender().toAscii().size()); return (UiStyle::FormatType)((((hash % 21) + 1) << 24) + 0x200); case Message::Notice: return UiStyle::NoticeMsg; break;