Build fixes

This commit is contained in:
Siana Gearz
2010-10-18 20:43:10 +02:00
parent 5a67fcd623
commit 2df81c3580
2 changed files with 3 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ LLCurl::Responder::~Responder()
} }
// virtual // virtual
void LLCurl::Responder::error( void LLCurl::Responder::errorWithContent(
U32 status, U32 status,
const std::string& reason, const std::string& reason,
const LLSD&) const LLSD&)
@@ -163,7 +163,7 @@ void LLCurl::Responder::completed(U32 status, const std::string& reason, const L
} }
else else
{ {
error(status, reason, content); errorWithContent(status, reason, content);
} }
} }

View File

@@ -85,7 +85,7 @@ public:
return((200 <= status) && (status < 300)); return((200 <= status) && (status < 300));
} }
virtual void error( virtual void errorWithContent(
U32 status, U32 status,
const std::string& reason, const std::string& reason,
const LLSD& content); const LLSD& content);