X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1cd04aa2e1c4ec7ff9425cb8114211c7885dcd22..1978421a6d8b81c1f8a961da4b8ddf544fec7b1b:/src/os2/mimetype.cpp diff --git a/src/os2/mimetype.cpp b/src/os2/mimetype.cpp index bee950fe6d..215229c4a3 100644 --- a/src/os2/mimetype.cpp +++ b/src/os2/mimetype.cpp @@ -6,7 +6,7 @@ // Created: 01.21.00 // RCS-ID: $Id$ // Copyright: Adopted from msw port --(c) 1998 Vadim Zeitlin -// Licence: wxWindows license (part of wxExtra library) +// Licence: wxWindows licence (part of wxExtra library) ///////////////////////////////////////////////////////////////////////////// #define INCL_DOS @@ -27,6 +27,8 @@ #include "wx/dynarray.h" #include "wx/confbase.h" +#if wxUSE_FILE + #include "wx/os2/mimetype.h" // other standard headers @@ -229,7 +231,21 @@ bool wxFileTypeImpl::GetMimeType(wxString *mimeType) const return FALSE; } -bool wxFileTypeImpl::GetIcon(wxIcon *icon) const +bool wxFileTypeImpl::GetMimeTypes(wxArrayString& mimeTypes) const +{ + wxString s; + + if (GetMimeType(&s)) + { + mimeTypes.Clear(); + mimeTypes.Add(s); + return TRUE; + } + else + return FALSE; +} + +bool wxFileTypeImpl::GetIcon(wxIcon *icon, wxString* psCommand, int* pnIndex) const { #if wxUSE_GUI if ( m_info ) { @@ -318,7 +334,7 @@ wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString& ext) { // add the leading point if necessary wxString str; - if ( ext[0u] != wxT('.') ) { + if ( ext[(size_t) 0] != wxT('.') ) { str = wxT('.'); } str << ext; @@ -436,3 +452,4 @@ size_t wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString& mimetypes) return 0; } +#endif //wxUSE_FILE