X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=154ce92c13009fc098c4c3cfa3e0444e83101fe5;hp=75016636e6553053a144f53de52bd921e4650c38;hb=38880d99a159fd670915d910bcb2c4280b3efc51;hpb=63a5dd030855c90797fc92db00ec8adf538620f6 diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index 75016636..154ce92c 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -34,7 +34,7 @@ public: NetworkField = 0x01, BufferField = 0x02, SenderField = 0x04, - AllFields = 0xFF + AllFields = 0xff }; ChatMonitorFilter(MessageModel *model, QObject *parent = 0); @@ -52,17 +52,17 @@ public slots: void setShowOwnMessages(bool show); private slots: - void showFieldsSettingsChanged(const QVariant &newValue); + void showFieldsSettingChanged(const QVariant &newValue); void showOwnMessagesSettingChanged(const QVariant &newValue); - void highlightAlwaysSettingsChanged(const QVariant &newValue); - void operationModeSettingsChanged(const QVariant &newValue); - void buffersSettingsChanged(const QVariant &newValue); + void showHighlightsSettingChanged(const QVariant &newValue); + void operationModeSettingChanged(const QVariant &newValue); + void buffersSettingChanged(const QVariant &newValue); private: int _showFields; bool _showOwnMessages; QList _bufferIds; - bool _highlightAlways; + bool _showHighlights; int _operationMode; };