]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/brush.cpp
Added empty wxDataViewCtrl header and control name string.
[wxWidgets.git] / src / mgl / brush.cpp
index 26ea8e74f6623c569ba0e7765ca60cb8dd5a2b95..7a26b387a5a71566044fdafa8ea7eb7342c9e359 100644 (file)
@@ -59,7 +59,7 @@ void wxBitmapToPixPattern(const wxBitmap& bitmap,
             mask->p[y] = 0;
             for (x = 0; x < 8; x++)
                 if ( dc->getPixelFast(x, y) != 0 )
-                    mask->p[y] |= 1 << (7 - x);
+                    mask->p[y] = (uchar)(mask->p[y] | (1 << (7 - x)));
         }
         dc->endPixel();
     }
@@ -223,7 +223,7 @@ void wxBrush::SetColour(const wxColour& col)
     M_BRUSHDATA->m_colour = col;
 }
 
-void wxBrush::SetColour(const unsigned char r, const unsigned char g, const unsigned char b)
+void wxBrush::SetColour(unsigned char r, unsigned char g, unsigned char b)
 {
     AllocExclusive();
     M_BRUSHDATA->m_colour.Set(r, g, b);