|
From: <cur...@us...> - 2011-01-04 20:43:18
|
Revision: 76
http://wxdevcenter.svn.sourceforge.net/wxdevcenter/?rev=76&view=rev
Author: cursorstar
Date: 2011-01-04 20:43:12 +0000 (Tue, 04 Jan 2011)
Log Message:
-----------
Remove debug traces
Modified Paths:
--------------
trunk/wxdevcenter/src/ui/art.cpp
Modified: trunk/wxdevcenter/src/ui/art.cpp
===================================================================
--- trunk/wxdevcenter/src/ui/art.cpp 2011-01-04 20:17:15 UTC (rev 75)
+++ trunk/wxdevcenter/src/ui/art.cpp 2011-01-04 20:43:12 UTC (rev 76)
@@ -52,27 +52,18 @@
wxPathList list = dcConfig::GetArtPathList();
wxString path;
-printf("nb : %d\n", list.GetCount());
-for(unsigned int i=0; i<list.GetCount(); i++)
- printf(" -> %s\n", (const char*)list.Item(i).c_str());
-
wxSize sz = size;
if(sz==wxDefaultSize)
sz = wxArtProvider::GetSizeHint(client, true);
-printf(">> %s\n", (const char*)id.c_str());
-
path=id+wxT(".svg");
path=list.FindValidPath(path);
if(!path.IsEmpty())
{
-printf("++ %s\n", (const char*)path.c_str());
wxBitmap bmp = dcSVG::LoadSVG(path, size);
if(bmp.IsOk())
return bmp;
}
- else
-printf("--\n");
if(size!=wxDefaultSize)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|