From 79737076b89ff4a7018927bdc5516535516ed769 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 4 Dec 2000 20:19:12 +0000 Subject: macro that calls e_filename_make_safe 2000-12-04 Jeffrey Stedfast * gal/util/e-util.h (e_str_make_safe): macro that calls e_filename_make_safe * gal/util/e-util.c (e_filename_make_safe): Renamed from e_str_make_safe (e_strstrcase): go back to returning gchar * rather than const. svn path=/trunk/; revision=6780 --- e-util/e-util.c | 10 +++++----- e-util/e-util.h | 7 ++++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/e-util/e-util.c b/e-util/e-util.c index 6965bff9ee..9cc1b40b0a 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -500,7 +500,7 @@ e_strsplit (const gchar *string, return str_array; } -const gchar * +gchar * e_strstrcase (const gchar *haystack, const gchar *needle) { /* find the needle in the haystack neglecting case */ @@ -515,17 +515,17 @@ e_strstrcase (const gchar *haystack, const gchar *needle) return NULL; if (len == 0) - return haystack; + return (gchar *) haystack; - for (ptr = haystack; *(ptr + len - 1) != '\0'; ptr++) - if (!g_strncasecmp(ptr, needle, len)) + for (ptr = (gchar *) haystack; *(ptr + len - 1) != '\0'; ptr++) + if (!g_strncasecmp (ptr, needle, len)) return ptr; return NULL; } void -e_str_make_safe (gchar *string) +e_filename_make_safe (gchar *string) { gchar *p; diff --git a/e-util/e-util.h b/e-util/e-util.h index 37dcf3daec..fc6d12ef34 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -48,10 +48,11 @@ gchar **e_strsplit (const gchar *string, const gchar *delimiter, gint max_tokens); -const gchar *e_strstrcase (const gchar *haystack, - const gchar *needle); +gchar *e_strstrcase (const gchar *haystack, + const gchar *needle); -void e_str_make_safe (gchar *string); +void e_filename_make_safe (gchar *string); +#define e_str_make_safe(x) e_filename_make_safe(x) void e_marshal_INT__INT_INT_POINTER (GtkObject * object, GtkSignalFunc func, -- cgit v1.2.3