summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-02-03 17:54:59 +0000
committerTofu Linden <tofu.linden@lindenlab.com>2010-02-03 17:54:59 +0000
commit18af41157d64962fff10b0697c632a5d2a38539e (patch)
tree994a0d245d4d80c2325c240ae309657e59e55ebf /indra
parent11f732bbbe910c2a63efaeb9044d206142d69e2f (diff)
CID-342 UNINIT_CTOR
--HG-- branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/llnotifications.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h
index d55e0f4043..8d993b71d7 100644
--- a/indra/llui/llnotifications.h
+++ b/indra/llui/llnotifications.h
@@ -371,7 +371,7 @@ private:
// this is just for making it easy to look things up in a set organized by UUID -- DON'T USE IT
// for anything real!
- LLNotification(LLUUID uuid) : mId(uuid), mCancelled(false), mRespondedTo(false), mIgnored(false), mTemporaryResponder(false) {}
+ LLNotification(LLUUID uuid) : mId(uuid), mCancelled(false), mRespondedTo(false), mIgnored(false), mPriority(NOTIFICATION_PRIORITY_UNSPECIFIED), mTemporaryResponder(false) {}
void cancel();