From: Robin Dunn Date: Mon, 29 May 2006 22:45:55 +0000 (+0000) Subject: wx.HIDE_READONLY is gone X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dc690d951f800a579e01dbda5b500d969f2a01f6 wx.HIDE_READONLY is gone git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/py/editor.py b/wxPython/wx/py/editor.py index 8dc8981798..1271d8760d 100644 --- a/wxPython/wx/py/editor.py +++ b/wxPython/wx/py/editor.py @@ -805,7 +805,7 @@ def openMultiple(parent=None, title='Open', directory='', filename='', def saveSingle(parent=None, title='Save', directory='', filename='', wildcard='All Files (*.*)|*.*', - style=wx.SAVE | wx.HIDE_READONLY | wx.OVERWRITE_PROMPT): + style=wx.SAVE | wx.OVERWRITE_PROMPT): """File dialog wrapper function.""" dialog = wx.FileDialog(parent, title, directory, filename, wildcard, style)