]> git.saurik.com Git - wxWidgets.git/commitdiff
commenting never used code
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 3 Oct 2009 19:58:15 +0000 (19:58 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 3 Oct 2009 19:58:15 +0000 (19:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/core/bitmap.cpp

index 157cb84b510f760069c54f8fd2db99afee89d7a8..331788487f330aac1b10d4ae7782b15b91b0eb1d 100644 (file)
@@ -639,6 +639,9 @@ CGImageRef wxBitmapRefData::CreateCGImage() const
     {
         if ( m_depth != 1 && m_bitmapMask == NULL )
         {
+#if 0
+            // in order for this code to work properly, wxMask would have to invert black and white
+            // in the native bitmap
             if ( m_bitmapMask )
             {
                 CGImageRef tempImage = CGBitmapContextCreateImage( m_hBitmap );
@@ -648,6 +651,7 @@ CGImageRef wxBitmapRefData::CreateCGImage() const
                 CGImageRelease(tempImage);
             }
             else
+#endif
                 image = CGBitmapContextCreateImage( m_hBitmap );
         }
         else