https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a8ee11e0ff864f1358bb686f663254e07ae3e38d
commit a8ee11e0ff864f1358bb686f663254e07ae3e38d Author: Stanislav Motylkov <[email protected]> AuthorDate: Thu Oct 20 21:20:36 2022 +0300 Commit: Stanislav Motylkov <[email protected]> CommitDate: Thu Oct 20 21:20:36 2022 +0300 [HHCTRL.OCX] Fix toolbar icons order In `hhtoolbar.bmp` the "Expand" icon comes first, then "Collapse". Import Wine commit wine-7.19-39-g4f4b342ad44: https://source.winehq.org/git/wine.git/commit/4f4b342ad44f2d099a2546ad70e5616f2ef37619 CORE-12198 --- dll/win32/hhctrl.ocx/resource.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dll/win32/hhctrl.ocx/resource.h b/dll/win32/hhctrl.ocx/resource.h index 02c5b490bbf..59ba13b134c 100644 --- a/dll/win32/hhctrl.ocx/resource.h +++ b/dll/win32/hhctrl.ocx/resource.h @@ -45,9 +45,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
