diff options
| author | Monroe Linden <monroe@lindenlab.com> | 2009-10-15 19:01:54 -0700 | 
|---|---|---|
| committer | Monroe Linden <monroe@lindenlab.com> | 2009-10-15 19:01:54 -0700 | 
| commit | ac91bc0115d0f8d34f03819e25bb278f559e9f28 (patch) | |
| tree | 955af8c5e377a09c050c4b810e78e3af935f53de | |
| parent | 451e5b7174aed801f0dc536a93347b5c6ed73ca2 (diff) | |
Fix for another "case not handled in switch" due to the addition of MEDIA_EVENT_NAME_CHANGED.
| -rw-r--r-- | indra/newview/llviewerparcelmedia.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/newview/llviewerparcelmedia.cpp b/indra/newview/llviewerparcelmedia.cpp index 9bcdcbf9ad..6233a337a6 100644 --- a/indra/newview/llviewerparcelmedia.cpp +++ b/indra/newview/llviewerparcelmedia.cpp @@ -552,6 +552,12 @@ void LLViewerParcelMedia::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent  			LL_DEBUGS("Media") <<  "Media event:  MEDIA_EVENT_PLUGIN_FAILED_LAUNCH" << LL_ENDL;  		};  		break; +		 +		case MEDIA_EVENT_NAME_CHANGED: +		{ +			LL_DEBUGS("Media") <<  "Media event:  MEDIA_EVENT_NAME_CHANGED" << LL_ENDL; +		}; +		break;  	};  } | 
