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/misc.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'calendar/gui/misc.c') diff --git a/calendar/gui/misc.c b/calendar/gui/misc.c index ab657d8872..9fdf6f971b 100644 --- a/calendar/gui/misc.c +++ b/calendar/gui/misc.c @@ -45,9 +45,9 @@ * Return value: TRUE if the string is empty, FALSE otherwise. **/ gboolean -string_is_empty (const char *value) +string_is_empty (const gchar *value) { - const char *p; + const gchar *p; gboolean empty; empty = TRUE; @@ -69,11 +69,11 @@ string_is_empty (const char *value) /** * get_uri_without_password */ -char * -get_uri_without_password (const char *full_uri) +gchar * +get_uri_without_password (const gchar *full_uri) { EUri *uri; - char *uristr; + gchar *uristr; uri = e_uri_new (full_uri); if (!uri) @@ -98,15 +98,15 @@ get_position_in_array (GPtrArray *objects, gpointer item) return -1; } -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 v1.2.3