Patch #953165, Bug #821657: wxHIDE_READONLY no more important. Blind change reported to Stefan Neis

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-05-18 13:12:36 +00:00
parent 21416306cb
commit 3660be5d50

View File

@@ -126,7 +126,12 @@ int wxFileDialog::ShowModal()
else
lFlags = FDS_OPEN_DIALOG;
if ((m_dialogStyle & wxHIDE_READONLY) || (m_dialogStyle & wxSAVE))
#if WXWIN_COMPATIBILITY_2_4
if (m_dialogStyle & wxHIDE_READONLY)
lFlags |= FDS_SAVEAS_DIALOG;
#endif
if (m_dialogStyle & wxSAVE)
lFlags |= FDS_SAVEAS_DIALOG;
if (m_dialogStyle & wxMULTIPLE )
lFlags |= FDS_OPEN_DIALOG | FDS_MULTIPLESEL;