Author: gedmurphy Date: Sat Sep 30 14:39:36 2006 New Revision: 24311
URL: http://svn.reactos.org/svn/reactos?rev=24311&view=rev Log: implement refresh, although it runs at a snails pace until the multiple SetupDiGetClassDevs call issue is fixed
Modified: trunk/reactos/base/applications/devmgmt/mainwnd.c
Modified: trunk/reactos/base/applications/devmgmt/mainwnd.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/devmgmt/m... ============================================================================== --- trunk/reactos/base/applications/devmgmt/mainwnd.c (original) +++ trunk/reactos/base/applications/devmgmt/mainwnd.c Sat Sep 30 14:39:36 2006 @@ -243,7 +243,9 @@
case IDC_REFRESH: { - // refresh treeview + HTREEITEM hRoot = InitTreeView(Info); + if (hRoot) + ListDevicesByType(Info, hRoot); } break;