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/Dialog.cpp')
-rwxr-xr-xWindows/Control/Dialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Windows/Control/Dialog.cpp b/Windows/Control/Dialog.cpp
index 5025f257..64009b79 100755
--- a/Windows/Control/Dialog.cpp
+++ b/Windows/Control/Dialog.cpp
@@ -39,7 +39,7 @@ bool CDialog::OnMessage(UINT message, WPARAM wParam, LPARAM lParam)
case WM_COMMAND:
return OnCommand(wParam, lParam);
case WM_NOTIFY:
- return OnNotify(wParam, (LPNMHDR) lParam);
+ return OnNotify((UINT)wParam, (LPNMHDR) lParam);
case WM_HELP:
{
OnHelp((LPHELPINFO)lParam);
@@ -66,7 +66,7 @@ bool CDialog::OnCommand(int code, int itemID, LPARAM lParam)
return false;
}
-bool CDialog::OnButtonClicked(int buttonID, HWND buttonHWND)
+bool CDialog::OnButtonClicked(int buttonID, HWND /* buttonHWND */)
{
switch(buttonID)
{