Comment out function that does nothing except generate a compiler

warning.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12141 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2005-12-07 02:14:20 +00:00
parent 72eafc8413
commit b809e86dc0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-06 David Hampton <hampton@employees.org>
* lib/goffice-0.0.4/goffice/gtk/go-combo-text.c: Comment out
function that does nothing except generate a compiler warning.
2005-12-06 Joshua Sled <jsled@asynchronous.org>
* gog-graph-impl.h:

View File

@ -189,7 +189,7 @@ go_combo_text_init (GoComboText *ct)
ct->rows = 0;
ct->entry = gtk_entry_new ();
ct->list = gtk_tree_view_new ();
g_object_set (G_OBJECT (ct->list), NULL);
//g_object_set (G_OBJECT (ct->list), NULL);
gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (ct->list), FALSE);
store = gtk_list_store_new (1, G_TYPE_STRING);
gtk_tree_view_set_model (GTK_TREE_VIEW (ct->list), GTK_TREE_MODEL (store));