diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-10-30 09:42:04 -0700 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-10-30 09:42:04 -0700 |
commit | 6324cf82f290e88c3db677e1ced706560d5ca00b (patch) | |
tree | bb6a8ba8b71a8ee15ab4423b157d18f11ae5b3c5 /indra/newview/llchiclet.h | |
parent | 478f3d075b778740abe12f92c00ad6527545ee6c (diff) | |
parent | b2526cde2393ca7d84284b254fb4f37b9e8abb5b (diff) |
Merge hg.aws.productengine.com/secondlife/viewer-2-0/ revs 3836-3849
Diffstat (limited to 'indra/newview/llchiclet.h')
-rw-r--r-- | indra/newview/llchiclet.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/newview/llchiclet.h b/indra/newview/llchiclet.h index d1153a075d..6eefd9829f 100644 --- a/indra/newview/llchiclet.h +++ b/indra/newview/llchiclet.h @@ -608,10 +608,9 @@ public: /*virtual*/ ~ LLNotificationChiclet(); - // methods for updating a number of unread System or IM notifications - void incUreadSystemNotifications() { setCounter(++mUreadSystemNotifications + mUreadIMNotifications); } - void decUreadSystemNotifications() { setCounter(--mUreadSystemNotifications + mUreadIMNotifications); } - void updateUreadIMNotifications(); + // methods for updating a number of unread System notifications + void incUreadSystemNotifications() { setCounter(++mUreadSystemNotifications); } + void decUreadSystemNotifications() { setCounter(--mUreadSystemNotifications); } void setToggleState(BOOL toggled); protected: @@ -622,7 +621,6 @@ protected: friend class LLUICtrlFactory; static S32 mUreadSystemNotifications; - static S32 mUreadIMNotifications; protected: LLButton* mButton; |