diff options
author | George Hazan <ghazan@miranda.im> | 2018-10-18 23:27:43 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-10-18 23:27:43 +0300 |
commit | cb3cc17e874f46e8f351e90447fa760773833105 (patch) | |
tree | 6a757472fff3568b09af02fa92d05f3e9359dbd6 /plugins/Import/src/stdafx.h | |
parent | bd4e1bc98663c942208b878507bb29cce14f03ef (diff) |
fixes #1621 (resizable Import wizard)
Diffstat (limited to 'plugins/Import/src/stdafx.h')
-rw-r--r-- | plugins/Import/src/stdafx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/Import/src/stdafx.h b/plugins/Import/src/stdafx.h index c30d02c3b0..19259ba0c0 100644 --- a/plugins/Import/src/stdafx.h +++ b/plugins/Import/src/stdafx.h @@ -97,6 +97,7 @@ class CIntroPageDlg : public CWizardPageDlg {
public:
CIntroPageDlg();
+ int Resizer(UTILRESIZECONTROL *urc) override;
bool OnInitDialog() override;
void OnNext() override;
@@ -109,6 +110,7 @@ class CProgressPageDlg : public CWizardPageDlg public:
CProgressPageDlg();
+ int Resizer(UTILRESIZECONTROL *urc) override;
bool OnInitDialog() override;
void OnDestroy() override;
@@ -130,6 +132,7 @@ class CMirandaPageDlg : public CWizardPageDlg public:
CMirandaPageDlg();
+ int Resizer(UTILRESIZECONTROL *urc) override;
bool OnInitDialog() override;
void OnDestroy() override;
@@ -147,6 +150,7 @@ class CMirandaOptionsPageDlg : public CWizardPageDlg public:
CMirandaOptionsPageDlg();
+ int Resizer(UTILRESIZECONTROL *urc) override;
bool OnInitDialog() override;
void OnNext() override;
@@ -179,6 +183,7 @@ class CFinishedPageDlg : public CWizardPageDlg {
public:
CFinishedPageDlg();
+ int Resizer(UTILRESIZECONTROL *urc) override;
bool OnInitDialog() override;
void OnNext() override;
|