mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 09:09:04 +00:00
Attempt to be consistent with conversions between std::string and wxString.
This commit is contained in:
parent
e82d976d2f
commit
56f09d3b91
39 changed files with 344 additions and 300 deletions
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "Common.h"
|
||||
#include "AboutDolphin.h"
|
||||
#include "WxUtils.h"
|
||||
#include "../resources/dolphin_logo.cpp"
|
||||
#include "scmrev.h"
|
||||
|
||||
|
@ -62,7 +63,7 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
|||
"and should not be used to play games you do\n"
|
||||
"not legally own.";
|
||||
wxStaticText* const Message = new wxStaticText(this, wxID_ANY,
|
||||
wxString::FromAscii(Text.c_str()));
|
||||
StrToWxStr(Text.c_str()));
|
||||
Message->Wrap(GetSize().GetWidth());
|
||||
|
||||
wxBoxSizer* const sInfo = new wxBoxSizer(wxVERTICAL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue