diff options
author | George Hazan <ghazan@miranda.im> | 2022-03-09 14:26:20 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-03-09 16:01:32 +0300 |
commit | b5c43418ddb50192686929bac0a6b3190aa6b600 (patch) | |
tree | c1ae2c0401135b5b4f5ce57586caeec6001e1b4f /src | |
parent | 908423bacb8bdbbae599055f02263e2b5f0c38ae (diff) |
CDlgBase::GetInst() is not inlined anymore
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_core/src/Windows/CDlgBase.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mir_core/src/Windows/CDlgBase.cpp b/src/mir_core/src/Windows/CDlgBase.cpp index e46eb269f3..d6c798eb41 100644 --- a/src/mir_core/src/Windows/CDlgBase.cpp +++ b/src/mir_core/src/Windows/CDlgBase.cpp @@ -115,6 +115,11 @@ void CDlgBase::EndModal(INT_PTR nResult) ::EndDialog(m_hwnd, nResult); } +HINSTANCE CDlgBase::GetInst() const +{ + return m_pPlugin.getInst(); +} + void CDlgBase::NotifyChange(void) { if (!m_bInitialized) |