diff options
author | Richard Linden <none@none> | 2011-05-02 17:57:52 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-05-02 17:57:52 -0700 |
commit | d5faa4f38d338777463b7ad6eb3239041d43fe28 (patch) | |
tree | d57efbda59c9f677b2245bebc97fec129f3f9fad /indra/test_apps/llplugintest/llmediaplugintest.cpp | |
parent | 9a6f06687e5b467f0c049bfbf88c2131eee11ef3 (diff) | |
parent | 78d76eb4b01e0bd6db41a67d1573a1b841cbe993 (diff) |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience
Diffstat (limited to 'indra/test_apps/llplugintest/llmediaplugintest.cpp')
-rw-r--r-- | indra/test_apps/llplugintest/llmediaplugintest.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp index ee65e0aa87..884b00f0cc 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.cpp +++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp @@ -4,7 +4,7 @@ * * $LicenseInfo:firstyear=2008&license=viewerlgpl$ * Second Life Viewer Source Code - * Copyright (C) 2010, Linden Research, Inc. + * Copyright (C) 2011, Linden Research, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -2237,7 +2237,13 @@ void LLMediaPluginTest::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent e case MEDIA_EVENT_LINK_HOVERED: { std::cerr << "Media event: MEDIA_EVENT_LINK_HOVERED, hover text is: " << self->getHoverText() << std::endl; - }; + } + break; + + default: + { + std::cerr << "Media event: <unknown>, code is: " << int(event) << std::endl; + } break; } } |