Commit in reactos/subsys/system/explorer/taskbar on MAIN
favorites.cpp+3-11.4 -> 1.5
add comments

reactos/subsys/system/explorer/taskbar
favorites.cpp 1.4 -> 1.5
diff -u -r1.4 -r1.5
--- favorites.cpp	4 Apr 2004 20:23:51 -0000	1.4
+++ favorites.cpp	4 Apr 2004 21:05:32 -0000	1.5
@@ -253,6 +253,7 @@
 }
 
 
+ /// fill treeview control with bookmark tree content
 void BookmarkList::fill_tree(HWND hwnd, HTREEITEM parent, HIMAGELIST himagelist) const
 {
 	HDC hdc = GetDC(hwnd);
@@ -302,6 +303,7 @@
 }
 
 
+ /// import Internet Explorer bookmarks from Favorites folder into bookmark list
 void BookmarkList::import_IE_favorites(ShellDirectory& dir, HWND hwnd)
 {
 	TCHAR path[MAX_PATH], ext[_MAX_EXT];
@@ -309,7 +311,7 @@
 	dir.smart_scan(SCAN_FILESYSTEM);
 
 	for(Entry*entry=dir._down; entry; entry=entry->_next) {
-		if (entry->_shell_attribs & SFGAO_HIDDEN)	// hide files like "desktop.ini"
+		if (entry->_shell_attribs & SFGAO_HIDDEN)	// ignore files like "desktop.ini"
 			continue;
 
 		String name;
CVSspam 0.2.8