From 503528dca0210aa712706c17140f8a06bfed14dd Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 26 Jul 2004 18:48:54 +0000 Subject: [PATCH] OFN_ENABLESIZING not appropriate for WinCE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28509 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/filedlg.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/msw/filedlg.cpp b/src/msw/filedlg.cpp index 541ea70c69..8f72f3e558 100644 --- a/src/msw/filedlg.cpp +++ b/src/msw/filedlg.cpp @@ -252,8 +252,13 @@ int wxFileDialog::ShowModal() programmer needs the PLACES BAR (left side of dlg) they just shouldn't move or center the dlg. */ - if (m_bMovedWindow) // we need the these flags. - msw_flags |= OFN_EXPLORER|OFN_ENABLEHOOK|OFN_ENABLESIZING; + if (m_bMovedWindow) // we need these flags. + { + msw_flags |= OFN_EXPLORER|OFN_ENABLEHOOK; +#ifndef __WXWINCE__ + msw_flags |= OFN_ENABLESIZING; +#endif + } if (m_dialogStyle & wxMULTIPLE ) { -- 2.47.2