nautilus r14209 - in trunk: . src



Author: cneumair
Date: Thu May 29 18:44:40 2008
New Revision: 14209
URL: http://svn.gnome.org/viewvc/nautilus?rev=14209&view=rev

Log:
2008-05-29  Christian Neumair  <cneumair gnome org>

	* src/nautilus-bookmark-list.c (nautilus_bookmark_list_save_file):
	Convert g_warning() about inability to write to ~/.gtk-bookmarks to
	g_message().


Modified:
   trunk/ChangeLog
   trunk/src/nautilus-bookmark-list.c

Modified: trunk/src/nautilus-bookmark-list.c
==============================================================================
--- trunk/src/nautilus-bookmark-list.c	(original)
+++ trunk/src/nautilus-bookmark-list.c	Thu May 29 18:44:40 2008
@@ -524,7 +524,7 @@
 
 	out = (GOutputStream *)g_file_replace (file, NULL, FALSE, 0, NULL, &error);
 	if (out == NULL) {
-		g_warning ("Error opening bookmark file: %s\n", error->message);
+		g_message ("Opening bookmark file failed: %s\n", error->message);
 		goto error;
 	}
 
@@ -564,7 +564,7 @@
 	}
 
 	if (!g_output_stream_close (out, NULL, &error)) {
-		g_warning ("Error closing bookmark file: %s\n", error->message);
+		g_warning ("Closing bookmark file failed: %s\n", error->message);
 	}
 
 error:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]