From: Marcus Eggenberger Date: Mon, 22 Sep 2008 11:53:46 +0000 (+0200) Subject: making newer gccs happy X-Git-Tag: 0.3.1~261 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=98f12cf014e5ef0b2f3827fb0b1e48931618d33c making newer gccs happy --- diff --git a/src/qtui/chatitem.h b/src/qtui/chatitem.h index 31fdd5ee..1686a9e1 100644 --- a/src/qtui/chatitem.h +++ b/src/qtui/chatitem.h @@ -74,8 +74,8 @@ protected: virtual inline QVector additionalFormats() const { return QVector(); } qint16 posToCursor(const QPointF &pos); - inline void ChatItem::setPrivateData(ChatItemPrivate *data) { Q_ASSERT(!_data); _data = data; } - inline ChatItemPrivate *ChatItem::privateData() const; + inline void setPrivateData(ChatItemPrivate *data) { Q_ASSERT(!_data); _data = data; } + inline ChatItemPrivate *privateData() const; // WARNING: setGeometry and setHeight should not be used without either: // a) calling prepareGeometryChange() immediately before setColumns()