diff options
author | Oz Linden <oz@lindenlab.com> | 2013-03-21 10:57:38 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-03-21 10:57:38 -0400 |
commit | 50f199e45d0524b59fc9246a3160c5676c8d3942 (patch) | |
tree | e091467d64f4334459b5ca67239ed23d4059392a /indra/newview/lldelayedgestureerror.cpp | |
parent | bf95c1cae7a84d1a97dacd8ea7f1b6af8be067a9 (diff) | |
parent | 43d7c80e8e2cd1cfe4e6c4214b4a4df9341d310b (diff) |
merge changes for 3.5.0-beta4
Diffstat (limited to 'indra/newview/lldelayedgestureerror.cpp')
-rw-r--r-- | indra/newview/lldelayedgestureerror.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/newview/lldelayedgestureerror.cpp b/indra/newview/lldelayedgestureerror.cpp index 80e7c9f1b2..ef1b644ad4 100644 --- a/indra/newview/lldelayedgestureerror.cpp +++ b/indra/newview/lldelayedgestureerror.cpp @@ -113,9 +113,11 @@ bool LLDelayedGestureError::doDialog(const LLErrorEntry &ent, bool uuid_ok) } } - - LLNotificationsUtil::add(ent.mNotifyName, args); - + if(!LLApp::isQuitting()) + { + LLNotificationsUtil::add(ent.mNotifyName, args); + } + return true; } |