X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ba7463d8bbf905507e868082e826d09aef14f707..0912690b65b3c58c0e12870fb971675ca5572ae6:/include/wx/dirdlg.h?ds=inline diff --git a/include/wx/dirdlg.h b/include/wx/dirdlg.h index b9e6edd3a6..c1d0a50fd4 100644 --- a/include/wx/dirdlg.h +++ b/include/wx/dirdlg.h @@ -9,9 +9,9 @@ // constants // ---------------------------------------------------------------------------- -WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr; -WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr; -WXDLLEXPORT_DATA(extern const wxChar*) wxDirSelectorPromptStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxDirDialogNameStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxDirDialogDefaultFolderStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxDirSelectorPromptStr; #define wxDD_DEFAULT_STYLE \ (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDD_NEW_DIR_BUTTON) @@ -43,11 +43,16 @@ public: */ // Universal and non-port related switches with need for generic implementation -#if defined(__WXUNIVERSAL__) || \ - defined(__WXWINCE__) || \ - defined(__SALFORDC__) || \ - !wxUSE_OLE || \ - (defined (__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS) +#if defined(__WXMSW__) && (defined(__WXUNIVERSAL__) || \ + defined(__SALFORDC__) || \ + !wxUSE_OLE || \ + (defined (__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)) + + #include "wx/generic/dirdlgg.h" + #define wxDirDialog wxGenericDirDialog + +// MS PocketPC or MS Smartphone +#elif defined(__WXMSW__) && defined(__WXWINCE__) && !defined(__HANDHELDPC__) #include "wx/generic/dirdlgg.h" #define wxDirDialog wxGenericDirDialog