aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llevent.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llevent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llcommon/llevent.cpp b/linden/indra/llcommon/llevent.cpp
index 33af028..7d701a1 100644
--- a/linden/indra/llcommon/llevent.cpp
+++ b/linden/indra/llcommon/llevent.cpp
@@ -219,7 +219,7 @@ std::vector<LLListenerEntry> LLSimpleDispatcher::getListeners() const
219bool LLSimpleDispatcher::fireEvent(LLPointer<LLEvent> event, LLSD filter) 219bool LLSimpleDispatcher::fireEvent(LLPointer<LLEvent> event, LLSD filter)
220{ 220{
221 std::vector<LLListenerEntry>::iterator itor; 221 std::vector<LLListenerEntry>::iterator itor;
222 LLString filter_string = filter.asString(); 222 std::string filter_string = filter.asString();
223 for (itor=mListeners.begin(); itor!=mListeners.end(); ++itor) 223 for (itor=mListeners.begin(); itor!=mListeners.end(); ++itor)
224 { 224 {
225 LLListenerEntry& entry = *itor; 225 LLListenerEntry& entry = *itor;