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 '7zip/FileManager/Resource/ProgressDialog/ProgressDialog.h')
-rwxr-xr-x7zip/FileManager/Resource/ProgressDialog/ProgressDialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/7zip/FileManager/Resource/ProgressDialog/ProgressDialog.h b/7zip/FileManager/Resource/ProgressDialog/ProgressDialog.h
index 4ed48519..81a0f9a6 100755
--- a/7zip/FileManager/Resource/ProgressDialog/ProgressDialog.h
+++ b/7zip/FileManager/Resource/ProgressDialog/ProgressDialog.h
@@ -88,7 +88,7 @@ private:
virtual void OnCancel();
NWindows::NSynchronization::CManualResetEvent _dialogCreatedEvent;
#ifndef _SFX
- void AddToTitle(LPCTSTR string);
+ void AddToTitle(LPCWSTR string);
#endif
bool OnButtonClicked(int buttonID, HWND buttonHWND);
public:
@@ -110,10 +110,10 @@ public:
void WaitCreating() { _dialogCreatedEvent.Lock(); }
- INT_PTR Create(const UString &title, HWND aWndParent = 0)
+ INT_PTR Create(const UString &title, HWND wndParent = 0)
{
_title = title;
- return CModalDialog::Create(MAKEINTRESOURCE(IDD_DIALOG_PROGRESS), aWndParent);
+ return CModalDialog::Create(IDD_DIALOG_PROGRESS, wndParent);
}
static const UINT kCloseMessage;