X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fchatline.cpp;h=0a709c03f055d1a26cbbcfb5599f9d382bfbd9a7;hp=68d0cdaaace134f9bd25b3e2d677ea29f3c33d44;hb=fc81975a545211f3ccd3d25e266477adad2c9445;hpb=d6b056e936ec441258d291b7a8af7b83f9f53016 diff --git a/src/qtopia/chatline.cpp b/src/qtopia/chatline.cpp index 68d0cdaa..0a709c03 100644 --- a/src/qtopia/chatline.cpp +++ b/src/qtopia/chatline.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -26,10 +26,10 @@ ChatLine::ChatLine(Message msg) { _styledSender = QtopiaUi::style()->styleString(msg.formattedSender()); - _styledText = QtopiaUi::style()->styleString(msg.formattedText()); + _styledContents = QtopiaUi::style()->styleString(msg.formattedText()); _timestamp = msg.timestamp(); _msgId = msg.msgId(); - _bufferInfo = msg.buffer(); + _bufferInfo = msg.bufferInfo(); } @@ -58,8 +58,8 @@ UiStyle::StyledText ChatLine::styledSender() const { return _styledSender; } -UiStyle::StyledText ChatLine::styledText() const { - return _styledText; +UiStyle::StyledText ChatLine::styledContents() const { + return _styledContents; }