diff options
author | Kent Quirk <q@lindenlab.com> | 2010-03-19 12:05:15 -0400 |
---|---|---|
committer | Kent Quirk <q@lindenlab.com> | 2010-03-19 12:05:15 -0400 |
commit | 1e50e4a13a37a236470e088c32c40ff62d46d497 (patch) | |
tree | 08c0d4ee106f40e8f2d11ab89df83bae7a6704f4 /indra/llui/llnotifications.h | |
parent | 637105e5cf346e5a88fe5820f36f6233b404d5aa (diff) | |
parent | 7d50a19d6cb46b60ba005280223522672736592d (diff) |
Merge
Diffstat (limited to 'indra/llui/llnotifications.h')
-rw-r--r-- | indra/llui/llnotifications.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h index a516a6723e..400491a154 100644 --- a/indra/llui/llnotifications.h +++ b/indra/llui/llnotifications.h @@ -349,6 +349,7 @@ private: ENotificationPriority mPriority; LLNotificationFormPtr mForm; void* mResponderObj; + bool mIsReusable; // a reference to the template LLNotificationTemplatePtr mTemplatep; @@ -517,6 +518,10 @@ public: { return mId; } + + bool isReusable() { return mIsReusable; } + + void setReusable(bool reusable) { mIsReusable = reusable; } // comparing two notifications normally means comparing them by UUID (so we can look them // up quickly this way) |