diff options
author | George Hazan <george.hazan@gmail.com> | 2023-09-26 13:11:32 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-09-26 13:11:32 +0300 |
commit | aa23f64e684fd892a2ae51eacb71c66434efc4d0 (patch) | |
tree | 0847802404fae32ccf69116c7644be9bb8705121 /src/core/stdmsg | |
parent | b6669f0ee3361891e9807e5c734bf9121e9cfb06 (diff) |
minor code unification
Diffstat (limited to 'src/core/stdmsg')
-rw-r--r-- | src/core/stdmsg/src/chat_window.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/stdmsg/src/chat_window.cpp b/src/core/stdmsg/src/chat_window.cpp index 5513da517d..08762670c6 100644 --- a/src/core/stdmsg/src/chat_window.cpp +++ b/src/core/stdmsg/src/chat_window.cpp @@ -52,16 +52,12 @@ void CMsgDialog::UpdateFilterButton() void CMsgDialog::UpdateOptions()
{
- UpdateFilterButton();
-
HICON hIcon = ImageList_GetIcon(Clist_GetImageList(), GetImageId(), ILD_TRANSPARENT);
SendMessage(m_pOwner->m_hwndStatus, SB_SETICON, 0, (LPARAM)hIcon);
DestroyIcon(hIcon);
Window_SetIcon_IcoLib(m_pOwner->GetHwnd(), g_plugin.getIconHandle(IDI_CHANMGR));
- m_pLog->UpdateOptions();
-
// nicklist
int ih = Chat_GetTextPixelSize(L"AQGglo", g_Settings.UserListFont, FALSE);
int ih2 = Chat_GetTextPixelSize(L"AQGglo", g_Settings.UserListHeadingsFont, FALSE);
|