fix a warning; NULL out the unused faces of misc_models (apparently this changes nothing)

git-svn-id: svn://svn.icculus.org/netradiant/trunk@137 61c419a2-8eb2-4b30-bcec-8cead039b335
This commit is contained in:
divverent
2008-12-09 14:57:03 +00:00
parent bdd6a6743a
commit 1c46929cfd
2 changed files with 4 additions and 3 deletions

View File

@@ -806,7 +806,7 @@ GtkWindow* PrefsDlg::BuildDialog()
{
GtkCellRenderer* renderer = gtk_cell_renderer_text_new();
GtkTreeViewColumn* column = gtk_tree_view_column_new_with_attributes("Preferences", renderer, "text", 0, 0);
GtkTreeViewColumn* column = gtk_tree_view_column_new_with_attributes("Preferences", renderer, "text", 0, NULL);
gtk_tree_view_append_column(GTK_TREE_VIEW(view), column);
}