diff options
author | George Hazan <ghazan@miranda.im> | 2017-08-22 17:20:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-08-22 17:20:13 +0300 |
commit | 1c6e1a05125892072984932ec1ac4468215a87df (patch) | |
tree | e9dcec791ee0db61e1a36f039127dfb14070d762 /plugins/TabSRMM/src/msgdialog.cpp | |
parent | 4bba89a17624775e59b19d10da8b6967f74b5371 (diff) |
unused variable removed
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index 9dd5412534..252f6bb01e 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -872,7 +872,7 @@ void CSrmmWindow::OnDestroy() if (m_pContainer->dwFlags & CNT_SIDEBAR)
m_pContainer->SideBar->removeSession(this);
m_cache->setWindowData();
- if (!m_bIsReattach && m_hContact && M.GetByte("deletetemp", 0))
+ if (m_hContact && M.GetByte("deletetemp", 0))
if (db_get_b(m_hContact, "CList", "NotOnList", 0))
db_delete_contact(m_hContact);
|