diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-25 21:55:15 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-25 21:55:15 +0300 |
commit | 0e63937ce3ec5af17e5fe2acb4d0adb18782ee2a (patch) | |
tree | 0397e6557a7a822a16fc17c1ec2a5ac864d0da90 /include | |
parent | 8b145cf934fa86b71223d25583db19880903ef84 (diff) |
WM_CTLCOLORSTATIC handler moved to mir_core.dll
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index f09e249517..977939bba2 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -491,6 +491,7 @@ public: __forceinline CDlgBase *GetParent() { return m_parentWnd; }
__forceinline bool IsChanged() const { return m_bChanged; }
__forceinline void SetSilent() { m_bSilent = true; }
+ __forceinline void UseSystemColors() { m_bUseSystemColors = true; }
void Enable(int bIsEnable = true);
__forceinline void Disable() { Enable(false); }
@@ -529,7 +530,7 @@ protected: HWND m_hwnd; // must be the first data item
int m_idCtrl;
CDlgBase* m_parentWnd;
- bool m_bChanged, m_bSilent;
+ bool m_bChanged, m_bSilent, m_bUseSystemColors;
public:
CCallback<CCtrlBase> OnChange;
|