compilation fixes for x86_64; use wxLogDebug instead of wxPrintf

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-10-07 21:20:16 +00:00
parent 143591e943
commit 26f119eb25

View File

@@ -2690,7 +2690,7 @@ wxGtkTreeModelNode *wxDataViewCtrlInternal::FindNode( GtkTreeIter *iter )
if (!result)
{
wxPrintf( "Not found %d\n", (int) iter->user_data );
wxLogDebug( "Not found %p", iter->user_data );
char *crash = NULL;
*crash = 0;
}
@@ -2707,7 +2707,7 @@ wxGtkTreeModelNode *wxDataViewCtrlInternal::FindNode( const wxDataViewItem &item
if (!result)
{
wxPrintf( "Not found %d\n", (int) item.GetID() );
wxLogDebug( "Not found %p", item.GetID() );
char *crash = NULL;
*crash = 0;
}