From: John Darrington Date: Wed, 19 Apr 2017 12:32:13 +0000 (+0200) Subject: Make warning message a little more severe. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86a9241c970066b32127b1cca4d333e350df1977;p=pspp Make warning message a little more severe. This warning should not happen any more. --- diff --git a/src/ui/gui/psppire-data-editor.c b/src/ui/gui/psppire-data-editor.c index 797db1f97d..d977686851 100644 --- a/src/ui/gui/psppire-data-editor.c +++ b/src/ui/gui/psppire-data-editor.c @@ -389,7 +389,8 @@ change_var_property (PsppireDict *dict, gint col, gint row, const GValue *value) var_set_role (var, g_value_get_int (value)); break; default: - g_message ("Changing col %d of var sheet not yet supported", col); + g_warning ("Changing unknown column %d of variable sheet column not supported", + col); break; } }