diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-22 21:57:42 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-22 21:57:42 +0000 |
| commit | a2c8bc6e3c0d296e8c546fc168125e4cf547ced0 (patch) | |
| tree | 4d3a4007ebc084bac400de79e9c369b278500b15 /Source/Core | |
| parent | 87f42c923764684e1e52675a3fc8319aaf509c0c (diff) | |
Fix build with Unicode-enabled wx.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@614 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/Src/GameListCtrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.cpp b/Source/Core/DolphinWX/Src/GameListCtrl.cpp index 8b88b54d81..c25c9df1ff 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/Src/GameListCtrl.cpp @@ -533,7 +533,7 @@ void CGameListCtrl::OnDeleteGCM(wxCommandEvent& WXUNUSED (event)) { const GameListItem *iso = GetSelectedISO();
if (!iso)
return;
- if (wxMessageBox("Are you sure you want to delete this file?", wxMessageBoxCaptionStr, wxYES_NO) == wxYES)
+ if (wxMessageBox(_T("Are you sure you want to delete this file?"), wxMessageBoxCaptionStr, wxYES_NO) == wxYES)
{
File::Delete(iso->GetFileName().c_str());
}
|
