X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtopia%2Fchatline.cpp;h=52f313855548918ce871f5f584ac62e8555d93e8;hb=70706ff642683d03ff091cab25d984ec7d9612de;hp=531fe280d3ae892205f30d7a1f1f735946ace5aa;hpb=6250a7e25eb2c0a6794d4aa5679c70082d825031;p=quassel.git diff --git a/src/qtopia/chatline.cpp b/src/qtopia/chatline.cpp index 531fe280..52f31385 100644 --- a/src/qtopia/chatline.cpp +++ b/src/qtopia/chatline.cpp @@ -25,13 +25,13 @@ ChatLine::ChatLine(Message msg) { _text = msg.text(); // FIXME _sender = msg.sender(); - _timeStamp = msg.timeStamp(); + _timestamp = msg.timestamp(); _msgId = msg.msgId(); _bufferInfo = msg.buffer(); _htmlSender = formattedToHtml(msg.formattedSender()); _htmlText = formattedToHtml(msg.formattedText()); - _htmlTimeStamp = formattedToHtml(msg.formattedTimeStamp()); + _htmlTimestamp = formattedToHtml(msg.formattedTimestamp()); } QString ChatLine::sender() const { @@ -50,8 +50,8 @@ BufferInfo ChatLine::bufferInfo() const { return _bufferInfo; } -QDateTime ChatLine::timeStamp() const { - return _timeStamp; +QDateTime ChatLine::timestamp() const { + return _timestamp; } QString ChatLine::htmlSender() const { @@ -62,8 +62,8 @@ QString ChatLine::htmlText() const { return _htmlText; } -QString ChatLine::htmlTimeStamp() const { - return _htmlTimeStamp; +QString ChatLine::htmlTimestamp() const { + return _htmlTimestamp; }