mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Remove console debug output
svn path=/trunk/; revision=17220
This commit is contained in:
parent
d483bdfcae
commit
c1c22f5f98
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ LPCTSTR GetItemPath(HWND hwndTV, HTREEITEM hItem, HKEY* phRootKey)
|
|||
if (!hItem) hItem = TreeView_GetSelection(hwndTV);
|
||||
if (!hItem) return NULL;
|
||||
if (!get_item_path(hwndTV, hItem, phRootKey, &pathBuffer, &pathLen, &maxLen)) return NULL;
|
||||
printf("hRoot=%p, keyPath='%s'\n", *phRootKey, pathBuffer);
|
||||
/*printf("hRoot=%p, keyPath='%s'\n", *phRootKey, pathBuffer);*/
|
||||
return pathBuffer;
|
||||
}
|
||||
|
||||
|
@ -242,7 +242,7 @@ BOOL OnTreeExpanding(HWND hwndTV, NMTREEVIEW* pnmtv)
|
|||
RegCloseKey(hKey);
|
||||
}
|
||||
if (errCode != ERROR_SUCCESS) dwSubCount = 0;
|
||||
printf("dwSubCount=%ld, Name=%s\n", dwSubCount, Name);
|
||||
/*printf("dwSubCount=%ld, Name=%s\n", dwSubCount, Name);*/
|
||||
AddEntryToTree(hwndTV, pnmtv->itemNew.hItem, Name, NULL, dwSubCount, TVI_FIRST);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue