mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 20:07:19 -06:00
23.01
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// PasswordDialog.h
|
||||
|
||||
#ifndef __PASSWORD_DIALOG_H
|
||||
#define __PASSWORD_DIALOG_H
|
||||
#ifndef ZIP7_INC_PASSWORD_DIALOG_H
|
||||
#define ZIP7_INC_PASSWORD_DIALOG_H
|
||||
|
||||
#include "../../../Windows/Control/Dialog.h"
|
||||
#include "../../../Windows/Control/Edit.h"
|
||||
@@ -12,9 +12,9 @@ class CPasswordDialog: public NWindows::NControl::CModalDialog
|
||||
{
|
||||
NWindows::NControl::CEdit _passwordEdit;
|
||||
|
||||
virtual void OnOK();
|
||||
virtual bool OnInit();
|
||||
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
||||
virtual void OnOK() Z7_override;
|
||||
virtual bool OnInit() Z7_override;
|
||||
virtual bool OnButtonClicked(unsigned buttonID, HWND buttonHWND) Z7_override;
|
||||
void SetTextSpec();
|
||||
void ReadControls();
|
||||
public:
|
||||
@@ -22,7 +22,7 @@ public:
|
||||
bool ShowPassword;
|
||||
|
||||
CPasswordDialog(): ShowPassword(false) {}
|
||||
INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_PASSWORD, parentWindow); }
|
||||
INT_PTR Create(HWND parentWindow = NULL) { return CModalDialog::Create(IDD_PASSWORD, parentWindow); }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user