summaryrefslogtreecommitdiff
path: root/redo/table_unix.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-08 20:14:25 -0400
committerPietro Gagliardi <[email protected]>2014-08-08 20:14:25 -0400
commit3200a0ca974e684e900dcb74e815c567488f1634 (patch)
tree502772a95de9a7f6445d969ddf0af0c3461b5bbf /redo/table_unix.c
parent79ada1bdaa00a1dcebee65ab9bb77c51494d06a5 (diff)
More TODO/future plan separation.
Diffstat (limited to 'redo/table_unix.c')
-rw-r--r--redo/table_unix.c2
1 files changed, 0 insertions, 2 deletions
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);