mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
5acdbb6f52
commit
4fcc83a02c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user