Commit 1e008441 authored by Alexandre Julliard's avatar Alexandre Julliard

explorerframe: Use nameless unions/structs.

parent 4ca6d95a
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
#include <stdarg.h> #include <stdarg.h>
#define COBJMACROS #define COBJMACROS
#define NONAMELESSUNION
#include "winerror.h" #include "winerror.h"
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
...@@ -333,7 +331,7 @@ static HTREEITEM insert_shellitem(NSTC2Impl *This, IShellItem *psi, ...@@ -333,7 +331,7 @@ static HTREEITEM insert_shellitem(NSTC2Impl *This, IShellItem *psi,
HTREEITEM hParent, HTREEITEM hInsertAfter) HTREEITEM hParent, HTREEITEM hInsertAfter)
{ {
TVINSERTSTRUCTW tvins; TVINSERTSTRUCTW tvins;
TVITEMEXW *tvi = &tvins.u.itemex; TVITEMEXW *tvi = &tvins.itemex;
HTREEITEM hinserted; HTREEITEM hinserted;
TRACE("%p (%p, %p)\n", psi, hParent, hInsertAfter); TRACE("%p (%p, %p)\n", psi, hParent, hInsertAfter);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment