]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/core/bitmap.cpp
adding magnification API into the wxWindow classes for best retina support
[wxWidgets.git] / src / osx / core / bitmap.cpp
index 22efcde42a143c08c02db1a68b85e9782344e96e..da236465dd4ffae271234a302fd915cf246febdf 100644 (file)
@@ -939,6 +939,11 @@ wxBitmap::wxBitmap(const void* data, wxBitmapType type, int width, int height, i
     (void) Create(data, type, width, height, depth);
 }
 
+wxBitmap::wxBitmap(int width, int height, const wxDC& WXUNUSED(dc))
+{
+    (void) Create(width, height);
+}
+
 wxBitmap::wxBitmap(const wxString& filename, wxBitmapType type)
 {
     LoadFile(filename, type);
@@ -1113,7 +1118,6 @@ bool wxBitmap::Create(int w, int h, int d)
     return M_BITMAPDATA->IsOk() ;
 }
 
-
 bool wxBitmap::Create(CGImageRef image)
 {
     UnRef();