From: Vadim Zeitlin Date: Mon, 15 Sep 2008 13:33:35 +0000 (+0000) Subject: WinCE compilation fix: don't use FNERR_INVALIDFILENAME X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d43803715268f5396741b3f0eb4b94d1408c9f9d WinCE compilation fix: don't use FNERR_INVALIDFILENAME git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55642 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/filedlg.cpp b/src/msw/filedlg.cpp index b42c276494..b788f8a7cf 100644 --- a/src/msw/filedlg.cpp +++ b/src/msw/filedlg.cpp @@ -331,7 +331,13 @@ static bool ShowCommFileDialog(OPENFILENAME *of, long style) } #endif // wxTRY_SMALLER_OPENFILENAME - if ( !success && errCode == FNERR_INVALIDFILENAME && of->lpstrFile[0] ) + if ( !success && + // FNERR_INVALIDFILENAME is not defined under CE (besides we don't + // use CommDlgExtendedError() there anyhow) +#ifndef __WXWINCE__ + errCode == FNERR_INVALIDFILENAME && +#endif // !__WXWINCE__ + of->lpstrFile[0] ) { // this can happen if the default file name is invalid, try without it // now