This commit is contained in:
Bill Dengler
2018-12-31 21:14:09 +00:00
parent d4bf33ca6d
commit 96a592a4f9
3 changed files with 32 additions and 1 deletions

View File

@@ -88,4 +88,7 @@ def existing_filter():
return wx.MessageDialog(None, _(u"This filter already exists. Please use a different title"), _(u"Error"), wx.OK).ShowModal()
def common_error(reason):
return wx.MessageDialog(None, reason, _(u"Error"), wx.OK).ShowModal()
return wx.MessageDialog(None, reason, _(u"Error"), wx.OK).ShowModal()
def dead_pid():
return wx.MessageDialog(None, _(u"{0} quit unexpectedly the last time it was run. If the problem persists, please report it to the {0} developers.").format(application.name), _(u"Warning"), wx.OK).ShowModal()