From: Andrea Zagli Date: Tue, 13 Jun 2017 17:51:29 +0000 (+0200) Subject: Use of ZakUtils::string_to_boolean in ZakFormGtkFormElementCheck::set_value. X-Git-Tag: v0.1.0~1^2 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=d5db9ebc1246bda0eafebcdc442e125093618c80;p=zakform%2Fgtk Use of ZakUtils::string_to_boolean in ZakFormGtkFormElementCheck::set_value. --- diff --git a/src/formelementcheck.c b/src/formelementcheck.c index 6cacfe7..424d283 100644 --- a/src/formelementcheck.c +++ b/src/formelementcheck.c @@ -193,30 +193,10 @@ zak_form_gtk_form_element_check_set_value (ZakFormGtkFormElementCheck *element, GtkWidget *w; gboolean active; - gchar *str_value; w = zak_form_gtk_form_element_get_widget (ZAK_FORM_GTK_FORM_ELEMENT (element)); - str_value = g_strstrip (g_strdup (g_value_get_string (value))); - - if (strcmp (str_value, "0") == 0 - || strcasecmp (str_value, "f") == 0 - || strcasecmp (str_value, "false") == 0 - || strcasecmp (str_value, "n") == 0 - || strcasecmp (str_value, "no") == 0) - { - active = FALSE; - } - else if (strcmp (str_value, "1") == 0 - || strcasecmp (str_value, "t") == 0 - || strcasecmp (str_value, "true") == 0 - || strcasecmp (str_value, "y") == 0 - || strcasecmp (str_value, "yes") == 0) - { - active = TRUE; - } - - g_free (str_value); + active = zak_utils_string_to_boolean (g_value_get_string (value)); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (w), active);