X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d7da7f13eb27c6416b13aab8af4a7431a9ed1d67..d44d0cbd7343e36ddd3657dd97cd5eb7018d2585:/src/msw/wince/filedlgwce.cpp diff --git a/src/msw/wince/filedlgwce.cpp b/src/msw/wince/filedlgwce.cpp index bb0a24773b..aa11f5f454 100644 --- a/src/msw/wince/filedlgwce.cpp +++ b/src/msw/wince/filedlgwce.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: src/msw/wince/filedlgwce.cpp -// Purpose: wxFileDialog for WinCE (SmartPhone) +// Purpose: wxFileDialog implementation for smart phones driven by WinCE // Author: Julian Smart // Modified by: // Created: 01/02/97 @@ -31,7 +31,7 @@ // Only use this for MS SmartPhone. Use standard file dialog // for Pocket PC. -#if wxUSE_FILEDLG && defined(__SMARTPHONE__) +#if wxUSE_FILEDLG && defined(__SMARTPHONE__) && defined(__WXWINCE__) #ifndef WX_PRECOMP #include "wx/utils.h" @@ -116,7 +116,7 @@ int wxFileDialog::ShowModal() wxWindow* parentWindow = GetParent(); if (!parentWindow) parentWindow = wxTheApp->GetTopWindow(); - + wxString str = wxGetTextFromUser(m_message, _("File"), m_fileName, parentWindow); if (str) { @@ -135,5 +135,4 @@ void wxFileDialog::GetFilenames(wxArrayString& files) const files = m_fileNames; } -#endif // wxUSE_FILEDLG - +#endif // wxUSE_FILEDLG && __SMARTPHONE__ && __WXWINCE__