clean up more output conversions, everything that wants to get printed needs to be explicitly convertex to the wxCharType otherwise the VFormat prints nothing

This commit is contained in:
Peter Tissen 2014-02-10 19:51:03 +01:00
parent 427a63f324
commit b05e466e8f
13 changed files with 37 additions and 53 deletions

View file

@ -91,9 +91,9 @@ public:
{
return
wxString::Format("%s[%d] Thread%s",
GetTypeString().mb_str(),
GetTypeString().wx_str(),
m_id,
(GetName().empty() ? "" : std::string(" (" + GetName() + ")").c_str())
wxString(GetName().empty() ? "" : std::string(" (" + GetName() + ")")).wx_str()
);
}