From 343f35865fbcbe638df83139d2ebc5b8b46aca04 Mon Sep 17 00:00:00 2001 From: Maarten Bosma Date: Fri, 15 Dec 2006 16:54:18 +0000 Subject: [PATCH] Do not hardcode the path to the xml file. svn path=/trunk/; revision=25170 --- reactos/base/applications/downloader/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/downloader/main.c b/reactos/base/applications/downloader/main.c index 7e72848f3e9..faec7ba8b53 100644 --- a/reactos/base/applications/downloader/main.c +++ b/reactos/base/applications/downloader/main.c @@ -122,7 +122,7 @@ void SetupControls (HWND hwnd) ImageList_Add(hImageList, LoadBitmap(hInstance, MAKEINTRESOURCE(IDB_TREEVIEW_ICON_8)), NULL); // Fill the TreeViews - ProcessXML ("C:\\reactos\\base\\applications\\downloader\\apps.xml", &Root); + ProcessXML ("apps.xml", &Root); AddItems (hCategories, Root.Children, NULL); }