]> git.saurik.com Git - wxWidgets.git/commitdiff
More of the same.
authorDavid Webster <Dave.Webster@bhmi.com>
Wed, 8 May 2002 05:22:36 +0000 (05:22 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Wed, 8 May 2002 05:22:36 +0000 (05:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/os2/bitmap.h
src/os2/bitmap.cpp

index 72f44788e6e6077d255dd3c3f650578d88888dd2..de14c11b1af2cfad96648dc76add43033ae83e21 100644 (file)
@@ -217,6 +217,8 @@ public:
       { return (GetBitmapData() ? GetBitmapData()->m_pSelectedInto : (wxDC*) NULL); }
 
     inline bool IsMono(void) const { return m_bIsMono; }
+    inline bool Flip(void) const { return m_bFlip; }
+
 
     // An OS/2 version that probably doesn't do anything like the msw version
     wxBitmap GetBitmapForDC(wxDC& rDc) const;
@@ -240,7 +242,7 @@ private:
     bool CopyFromIconOrCursor(const wxGDIImage& rIcon);
 
     bool                            m_bIsMono;
-
+    bool                            m_bFlip;
     DECLARE_DYNAMIC_CLASS(wxBitmap)
 }; // end of CLASS wxBitmap
 
index bd7ba156d60a7927f1031204b0d9cac221d9c425..2a88e27107cf0831d825eeae50620cef66fcfbc5 100644 (file)
@@ -526,7 +526,7 @@ bool wxBitmap::CreateFromImage (
 {
     wxCHECK_MSG(rImage.Ok(), FALSE, wxT("invalid image"));
     m_refData = new wxBitmapRefData();
-
+    m_bFlip = TRUE;
 
     int                             nSizeLimit = 1024 * 768 * 3;
     int                             nWidth = rImage.GetWidth();