]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix after incorrectly resolved conflict
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Dec 1999 21:59:02 +0000 (21:59 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Dec 1999 21:59:02 +0000 (21:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/image.h

index 8236f2bf449804343be8b8114b542bb0a1e7b49c..93d16b3778fdbc887b86ffbaf0d34d8506367017 100644 (file)
@@ -154,33 +154,9 @@ public:
 };
 #endif
 
-//-----------------------------------------------------------------------------
-// wxBMPHandler
-//-----------------------------------------------------------------------------
-
-class WXDLLEXPORT wxBMPHandler: public wxImageHandler
-{
-  DECLARE_DYNAMIC_CLASS(wxBMPHandler)
-
-public:
-
-  inline wxBMPHandler()
-  {
-      m_name = "BMP file";
-      m_extension = "bmp";
-      m_type = wxBITMAP_TYPE_BMP;
-      m_mime = "image/bmp";
-  };
-
-#if wxUSE_STREAMS
-  virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=TRUE, int index=0 );
-  virtual bool DoCanRead( wxInputStream& stream );
-#endif
-};
-
-
-
-//-----------------------------------------------------------------------------
+// ----------------------------------------------------------------------------
+// wxPNMHandler
+// ----------------------------------------------------------------------------
 
 #if wxUSE_PNM
 class WXDLLEXPORT wxPNMHandler : public wxImageHandler