X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/20e05ffbd3eff02a4c643e412d4f600cdea26952..a7910d97a37c967ee47813f9e3af33b1525d1269:/include/wx/gtk/pen.h diff --git a/include/wx/gtk/pen.h b/include/wx/gtk/pen.h index 508a4e5ea0..20d09c2ed4 100644 --- a/include/wx/gtk/pen.h +++ b/include/wx/gtk/pen.h @@ -27,7 +27,11 @@ class wxPen; -typedef char wxDash; +#if defined(__WXGTK127__) || defined(__WXGTK20__) +typedef gint8 wxGTKDash; +#else +typedef gchar wxGTKDash; +#endif //----------------------------------------------------------------------------- // wxPen @@ -41,8 +45,8 @@ public: wxPen( const wxPen& pen ); ~wxPen(); wxPen& operator = ( const wxPen& pen ); - bool operator == ( const wxPen& pen ); - bool operator != ( const wxPen& pen ); + bool operator == ( const wxPen& pen ) const; + bool operator != ( const wxPen& pen ) const; void SetColour( const wxColour &colour ); void SetColour( int red, int green, int blue );