Make warning message a little more severe.
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 19 Apr 2017 12:32:13 +0000 (14:32 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 19 Apr 2017 12:32:13 +0000 (14:32 +0200)
This warning should not happen any more.

src/ui/gui/psppire-data-editor.c

index 797db1f97dba6a0f3acfe9cf38908833e1ae83ae..d97768685139766f71fb4e9946071e9c10a5830f 100644 (file)
@@ -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;
     }
 }