From ed87e2056d4e4864a3dd920e0fbfeb790bf43472 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Fri, 23 Sep 2016 15:51:53 +0000 Subject: [PATCH] [SHELL32] - CPrinterFolder: Use the printer icon for printers not the icon for printers folder. svn path=/trunk/; revision=72778 --- reactos/dll/win32/shell32/folders/CPrinterFolder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/shell32/folders/CPrinterFolder.cpp b/reactos/dll/win32/shell32/folders/CPrinterFolder.cpp index b63ab772ac9..f1c3f28ec51 100644 --- a/reactos/dll/win32/shell32/folders/CPrinterFolder.cpp +++ b/reactos/dll/win32/shell32/folders/CPrinterFolder.cpp @@ -58,7 +58,7 @@ HRESULT WINAPI CPrintersExtractIconW_CreateInstane(LPCITEMIDLIST pidl, REFIID ri return NULL; /* FIXME: other icons for default, network, print to file */ - initIcon->SetNormalIcon(swShell32Name, -IDI_SHELL_PRINTERS_FOLDER); + initIcon->SetNormalIcon(swShell32Name, -IDI_SHELL_PRINTER); return initIcon->QueryInterface(riid,ppv); }