X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientbufferviewconfig.h;h=9227c66c7dc74105c7fc8660a121ba7d13cf9160;hp=5f6c0ed46eb2b85ffa339df6dff2115bc1887168;hb=16f22647e6890d3eb8c3e94f7a0700e12fa29e44;hpb=f6b9eeda207d42c99fc3e9085631722cf2ec83dc diff --git a/src/client/clientbufferviewconfig.h b/src/client/clientbufferviewconfig.h index 5f6c0ed4..9227c66c 100644 --- a/src/client/clientbufferviewconfig.h +++ b/src/client/clientbufferviewconfig.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef CLIENTBUFFERVIEWCONFIG_H @@ -23,23 +23,25 @@ #include "bufferviewconfig.h" -class ClientBufferViewConfig : public BufferViewConfig { - SYNCABLE_OBJECT - Q_OBJECT +class ClientBufferViewConfig : public BufferViewConfig +{ + SYNCABLE_OBJECT + Q_OBJECT public: - ClientBufferViewConfig(int bufferViewId, QObject *parent = 0); + ClientBufferViewConfig(int bufferViewId, QObject *parent = 0); - inline bool isLocked() { return _locked || sortAlphabetically(); } - inline void setLocked(bool locked) { _locked = locked; } - inline void lock() { setLocked(true); }; - inline void unlock() { setLocked(false); }; + inline bool isLocked() { return _locked || sortAlphabetically(); } + inline void setLocked(bool locked) { _locked = locked; } + inline void lock() { setLocked(true); }; + inline void unlock() { setLocked(false); }; private slots: - void ensureDecoration(); // remove this in next release + void ensureDecoration(); // remove this in next release private: - bool _locked; + bool _locked; }; + #endif //CLIENTBUFFERVIEWCONFIG_H