diff options
author | George Hazan <george.hazan@gmail.com> | 2016-08-11 08:28:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-08-11 08:28:53 +0000 |
commit | 3ab53b37c6e80b2b768617848f4e01e7163bc494 (patch) | |
tree | 660ec195ef96af3e79e11a7496604d41c51744a2 /include/m_gui.h | |
parent | a137a713713078fe23839bd9c7688182b8606d0e (diff) |
CDlgBase::EndModal(INT_PTR nResult) - new method to close modal dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@17176 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_gui.h')
-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 980774a28b..bea30ce302 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -381,7 +381,8 @@ public: // general utilities
void Create();
void Show(int nCmdShow = SW_SHOW);
- int DoModal();
+ int DoModal();
+ void EndModal(INT_PTR nResult);
void SetCaption(const wchar_t *ptszCaption);
void NotifyChange(void); // sends a notification to a parent window
|