Code clean up.
* Removed LLCurlRequest and replaced it's last usage with LLHTTPClient API calls. * Deleted dead code. * Renamed all the get4/post4/put4/getByteRange4 etc, back to their original name without the '4'.
This commit is contained in:
@@ -893,7 +893,7 @@ void LLPanelActiveSpeakers::onModeratorMuteVoice(LLUICtrl* ctrl, void* user_data
|
||||
LLUUID mSessionID;
|
||||
};
|
||||
|
||||
LLHTTPClient::post4(
|
||||
LLHTTPClient::post(
|
||||
url,
|
||||
data,
|
||||
new MuteVoiceResponder(self->mSpeakerMgr->getSessionID()));
|
||||
@@ -960,7 +960,7 @@ void LLPanelActiveSpeakers::onModeratorMuteText(LLUICtrl* ctrl, void* user_data)
|
||||
LLUUID mSessionID;
|
||||
};
|
||||
|
||||
LLHTTPClient::post4(
|
||||
LLHTTPClient::post(
|
||||
url,
|
||||
data,
|
||||
new MuteTextResponder(self->mSpeakerMgr->getSessionID()));
|
||||
@@ -999,7 +999,7 @@ void LLPanelActiveSpeakers::onChangeModerationMode(LLUICtrl* ctrl, void* user_da
|
||||
virtual AIHTTPTimeoutPolicy const& getHTTPTimeoutPolicy(void) const { return moderationModeResponder_timeout; }
|
||||
};
|
||||
|
||||
LLHTTPClient::post4(url, data, new ModerationModeResponder());
|
||||
LLHTTPClient::post(url, data, new ModerationModeResponder());
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user