summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorMonroe Linden <monroe@lindenlab.com>2009-10-15 18:58:03 -0700
committerMonroe Linden <monroe@lindenlab.com>2009-10-15 18:58:03 -0700
commit451e5b7174aed801f0dc536a93347b5c6ed73ca2 (patch)
tree91167932c6ed2d29cab9b65227ca3f05fc589a30 /indra
parent86787b58edf59997b68dca6a0927d24b2a24a2b5 (diff)
Fix for a "case not handled in switch" due to the addition of MEDIA_EVENT_NAME_CHANGED.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llmediactrl.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llmediactrl.cpp b/indra/newview/llmediactrl.cpp
index 26ff219437..8005cd1180 100644
--- a/indra/newview/llmediactrl.cpp
+++ b/indra/newview/llmediactrl.cpp
@@ -911,6 +911,12 @@ void LLMediaCtrl::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event)
LL_DEBUGS("Media") << "Media event: MEDIA_EVENT_PLUGIN_FAILED_LAUNCH" << LL_ENDL;
};
break;
+
+ case MEDIA_EVENT_NAME_CHANGED:
+ {
+ LL_DEBUGS("Media") << "Media event: MEDIA_EVENT_NAME_CHANGED" << LL_ENDL;
+ };
+ break;
};
// chain all events to any potential observers of this object.