https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c1f0e89e213c0ee55fd097...
commit c1f0e89e213c0ee55fd0973360d1265ed881ebd4 Author: Stanislav Motylkov x86corez@gmail.com AuthorDate: Thu Dec 20 02:35:22 2018 +0300 Commit: Hermès BÉLUSCA - MAÏTO hermes.belusca-maito@reactos.org CommitDate: Thu Dec 20 00:35:22 2018 +0100
[NETSHELL] Use distinct icon for connection status window (#1167)
CORE-15445 --- dll/shellext/netshell/lanstatusui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dll/shellext/netshell/lanstatusui.cpp b/dll/shellext/netshell/lanstatusui.cpp index 3d985e7db0..08ade893e5 100644 --- a/dll/shellext/netshell/lanstatusui.cpp +++ b/dll/shellext/netshell/lanstatusui.cpp @@ -685,7 +685,7 @@ PropSheetProc(HWND hwndDlg, UINT uMsg, LPARAM lParam) { case PSCB_INITIALIZED: { - hIcon = LoadIconW(netshell_hInstance, MAKEINTRESOURCEW(IDI_SHELL_NETWORK_FOLDER)); + hIcon = LoadIconW(netshell_hInstance, MAKEINTRESOURCEW(IDI_NET_IDLE)); SendMessageW(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)hIcon); break; } @@ -710,7 +710,7 @@ ShowStatusPropertyDialog( pinfo.phpage = hppages; pinfo.hwndParent = hwndDlg; pinfo.hInstance = netshell_hInstance; - pinfo.pszIcon = MAKEINTRESOURCEW(IDI_SHELL_NETWORK_FOLDER); + pinfo.pszIcon = MAKEINTRESOURCEW(IDI_NET_IDLE); pinfo.pfnCallback = PropSheetProc;
if (pContext->pNet->GetProperties(&pProperties) == S_OK)