summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-02-27 17:12:48 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-02-27 17:12:48 +0300
commitb8c8df44a68fe62575e46278ba10da3f91c60517 (patch)
tree48c4d0ea7a61f032352ef8837a1d3263b386f15b /include
parentf739848ff5ace0f3340b9b6e9977c649a0574293 (diff)
fixes #2753 (by default only checkboxes should be notified about OnChange before OnInitDialog)
Diffstat (limited to 'include')
-rw-r--r--include/m_gui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_gui.h b/include/m_gui.h
index 0489543619..972821ab32 100644
--- a/include/m_gui.h
+++ b/include/m_gui.h
@@ -515,7 +515,7 @@ protected:
HWND m_hwnd = nullptr; // must be the first data item
int m_idCtrl;
CDlgBase* m_parentWnd;
- bool m_bChanged = false, m_bSilent = false, m_bUseSystemColors = false;
+ bool m_bChanged = false, m_bSilent = false, m_bUseSystemColors = false, m_bNotifiable = false;
public:
CCallback<CCtrlBase> OnChange;