]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/bitmap.cpp
fixing some warnings
[wxWidgets.git] / src / palmos / bitmap.cpp
index 5855685a63e6f1dab30814777ee4b99183d4f84d..5c229280597eb3eb4cc1d8b273ec5ccb5cabc2a5 100644 (file)
 
 #include "wx/xpmdecod.h"
 
-#ifdef wxHAVE_RAW_BITMAP
-#include "wx/rawbmp.h"
-#endif
-
 // missing from mingw32 header
 #ifndef CLR_INVALID
     #define CLR_INVALID ((COLORREF)-1)
@@ -313,28 +309,24 @@ wxBitmap wxBitmap::GetSubBitmap( const wxRect& rect) const
 #if wxUSE_PALETTE
 wxPalette* wxBitmap::GetPalette() const
 {
-    return (wxPalette *) NULL;
+    return NULL;
 }
 #endif
 
 wxMask *wxBitmap::GetMask() const
 {
-    return (wxMask *) NULL;
+    return NULL;
 }
 
 #ifdef __WXDEBUG__
 
 wxDC *wxBitmap::GetSelectedInto() const
 {
-    return (wxDC *) NULL;
+    return NULL;
 }
 
 #endif
 
-void wxBitmap::UseAlpha()
-{
-}
-
 bool wxBitmap::HasAlpha() const
 {
     return false;
@@ -368,18 +360,6 @@ void wxBitmap::SetMask(wxMask *mask)
 // raw bitmap access support
 // ----------------------------------------------------------------------------
 
-#ifdef wxHAVE_RAW_BITMAP
-void *wxBitmap::GetRawData(wxPixelDataBase& data, int bpp)
-{
-    return NULL;
-}
-
-void wxBitmap::UngetRawData(wxPixelDataBase& dataBase)
-{
-    return;
-}
-#endif // #ifdef wxHAVE_RAW_BITMAP
-
 // ----------------------------------------------------------------------------
 // wxMask
 // ----------------------------------------------------------------------------