diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-01 11:02:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-01 11:02:35 +0000 |
commit | 4eccffd2cb24cfaf32959fcf400aaea1930af15f (patch) | |
tree | 3bcd6762c18864e4c52971f50fbcfa8a11d82361 /protocols/Steam/src/steam_events.cpp | |
parent | d144a4a069b0c1dda07d49f808007f64aa6309be (diff) |
warnings fix
not used file removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@13330 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_events.cpp')
-rw-r--r-- | protocols/Steam/src/steam_events.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Steam/src/steam_events.cpp b/protocols/Steam/src/steam_events.cpp index ee4669ca5b..434eaed925 100644 --- a/protocols/Steam/src/steam_events.cpp +++ b/protocols/Steam/src/steam_events.cpp @@ -29,12 +29,12 @@ int CSteamProto::OnPreShutdown(WPARAM, LPARAM) return 0; } -INT_PTR CSteamProto::OnAccountManagerInit(WPARAM wParam, LPARAM lParam) +INT_PTR CSteamProto::OnAccountManagerInit(WPARAM, LPARAM lParam) { return (INT_PTR)(CSteamOptionsMain::CreateAccountManagerPage(this, (HWND)lParam))->GetHwnd(); } -int CSteamProto::OnOptionsInit(WPARAM wParam, LPARAM lParam) +int CSteamProto::OnOptionsInit(WPARAM wParam, LPARAM) { OPTIONSDIALOGPAGE odp = { 0 }; odp.hInstance = g_hInstance; @@ -52,7 +52,7 @@ int CSteamProto::OnOptionsInit(WPARAM wParam, LPARAM lParam) return 0; } -int CSteamProto::OnIdleChanged(WPARAM wParam, LPARAM lParam) +int CSteamProto::OnIdleChanged(WPARAM, LPARAM lParam) { bool idle = (lParam & IDF_ISIDLE) != 0; bool privacy = (lParam & IDF_PRIVACY) != 0; |