X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatview.h;h=c2aa6040aae4e822fb7b18f4b93cadb62ca2ee80;hb=894e2dd800e90ab52618fa620b1c995545506574;hp=0265567542d44ea2a4f4c1e996a3c2f99ef3ed74;hpb=77176474b628e801ba94d9d50d0d961a12aa01c4;p=quassel.git diff --git a/src/qtui/chatview.h b/src/qtui/chatview.h index 02655675..c2aa6040 100644 --- a/src/qtui/chatview.h +++ b/src/qtui/chatview.h @@ -69,9 +69,6 @@ public: virtual void addActionsToMenu(QMenu *, const QPointF &pos); - inline bool isMarkerLineVisible() const { return _markerLineVisible; } - inline ChatLine *markedLine() const { return _markedLine; } - //! Tell the view that this ChatLine has cached data /** ChatLines cache some layout data that should be cleared as soon as it's no * longer visible. A ChatLine caching data registers itself with this method to @@ -88,7 +85,7 @@ public slots: void zoomOriginal(); void setMarkerLineVisible(bool visible = true); - void setMarkedLine(ChatLine *line); + void setMarkerLine(MsgId msgId); protected: virtual bool event(QEvent *event); @@ -117,8 +114,6 @@ private: QTimer _scrollTimer; int _scrollOffset; bool _invalidateFilter; - bool _markerLineVisible; - ChatLine *_markedLine; QSet _linesWithCache; };