From cf76cec2327f91e256b5920d6fbbcb8bcc75daf3 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sat, 17 Dec 2005 13:26:50 +0000 Subject: Use gstdio wrappers. 2005-12-17 Tor Lillqvist * gui/e-cal-list-view.c: Use gstdio wrappers. svn path=/trunk/; revision=30806 --- calendar/ChangeLog | 2 ++ calendar/gui/e-cal-list-view.c | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index f258131ad3..52f2eb7ff7 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -4,6 +4,8 @@ * gui/e-cal-component-memo-preview.c: Use GLib to construct filenames from URIs and vice versa. + * gui/e-cal-list-view.c: Use gstdio wrappers. + 2005-12-15 Srinivasa Ragavan ** Fixes bug #324094 diff --git a/calendar/gui/e-cal-list-view.c b/calendar/gui/e-cal-list-view.c index 69c1284e0d..6cd15bb645 100644 --- a/calendar/gui/e-cal-list-view.c +++ b/calendar/gui/e-cal-list-view.c @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include
@@ -181,7 +182,7 @@ e_cal_list_view_load_state (ECalListView *cal_list_view, gchar *filename) g_return_if_fail (E_IS_CAL_LIST_VIEW (cal_list_view)); g_return_if_fail (filename != NULL); - if (stat (filename, &st) == 0 && st.st_size > 0 && S_ISREG (st.st_mode)) + if (g_stat (filename, &st) == 0 && st.st_size > 0 && S_ISREG (st.st_mode)) e_table_load_state (e_table_scrolled_get_table (cal_list_view->table_scrolled), filename); } -- cgit v1.2.3