mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 03:41:04 +00:00
Fix debug lbuild og log statement
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@40019 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f878112bed
commit
c0c0af046b
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ static NSString * const kButtonActionKey = @"show";
|
|||
std::wstring filename16(filename8.length(), L' '); // Make room for characters
|
||||
std::copy(filename8.begin(), filename8.end(), filename16.begin()); // Copy string to wstring.
|
||||
#if defined(DEBUG)
|
||||
std::cout << __PRETTY_FUNCTION__ << ":filename8: " << filename8 << " filename16: " << filename16 << std::endl;
|
||||
std::cout << __PRETTY_FUNCTION__ << ":filename8: " << filename8 << " filename16: " << filename16.c_str() << std::endl;
|
||||
#endif
|
||||
Gdiplus::Bitmap *bitmap = new Gdiplus::Bitmap(filename16.c_str());
|
||||
Gdiplus::Status status = bitmap->GetHICON(&result);
|
||||
|
|
Loading…
Reference in a new issue