From 25e3bdc5ef034fcedcaa46d448c0e3e4531fd790 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 11 Apr 2024 20:30:45 +0300 Subject: =?UTF-8?q?fixes=20#4346=20(NewStory:=20=D0=B8=D1=81=D1=82=D0=BE?= =?UTF-8?q?=D1=80=D0=B8=D1=8F=20=D0=BD=D0=B5=20=D0=BE=D1=82=D0=BA=D1=80?= =?UTF-8?q?=D1=8B=D0=B2=D0=B0=D0=B5=D1=82=D1=81=D1=8F,=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BA=D0=B0=20=D0=BE=D1=82=D0=BA=D1=80=D1=8B=D1=82=D0=BE=20?= =?UTF-8?q?=D0=BE=D0=BA=D0=BD=D0=BE=20=D1=81=D0=BE=D0=BE=D0=B1=D1=89=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9=20=D1=81=20=D0=B6=D1=83=D1=80=D0=BD=D0=B0?= =?UTF-8?q?=D0=BB=D0=BE=D0=BC=20NS)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/NewStory/src/fonts.cpp | 2 +- plugins/NewStory/src/history.h | 1 - plugins/NewStory/src/history_log.cpp | 4 +--- 3 files changed, 2 insertions(+), 5 deletions(-) (limited to 'plugins/NewStory') diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index df32f891b1..c59acad7c2 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -76,7 +76,7 @@ int evtFontsChanged(WPARAM, LPARAM) it.hfnt = CreateFontIndirectA(&it.lf); } - WindowList_Broadcast(g_hNewstoryWindows, UM_REDRAWLISTH, 0, 0); + WindowList_Broadcast(g_hNewstoryLogs, UM_REDRAWLISTH, 0, 0); return 0; } diff --git a/plugins/NewStory/src/history.h b/plugins/NewStory/src/history.h index ef1d9f5961..0d5b1c74a1 100644 --- a/plugins/NewStory/src/history.h +++ b/plugins/NewStory/src/history.h @@ -11,7 +11,6 @@ enum UM_REBUILDLIST, UM_FILTERLIST, - UM_REDRAWLIST, UM_REDRAWLISTH, UM_ADDEVENT, diff --git a/plugins/NewStory/src/history_log.cpp b/plugins/NewStory/src/history_log.cpp index ec1aec4ff7..f94f3a33fc 100644 --- a/plugins/NewStory/src/history_log.cpp +++ b/plugins/NewStory/src/history_log.cpp @@ -38,13 +38,11 @@ public: m_histCtrl = (NewstoryListData *)GetWindowLongPtr(m_hwnd, 0); m_histCtrl->SetDialog(&m_pDlg); - - WindowList_Add(g_hNewstoryWindows, m_pDlg.GetHwnd(), m_pDlg.m_hContact); } void Detach() override { - WindowList_Remove(g_hNewstoryWindows, m_pDlg.GetHwnd()); + WindowList_Remove(g_hNewstoryLogs, m_pDlg.GetHwnd()); ::DestroyWindow(m_hwnd); } -- cgit v1.2.3