Module: wine Branch: master Commit: 4f4b342ad44f2d099a2546ad70e5616f2ef37619 URL: https://gitlab.winehq.org/wine/wine/-/commit/4f4b342ad44f2d099a2546ad70e5616...
Author: Stanislav Motylkov x86corez@gmail.com Date: Tue Oct 18 04:36:08 2022 +0300
hhctrl.ocx: Fix toolbar icons order.
In `hhtoolbar.bmp` the "Expand" icon comes first, then "Collapse".
---
dlls/hhctrl.ocx/resource.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/hhctrl.ocx/resource.h b/dlls/hhctrl.ocx/resource.h index b35b7c75cdc..2630da760cb 100644 --- a/dlls/hhctrl.ocx/resource.h +++ b/dlls/hhctrl.ocx/resource.h @@ -39,9 +39,9 @@ #define HHTB_REFRESH 1 #define HHTB_HOME 2 #define HHTB_SYNC 3 -#define HHTB_CONTRACT 4 -#define HHTB_EXPAND 5 -#define HHTB_NUMBITMAPS HHTB_EXPAND +#define HHTB_EXPAND 4 +#define HHTB_CONTRACT 5 +#define HHTB_NUMBITMAPS HHTB_CONTRACT
#define MIID_SELECTALL 10 #define MIID_VIEWSOURCE 11