From: Matthias Clasen Date: Fri, 21 Oct 2022 01:13:46 +0000 (-0400) Subject: inspector: Fix accessibility calls X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~9^2~146^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=490d4b0b9ec5141cef79f6b484d7995117e87729;p=gtk4.git inspector: Fix accessibility calls The argument list of gtk_accessible_update_property is -1-terminated, not NULL-terminated. --- diff --git a/gtk/inspector/prop-editor.c b/gtk/inspector/prop-editor.c index df87ef3b38..caf02d1389 100644 --- a/gtk/inspector/prop-editor.c +++ b/gtk/inspector/prop-editor.c @@ -1259,13 +1259,13 @@ property_editor (GObject *object, g_strdup_printf ("%s: %s", self->name, gtk_label_get_text (GTK_LABEL (prop_edit))), - NULL); + -1); } else { gtk_accessible_update_property (GTK_ACCESSIBLE (prop_edit), GTK_ACCESSIBLE_PROPERTY_LABEL, self->name, - NULL); + -1); } return prop_edit; diff --git a/gtk/inspector/strv-editor.c b/gtk/inspector/strv-editor.c index 3230d63351..9596936a82 100644 --- a/gtk/inspector/strv-editor.c +++ b/gtk/inspector/strv-editor.c @@ -72,7 +72,7 @@ add_string (GtkInspectorStrvEditor *editor, gtk_editable_set_text (GTK_EDITABLE (entry), str); gtk_accessible_update_property (GTK_ACCESSIBLE (entry), GTK_ACCESSIBLE_PROPERTY_LABEL, _("Value"), - NULL); + -1); gtk_widget_show (entry); gtk_box_append (GTK_BOX (box), entry); g_object_set_data (G_OBJECT (box), "entry", entry); @@ -83,7 +83,7 @@ add_string (GtkInspectorStrvEditor *editor, gtk_accessible_update_property (GTK_ACCESSIBLE (button), GTK_ACCESSIBLE_PROPERTY_LABEL, g_strdup_printf (_("Remove %s"), str), - NULL); + -1); gtk_widget_show (button); gtk_box_append (GTK_BOX (box), button); g_signal_connect (button, "clicked", G_CALLBACK (remove_string), editor); @@ -116,7 +116,7 @@ gtk_inspector_strv_editor_init (GtkInspectorStrvEditor *editor) gtk_widget_set_halign (editor->button, GTK_ALIGN_END); gtk_accessible_update_property (GTK_ACCESSIBLE (editor->button), GTK_ACCESSIBLE_PROPERTY_LABEL, _("Add"), - NULL); + -1); gtk_widget_show (editor->button); g_signal_connect (editor->button, "clicked", G_CALLBACK (add_cb), editor);