X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..6cab632f3251ae1117d24544813f47c6597a3b34:/include/wx/imagjpeg.h?ds=sidebyside diff --git a/include/wx/imagjpeg.h b/include/wx/imagjpeg.h index 491f847bda..873942e00a 100644 --- a/include/wx/imagjpeg.h +++ b/include/wx/imagjpeg.h @@ -20,13 +20,15 @@ #include "wx/image.h" -class WXDLLEXPORT wxJPEGHandler: public wxImageHandler +class WXDLLIMPEXP_CORE wxJPEGHandler: public wxImageHandler { public: inline wxJPEGHandler() { m_name = wxT("JPEG file"); m_extension = wxT("jpg"); + m_altExtensions.Add(wxT("jpeg")); + m_altExtensions.Add(wxT("jpe")); m_type = wxBITMAP_TYPE_JPEG; m_mime = wxT("image/jpeg"); } @@ -34,6 +36,7 @@ public: #if wxUSE_STREAMS virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ); virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ); +protected: virtual bool DoCanRead( wxInputStream& stream ); #endif