summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMonroe Linden <monroe@lindenlab.com>2009-10-15 19:01:54 -0700
committerMonroe Linden <monroe@lindenlab.com>2009-10-15 19:01:54 -0700
commitac91bc0115d0f8d34f03819e25bb278f559e9f28 (patch)
tree955af8c5e377a09c050c4b810e78e3af935f53de /indra/newview
parent451e5b7174aed801f0dc536a93347b5c6ed73ca2 (diff)
Fix for another "case not handled in switch" due to the addition of MEDIA_EVENT_NAME_CHANGED.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerparcelmedia.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llviewerparcelmedia.cpp b/indra/newview/llviewerparcelmedia.cpp
index 9bcdcbf9ad..6233a337a6 100644
--- a/indra/newview/llviewerparcelmedia.cpp
+++ b/indra/newview/llviewerparcelmedia.cpp
@@ -552,6 +552,12 @@ void LLViewerParcelMedia::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent
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;
};
}