summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-02-13 11:47:45 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-02-13 11:47:52 +0300
commit899da432c9d78b631dffa73314b8e1cdf3870fa8 (patch)
tree7f1373325379b1173923ef551680f18ea0d9e036 /include
parent5444e81634e91516bfcf6a60622485adda5663ea (diff)
CDlgBase::FindControl made public
Diffstat (limited to 'include')
-rw-r--r--include/m_gui.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/m_gui.h b/include/m_gui.h
index 27f91b99e7..e4c7c40ed3 100644
--- a/include/m_gui.h
+++ b/include/m_gui.h
@@ -406,6 +406,9 @@ public:
int DoModal();
void EndModal(INT_PTR nResult);
+ CCtrlBase* FindControl(int idCtrl);
+ CCtrlBase* FindControl(HWND hwnd);
+
void SetCaption(const wchar_t *ptszCaption);
void NotifyChange(void); // sends a notification to a parent window
@@ -463,8 +466,6 @@ private:
LIST<CCtrlBase> m_controls;
void NotifyControls(void (CCtrlBase::*fn)());
- CCtrlBase* FindControl(int idCtrl);
- CCtrlBase* FindControl(HWND hwnd);
CTimer* FindTimer(int idEvent);