[Cxplorer-cvs 01115] CVS update: cxplorer/src

Back to archive index

Yasumichi Akahoshi yasum****@users*****
2005年 5月 14日 (土) 22:55:08 JST


Index: cxplorer/src/cxp-dir-view.c
diff -u cxplorer/src/cxp-dir-view.c:1.17 cxplorer/src/cxp-dir-view.c:1.18
--- cxplorer/src/cxp-dir-view.c:1.17	Thu May 12 18:55:23 2005
+++ cxplorer/src/cxp-dir-view.c	Sat May 14 22:55:07 2005
@@ -404,9 +404,8 @@
 			continue;
 		}
 		fullpath = g_build_filename (parentPath, childName, NULL);
-		/* Child node is added if it is directory and not symlink */
-		if (!g_file_test (fullpath, G_FILE_TEST_IS_SYMLINK)
-		    && g_file_test (fullpath, G_FILE_TEST_IS_DIR))
+		/* Child node is added if it is directory */
+		if (g_file_test (fullpath, G_FILE_TEST_IS_DIR))
 		{
 			dispname = cxp_path_get_basename_of_utf8 (fullpath);
 			gtk_tree_store_prepend (treestore, &child, parent);


Cxplorer-cvs メーリングリストの案内
Back to archive index