X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fabstractbuffercontainer.h;h=51b9b9ad0cb11d6f04fe9be48dc909435e5a4068;hb=3456106b07bfc3000e50df9322ddefd4f872e0fb;hp=84ab28072dca72b689e76fe1fc7a914e47c8227e;hpb=541013790cdbd0c32d81debf8f42ac6b5183a4aa;p=quassel.git diff --git a/src/uisupport/abstractbuffercontainer.h b/src/uisupport/abstractbuffercontainer.h index 84ab2807..51b9b9ad 100644 --- a/src/uisupport/abstractbuffercontainer.h +++ b/src/uisupport/abstractbuffercontainer.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2012 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -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);