From 42779ff3b4ba2503a0594276e1f415485be1eeab Mon Sep 17 00:00:00 2001 From: Todd Stinson Date: Wed, 22 Feb 2012 14:04:13 -0800 Subject: Adding a missing base constructor to the list. --- indra/newview/llpathfindingmanager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { } -- cgit v1.2.3