From 3200a0ca974e684e900dcb74e815c567488f1634 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 8 Aug 2014 20:14:25 -0400 Subject: More TODO/future plan separation. --- redo/table_unix.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'redo/table_unix.c') diff --git a/redo/table_unix.c b/redo/table_unix.c index 0fa9c5a..21dc38b 100644 --- a/redo/table_unix.c +++ b/redo/table_unix.c @@ -59,7 +59,6 @@ static GtkTreeModelFlags goTableModel_get_flags(GtkTreeModel *model) static GType goTableModel_get_column_type(GtkTreeModel *model, gint column) { - /* TODO change when we get more column types */ return G_TYPE_STRING; } @@ -99,7 +98,6 @@ static void goTableModel_get_value(GtkTreeModel *model, GtkTreeIter *iter, gint /* we (actually cgo) allocated str with malloc(), not g_malloc(), so let's free it explicitly and give the GValue a copy to be safe */ str = goTableModel_do_get_value(t->gotable, (gint) iter->user_data, column); /* value is uninitialized */ - /* TODO add support for multiple types */ g_value_init(value, G_TYPE_STRING); g_value_set_string(value, str); free(str); -- cgit v1.2.3