From 8185f7689a0786daab3baec81f84c240c6824915 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Sun, 24 Aug 2008 22:39:36 +0000 Subject: [PATCH] Fixed build on Linux. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@306 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/src/CodeWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DebuggerWX/src/CodeWindow.cpp b/Source/Core/DebuggerWX/src/CodeWindow.cpp index 4e502030f3..96b9a822f4 100644 --- a/Source/Core/DebuggerWX/src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/src/CodeWindow.cpp @@ -348,9 +348,9 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event) break; case IDM_CREATESIGNATUREFILE: { - wxTextEntryDialog input_prefix(this, wxString::FromAscii("Only export symbols with prefix:"), wxGetTextFromUserPromptStr, "."); + wxTextEntryDialog input_prefix(this, wxString::FromAscii("Only export symbols with prefix:"), wxGetTextFromUserPromptStr, _T(".")); if (input_prefix.ShowModal() == wxID_OK) { - std::string prefix = input_prefix.GetValue().mb_str(); + std::string prefix(input_prefix.GetValue().mb_str()); wxString path = wxFileSelector( _T("Save signature as"), wxEmptyString, wxEmptyString, wxEmptyString,