projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2141630
)
Patch #953165, Bug #821657: wxHIDE_READONLY no more important. Blind change reported...
author
Włodzimierz Skiba
<abx@abx.art.pl>
Tue, 18 May 2004 13:12:36 +0000
(13:12 +0000)
committer
Włodzimierz Skiba
<abx@abx.art.pl>
Tue, 18 May 2004 13:12:36 +0000
(13:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27338
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/os2/filedlg.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/os2/filedlg.cpp
b/src/os2/filedlg.cpp
index 13530846b842ca342bcc72d2d56c42e7bf6bd106..0fa360c0d43d82cf2082e92390f90d9ec31a2a59 100644
(file)
--- a/
src/os2/filedlg.cpp
+++ b/
src/os2/filedlg.cpp
@@
-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;