[Kazehakase-cvs] CVS update: kazehakase/src/bookmarks

Zurück zum Archiv-Index

Hiroyuki Ikezoe ikezo****@users*****
Sat Jan 27 08:42:24 JST 2007


Index: kazehakase/src/bookmarks/kz-actions-bookmark.c
diff -u kazehakase/src/bookmarks/kz-actions-bookmark.c:1.35 kazehakase/src/bookmarks/kz-actions-bookmark.c:1.36
--- kazehakase/src/bookmarks/kz-actions-bookmark.c:1.35	Mon Jan 15 11:28:45 2007
+++ kazehakase/src/bookmarks/kz-actions-bookmark.c	Sat Jan 27 08:42:24 2007
@@ -17,7 +17,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  *
- *  $Id: kz-actions-bookmark.c,v 1.35 2007/01/15 02:28:45 ikezoe Exp $
+ *  $Id: kz-actions-bookmark.c,v 1.36 2007/01/26 23:42:24 ikezoe Exp $
  */
 
 #include "kz-actions-bookmark.h"
@@ -213,24 +213,24 @@
 	gchar *dir = NULL;
 	g_return_if_fail(KZ_IS_BOOKMARK_EDITOR(editor));
 
-	dir = g_build_filename (g_get_home_dir (),
-				other_browsers_bookmark_map[type].search_dir,
-				NULL);
+	dir = g_build_filename(g_get_home_dir(),
+			       other_browsers_bookmark_map[type].search_dir,
+			       NULL);
 	if(dir)
 	{
 		GSList *list, *node;
 
-		list = find_file  (dir,
-				   other_browsers_bookmark_map[type].search_name,
-				   other_browsers_bookmark_map[type].search_depth);
+		list = find_file(dir,
+				 other_browsers_bookmark_map[type].search_name,
+				 other_browsers_bookmark_map[type].search_depth);
 		for (node = list; node; node = g_slist_next(node))
 		{
-			if (g_file_test (node->data, G_FILE_TEST_IS_REGULAR))
+			if (g_file_test(node->data, G_FILE_TEST_IS_REGULAR))
 			{
 				KzBookmark *bookmark =
-					KZ_BOOKMARK(kz_bookmark_file_new (node->data,
-									  other_browsers_bookmark_map[type].description,
-									  NULL));
+					KZ_BOOKMARK(kz_bookmark_file_new(node->data,
+									 other_browsers_bookmark_map[type].description,
+									 NULL));
 				insert_bookmark_item(editor, bookmark);
 				g_object_unref(G_OBJECT(bookmark));
 


More information about the Kazehakase-cvs mailing list
Zurück zum Archiv-Index