summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2023-02-23 15:51:24 +0300
committerGeorge Hazan <ghazan@miranda.im>2023-02-23 15:51:24 +0300
commit531cb8c96f0234b71fb005089973d50cb531d5e6 (patch)
treeb65fd9718013a80d0949210d569b6a0acfa07979 /src
parentc3256c0e9163e9c7bfaeb64468550250d6a3d4e7 (diff)
fixes #3342 (Баг с отключением полей в настройках статусов ICQ)
Diffstat (limited to 'src')
-rw-r--r--src/mir_core/src/Windows/CCtrlCheck.cpp4
-rw-r--r--src/mir_core/src/Windows/CCtrlSpin.cpp4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/mir_core/src/Windows/CCtrlCheck.cpp b/src/mir_core/src/Windows/CCtrlCheck.cpp
index 3258dce27f..5e69738b23 100644
--- a/src/mir_core/src/Windows/CCtrlCheck.cpp
+++ b/src/mir_core/src/Windows/CCtrlCheck.cpp
@@ -25,8 +25,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
/////////////////////////////////////////////////////////////////////////////////////////
// CCtrlCheck class
-CCtrlCheck::CCtrlCheck(CDlgBase *dlg, int ctrlId)
- : CCtrlData(dlg, ctrlId)
+CCtrlCheck::CCtrlCheck(CDlgBase *dlg, int ctrlId) :
+ CCtrlData(dlg, ctrlId)
{
m_bNotifiable = true;
}
diff --git a/src/mir_core/src/Windows/CCtrlSpin.cpp b/src/mir_core/src/Windows/CCtrlSpin.cpp
index 54dc5ffd07..e871296259 100644
--- a/src/mir_core/src/Windows/CCtrlSpin.cpp
+++ b/src/mir_core/src/Windows/CCtrlSpin.cpp
@@ -30,7 +30,9 @@ CCtrlSpin::CCtrlSpin(CDlgBase *dlg, int ctrlId, int16_t wMax, int16_t wMin) :
m_wMin(wMin),
m_wMax(wMax),
m_wCurr(0)
-{}
+{
+ m_bNotifiable = true;
+}
BOOL CCtrlSpin::OnNotify(int, NMHDR *pnmh)
{