summaryrefslogtreecommitdiff
path: root/indra/newview/llmediactrl.cpp
diff options
context:
space:
mode:
authorcallum <none@none>2011-03-17 18:50:44 -0700
committercallum <none@none>2011-03-17 18:50:44 -0700
commitefc57ea349d634d2bef1a554a925bea60f26f307 (patch)
treeba792fbc53d6830a6cb087869d08952c8ebd9b4b /indra/newview/llmediactrl.cpp
parentb3e444c74e0f31ba9d63d7bed934f017bf2499df (diff)
Fix for Mac specific compiler error. All enumerants of an enum have to be present in a switch statement if there is no default.
Diffstat (limited to 'indra/newview/llmediactrl.cpp')
-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 24038d0ee6..376e38ade3 100644
--- a/indra/newview/llmediactrl.cpp
+++ b/indra/newview/llmediactrl.cpp
@@ -960,6 +960,12 @@ void LLMediaCtrl::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event)
};
break;
+ case MEDIA_EVENT_NAVIGATE_ERROR_PAGE:
+ {
+ LL_DEBUGS("Media") << "Media event: MEDIA_EVENT_NAVIGATE_ERROR_PAGE" << LL_ENDL;
+ };
+ break;
+
case MEDIA_EVENT_CLICK_LINK_HREF:
{
LL_DEBUGS("Media") << "Media event: MEDIA_EVENT_CLICK_LINK_HREF, target is \"" << self->getClickTarget() << "\", uri is " << self->getClickURL() << LL_ENDL;