forked from mia/Aegisub
Add wxOK to some message boxes that specified flags without including either wxOK or wxYESNO.
Originally committed to SVN as r3250.
This commit is contained in:
parent
f81b147031
commit
766ae98a76
5 changed files with 6 additions and 6 deletions
|
@ -439,7 +439,7 @@ void DialogStyleEditor::Apply (bool apply,bool close) {
|
|||
for (unsigned int i=0;i<styles.Count();i++) {
|
||||
if (newStyleName.CmpNoCase(styles[i]) == 0) {
|
||||
if ((isLocal && (grid->ass->GetStyle(styles[i]) != style)) || (!isLocal && (store->GetStyle(styles[i]) != style))) {
|
||||
wxMessageBox(_T("There is already a style with this name. Please choose another name."),_T("Style name conflict."),wxICON_ERROR);
|
||||
wxMessageBox(_T("There is already a style with this name. Please choose another name."),_T("Style name conflict."),wxICON_ERROR|wxOK);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -432,7 +432,7 @@ void DialogStyleManager::OnCatalogNew (wxCommandEvent &event) {
|
|||
|
||||
// Make sure that there is no storage with the same name (case insensitive search since Windows filenames are case insensitive)
|
||||
if (CatalogList->FindString(name, false) != wxNOT_FOUND) {
|
||||
wxMessageBox(_("A catalog with that name already exists."),_("Catalog name conflict"),wxICON_ERROR);
|
||||
wxMessageBox(_("A catalog with that name already exists."),_("Catalog name conflict"),wxICON_ERROR|wxOK);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -1394,7 +1394,7 @@ void FrameMain::OnSetARCustom (wxCommandEvent &event) {
|
|||
}
|
||||
|
||||
// Sanity check
|
||||
if (numval < 0.5 || numval > 5.0) wxMessageBox(_("Invalid value! Aspect ratio must be between 0.5 and 5.0."),_("Invalid Aspect Ratio"),wxICON_ERROR);
|
||||
if (numval < 0.5 || numval > 5.0) wxMessageBox(_("Invalid value! Aspect ratio must be between 0.5 and 5.0."),_("Invalid Aspect Ratio"),wxICON_ERROR|wxOK);
|
||||
|
||||
// Set value
|
||||
else {
|
||||
|
|
|
@ -465,7 +465,7 @@ void OptionsManager::Load() {
|
|||
header = _T("");
|
||||
}
|
||||
if (header != _T("[Config]")) {
|
||||
wxMessageBox(_("Configuration file is either invalid or corrupt. The current file will be backed up and replaced with a default file."),_("Error"),wxCENTRE|wxICON_WARNING);
|
||||
wxMessageBox(_("Configuration file is either invalid or corrupt. The current file will be backed up and replaced with a default file."),_("Error"),wxCENTRE|wxICON_WARNING|wxOK);
|
||||
wxRenameFile(filename,filename + wxString::Format(_T(".%i.backup"),wxGetUTCTime()));
|
||||
modified = true;
|
||||
return;
|
||||
|
@ -480,7 +480,7 @@ void OptionsManager::Load() {
|
|||
curLine = file.ReadLineFromFile();
|
||||
}
|
||||
catch (wxString e) {
|
||||
wxMessageBox(_("Configuration file is either invalid or corrupt. The current file will be backed up and replaced with a default file."),_("Error"),wxCENTRE|wxICON_WARNING);
|
||||
wxMessageBox(_("Configuration file is either invalid or corrupt. The current file will be backed up and replaced with a default file."),_("Error"),wxCENTRE|wxICON_WARNING|wxOK);
|
||||
wxRenameFile(filename,filename + wxString::Format(_T(".%i.backup"),wxGetUTCTime()));
|
||||
modified = true;
|
||||
return;
|
||||
|
|
|
@ -148,7 +148,7 @@ void SubtitlesPreview::UpdateBitmap(int w,int h) {
|
|||
provider = SubtitlesProviderFactoryManager::GetProvider();
|
||||
}
|
||||
catch (...) {
|
||||
wxMessageBox(_T("Could not get any subtitles provider for the preview box. Make sure that you have a provider installed."),_T("No subtitles provider"),wxICON_ERROR);
|
||||
wxMessageBox(_T("Could not get any subtitles provider for the preview box. Make sure that you have a provider installed."),_T("No subtitles provider"),wxICON_ERROR|wxOK);
|
||||
}
|
||||
|
||||
// Provider OK
|
||||
|
|
Loading…
Reference in a new issue