diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-26 21:52:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-26 21:52:00 +0300 |
commit | d84b7beba3fd5148033b57b75c8299a2672377be (patch) | |
tree | 50b1a3ac0052aa58b7e7fd1250cf4152723d164a /plugins/AutoShutdown/src | |
parent | 6ae4da7c29bf777cf96b651af1a9a429d20c7b9e (diff) |
ME_SKIN2_ICONSCHANGED is totally obsoleted, thus removed
Diffstat (limited to 'plugins/AutoShutdown/src')
-rw-r--r-- | plugins/AutoShutdown/src/frame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AutoShutdown/src/frame.cpp b/plugins/AutoShutdown/src/frame.cpp index ad77a5223b..ccae0afbd2 100644 --- a/plugins/AutoShutdown/src/frame.cpp +++ b/plugins/AutoShutdown/src/frame.cpp @@ -166,7 +166,7 @@ static LRESULT CALLBACK FrameWndProc(HWND hwndFrame, UINT msg, WPARAM wParam, LP /* init layout */
dat->hHookColorsChanged = HookEventMessage(ME_COLOUR_RELOAD, hwndFrame, M_REFRESH_COLORS);
dat->hHookFontsChanged = HookEventMessage(ME_FONT_RELOAD, hwndFrame, M_REFRESH_FONTS);
- dat->hHookIconsChanged = HookEventMessage(ME_SKIN2_ICONSCHANGED, hwndFrame, M_REFRESH_ICONS);
+ dat->hHookIconsChanged = HookEventMessage(ME_SKIN_ICONSCHANGED, hwndFrame, M_REFRESH_ICONS);
SendMessage(hwndFrame, M_REFRESH_COLORS, 0, 0);
SendMessage(hwndFrame, M_REFRESH_FONTS, 0, 0);
SendMessage(hwndFrame, M_REFRESH_ICONS, 0, 0);
|