Commit in reactos/subsys/system/explorer/taskbar on MAIN | |||
startmenu.cpp | +4 | -1 | 1.95 -> 1.96 |
fix GPF for clicks in the favorites folder
diff -u -r1.95 -r1.96 --- startmenu.cpp 4 Aug 2004 18:19:01 -0000 1.95 +++ startmenu.cpp 27 Dec 2004 13:54:19 -0000 1.96 @@ -2113,8 +2113,11 @@
Bookmark& bookmark = *node._pbookmark; String url = bookmark._url;
+ HWND hparent = GetParent(_hwnd); +
CloseStartMenu(id);
- launch_file(GetParent(_hwnd), url, SW_SHOWNORMAL);
+ + launch_file(hparent, url, SW_SHOWNORMAL);
} return 0;