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 | b0e6be07373d0a05e2191d99ed45818f9c0bc243 (patch) | |
tree | edb58249a8ad4f402b9ed0dbdd9ad62d95698502 /indra/newview/llmediactrl.cpp | |
parent | 454998e5f200aed6c1f9c8f71223504f845d3825 (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; |