From abf9ccb0dee2e707c94f1f14f8869f2a991fea94 Mon Sep 17 00:00:00 2001 From: Rider Linden Date: Fri, 23 Oct 2015 10:23:01 -0700 Subject: MAINT-5791: Change the way the TOS dialog is retrieved after the site-alive test coro. Use handles rather than findTypedInstance. --- indra/newview/llfloatertos.cpp | 18 +++++++++++++----- indra/newview/llfloatertos.h | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) (limited to 'indra') diff --git a/indra/newview/llfloatertos.cpp b/indra/newview/llfloatertos.cpp index 3597d70e0d..5fa4441914 100755 --- a/indra/newview/llfloatertos.cpp +++ b/indra/newview/llfloatertos.cpp @@ -196,8 +196,10 @@ void LLFloaterTOS::handleMediaEvent(LLPluginClassMedia* /*self*/, EMediaEvent ev mLoadingScreenLoaded = true; std::string url(getString("real_url")); + LLHandle handle = getHandle(); + LLCoros::instance().launch("LLFloaterTOS::testSiteIsAliveCoro", - boost::bind(&LLFloaterTOS::testSiteIsAliveCoro, url)); + boost::bind(&LLFloaterTOS::testSiteIsAliveCoro, handle, url)); } else if(mRealNavigateBegun) { @@ -209,7 +211,7 @@ void LLFloaterTOS::handleMediaEvent(LLPluginClassMedia* /*self*/, EMediaEvent ev } } -void LLFloaterTOS::testSiteIsAliveCoro(std::string url) +void LLFloaterTOS::testSiteIsAliveCoro(LLHandle handle, std::string url) { LLCore::HttpRequest::policy_t httpPolicy(LLCore::HttpRequest::DEFAULT_POLICY_ID); LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t @@ -228,13 +230,19 @@ void LLFloaterTOS::testSiteIsAliveCoro(std::string url) LLSD httpResults = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS]; LLCore::HttpStatus status = LLCoreHttpUtil::HttpCoroutineAdapter::getStatusFromLLSD(httpResults); - LLFloaterTOS *that = LLFloaterReg::findTypedInstance("message_tos"); - // double not. + if (handle.isDead()) + { + LL_WARNS("testSiteIsAliveCoro") << "Dialog canceled before response." << LL_ENDL; + return; + } + + LLFloaterTOS *that = dynamic_cast(handle.get()); + if (that) that->setSiteIsAlive(static_cast(status)); else { - LL_WARNS("testSiteIsAliveCoro") << "Dialog canceled before response." << LL_ENDL; + LL_WARNS("testSiteIsAliveCoro") << "Handle was not a TOS floater." << LL_ENDL; } } diff --git a/indra/newview/llfloatertos.h b/indra/newview/llfloatertos.h index b71b80ed24..e70c9f24af 100755 --- a/indra/newview/llfloatertos.h +++ b/indra/newview/llfloatertos.h @@ -62,7 +62,7 @@ public: /*virtual*/ void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event); private: - static void testSiteIsAliveCoro(std::string url); + static void testSiteIsAliveCoro(LLHandle handle, std::string url); std::string mMessage; bool mLoadingScreenLoaded; -- cgit v1.2.3