From 4a70d335528e390c50206478eba16052c17b566c Mon Sep 17 00:00:00 2001 From: Hugh McMaster Date: Wed, 21 Jun 2017 12:19:27 +0000 Subject: [PATCH] regedit: Display data for all values in the GUI. Signed-off-by: Hugh McMaster Signed-off-by: Alexandre Julliard --- programs/regedit/listview.c | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/programs/regedit/listview.c b/programs/regedit/listview.c index a3bc72f6084..b7585645a3a 100644 --- a/programs/regedit/listview.c +++ b/programs/regedit/listview.c @@ -129,8 +129,13 @@ void format_value_data(HWND hwndLV, int index, DWORD type, void *data, DWORD siz ListView_SetItemTextW(hwndLV, index, 2, buf); break; } + case REG_MULTI_SZ: + MakeMULTISZDisplayable(data); + ListView_SetItemTextW(hwndLV, index, 2, data); + break; case REG_BINARY: case REG_NONE: + default: { unsigned int i; BYTE *pData = data; @@ -143,17 +148,6 @@ void format_value_data(HWND hwndLV, int index, DWORD type, void *data, DWORD siz HeapFree(GetProcessHeap(), 0, strBinary); break; } - case REG_MULTI_SZ: - MakeMULTISZDisplayable(data); - ListView_SetItemTextW(hwndLV, index, 2, data); - break; - default: - { - WCHAR szText[128]; - LoadStringW(hInst, IDS_REGISTRY_VALUE_CANT_DISPLAY, szText, COUNT_OF(szText)); - ListView_SetItemTextW(hwndLV, index, 2, szText); - break; - } } } -- 2.11.4.GIT