Add missing comma in call to gtk_tree_store_set().

This was causing random crashes in the Debian package, see:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=764510

Thanks to Frédéric Bière for finding and fixing the problem.
This commit is contained in:
Sébastien Villemot 2014-10-17 23:34:36 +02:00 committed by Geert Janssens
parent 5acdbb6f52
commit 4fcc83a02c

View File

@ -537,8 +537,8 @@ gsslrtma_populate_tree_store(GncSxSlrTreeModelAdapter *model)
SLR_MODEL_COL_VARAIBLE_VALUE, tmp_str->str,
SLR_MODEL_COL_INSTANCE_VISIBILITY, FALSE,
SLR_MODEL_COL_VARIABLE_VISIBILITY, TRUE,
SLR_MODEL_COL_INSTANCE_STATE_SENSITIVITY, FALSE
- 1);
SLR_MODEL_COL_INSTANCE_STATE_SENSITIVITY, FALSE,
-1);
g_string_free(tmp_str, TRUE);
}
g_list_free(vars);