regedit: Use wide character string literals in treeview.c.
Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
039fc87827
commit
85fb14ff28
|
@ -543,12 +543,12 @@ static BOOL InitTreeViewItems(HWND hwndTV, LPWSTR pHostName)
|
||||||
{
|
{
|
||||||
TVINSERTSTRUCTW tvins;
|
TVINSERTSTRUCTW tvins;
|
||||||
HTREEITEM hRoot;
|
HTREEITEM hRoot;
|
||||||
static WCHAR hkcr[] = {'H','K','E','Y','_','C','L','A','S','S','E','S','_','R','O','O','T',0},
|
static WCHAR hkcr[] = L"HKEY_CLASSES_ROOT",
|
||||||
hkcu[] = {'H','K','E','Y','_','C','U','R','R','E','N','T','_','U','S','E','R',0},
|
hkcu[] = L"HKEY_CURRENT_USER",
|
||||||
hklm[] = {'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E',0},
|
hklm[] = L"HKEY_LOCAL_MACHINE",
|
||||||
hku[] = {'H','K','E','Y','_','U','S','E','R','S',0},
|
hku[] = L"HKEY_USERS",
|
||||||
hkcc[] = {'H','K','E','Y','_','C','U','R','R','E','N','T','_','C','O','N','F','I','G',0},
|
hkcc[] = L"HKEY_CURRENT_CONFIG",
|
||||||
hkdd[] = {'H','K','E','Y','_','D','Y','N','_','D','A','T','A',0};
|
hkdd[] = L"HKEY_DYN_DATA";
|
||||||
|
|
||||||
tvins.u.item.mask = TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_CHILDREN | TVIF_PARAM;
|
tvins.u.item.mask = TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_CHILDREN | TVIF_PARAM;
|
||||||
/* Set the text of the item. */
|
/* Set the text of the item. */
|
||||||
|
@ -694,11 +694,10 @@ HWND CreateTreeView(HWND hwndParent, LPWSTR pHostName, UINT id)
|
||||||
{
|
{
|
||||||
RECT rcClient;
|
RECT rcClient;
|
||||||
HWND hwndTV;
|
HWND hwndTV;
|
||||||
WCHAR TreeView[] = {'T','r','e','e',' ','V','i','e','w',0};
|
|
||||||
|
|
||||||
/* Get the dimensions of the parent window's client area, and create the tree view control. */
|
/* Get the dimensions of the parent window's client area, and create the tree view control. */
|
||||||
GetClientRect(hwndParent, &rcClient);
|
GetClientRect(hwndParent, &rcClient);
|
||||||
hwndTV = CreateWindowExW(WS_EX_CLIENTEDGE, WC_TREEVIEWW, TreeView,
|
hwndTV = CreateWindowExW(WS_EX_CLIENTEDGE, WC_TREEVIEWW, L"Tree View",
|
||||||
WS_VISIBLE | WS_CHILD | WS_TABSTOP | TVS_HASLINES | TVS_HASBUTTONS |
|
WS_VISIBLE | WS_CHILD | WS_TABSTOP | TVS_HASLINES | TVS_HASBUTTONS |
|
||||||
TVS_LINESATROOT | TVS_EDITLABELS | TVS_SHOWSELALWAYS,
|
TVS_LINESATROOT | TVS_EDITLABELS | TVS_SHOWSELALWAYS,
|
||||||
0, 0, rcClient.right, rcClient.bottom,
|
0, 0, rcClient.right, rcClient.bottom,
|
||||||
|
|
Loading…
Reference in New Issue