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 'CPP/Windows/Control/Dialog.cpp')
-rwxr-xr-xCPP/Windows/Control/Dialog.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/CPP/Windows/Control/Dialog.cpp b/CPP/Windows/Control/Dialog.cpp
index 3cfa517a..2695ca54 100755
--- a/CPP/Windows/Control/Dialog.cpp
+++ b/CPP/Windows/Control/Dialog.cpp
@@ -2,10 +2,10 @@
#include "StdAfx.h"
+#include "Windows/Control/Dialog.h"
#ifndef _UNICODE
-#include "Common/StringConvert.h"
+#include "../../Common/StringConvert.h"
#endif
-#include "Windows/Control/Dialog.h"
extern HINSTANCE g_hInstance;
#ifndef _UNICODE
@@ -17,17 +17,16 @@ namespace NControl {
static INT_PTR APIENTRY DialogProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam)
{
- CWindow dialogTmp(dialogHWND);
+ CWindow tempDialog(dialogHWND);
if (message == WM_INITDIALOG)
- dialogTmp.SetUserDataLongPtr(lParam);
- CDialog *dialog = (CDialog *)(dialogTmp.GetUserDataLongPtr());
+ tempDialog.SetUserDataLongPtr(lParam);
+ CDialog *dialog = (CDialog *)(tempDialog.GetUserDataLongPtr());
if (dialog == NULL)
return FALSE;
if (message == WM_INITDIALOG)
dialog->Attach(dialogHWND);
-
try { return BoolToBOOL(dialog->OnMessage(message, wParam, lParam)); }
- catch(...) { return true; }
+ catch(...) { return TRUE; }
}
bool CDialog::OnMessage(UINT message, WPARAM wParam, LPARAM lParam)
@@ -68,7 +67,7 @@ bool CDialog::OnCommand(int code, int itemID, LPARAM lParam)
bool CDialog::OnButtonClicked(int buttonID, HWND /* buttonHWND */)
{
- switch(buttonID)
+ switch (buttonID)
{
case IDOK: OnOK(); break;
case IDCANCEL: OnCancel(); break;