diff options
Diffstat (limited to 'linden/indra/newview/llgroupnotify.cpp')
-rw-r--r-- | linden/indra/newview/llgroupnotify.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/llgroupnotify.cpp b/linden/indra/newview/llgroupnotify.cpp index 5d839f2..d6e5785 100644 --- a/linden/indra/newview/llgroupnotify.cpp +++ b/linden/indra/newview/llgroupnotify.cpp | |||
@@ -80,7 +80,7 @@ LLGroupNotifyBox* LLGroupNotifyBox::show(const char* subject, | |||
80 | LLGroupData group_data; | 80 | LLGroupData group_data; |
81 | if (!gAgent.getGroupData(group_id,group_data)) | 81 | if (!gAgent.getGroupData(group_id,group_data)) |
82 | { | 82 | { |
83 | llwarns << "Group notice for unkown group : " << group_id.getString() << llendl; | 83 | llwarns << "Group notice for unkown group: " << group_id << llendl; |
84 | return NULL; | 84 | return NULL; |
85 | } | 85 | } |
86 | 86 | ||
@@ -129,7 +129,7 @@ LLGroupNotifyBox::LLGroupNotifyBox(const char* subject, | |||
129 | 129 | ||
130 | time_t timestamp = (time_t)t; | 130 | time_t timestamp = (time_t)t; |
131 | 131 | ||
132 | char time_buf[30]; | 132 | char time_buf[30]; /*Flawfinder: ignore*/ |
133 | g_formatted_time(timestamp, time_buf); | 133 | g_formatted_time(timestamp, time_buf); |
134 | 134 | ||
135 | setFollows(FOLLOWS_TOP|FOLLOWS_RIGHT); | 135 | setFollows(FOLLOWS_TOP|FOLLOWS_RIGHT); |
@@ -401,7 +401,8 @@ void LLGroupNotifyBox::close() | |||
401 | inventory_offer_callback( 1 , mInventoryOffer); | 401 | inventory_offer_callback( 1 , mInventoryOffer); |
402 | } | 402 | } |
403 | gNotifyBoxView->removeChild(this); | 403 | gNotifyBoxView->removeChild(this); |
404 | delete this; | 404 | |
405 | die(); | ||
405 | } | 406 | } |
406 | 407 | ||
407 | 408 | ||