diff options
Diffstat (limited to 'Source/Core/DolphinWX/GameListCtrl.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/GameListCtrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index 25ae8b4ce6..0cc725c35f 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -983,7 +983,7 @@ void CGameListCtrl::OnDeleteISO(wxCommandEvent& WXUNUSED (event)) if (!iso) return; if (wxMessageBox(_("Are you sure you want to delete this file? It will be gone forever!"), - wxMessageBoxCaptionStr, wxYES_NO | wxICON_EXCLAMATION) == wxYES) + _("Warning"), wxYES_NO | wxICON_EXCLAMATION) == wxYES) { File::Delete(iso->GetFileName()); Update(); @@ -992,7 +992,7 @@ void CGameListCtrl::OnDeleteISO(wxCommandEvent& WXUNUSED (event)) else { if (wxMessageBox(_("Are you sure you want to delete these files?\nThey will be gone forever!"), - wxMessageBoxCaptionStr, wxYES_NO | wxICON_EXCLAMATION) == wxYES) + _("Warning"), wxYES_NO | wxICON_EXCLAMATION) == wxYES) { int selected = GetSelectedItemCount(); |
