diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-04-29 19:23:12 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-04-29 19:23:12 +0000 |
commit | 0b324ac64ba108f06bafb3a687a69ac148fdbbf6 (patch) | |
tree | 3ae699f9e8b5a92c016b2584998317583b023165 /protocols/Steam/src/steam_proto.cpp | |
parent | f27d98ff82bc2525ceaaaf51a0117fe360fbfeff (diff) |
Steam: fixed contact management functions
git-svn-id: http://svn.miranda-ng.org/main/trunk@9099 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_proto.cpp')
-rw-r--r-- | protocols/Steam/src/steam_proto.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_proto.cpp b/protocols/Steam/src/steam_proto.cpp index 8040a1b226..73dd62791b 100644 --- a/protocols/Steam/src/steam_proto.cpp +++ b/protocols/Steam/src/steam_proto.cpp @@ -277,8 +277,9 @@ int __cdecl CSteamProto::OnEvent(PROTOEVENTTYPE eventType, WPARAM wParam, LPARAM /*case EV_PROTO_ONOPTIONS:
return this->OnOptionsInit(wParam, lParam);*/
- /*case EV_PROTO_ONCONTACTDELETED:
- return this->OnContactDeleted(wParam, lParam);*/
+ case EV_PROTO_ONCONTACTDELETED:
+ ForkThread(&CSteamProto::RemoveContactThread, (void*)getStringA(wParam, "SteamID"));
+ return 0;
/*case EV_PROTO_ONMENU:
this->OnInitStatusMenu();
|