diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-02-22 14:04:13 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-02-22 14:04:13 -0800 |
commit | 42779ff3b4ba2503a0594276e1f415485be1eeab (patch) | |
tree | 9d4a0f99c0e4eacf8894edac588e550c93cf48ac /indra | |
parent | 362d305af20f6bfd477a48a9699dc8eebe9be552 (diff) |
Adding a missing base constructor to the list.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llpathfindingmanager.cpp | 3 |
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)
{
}
|