fix for wrong debugging message (replaces patch 1424028)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37401 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-02-09 00:37:56 +00:00
parent db6d391891
commit 1906f9df59

View File

@@ -280,9 +280,9 @@ bool wxFileDataObject::SetData(size_t WXUNUSED(size), const void *buf)
AddFile(wxURI::Unescape(filename.c_str() + lenPrefix));
filename.Empty();
}
else
else if ( !filename.empty() )
{
wxLogDebug(_T("Unsupported URI '%s' in wxFileDataObject"),
wxLogDebug(_T("Unsupported URI \"%s\" in wxFileDataObject"),
filename.c_str());
}