]> saetta.ns0.it Git - zakform/gtk/commitdiff
Use of ZakUtils::string_to_boolean in ZakFormGtkFormElementCheck::set_value.
authorAndrea Zagli <azagli@libero.it>
Tue, 13 Jun 2017 17:51:29 +0000 (19:51 +0200)
committerAndrea Zagli <azagli@libero.it>
Tue, 13 Jun 2017 17:51:29 +0000 (19:51 +0200)
src/formelementcheck.c

index 6cacfe7303714e6a2d8b1582c44a176ee9888876..424d283a86d3a681a2451f3f2d8353ba6ca8df5b 100644 (file)
@@ -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);