]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/brush.cpp
#ifdef'd out some parts for non-supported systems.
[wxWidgets.git] / src / gtk / brush.cpp
index e8bfb069689e26d9c1a3c18ba54fce8c44b6ee3f..1229a9516e0c6ddc145edcd63db41e7b23b6469a 100644 (file)
@@ -32,7 +32,7 @@ class wxBrushRefData: public wxObjectRefData
 wxBrushRefData::wxBrushRefData(void)
 {
   m_style = 0;
-};
+}
 
 //-----------------------------------------------------------------------------
 
@@ -43,25 +43,25 @@ IMPLEMENT_DYNAMIC_CLASS(wxBrush,wxGDIObject)
 wxBrush::wxBrush(void)
 {
   if (wxTheBrushList) wxTheBrushList->AddBrush( this );
-};
+}
 
-wxBrush::wxBrush( const wxColour &colour, const int style )
+wxBrush::wxBrush( const wxColour &colour, int style )
 {
   m_refData = new wxBrushRefData();
   M_BRUSHDATA->m_style = style;
   M_BRUSHDATA->m_colour = colour;
   
   if (wxTheBrushList) wxTheBrushList->AddBrush( this );
-};
+}
 
-wxBrush::wxBrush( const wxString &colourName, const int style )
+wxBrush::wxBrush( const wxString &colourName, int style )
 {
   m_refData = new wxBrushRefData();
   M_BRUSHDATA->m_style = style;
   M_BRUSHDATA->m_colour = colourName;
   
   if (wxTheBrushList) wxTheBrushList->AddBrush( this );
-};
+}
 
 wxBrush::wxBrush( const wxBitmap &stippleBitmap )
 {
@@ -71,62 +71,62 @@ wxBrush::wxBrush( const wxBitmap &stippleBitmap )
   M_BRUSHDATA->m_stipple = stippleBitmap;
   
   if (wxTheBrushList) wxTheBrushList->AddBrush( this );
-};
+}
 
 wxBrush::wxBrush( const wxBrush &brush )
 {
   Ref( brush );
   
   if (wxTheBrushList) wxTheBrushList->AddBrush( this );
-};
+}
 
 wxBrush::wxBrush( const wxBrush *brush )
 {
   if (brush) Ref( *brush );
   
   if (wxTheBrushList) wxTheBrushList->Append( this );
-};
+}
 
 wxBrush::~wxBrush(void)
 {
   if (wxTheBrushList) wxTheBrushList->RemoveBrush( this );
-};
+}
 
 wxBrush& wxBrush::operator = ( const wxBrush& brush )
 {
   if (*this == brush) return (*this); 
   Ref( brush ); 
   return *this; 
-};
+}
   
 bool wxBrush::operator == ( const wxBrush& brush )
 {
   return m_refData == brush.m_refData; 
-};
+}
 
 bool wxBrush::operator != ( const wxBrush& brush )
 {
   return m_refData != brush.m_refData; 
-};
+}
 
 bool wxBrush::Ok(void) const
 {
   return ((m_refData) && M_BRUSHDATA->m_colour.Ok());
-};
+}
 
 int wxBrush::GetStyle(void) const
 {
   return M_BRUSHDATA->m_style;
-};
+}
 
 wxColour &wxBrush::GetColour(void) const
 {
   return M_BRUSHDATA->m_colour;
-};
+}
 
 wxBitmap *wxBrush::GetStipple(void) const
 {
   return &M_BRUSHDATA->m_stipple;
-};
+}