]> git.saurik.com Git - wxWidgets.git/commitdiff
restore needed functions, wxMSW doesn't use wxBitmapHandlerBase
authorPaul Cornett <paulcor@bullseye.com>
Sun, 8 Oct 2006 15:54:02 +0000 (15:54 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Sun, 8 Oct 2006 15:54:02 +0000 (15:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/bitmap.cpp

index f6e6b1820f3030988f01fdf48360cb088b629677..45857264281fdb67e1b1b7e793db78c2bc70f65e 100644 (file)
@@ -1522,6 +1522,33 @@ bool wxBitmapHandler::Save(wxGDIImage *image,
     return bitmap && SaveFile(bitmap, name, type);
 }
 
+bool wxBitmapHandler::Create(wxBitmap *WXUNUSED(bitmap),
+                             const void* WXUNUSED(data),
+                             long WXUNUSED(type),
+                             int WXUNUSED(width),
+                             int WXUNUSED(height),
+                             int WXUNUSED(depth))
+{
+    return false;
+}
+
+bool wxBitmapHandler::LoadFile(wxBitmap *WXUNUSED(bitmap),
+                               const wxString& WXUNUSED(name),
+                               long WXUNUSED(type),
+                               int WXUNUSED(desiredWidth),
+                               int WXUNUSED(desiredHeight))
+{
+    return false;
+}
+
+bool wxBitmapHandler::SaveFile(wxBitmap *WXUNUSED(bitmap),
+                               const wxString& WXUNUSED(name),
+                               int WXUNUSED(type),
+                               const wxPalette *WXUNUSED(palette))
+{
+    return false;
+}
+
 // ----------------------------------------------------------------------------
 // DIB functions
 // ----------------------------------------------------------------------------