X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fhelper.c;h=9a1172a4db3329fd93f8bbcb75ac0d5a78839764;hb=173d1687aea88e0e5e1b1d8615ed68ebefb15d08;hp=0dfae65964e47f973e3e0450aa2639b17692dd4b;hpb=4277d80790ded2c83d81a34ed536abe95c925d45;p=pspp diff --git a/src/ui/gui/helper.c b/src/ui/gui/helper.c index 0dfae65964..9a1172a4db 100644 --- a/src/ui/gui/helper.c +++ b/src/ui/gui/helper.c @@ -132,10 +132,10 @@ get_object_assert (GtkBuilder *builder, const gchar *name, GType type) o = gtk_builder_get_object (builder, name); if ( !o ) - g_critical ("Object \"%s\" could not be found\n", name); + g_critical ("Object `%s' could not be found\n", name); else if ( ! g_type_is_a (G_OBJECT_TYPE (o), type)) { - g_critical ("Object \"%s\" was expected to have type %s, but in fact has type %s", + g_critical ("Object `%s' was expected to have type %s, but in fact has type %s", name, g_type_name (type), G_OBJECT_TYPE_NAME (o)); }