From: Vadim Zeitlin Date: Fri, 10 Nov 2006 16:03:03 +0000 (+0000) Subject: removed const before WXCOLORREF because (1) g++ 3.1 doesn't like it and (2) it doesn... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e090886060291a7b6fdfeb63ce154bbedd502b85?ds=inline removed const before WXCOLORREF because (1) g++ 3.1 doesn't like it and (2) it doesn't seem to make sense on an array type (why is WXCOLORREF an array anyhow?) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/carbon/colour.h b/include/wx/mac/carbon/colour.h index 05fa12dc8f..4053598903 100644 --- a/include/wx/mac/carbon/colour.h +++ b/include/wx/mac/carbon/colour.h @@ -68,7 +68,7 @@ private: public: WXCOLORREF m_pixel ; - void FromRGBColor( const WXCOLORREF* color ) ; + void FromRGBColor( WXCOLORREF* color ) ; private: