From 9e45e9553291b4cb89145f9cdf5ce8c32db0ad57 Mon Sep 17 00:00:00 2001
From: Daniel Albers <daniel@lbers.com>
Date: Wed, 14 Jan 2009 13:13:07 +0100
Subject: [PATCH] _sender became private, use sender() instead

---
 src/uisupport/uistyle.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/uisupport/uistyle.cpp b/src/uisupport/uistyle.cpp
index 6e1e52e..4611fef 100644
--- a/src/uisupport/uistyle.cpp
+++ b/src/uisupport/uistyle.cpp
@@ -443,7 +443,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;
-- 
1.5.6.3

