]> git.saurik.com Git - wxWidgets.git/commitdiff
#ifdefed out some redundant base classes so DLL version compiles
authorJulian Smart <julian@anthemion.co.uk>
Thu, 5 Jul 2001 20:55:06 +0000 (20:55 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 5 Jul 2001 20:55:06 +0000 (20:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/bitmap.h

index 4a1d3b0296a4c8a3891e29266fc87c27dd66cf0e..d05b3949dba3d2fbfb2ad7801f780149b6c3729d 100644 (file)
@@ -32,6 +32,9 @@ class WXDLLEXPORT wxImage;
 class WXDLLEXPORT wxMask;
 class WXDLLEXPORT wxPalette;
 
+#if !defined(__WXMSW__)
+
+// Only used by some ports
 // ----------------------------------------------------------------------------
 // wxBitmapHandler: class which knows how to create/load/save bitmaps in
 // different formats
@@ -69,8 +72,6 @@ protected:
     DECLARE_ABSTRACT_CLASS(wxBitmapHandlerBase)
 };
 
-
-
 class WXDLLEXPORT wxBitmapBase : public wxGDIObject
 {
 public:
@@ -149,8 +150,7 @@ protected:
 
     DECLARE_ABSTRACT_CLASS(wxBitmapBase)
 };
-
-
+#endif
 
 #if defined(__WXMSW__)
 #include "wx/msw/bitmap.h"