From fc7824fc883df29f0e695ac09158f1733002689b Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Sun, 1 Jan 2006 18:45:16 +0000 Subject: [PATCH] change explorer quick launch icon to use default 'my computer' icon instead of a folder. svn path=/trunk/; revision=20523 --- reactos/subsys/system/explorer/taskbar/quicklaunch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/explorer/taskbar/quicklaunch.cpp b/reactos/subsys/system/explorer/taskbar/quicklaunch.cpp index 19acaa39569..5fb7b21ccdc 100644 --- a/reactos/subsys/system/explorer/taskbar/quicklaunch.cpp +++ b/reactos/subsys/system/explorer/taskbar/quicklaunch.cpp @@ -122,7 +122,7 @@ void QuickLaunchBar::AddShortcuts() HBRUSH bk_brush = GetSysColorBrush(COLOR_BTNFACE); AddButton(ID_MINIMIZE_ALL, g_Globals._icon_cache.get_icon(ICID_MINIMIZE).create_bitmap(bk_color, bk_brush, canvas), ResString(IDS_MINIMIZE_ALL), NULL); - AddButton(ID_EXPLORE, g_Globals._icon_cache.get_icon(ICID_EXPLORER).create_bitmap(bk_color, bk_brush, canvas), ResString(IDS_TITLE), NULL); + AddButton(ID_EXPLORE, g_Globals._icon_cache.get_icon(ICID_COMPUTER).create_bitmap(bk_color, bk_brush, canvas), ResString(IDS_TITLE), NULL); TBBUTTON sep = {0, -1, TBSTATE_ENABLED, BTNS_SEP, {0, 0}, 0, 0}; SendMessage(_hwnd, TB_INSERTBUTTON, INT_MAX, (LPARAM)&sep); -- 2.17.1