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/7zip/UI/FileManager/CopyDialog.h')
-rwxr-xr-xCPP/7zip/UI/FileManager/CopyDialog.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/CPP/7zip/UI/FileManager/CopyDialog.h b/CPP/7zip/UI/FileManager/CopyDialog.h
index 55872f1c..2c22d700 100755
--- a/CPP/7zip/UI/FileManager/CopyDialog.h
+++ b/CPP/7zip/UI/FileManager/CopyDialog.h
@@ -1,10 +1,11 @@
// CopyDialog.h
-#ifndef __COPYDIALOG_H
-#define __COPYDIALOG_H
+#ifndef __COPY_DIALOG_H
+#define __COPY_DIALOG_H
-#include "Windows/Control/Dialog.h"
#include "Windows/Control/ComboBox.h"
+#include "Windows/Control/Dialog.h"
+
#include "CopyDialogRes.h"
const int kCopyDialog_NumInfoLines = 11;
@@ -14,15 +15,15 @@ class CCopyDialog: public NWindows::NControl::CModalDialog
NWindows::NControl::CComboBox _path;
virtual void OnOK();
virtual bool OnInit();
+ virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
void OnButtonSetPath();
bool OnButtonClicked(int buttonID, HWND buttonHWND);
public:
UString Title;
UString Static;
UString Value;
- UStringVector Strings;
-
UString Info;
+ UStringVector Strings;
INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_DIALOG_COPY, parentWindow); }
};