Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Windows/Control/Window2.cpp')
-rwxr-xr-xWindows/Control/Window2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Windows/Control/Window2.cpp b/Windows/Control/Window2.cpp
index 8da2a0b3..7857d503 100755
--- a/Windows/Control/Window2.cpp
+++ b/Windows/Control/Window2.cpp
@@ -147,7 +147,7 @@ LRESULT CWindow2::OnMessage(UINT message, WPARAM wParam, LPARAM lParam)
return result;
break;
case WM_NOTIFY:
- if (OnNotify(wParam, (LPNMHDR) lParam, result))
+ if (OnNotify((UINT)wParam, (LPNMHDR) lParam, result))
return result;
break;
case WM_DESTROY:
@@ -168,7 +168,7 @@ bool CWindow2::OnCommand(WPARAM wParam, LPARAM lParam, LRESULT &result)
return OnCommand(HIWORD(wParam), LOWORD(wParam), lParam, result);
}
-bool CWindow2::OnCommand(int code, int itemID, LPARAM lParam, LRESULT &result)
+bool CWindow2::OnCommand(int /* code */, int /* itemID */, LPARAM /* lParam */, LRESULT & /* result */)
{
return false;
// return DefProc(message, wParam, lParam);