diff options
author | Monroe Linden <monroe@lindenlab.com> | 2010-03-08 15:29:28 -0800 |
---|---|---|
committer | Monroe Linden <monroe@lindenlab.com> | 2010-03-08 15:29:28 -0800 |
commit | c1b29dfcc253ebe1323824d31efd2d5db74f405d (patch) | |
tree | 7204c8566f9c2269424eda4c0b65ded76d0e3a5d /indra/newview/llmediactrl.cpp | |
parent | 78abe4f5ffb02e14cd98f049b8100d20a82f3b1c (diff) |
Fix for mac build error
"enumeration value 'MEDIA_EVENT_CLICK_LINK_NOFOLLOW' not handled in switch"
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 e0069e7438..05cb6ddc4a 100644 --- a/indra/newview/llmediactrl.cpp +++ b/indra/newview/llmediactrl.cpp @@ -948,6 +948,12 @@ void LLMediaCtrl::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event) }; break; + case MEDIA_EVENT_CLICK_LINK_NOFOLLOW: + { + LL_DEBUGS("Media") << "Media event: MEDIA_EVENT_CLICK_LINK_NOFOLLOW, uri is " << self->getClickURL() << LL_ENDL; + }; + break; + case MEDIA_EVENT_PLUGIN_FAILED: { LL_DEBUGS("Media") << "Media event: MEDIA_EVENT_PLUGIN_FAILED" << LL_ENDL; |