From c968ed154265a925ce8adc24126e3e3ee8c3caa0 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Mon, 22 Jan 2001 02:18:27 +0000 Subject: [PATCH] Fixed Unicode strings. --- include/wine/obj_contextmenu.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wine/obj_contextmenu.h b/include/wine/obj_contextmenu.h index 542ebb73203..30e8538a32e 100644 --- a/include/wine/obj_contextmenu.h +++ b/include/wine/obj_contextmenu.h @@ -42,9 +42,9 @@ typedef struct IContextMenu IContextMenu, *LPCONTEXTMENU; #define CMDSTR_NEWFOLDERA "NewFolder" #define CMDSTR_VIEWLISTA "ViewList" #define CMDSTR_VIEWDETAILSA "ViewDetails" -#define CMDSTR_NEWFOLDERW L"NewFolder" -#define CMDSTR_VIEWLISTW L"ViewList" -#define CMDSTR_VIEWDETAILSW L"ViewDetails" +static const WCHAR CMDSTR_NEWFOLDERW[] = {'N','e','w','F','o','l','d','e','r',0}; +static const WCHAR CMDSTR_VIEWLISTW [] = {'V','i','e','w','L','i','s','t',0}; +static const WCHAR CMDSTR_VIEWDETAILSW[] = {'V','i','e','w','D','e','t','a','i','l','s',0}; #define CMDSTR_NEWFOLDER CMDSTR_NEWFOLDERA #define CMDSTR_VIEWLIST CMDSTR_VIEWLISTA -- 2.11.4.GIT