X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatline-old.cpp;h=0a0d0dbcf6546edeec34e6e769fff9cbed5beeab;hp=4146db97c1710e0c5da1946be6300998385b84c6;hb=dcd1ffa954d7b1a582dd45a1c4ca37bdacb92990;hpb=8699dd758516d0ded076811e8ea656adc95e69d0 diff --git a/src/qtui/chatline-old.cpp b/src/qtui/chatline-old.cpp index 4146db97..0a0d0dbc 100644 --- a/src/qtui/chatline-old.cpp +++ b/src/qtui/chatline-old.cpp @@ -21,11 +21,9 @@ #include "chatline-old.h" #include "qtui.h" -//!\brief Construct a ChatLine object from a message. +//! Construct a ChatLine object from a message. /** * \param m The message to be layouted and rendered - * \param net The network name - * \param buf The buffer name */ ChatLine::ChatLine(Message m) { hght = 0; @@ -135,8 +133,8 @@ void ChatLine::setSelection(SelectionMode mode, int start, int end) { } } -uint ChatLine::msgId() const { - return msg.buffer().uid(); +MsgId ChatLine::msgId() const { + return msg.msgId(); } BufferInfo ChatLine::bufferInfo() const { @@ -347,6 +345,7 @@ void ChatLine::draw(QPainter *p, const QPointF &pos) { } QPointF tpos = pos + QPointF(tsWidth + QtUi::style()->sepTsSender() + senderWidth + QtUi::style()->sepSenderText(), 0); qreal h = 0; int l = 0; + if(lineLayouts.count() == 0) return; // how can this happen? rect = QRectF(tpos + QPointF(0, h), QSizeF(textWidth, lineLayouts[l].height)); int offset = 0; foreach(FormatRange fr, textFormat) {