diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-26 22:37:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-26 22:38:21 +0300 |
commit | 1005a0df562affafe0b0deffde3e3b626e2f14b3 (patch) | |
tree | c005dfc62147451dcd16a46181d3a5aab5bac45d /plugins/TabSRMM/src/msgdialog.cpp | |
parent | 9da0e2174a4d557f55c17fc0f82df3f6f34f58cf (diff) |
code cleaning
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index fedb3d4aab..05993c906a 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -386,9 +386,9 @@ void CTabBaseDlg::SetDialogToType() Utils::enableDlgControl(m_hwnd, IDC_TIME, true);
if (m_hwndIEView || m_hwndHPP) {
- Utils::showDlgControl(m_hwnd, IDC_SRMM_LOG, SW_HIDE);
+ m_log.Hide();
m_log.Enable(false);
- Utils::showDlgControl(m_hwnd, IDC_SRMM_MESSAGE, SW_SHOW);
+ m_message.Show();
}
else ShowMultipleControls(m_hwnd, sendControls, _countof(sendControls), SW_SHOW);
|