summaryrefslogtreecommitdiff
path: root/indra/llmessage/llexperiencecache.cpp
diff options
context:
space:
mode:
authorCho <cho@lindenlab.com>2014-06-24 22:43:23 +0100
committerCho <cho@lindenlab.com>2014-06-24 22:43:23 +0100
commit200788c344f5449f99eacc9167ac15c7e6262b69 (patch)
tree7012cde9e19aefda9768931247339e5032ec3613 /indra/llmessage/llexperiencecache.cpp
parenta9c281eb57206a0ff7083788e593a22b9f8ad01a (diff)
Updated all experience responders for LLCurl::Responder interface changes for ACME-1535 and ACME-1536
Diffstat (limited to 'indra/llmessage/llexperiencecache.cpp')
-rw-r--r--indra/llmessage/llexperiencecache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/llexperiencecache.cpp b/indra/llmessage/llexperiencecache.cpp
index 1fb77c4391..52b60a176e 100644
--- a/indra/llmessage/llexperiencecache.cpp
+++ b/indra/llmessage/llexperiencecache.cpp
@@ -257,7 +257,7 @@ namespace LLExperienceCache
LLSDSerialize::toPrettyXML(data, ostr);
}
- class LLExperienceResponder : public LLCurl::Responder
+ class LLExperienceResponder : public LLHTTPClient::Responder
{
public:
LLExperienceResponder(const ask_queue_t& keys)
@@ -266,7 +266,7 @@ namespace LLExperienceCache
}
- /*virtual*/ void httpSuccess()
+ /*virtual*/ void httpCompleted()
{
LLSD experiences = getContent()["experience_keys"];
LLSD::array_const_iterator it = experiences.beginArray();