diff options
author | Rider Linden <rider@lindenlab.com> | 2016-04-20 10:21:35 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2016-04-20 10:21:35 -0700 |
commit | d96004e4af162a6338029db8ea2bbc914c072c19 (patch) | |
tree | 6fd99df9b2bd28ef3c3dc58ddef842095a34dc4b /indra | |
parent | 16e06b4b50af3f4f4e3c91f8db1e4f59a44d8422 (diff) |
MAINT-6336: Crasher showing up in voice was a Bound Listener that should have been a Temp Bound listener.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llcommon/lleventfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lleventfilter.h b/indra/llcommon/lleventfilter.h index e822a664f5..8e01326823 100755 --- a/indra/llcommon/lleventfilter.h +++ b/indra/llcommon/lleventfilter.h @@ -181,7 +181,7 @@ protected: private: bool tick(const LLSD&); - LLBoundListener mMainloop; + LLTempBoundListener mMainloop; Action mAction; }; |