filechooserwidget: Cosmetics

This commit is contained in:
Timm Bäder
2020-10-10 17:17:43 +02:00
committed by Matthias Clasen
parent 958e4be86d
commit 4eee6e732b

View File

@@ -8030,9 +8030,10 @@ gtk_file_chooser_widget_get_choice (GtkFileChooser *chooser,
return gtk_string_object_get_string (GTK_STRING_OBJECT (selected));
return NULL;
}
else if (GTK_IS_CHECK_BUTTON (widget))
return gtk_check_button_get_active (GTK_CHECK_BUTTON (widget)) ? "true" : "false";
{
return gtk_check_button_get_active (GTK_CHECK_BUTTON (widget)) ? "true" : "false";
}
return NULL;
}