From 39047df03b5a2ffaa1f2e9896aca97d4feb068bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sat, 19 Dec 2015 14:33:19 +0000 Subject: Steam: Fix wrong type of argument in callbacks (use HttpResponse instead of NETLIBHTTPREQUEST) git-svn-id: http://svn.miranda-ng.org/main/trunk@15892 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Steam/src/steam_login.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/Steam/src/steam_login.cpp') diff --git a/protocols/Steam/src/steam_login.cpp b/protocols/Steam/src/steam_login.cpp index c149f33eb1..9520bf0bd1 100644 --- a/protocols/Steam/src/steam_login.cpp +++ b/protocols/Steam/src/steam_login.cpp @@ -14,7 +14,7 @@ bool CSteamProto::IsMe(const char *steamId) return false; } -void CSteamProto::OnGotRsaKey(const NETLIBHTTPREQUEST *response) +void CSteamProto::OnGotRsaKey(const HttpResponse *response) { if (!CheckResponse(response)) return; @@ -73,7 +73,7 @@ void CSteamProto::OnGotRsaKey(const NETLIBHTTPREQUEST *response) &CSteamProto::OnAuthorization); } -void CSteamProto::OnAuthorization(const NETLIBHTTPREQUEST *response) +void CSteamProto::OnAuthorization(const HttpResponse *response) { if (!CheckResponse(response)) { @@ -227,7 +227,7 @@ void CSteamProto::OnAuthorizationSuccess(const JSONNode &node) &CSteamProto::OnLoggedOn); } -void CSteamProto::OnGotSession(const NETLIBHTTPREQUEST *response) +void CSteamProto::OnGotSession(const HttpResponse *response) { if(!response) return; @@ -258,7 +258,7 @@ void CSteamProto::HandleTokenExpired() SetStatus(ID_STATUS_OFFLINE); } -void CSteamProto::OnLoggedOn(const NETLIBHTTPREQUEST *response) +void CSteamProto::OnLoggedOn(const HttpResponse *response) { if (!CheckResponse(response)) { -- cgit v1.2.3