Use the GLib gstdio functions here, suggested in bug 542819 by Thadeu Lima

2008-07-14  A. Walton  <awalton@gnome.org>

	* libnautilus-private/nautilus-emblem-utils.c
	(nautilus_emblem_install_custom_emblem),
	(nautilus_emblem_can_remove_emblem):
	Use the GLib gstdio functions here, suggested in bug 542819
	by Thadeu Lima de Souza Cascardo.


svn path=/trunk/; revision=14359
This commit is contained in:
A. Walton 2008-07-14 08:16:40 +00:00 committed by Andrew Walton
parent 5a1ff050d6
commit b187409327
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2008-07-14 A. Walton <awalton@gnome.org>
* libnautilus-private/nautilus-emblem-utils.c
(nautilus_emblem_install_custom_emblem),
(nautilus_emblem_can_remove_emblem):
Use the GLib gstdio functions here, suggested in bug 542819
by Thadeu Lima de Souza Cascardo.
2008-07-13 Christian Neumair <cneumair@gnome.org>
* libnautilus-private/nautilus-file.c:

View file

@ -307,7 +307,7 @@ nautilus_emblem_install_custom_emblem (GdkPixbuf *pixbuf,
}
/* Touch the toplevel dir */
if (stat (stat_dir, &stat_buf) == 0) {
if (g_stat (stat_dir, &stat_buf) == 0) {
ubuf.actime = stat_buf.st_atime;
ubuf.modtime = time (NULL);
utime (stat_dir, &ubuf);
@ -328,7 +328,7 @@ nautilus_emblem_can_remove_emblem (const char *keyword)
path = g_strdup_printf ("%s/.icons/hicolor/48x48/emblems/emblem-%s.png",
g_get_home_dir (), keyword);
if (access (path, F_OK|W_OK) != 0) {
if (g_access (path, F_OK|W_OK) != 0) {
ret = FALSE;
}