X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.h;fp=src%2Fqtui%2Fchatview.h;h=c2aa6040aae4e822fb7b18f4b93cadb62ca2ee80;hp=0265567542d44ea2a4f4c1e996a3c2f99ef3ed74;hb=6e73ba4a19fd92038e1ea749125767661fb34e27;hpb=7ce58ac01ce9f67c13bce15ff0db7b15872a7657 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; };