From af9e71a8b42a6a02f2f93092a4e9d7e4cb1927b7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 17 Aug 1998 22:18:21 +0000 Subject: [PATCH] replaced another printf() with wxLogDebug() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/gdicmn.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 2.47.2