From dc690d951f800a579e01dbda5b500d969f2a01f6 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 29 May 2006 22:45:55 +0000 Subject: [PATCH] wx.HIDE_READONLY is gone git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wx/py/editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.45.2