From 22cb1649a091d6cf955d2cfb9d5d64fb2e44305f Mon Sep 17 00:00:00 2001 From: Drake Arconis <drake@alchemyviewer.org> Date: Tue, 9 Dec 2014 13:46:48 -0500 Subject: [PATCH] Fix the responder fix. --- indra/newview/llavatarrenderinfoaccountant.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/newview/llavatarrenderinfoaccountant.cpp b/indra/newview/llavatarrenderinfoaccountant.cpp index ed97dfefe2..2f35e6f808 100644 --- a/indra/newview/llavatarrenderinfoaccountant.cpp +++ b/indra/newview/llavatarrenderinfoaccountant.cpp @@ -65,10 +65,10 @@ public: { } - virtual void httpError() + virtual void httpFailure() { - const std::string& reason = getReason(); const S32 statusNum = getStatus(); + const std::string& reason = getReason(); LLViewerRegion * regionp = LLWorld::getInstance()->getRegionFromHandle(mRegionHandle); if (regionp) { @@ -165,8 +165,8 @@ public: virtual void httpFailure() { - const std::string& reason = getReason(); const S32 statusNum = getStatus(); + const std::string& reason = getReason(); LLViewerRegion * regionp = LLWorld::getInstance()->getRegionFromHandle(mRegionHandle); if (regionp) { -- GitLab