diff options
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();
|