diff options
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber_iqid_muc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_iqid_muc.cpp b/protocols/JabberG/src/jabber_iqid_muc.cpp index 36b83a58f4..da9d347915 100644 --- a/protocols/JabberG/src/jabber_iqid_muc.cpp +++ b/protocols/JabberG/src/jabber_iqid_muc.cpp @@ -95,7 +95,7 @@ class CJabberMucJidListDlg : public CJabberDlgBase return;
ptrW filter(bFilter ? edtFilter.GetText() : nullptr);
- m_list.SendMsg(WM_SETREDRAW, FALSE, 0);
+ m_list.SetDraw(false);
FreeList();
@@ -151,7 +151,7 @@ class CJabberMucJidListDlg : public CJabberDlgBase lvi.iImage = 1;
m_list.InsertItem(&lvi);
- m_list.SendMsg(WM_SETREDRAW, TRUE, 0);
+ m_list.SetDraw(true);
RedrawWindow(m_list.GetHwnd(), nullptr, nullptr, RDW_INVALIDATE);
}
|