diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-05 13:39:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-05 13:39:25 +0300 |
commit | 563aac340768af4f96fd74a3246098cc3bdf47e0 (patch) | |
tree | 1b5493871936484788b3767d6a3c32066e47b4d5 /include | |
parent | 73c62ca9fc13c48a7768136279f0d70ac478c04b (diff) |
fixes #1825 (spin control initialization should be done in the constructor, not inside OnInitDialog)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index d02df66fbf..9230708e8e 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -876,17 +876,18 @@ class MIR_CORE_EXPORT CCtrlSpin : public CCtrlData {
typedef CCtrlData CSuper;
+ WORD m_wMin, m_wMax;
+
BOOL OnNotify(int, NMHDR*) override;
public:
- CCtrlSpin(CDlgBase *dlg, int ctrlId);
+ CCtrlSpin(CDlgBase *dlg, int ctrlId, WORD max = 100, WORD min = 0);
bool OnApply() override;
void OnReset() override;
WORD GetPosition();
void SetPosition(WORD pos);
- void SetRange(WORD max, WORD min = 0);
};
/////////////////////////////////////////////////////////////////////////////////////////
|