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

@ -65,7 +65,7 @@ u32 section_offs = 0;
SectionInfo::SectionInfo(const wxString& _name)
{
name = _name.c_str();
name = _name.ToStdString();
memset(&shdr, 0, sizeof(Elf64_Shdr));
section_num = sections_list.Add(this);
@ -470,7 +470,7 @@ void CompilePPUProgram::DetectArgInfo(Arg& arg)
return;
}
arg.string = str(1, str.Len() - 2).c_str();
arg.string = str(1, str.Len() - 2).ToStdString();
arg.type = ARG_TXT;
return;
}