]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/bitmap.cpp
Use child MDI frame menu items in preference to the parent frame ones.
[wxWidgets.git] / src / msw / bitmap.cpp
index 05d24b6d82a14afe822c7baa8f9e1d3e16ea309e..0cd514ffd12aae239bd07a92d5fe815643a984ab 100644 (file)
@@ -1173,13 +1173,6 @@ wxMask *wxBitmap::GetMask() const
     return GetBitmapData() ? GetBitmapData()->GetMask() : NULL;
 }
 
-wxBitmap wxMask::GetBitmap() const
-{
-    wxBitmap bmp;
-    bmp.SetHBITMAP(m_maskBitmap);
-    return bmp;
-}
-
 wxDC *wxBitmap::GetSelectedInto() const
 {
 #if wxDEBUG_LEVEL
@@ -1547,6 +1540,13 @@ bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour)
 #endif // __WXMICROWIN__/!__WXMICROWIN__
 }
 
+wxBitmap wxMask::GetBitmap() const
+{
+    wxBitmap bmp;
+    bmp.SetHBITMAP(m_maskBitmap);
+    return bmp;
+}
+
 // ----------------------------------------------------------------------------
 // wxBitmapHandler
 // ----------------------------------------------------------------------------