Maybe fixed assertion when using built-in searching non-string columns

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62664 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2009-11-15 15:07:56 +00:00
parent 1e21d0ef1f
commit 200c18cc6c

View File

@@ -545,8 +545,8 @@ wxgtk_tree_model_get_column_type (GtkTreeModel *tree_model,
gtype = G_TYPE_STRING;
else
{
gtype = G_TYPE_STRING;
// wxFAIL_MSG( wxT("non-string columns not supported yet") );
gtype = G_TYPE_POINTER;
// wxFAIL_MSG( wxT("non-string columns not supported for searching yet") );
}
return gtype;