summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src/msgdlgutils.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-10-29 18:54:58 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-10-29 18:54:58 +0300
commit08d4acbb33f69c9bb0dcb4255785367f631c0e95 (patch)
treeb22ac0083f45c80cc8898712b4080d19cd4763bf /plugins/TabSRMM/src/msgdlgutils.cpp
parent386efd14b629c5d9cf383653936cce5861e6c7a9 (diff)
rest of operational flags in tabSRMM moved to bool variables
Diffstat (limited to 'plugins/TabSRMM/src/msgdlgutils.cpp')
-rw-r--r--plugins/TabSRMM/src/msgdlgutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdlgutils.cpp b/plugins/TabSRMM/src/msgdlgutils.cpp
index e369c32818..dca0a1a8db 100644
--- a/plugins/TabSRMM/src/msgdlgutils.cpp
+++ b/plugins/TabSRMM/src/msgdlgutils.cpp
@@ -213,7 +213,7 @@ void TSAPI HandleIconFeedback(CMsgDialog *dat, HICON iIcon)
TCITEM item = {};
if (iIcon == (HICON)-1) { // restore status image
- if (dat->m_dwFlags & MWF_ERRORSTATE)
+ if (dat->m_bErrorState)
dat->m_hTabIcon = PluginConfig.g_iconErr;
else
dat->m_hTabIcon = dat->m_hTabStatusIcon;