X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/939fadc8aab8cc85906685ed6cdcb46d28f27903..5b36366c59ea68056ba07a3ca1c2cd6022a59735:/include/wx/image.h?ds=sidebyside diff --git a/include/wx/image.h b/include/wx/image.h index 9253a4bdb4..0d8f947e3c 100644 --- a/include/wx/image.h +++ b/include/wx/image.h @@ -51,7 +51,7 @@ class WXDLLEXPORT wxImageHandler: public wxObject { public: wxImageHandler() - : m_name(wxT("")), m_extension(wxT("")), m_mime(), m_type(0) + : m_name(wxEmptyString), m_extension(wxEmptyString), m_mime(), m_type(0) { } #if wxUSE_STREAMS @@ -153,15 +153,6 @@ public: wxImage( const wxImage& image ); wxImage( const wxImage* image ); -#if WXWIN_COMPATIBILITY_2_2 && wxUSE_GUI - // conversion to/from wxBitmap (deprecated, use wxBitmap's methods instead): - wxDEPRECATED( wxImage(const wxBitmap &bitmap) ); - wxDEPRECATED( wxBitmap ConvertToBitmap() const ); -#ifdef __WXGTK__ - wxBitmap ConvertToMonoBitmap( unsigned char red, unsigned char green, unsigned char blue ) const; -#endif -#endif - bool Create( int width, int height, bool clear = true ); bool Create( int width, int height, unsigned char* data, bool static_data = FALSE ); void Destroy();