Commit f00652fc authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

explorer: Fix compilation on systems that don't support nameless unions.

parent 5e6d1738
......@@ -21,6 +21,7 @@
*/
#define COBJMACROS
#define NONAMELESSUNION
#include "wine/unicode.h"
#include "wine/debug.h"
......@@ -122,7 +123,7 @@ static BOOL create_combobox_item(IShellFolder *folder, LPCITEMIDLIST pidl, IImag
switch(strret.uType)
{
case STRRET_WSTR:
item->pszText = strret.pOleStr;
item->pszText = strret.u.pOleStr;
break;
default:
WINE_FIXME("Unimplemented STRRET type:%u\n",strret.uType);
......
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