No longer include llerrorlegacy.h. Updated llstl to include deletion utilites.
This commit is contained in:
@@ -736,8 +736,8 @@ std::string LLPathfindingManager::getCapabilityURLForRegion(LLViewerRegion *pReg
|
||||
|
||||
if (capabilityURL.empty())
|
||||
{
|
||||
llwarns << "cannot find capability '" << pCapabilityName << "' for current region '"
|
||||
<< ((pRegion != NULL) ? pRegion->getName() : "<null>") << "'" << llendl;
|
||||
LL_WARNS() << "cannot find capability '" << pCapabilityName << "' for current region '"
|
||||
<< ((pRegion != NULL) ? pRegion->getName() : "<null>") << "'" << LL_ENDL;
|
||||
}
|
||||
|
||||
return capabilityURL;
|
||||
@@ -803,7 +803,7 @@ void NavMeshStatusResponder::httpSuccess()
|
||||
|
||||
void NavMeshStatusResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
LLPathfindingNavMeshStatus navMeshStatus(mRegionUUID);
|
||||
LLPathfindingManager::getInstance()->handleNavMeshStatusRequest(navMeshStatus, mRegion, mIsGetStatusOnly);
|
||||
}
|
||||
@@ -830,7 +830,7 @@ void NavMeshResponder::httpSuccess()
|
||||
|
||||
void NavMeshResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
mNavMeshPtr->handleNavMeshError(mNavMeshVersion);
|
||||
}
|
||||
|
||||
@@ -857,7 +857,7 @@ void AgentStateResponder::httpSuccess()
|
||||
|
||||
void AgentStateResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
LLPathfindingManager::getInstance()->handleAgentState(FALSE);
|
||||
}
|
||||
|
||||
@@ -882,7 +882,7 @@ void NavMeshRebakeResponder::httpSuccess()
|
||||
|
||||
void NavMeshRebakeResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
mRebakeNavMeshCallback(false);
|
||||
}
|
||||
|
||||
@@ -917,7 +917,7 @@ void LinksetsResponder::handleObjectLinksetsResult(const LLSD &pContent)
|
||||
|
||||
void LinksetsResponder::handleObjectLinksetsError()
|
||||
{
|
||||
llwarns << "LinksetsResponder object linksets error" << llendl;
|
||||
LL_WARNS() << "LinksetsResponder object linksets error" << LL_ENDL;
|
||||
mObjectMessagingState = kReceivedError;
|
||||
if (mTerrainMessagingState != kWaiting)
|
||||
{
|
||||
@@ -938,7 +938,7 @@ void LinksetsResponder::handleTerrainLinksetsResult(const LLSD &pContent)
|
||||
|
||||
void LinksetsResponder::handleTerrainLinksetsError()
|
||||
{
|
||||
llwarns << "LinksetsResponder terrain linksets error" << llendl;
|
||||
LL_WARNS() << "LinksetsResponder terrain linksets error" << LL_ENDL;
|
||||
mTerrainMessagingState = kReceivedError;
|
||||
if (mObjectMessagingState != kWaiting)
|
||||
{
|
||||
@@ -989,7 +989,7 @@ void ObjectLinksetsResponder::httpSuccess()
|
||||
|
||||
void ObjectLinksetsResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
mLinksetsResponsderPtr->handleObjectLinksetsError();
|
||||
}
|
||||
|
||||
@@ -1014,7 +1014,7 @@ void TerrainLinksetsResponder::httpSuccess()
|
||||
|
||||
void TerrainLinksetsResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
mLinksetsResponsderPtr->handleTerrainLinksetsError();
|
||||
}
|
||||
|
||||
@@ -1041,7 +1041,7 @@ void CharactersResponder::httpSuccess()
|
||||
|
||||
void CharactersResponder::httpFailure()
|
||||
{
|
||||
llwarns << dumpResponse() << llendl;
|
||||
LL_WARNS() << dumpResponse() << LL_ENDL;
|
||||
|
||||
LLPathfindingObjectListPtr characterListPtr = LLPathfindingObjectListPtr(new LLPathfindingCharacterList());
|
||||
mCharactersCallback(mRequestId, LLPathfindingManager::kRequestError, characterListPtr);
|
||||
|
||||
Reference in New Issue
Block a user