diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-05-19 18:51:16 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-05-19 18:51:16 +0000 |
commit | bebab62e39e83e698ce5475a73987df01fe3a147 (patch) | |
tree | 13a7210afad01894271c96e6200c908b81aedf25 /protocols/Steam/src/steam_messages.cpp | |
parent | 331cea6299be141243e89e10755ec4adf5ef5d90 (diff) |
Steam: Fix showing error message on sending message; small cleanup and FIXME note
git-svn-id: http://svn.miranda-ng.org/main/trunk@13701 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_messages.cpp')
-rw-r--r-- | protocols/Steam/src/steam_messages.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_messages.cpp b/protocols/Steam/src/steam_messages.cpp index 48f59b0ce6..3258613261 100644 --- a/protocols/Steam/src/steam_messages.cpp +++ b/protocols/Steam/src/steam_messages.cpp @@ -38,10 +38,12 @@ void CSteamProto::OnMessageSent(const NETLIBHTTPREQUEST *response, void *arg) else
debugLog(_T("CSteamProto::OnMessageSent: failed to send message for %s (%s)"), steamId, error);
+ ptrA errorA(mir_t2a(error));
+
ProtoBroadcastAck(
param->hContact,
ACKTYPE_MESSAGE,
status,
param->hMessage,
- error);
+ (LPARAM) errorA);
}
\ No newline at end of file |