diff options
author | Cho <cho@lindenlab.com> | 2014-06-24 22:43:23 +0100 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2014-06-24 22:43:23 +0100 |
commit | 200788c344f5449f99eacc9167ac15c7e6262b69 (patch) | |
tree | 7012cde9e19aefda9768931247339e5032ec3613 /indra/newview/llcompilequeue.cpp | |
parent | a9c281eb57206a0ff7083788e593a22b9f8ad01a (diff) |
Updated all experience responders for LLCurl::Responder interface changes for ACME-1535 and ACME-1536
Diffstat (limited to 'indra/newview/llcompilequeue.cpp')
-rwxr-xr-x | indra/newview/llcompilequeue.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llcompilequeue.cpp b/indra/newview/llcompilequeue.cpp index 9e554ba0eb..d9fd4509a5 100755 --- a/indra/newview/llcompilequeue.cpp +++ b/indra/newview/llcompilequeue.cpp @@ -251,11 +251,11 @@ public: LLUUID mParent; - virtual void result(const LLSD& content) + /*virtual*/ void httpSuccess() { - sendResult(content); + sendResult(getContent()); } - virtual void error(U32 status, const std::string& reason) + /*virtual*/ void httpFailure() { sendResult(LLSD()); } |