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:
@@ -2690,7 +2690,7 @@ wxGtkTreeModelNode *wxDataViewCtrlInternal::FindNode( GtkTreeIter *iter )
|
|||||||
|
|
||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
wxPrintf( "Not found %d\n", (int) iter->user_data );
|
wxLogDebug( "Not found %p", iter->user_data );
|
||||||
char *crash = NULL;
|
char *crash = NULL;
|
||||||
*crash = 0;
|
*crash = 0;
|
||||||
}
|
}
|
||||||
@@ -2707,7 +2707,7 @@ wxGtkTreeModelNode *wxDataViewCtrlInternal::FindNode( const wxDataViewItem &item
|
|||||||
|
|
||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
wxPrintf( "Not found %d\n", (int) item.GetID() );
|
wxLogDebug( "Not found %p", item.GetID() );
|
||||||
char *crash = NULL;
|
char *crash = NULL;
|
||||||
*crash = 0;
|
*crash = 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user