replaced another printf() with wxLogDebug()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-08-17 22:18:21 +00:00
parent f9d855de75
commit af9e71a8b4

View File

@ -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)