From a80aa40a8f656cb155ce6b7d96054e4ede528770 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Fri, 9 Apr 2004 20:16:47 +0000 Subject: [PATCH] fix floating favorites menus svn path=/trunk/; revision=9054 --- reactos/subsys/system/explorer/doc/changes.txt | 1 + reactos/subsys/system/explorer/taskbar/startmenu.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/system/explorer/doc/changes.txt b/reactos/subsys/system/explorer/doc/changes.txt index 634948856d1..ddfafc6b172 100644 --- a/reactos/subsys/system/explorer/doc/changes.txt +++ b/reactos/subsys/system/explorer/doc/changes.txt @@ -75,3 +75,4 @@ If you search for more information, look into the CVS repository. XML storage for configuration options 28.03.2004 m. fuchs configuration options for showing/hiding clock, ... 04.04.2004 m. fuchs import of IE bookmarks; explorer sidebar with bookmark display +09.04.2004 m. fuchs changed favorites start menu implementation to work with internal bookmarks diff --git a/reactos/subsys/system/explorer/taskbar/startmenu.cpp b/reactos/subsys/system/explorer/taskbar/startmenu.cpp index 0ff0781ff53..b21b3cef800 100644 --- a/reactos/subsys/system/explorer/taskbar/startmenu.cpp +++ b/reactos/subsys/system/explorer/taskbar/startmenu.cpp @@ -281,7 +281,7 @@ LRESULT StartMenu::WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam) WindowRect pos(_hwnd); ///@todo do something similar to StartMenuRoot::TrackStartmenu() in order to automatically close submenus when clicking on the desktop background - StartMenu::Create(pos.left+3, pos.bottom-3, _create_info._folders, 0, _create_info._title, _create_info._creator); + StartMenu::Create(pos.left+3, pos.bottom-3, _create_info._folders, 0, _create_info._title, _create_info._creator, _create_info._info); CloseStartMenu(); }