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
This commit is contained in:
Vadim Zeitlin
2006-11-10 16:03:03 +00:00
parent b2c31089c2
commit e090886060

View File

@@ -68,7 +68,7 @@ private:
public:
WXCOLORREF m_pixel ;
void FromRGBColor( const WXCOLORREF* color ) ;
void FromRGBColor( WXCOLORREF* color ) ;
private: