From 67a914ebd7bd7dd13a3bf6f45a962425dba55a3b Mon Sep 17 00:00:00 2001
From: Monroe Linden <monroe@lindenlab.com>
Date: Mon, 20 Dec 2010 12:02:56 -0800
Subject: [PATCH] Fix for a couple of minor merge issues.

---
 indra/newview/llfloaterwebcontent.cpp | 2 +-
 indra/newview/llmediactrl.h           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/newview/llfloaterwebcontent.cpp b/indra/newview/llfloaterwebcontent.cpp
index 14bd5baba19..51726112a0f 100644
--- a/indra/newview/llfloaterwebcontent.cpp
+++ b/indra/newview/llfloaterwebcontent.cpp
@@ -312,7 +312,7 @@ void LLFloaterWebContent::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent
 	else if(event == MEDIA_EVENT_PROGRESS_UPDATED )
 	{
 		int percent = (int)self->getProgressPercent();
-		mStatusBarProgress->setPercent( percent );
+		mStatusBarProgress->setValue( percent );
 	}
 	else if(event == MEDIA_EVENT_NAME_CHANGED )
 	{
diff --git a/indra/newview/llmediactrl.h b/indra/newview/llmediactrl.h
index f95592551c0..38a74f90d3c 100644
--- a/indra/newview/llmediactrl.h
+++ b/indra/newview/llmediactrl.h
@@ -62,6 +62,7 @@ class LLMediaCtrl :
 		Optional<LLUIColor>		caret_color;
 
 		Optional<std::string>	initial_mime_type;
+		Optional<std::string>	media_id;
 		
 		Params();
 	};
-- 
GitLab