From f39680e42b24782f65c14c18d2f05df174330af8 Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Sun, 19 Jun 2011 17:50:34 +0300 Subject: [PATCH] fix index item array position --- src/ui.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/ui.c b/src/ui.c index a4ac024..bdd95b0 100644 --- a/src/ui.c +++ b/src/ui.c @@ -131,7 +131,7 @@ static GtkWidget* create_treeview(GtkWidget* top, char* name, const column_desc_ for(i = 0, count = 0; columns[i].title; i++, count++) list_store_types[i] = (columns[i].type == G_TYPE_OBJECT)?GDK_TYPE_PIXBUF:columns[i].type; - list_store_types[count + 1] = G_TYPE_INT; + list_store_types[count] = G_TYPE_INT; list_store = gtk_list_store_newv(count + 1, list_store_types); -- 1.7.4.4