https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9e20be0fbf8da950e602c…
commit 9e20be0fbf8da950e602c6b1fe1e75f7ffe52442
Author: Jared Smudde <computerwhiz02(a)hotmail.com>
AuthorDate: Fri Jun 26 19:51:22 2020 -0500
Commit: Robert Naumann <gonzomdx(a)gmail.com>
CommitDate: Sat Jun 27 10:22:07 2020 +0200
[SYSDM] Set the proper icon in title bar
---
dll/cpl/sysdm/sysdm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dll/cpl/sysdm/sysdm.c b/dll/cpl/sysdm/sysdm.c
index 817c0015db7..a93b02ceb1e 100644
--- a/dll/cpl/sysdm/sysdm.c
+++ b/dll/cpl/sysdm/sysdm.c
@@ -128,7 +128,7 @@ PropSheetProc(HWND hwndDlg, UINT uMsg, LPARAM lParam)
{
case PSCB_INITIALIZED:
{
- hIcon = LoadIconW(hApplet, MAKEINTRESOURCEW(IDI_USERPROF));
+ hIcon = LoadIconW(hApplet, MAKEINTRESOURCEW(IDI_CPLSYSTEM));
SendMessageW(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)hIcon);
break;
}
@@ -161,7 +161,7 @@ SystemApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam)
psh.dwFlags = PSH_PROPTITLE | PSH_USEICONID | PSH_USECALLBACK;
psh.hwndParent = hwnd;
psh.hInstance = hApplet;
- psh.pszIcon = MAKEINTRESOURCEW(IDI_USERPROF);
+ psh.pszIcon = MAKEINTRESOURCEW(IDI_CPLSYSTEM);
psh.pszCaption = MAKEINTRESOURCE(IDS_CPLSYSTEMNAME);
psh.nPages = 0;
psh.nStartPage = 0;