Module: wine Branch: master Commit: 1e00844195043194b263d07d76c2fc1d0bf57027 URL: https://gitlab.winehq.org/wine/wine/-/commit/1e00844195043194b263d07d76c2fc1...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Jul 13 11:56:43 2023 +0200
explorerframe: Use nameless unions/structs.
---
dlls/explorerframe/nstc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dlls/explorerframe/nstc.c b/dlls/explorerframe/nstc.c index 3b56d33367a..ffc512dcd75 100644 --- a/dlls/explorerframe/nstc.c +++ b/dlls/explorerframe/nstc.c @@ -21,8 +21,6 @@ #include <stdarg.h>
#define COBJMACROS -#define NONAMELESSUNION - #include "winerror.h" #include "windef.h" #include "winbase.h" @@ -333,7 +331,7 @@ static HTREEITEM insert_shellitem(NSTC2Impl *This, IShellItem *psi, HTREEITEM hParent, HTREEITEM hInsertAfter) { TVINSERTSTRUCTW tvins; - TVITEMEXW *tvi = &tvins.u.itemex; + TVITEMEXW *tvi = &tvins.itemex; HTREEITEM hinserted; TRACE("%p (%p, %p)\n", psi, hParent, hInsertAfter);