aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterhtmlsimple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llfloaterhtmlsimple.cpp')
-rw-r--r--linden/indra/newview/llfloaterhtmlsimple.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterhtmlsimple.cpp b/linden/indra/newview/llfloaterhtmlsimple.cpp
index 7dfc4f6..8091c1e 100644
--- a/linden/indra/newview/llfloaterhtmlsimple.cpp
+++ b/linden/indra/newview/llfloaterhtmlsimple.cpp
@@ -35,7 +35,7 @@
35#include "llfloaterhtmlsimple.h" 35#include "llfloaterhtmlsimple.h"
36 36
37#include "lluictrlfactory.h" 37#include "lluictrlfactory.h"
38#include "llwebbrowserctrl.h" 38#include "llmediactrl.h"
39 39
40 40
41LLFloaterHtmlSimple::LLFloaterHtmlSimple(const LLSD &initial_url) 41LLFloaterHtmlSimple::LLFloaterHtmlSimple(const LLSD &initial_url)
@@ -56,12 +56,12 @@ LLFloaterHtmlSimple::~LLFloaterHtmlSimple()
56 56
57void LLFloaterHtmlSimple::navigateTo(const std::string &url) 57void LLFloaterHtmlSimple::navigateTo(const std::string &url)
58{ 58{
59 LLWebBrowserCtrl* web = getChild<LLWebBrowserCtrl>("browser"); 59 LLMediaCtrl* web = getChild<LLMediaCtrl>("browser");
60 web->navigateTo(url); 60 web->navigateTo(url);
61} 61}
62 62
63void LLFloaterHtmlSimple::setTrusted(bool trusted) 63void LLFloaterHtmlSimple::setTrusted(bool trusted)
64{ 64{
65 LLWebBrowserCtrl* web = getChild<LLWebBrowserCtrl>("browser"); 65 LLMediaCtrl* web = getChild<LLMediaCtrl>("browser");
66 web->setTrusted(trusted); 66 web->setTrusted(trusted);
67} 67}