diff options
Diffstat (limited to 'linden/indra/newview/llfloaterhtmlsimple.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterhtmlsimple.cpp | 6 |
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 | ||
41 | LLFloaterHtmlSimple::LLFloaterHtmlSimple(const LLSD &initial_url) | 41 | LLFloaterHtmlSimple::LLFloaterHtmlSimple(const LLSD &initial_url) |
@@ -56,12 +56,12 @@ LLFloaterHtmlSimple::~LLFloaterHtmlSimple() | |||
56 | 56 | ||
57 | void LLFloaterHtmlSimple::navigateTo(const std::string &url) | 57 | void 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 | ||
63 | void LLFloaterHtmlSimple::setTrusted(bool trusted) | 63 | void 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 | } |