diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-21 18:23:08 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-21 18:23:08 +0300 |
commit | b3a736917686b19b55c684c1b15c1e83cd0261e5 (patch) | |
tree | 2b71bed0ce0058f33a389a46b2be7dc67accab0b /plugins/TabSRMM/src/msgs.cpp | |
parent | 03ba85dcd2d47cf31d6181b40620e278f7f30427 (diff) |
some common code moved into mir_app
Diffstat (limited to 'plugins/TabSRMM/src/msgs.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgs.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/TabSRMM/src/msgs.cpp b/plugins/TabSRMM/src/msgs.cpp index 616fde47f3..8583720511 100644 --- a/plugins/TabSRMM/src/msgs.cpp +++ b/plugins/TabSRMM/src/msgs.cpp @@ -148,6 +148,12 @@ CTabBaseDlg::~CTabBaseDlg() if (m_hTaskbarIcon) DestroyIcon(m_hTaskbarIcon);
}
+void CTabBaseDlg::LoadSettings()
+{
+ m_clrInputBG = m_pContainer->theme.inputbg;
+ LoadLogfont(FONTSECTION_IM, MSGFONTID_MESSAGEAREA, nullptr, &m_clrInputFG, FONTMODULE);
+}
+
void CTabBaseDlg::OnInitDialog()
{
SetWindowLongPtr(m_hwnd, GWLP_USERDATA, (LONG_PTR)this);
|