mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
replace all instances of wxString with std::string in all cases not
directly involved in either the GUI or other wxWidget classes like wxFile
This commit is contained in:
parent
b1894ac6cb
commit
8ac226ae69
124 changed files with 1716 additions and 1502 deletions
|
|
@ -3,11 +3,11 @@
|
|||
class TextInputDialog : public wxDialog
|
||||
{
|
||||
wxTextCtrl* m_tctrl_text;
|
||||
wxString m_result;
|
||||
std::string m_result;
|
||||
|
||||
public:
|
||||
TextInputDialog(wxWindow* parent, const wxString& defvalue = wxEmptyString);
|
||||
TextInputDialog(wxWindow* parent, const std::string& defvalue = "");
|
||||
void OnOk(wxCommandEvent& event);
|
||||
|
||||
wxString& GetResult();
|
||||
std::string GetResult();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue