From: Andrea Zagli Date: Sun, 9 Sep 2012 10:15:53 +0000 (+0200) Subject: Deprecation of g_strcasecmp.\n\nAnd a little bugfix. X-Git-Tag: 0.5.0~8 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=edd489becee396eb5c95746166d95f3a069a3c18;p=libgtkform Deprecation of g_strcasecmp.\n\nAnd a little bugfix. --- diff --git a/libgtkform/fielddatetime.c b/libgtkform/fielddatetime.c index 720d51d..9810e7c 100644 --- a/libgtkform/fielddatetime.c +++ b/libgtkform/fielddatetime.c @@ -423,7 +423,7 @@ gtk_form_field_datetime_is_valid (GtkFormField *field) if (min_value != NULL && g_strcmp0 (min_value, "") != 0) { - if (g_strcasecmp (min_value, "now") == 0) + if (g_strcmp0 (g_utf8_casefold (min_value, -1), "now") == 0) { gdt_tmp = g_date_time_new_now_local (); @@ -462,7 +462,7 @@ gtk_form_field_datetime_is_valid (GtkFormField *field) && max_value != NULL && g_strcmp0 (max_value, "") != 0) { - if (g_strcasecmp (max_value, "now") == 0) + if (g_strcmp0 (g_utf8_casefold (max_value, -1), "now") == 0) { gdt_tmp = g_date_time_new_now_local (); diff --git a/libgtkform/fieldtext.c b/libgtkform/fieldtext.c index b762971..15f07dd 100644 --- a/libgtkform/fieldtext.c +++ b/libgtkform/fieldtext.c @@ -173,7 +173,7 @@ gchar gchar *ret; gchar *value; - ret = g_strup (""); + ret = g_strdup (""); value = gtk_form_field_text_get_value_stringify (field);