diff options
author | Lucas Rocha <lucasr@gnome.org> | 2007-08-13 20:16:37 +0000 |
---|---|---|
committer | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2007-08-13 20:16:37 +0000 |
commit | ae3e8d1496fcfc3bf2ca65e475455bbf4c935e50 (patch) | |
tree | 6aec81d373d2f626f81929808c3eab0c559a0e22 /src | |
parent | Updated Occitan translation (diff) | |
download | zenity-ae3e8d1496fcfc3bf2ca65e475455bbf4c935e50.tar.gz zenity-ae3e8d1496fcfc3bf2ca65e475455bbf4c935e50.tar.bz2 zenity-ae3e8d1496fcfc3bf2ca65e475455bbf4c935e50.zip |
fix critical warning when using checkbox and radiobox in list dialog
2007-08-13 Lucas Rocha <lucasr@gnome.org>
* src/tree.c: fix critical warning when using checkbox and radiobox in
list dialog (Fixes bug #453713).
svn path=/trunk/; revision=1230
Diffstat (limited to 'src')
-rw-r--r-- | src/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -309,7 +309,7 @@ zenity_tree (ZenityData *data, ZenityTreeData *tree_data) } else { print_columns = g_new (gint, 2); - print_columns[0] = 1; + print_columns[0] = (tree_data->radiobox || tree_data->checkbox ? 2 : 1); print_columns[1] = 0; } |