From: Vadim Zeitlin Date: Mon, 17 Aug 1998 22:18:21 +0000 (+0000) Subject: replaced another printf() with wxLogDebug() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/af9e71a8b42a6a02f2f93092a4e9d7e4cb1927b7?ds=inline replaced another printf() with wxLogDebug() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/gdicmn.cpp b/src/common/gdicmn.cpp index e343293045..c6978df34b 100644 --- a/src/common/gdicmn.cpp +++ b/src/common/gdicmn.cpp @@ -20,6 +20,8 @@ #pragma hdrstop #endif +#include "wx/log.h" + #include "wx/gdicmn.h" #include "wx/brush.h" #include "wx/pen.h" @@ -437,7 +439,7 @@ wxBitmapList::wxBitmapList () wxBitmapList::~wxBitmapList () { - printf( "Count: %d.\n", Number() ); + wxLogDebug("~wxBitmapList: count = %d", Number()); wxNode *node = First (); while (node)