]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fixes for x86_64; use wxLogDebug instead of wxPrintf
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 7 Oct 2007 21:20:16 +0000 (21:20 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 7 Oct 2007 21:20:16 +0000 (21:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/dataview.cpp

index 7a22e83dfd9176c284cee26320998b6c8f17c439..04d3f1d81169f702694a086cd5fd79ee595a970d 100644 (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;
     }