X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtopia%2Fchatline.cpp;h=0a709c03f055d1a26cbbcfb5599f9d382bfbd9a7;hb=0f206dd896485276cf25025e562c812b8c7fc5da;hp=d0fbf6e05b9d6448263ed8d2c9abc843637e3122;hpb=fbc4df88ae0bb5e4d9394922395ce2ba29d9108e;p=quassel.git diff --git a/src/qtopia/chatline.cpp b/src/qtopia/chatline.cpp index d0fbf6e0..0a709c03 100644 --- a/src/qtopia/chatline.cpp +++ b/src/qtopia/chatline.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development 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 * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -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; }