git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56065
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxColour m_colour;
wxColourPropertyValue()
+ : wxObject()
{
m_type = 0;
}
}
wxColourPropertyValue( const wxColourPropertyValue& v )
+ : wxObject()
{
m_type = v.m_type;
m_colour = v.m_colour;
}
wxColourPropertyValue( const wxColour& colour )
+ : wxObject()
{
m_type = wxPG_COLOUR_CUSTOM;
m_colour = colour;
}
wxColourPropertyValue( wxUint32 type )
+ : wxObject()
{
m_type = type;
}
wxColourPropertyValue( wxUint32 type, const wxColour& colour )
+ : wxObject()
{
Init( type, colour );
}