summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-02-22 14:04:13 -0800
committerTodd Stinson <stinson@lindenlab.com>2012-02-22 14:04:13 -0800
commit42779ff3b4ba2503a0594276e1f415485be1eeab (patch)
tree9d4a0f99c0e4eacf8894edac588e550c93cf48ac
parent362d305af20f6bfd477a48a9699dc8eebe9be552 (diff)
Adding a missing base constructor to the list.
-rw-r--r--indra/newview/llpathfindingmanager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llpathfindingmanager.cpp b/indra/newview/llpathfindingmanager.cpp
index 3905e6d9f3..76766c4e09 100644
--- a/indra/newview/llpathfindingmanager.cpp
+++ b/indra/newview/llpathfindingmanager.cpp
@@ -217,7 +217,8 @@ std::string LLPathfindingManager::getCapabilityURLForCurrentRegion(const std::st
//---------------------------------------------------------------------------
AgentStateResponder::AgentStateResponder(const std::string &pCapabilityURL, LLPathfindingManager::EAgentState pRequestedAgentState)
- : mCapabilityURL(pCapabilityURL),
+ : LLHTTPClient::Responder(),
+ mCapabilityURL(pCapabilityURL),
mRequestedAgentState(pRequestedAgentState)
{
}