From 4113f929beb94cbef10e2e665b84af7b344ecc3f Mon Sep 17 00:00:00 2001 From: Daniel Albers Date: Wed, 14 Jan 2009 13:13:07 +0100 Subject: [PATCH] _sender became private, use sender() instead --- src/uisupport/uistyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1