From 45943a3b437050822cde1daa9080838e34f3275b Mon Sep 17 00:00:00 2001 From: James Henstridge Date: Tue, 5 Oct 2004 03:44:52 +0000 Subject: [PATCH] g_strdown() modifies the filename, so use strcasecmp() for the comparison 2004-10-05 James Henstridge * src/util.c (zenity_util_pixbuf_new_from_file): g_strdown() modifies the filename, so use strcasecmp() for the comparison instead. Since we are comparing against fixed ASCII strings, this should have no UTF-8 issues. --- src/util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util.c b/src/util.c index a09841e..6e9de2a 100644 --- a/src/util.c +++ b/src/util.c @@ -146,13 +146,13 @@ zenity_util_fill_file_buffer (GtkTextBuffer *buffer, const gchar *filename) GdkPixbuf * zenity_util_pixbuf_new_from_file (GtkWidget *widget, gchar *filename) { - if (!strcmp (g_strdown (filename), "warning")) + if (!strcasecmp (filename, "warning")) return gtk_widget_render_icon (widget, GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_BUTTON, NULL); - if (!strcmp (g_strdown (filename), "info")) + if (!strcasecmp (filename, "info")) return gtk_widget_render_icon (widget, GTK_STOCK_DIALOG_INFO, GTK_ICON_SIZE_BUTTON, NULL); - if (!strcmp (g_strdown (filename), "question")) + if (!strcasecmp (filename, "question")) return gtk_widget_render_icon (widget, GTK_STOCK_DIALOG_QUESTION, GTK_ICON_SIZE_BUTTON, NULL); - if (!strcmp (g_strdown (filename), "error")) + if (!strcasecmp (filename, "error")) return gtk_widget_render_icon (widget, GTK_STOCK_DIALOG_ERROR, GTK_ICON_SIZE_BUTTON, NULL); else return gdk_pixbuf_new_from_file (filename, NULL);