X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-var-store.c;h=ddfc802f576051277fa45226efc618636eb1dac1;hb=173d1687aea88e0e5e1b1d8615ed68ebefb15d08;hp=1a2fc1fcee1429d5e83d68f35204b88fca68bef2;hpb=4277d80790ded2c83d81a34ed536abe95c925d45;p=pspp diff --git a/src/ui/gui/psppire-var-store.c b/src/ui/gui/psppire-var-store.c index 1a2fc1fcee..ddfc802f57 100644 --- a/src/ui/gui/psppire-var-store.c +++ b/src/ui/gui/psppire-var-store.c @@ -279,7 +279,7 @@ static void psppire_var_store_init (PsppireVarStore *var_store) { if ( ! gdk_color_parse (DISABLED_COLOR, &var_store->disabled)) - g_critical ("Could not parse color \"%s\"", DISABLED_COLOR); + g_critical ("Could not parse color `%s'", DISABLED_COLOR); var_store->dictionary = NULL; var_store->format_type = PSPPIRE_VAR_STORE_OUTPUT_FORMATS; @@ -685,7 +685,7 @@ text_for_column (PsppireVarStore *vs, default: { char str[FMT_STRING_LEN_MAX + 1]; - g_warning ("Unknown format: \"%s\"\n", + g_warning ("Unknown format: `%s'\n", fmt_to_string (write_spec, str)); } break; @@ -752,7 +752,7 @@ text_for_column (PsppireVarStore *vs, { gchar *const vstr = value_to_text (vl->value, dict, *write_spec); - return g_strdup_printf ( "{%s,\"%s\"}_", vstr, val_lab_get_label (vl)); + return g_strdup_printf ( "{%s,`%s'}_", vstr, val_lab_get_label (vl)); } } }