diff options
Diffstat (limited to 'include/m_gui.h')
-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 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);
|