diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-12-19 14:33:19 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-12-19 14:33:19 +0000 |
commit | 39047df03b5a2ffaa1f2e9896aca97d4feb068bb (patch) | |
tree | 6df8a595ca01ac0b6072083804aec83efc816122 /protocols/Steam/src/steam_messages.cpp | |
parent | 2ebd5786b7c0b0be6f06ae0c9dd44526f34cba9c (diff) |
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
Diffstat (limited to 'protocols/Steam/src/steam_messages.cpp')
-rw-r--r-- | protocols/Steam/src/steam_messages.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_messages.cpp b/protocols/Steam/src/steam_messages.cpp index 5ba4a4f139..1a51cccb90 100644 --- a/protocols/Steam/src/steam_messages.cpp +++ b/protocols/Steam/src/steam_messages.cpp @@ -34,7 +34,7 @@ int CSteamProto::OnSendMessage(MCONTACT hContact, const char* message) return hMessage;
}
-void CSteamProto::OnMessageSent(const NETLIBHTTPREQUEST *response, void *arg)
+void CSteamProto::OnMessageSent(const HttpResponse *response, void *arg)
{
SendMessageParam *param = (SendMessageParam*)arg;
|