From fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 27 May 2009 11:13:25 -0400 Subject: Prefer GLib basic types over C types. --- calendar/gui/alarm-notify/util.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'calendar/gui/alarm-notify/util.c') diff --git a/calendar/gui/alarm-notify/util.c b/calendar/gui/alarm-notify/util.c index 640a8f5f99..5377c8d4b2 100644 --- a/calendar/gui/alarm-notify/util.c +++ b/calendar/gui/alarm-notify/util.c @@ -33,12 +33,12 @@ #include "util.h" /* Converts a time_t to a string, relative to the specified timezone */ -char * +gchar * timet_to_str_with_zone (time_t t, icaltimezone *zone) { struct icaltimetype itt; struct tm tm; - char buf[256]; + gchar buf[256]; if (t == -1) return g_strdup (_("invalid time")); @@ -51,15 +51,15 @@ timet_to_str_with_zone (time_t t, icaltimezone *zone) return g_strdup (buf); } -char * +gchar * calculate_time (time_t start, time_t end) { time_t difference = end - start; - char *str; - int hours, minutes; - char *times[4]; - char *joined; - int i; + gchar *str; + gint hours, minutes; + gchar *times[4]; + gchar *joined; + gint i; i = 0; if (difference >= 3600) { -- cgit