WIP: make everything use AICurlEasyRequestStateMachine

This commit is contained in:
Aleric Inglewood
2012-08-20 17:29:15 +02:00
parent 05c32c7a62
commit 83b13f6a3f
83 changed files with 766 additions and 752 deletions

View File

@@ -778,7 +778,7 @@ void LLPanelGroupVoting::impl::sendStartGroupProposal()
body["duration"] = duration_seconds;
body["proposal-text"] = mProposalText->getText();
LLHTTPClient::post(
LLHTTPClient::post4(
url,
body,
new LLStartGroupVoteResponder(mGroupID),
@@ -825,7 +825,7 @@ void LLPanelGroupVoting::impl::sendGroupProposalBallot(const std::string& vote)
body["group-id"] = mGroupID;
body["vote"] = vote;
LLHTTPClient::post(
LLHTTPClient::post4(
url,
body,
new LLGroupProposalBallotResponder(mGroupID),