From 0bd42eceac450f49c17862d35e4d15011daebe0b Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Wed, 16 Sep 2015 20:56:14 +0000 Subject: [PATCH] [SYSDM] Set the proper title for the hardware profile properties dialog. CORE-10197 #resolve #comment Looks much better now! svn path=/trunk/; revision=69256 --- reactos/dll/cpl/sysdm/hardprof.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/cpl/sysdm/hardprof.c b/reactos/dll/cpl/sysdm/hardprof.c index 8c632e3cf43..c6064954fe6 100644 --- a/reactos/dll/cpl/sysdm/hardprof.c +++ b/reactos/dll/cpl/sysdm/hardprof.c @@ -433,11 +433,11 @@ HardwareProfileProperties( ZeroMemory(&psh, sizeof(PROPSHEETHEADER)); psh.dwSize = sizeof(PROPSHEETHEADER); - psh.dwFlags = PSH_PROPTITLE; + psh.dwFlags = PSH_PROPTITLE; psh.hwndParent = hwndDlg; psh.hInstance = hApplet; psh.hIcon = NULL; - psh.pszCaption = NULL; + psh.pszCaption = pProfileData->pProfiles[pProfileData->dwSelectedProfileIndex].szFriendlyName; psh.nPages = 1; psh.nStartPage = 0; psh.phpage = &hpsp;