diff options
author | Andrew A. de Laix <alain@lindenlab.com> | 2010-12-13 12:37:34 -0800 |
---|---|---|
committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-12-13 12:37:34 -0800 |
commit | 62b9513353900079602bf29c3b8863697a50e46f (patch) | |
tree | d2b8ed7a46911833ee12316186b6273baad9d5ee /indra/llcommon | |
parent | 0acb54eb77ad210b8cefa07ca42f9c911781f155 (diff) |
permit flush when disabled.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llevents.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llevents.cpp b/indra/llcommon/llevents.cpp index 723cbd68c7..97e2bdeb57 100644 --- a/indra/llcommon/llevents.cpp +++ b/indra/llcommon/llevents.cpp @@ -515,7 +515,7 @@ bool LLEventQueue::post(const LLSD& event) void LLEventQueue::flush() { - if(!mEnabled || !mSignal) return; + if(!mSignal) return; // Consider the case when a given listener on this LLEventQueue posts yet // another event on the same queue. If we loop over mEventQueue directly, |