X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fabstractbuffercontainer.h;h=474e10a489ac5c9daf4d0b445a389091d8c3b284;hp=cc77efda5181b0b66c64f2ce0cf2394dc3221707;hb=9da8a8a14a39bffe74403001978a13cc8b130138;hpb=e19eef8ec30a926e5a847a7570bb966bc86f602e diff --git a/src/uisupport/abstractbuffercontainer.h b/src/uisupport/abstractbuffercontainer.h index cc77efda..474e10a4 100644 --- a/src/uisupport/abstractbuffercontainer.h +++ b/src/uisupport/abstractbuffercontainer.h @@ -52,7 +52,10 @@ protected: */ virtual void removeChatView(BufferId) = 0; - virtual inline bool autoSetMarkerLine() const { return true; } + //! If true, the marker line will be set automatically on buffer switch + /** \return Whether the marker line should be set on buffer switch + */ + virtual inline bool autoMarkerLine() const { return true; } protected slots: virtual void currentChanged(const QModelIndex ¤t, const QModelIndex &previous);