From b5051198e02beebd6c7d28069a62384d441bdb31 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Wed, 18 Jun 2008 14:11:52 -0400 Subject: Fixed gtktreestore.c warning by ending columns with -1; src/lua_interface.c --- src/lua_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lua_interface.c') diff --git a/src/lua_interface.c b/src/lua_interface.c index 86709a5a..20a28a6e 100644 --- a/src/lua_interface.c +++ b/src/lua_interface.c @@ -792,7 +792,7 @@ void l_pm_populate(GtkTreeIter *initial_iter) { lua_pop(lua, 1); // pixbuf lua_getfield(lua, -1, "text"); gtk_tree_store_set(pm_store, &iter, 2, lua_isstring(lua, -1) ? - lua_tostring(lua, -1) : lua_tostring(lua, -3)); + lua_tostring(lua, -1) : lua_tostring(lua, -3), -1); lua_pop(lua, 1); // display text } else warn("pm.populate: string id key must have table value."); lua_pop(lua, 1); // value -- cgit v1.2.3