From edd489becee396eb5c95746166d95f3a069a3c18 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 9 Sep 2012 12:15:53 +0200 Subject: [PATCH] Deprecation of g_strcasecmp.\n\nAnd a little bugfix. --- libgtkform/fielddatetime.c | 4 ++-- libgtkform/fieldtext.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.49.0