diff options
author | callum <none@none> | 2011-03-17 18:50:44 -0700 |
---|---|---|
committer | callum <none@none> | 2011-03-17 18:50:44 -0700 |
commit | efc57ea349d634d2bef1a554a925bea60f26f307 (patch) | |
tree | ba792fbc53d6830a6cb087869d08952c8ebd9b4b /indra/newview/llmediactrl.cpp | |
parent | b3e444c74e0f31ba9d63d7bed934f017bf2499df (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.cpp | 6 |
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; |