From: John Darrington Date: Fri, 7 Apr 2017 15:00:59 +0000 (+0200) Subject: change_var_property: Make parameter const X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24546be11b2d7c99a624c4b704c3128ab7dbda1f;p=pspp change_var_property: Make parameter const --- diff --git a/src/ui/gui/psppire-data-editor.c b/src/ui/gui/psppire-data-editor.c index b8aec15e86..65e25a51d6 100644 --- a/src/ui/gui/psppire-data-editor.c +++ b/src/ui/gui/psppire-data-editor.c @@ -243,7 +243,7 @@ psppire_data_editor_refresh_model (PsppireDataEditor *de) } static void -change_var_property (PsppireDict *dict, gint col, gint row, GValue *value) +change_var_property (PsppireDict *dict, gint col, gint row, const GValue *value) { /* Return the IDXth variable */ struct variable *var = psppire_dict_get_variable (dict, row);