From: Vadim Zeitlin Date: Sun, 23 Mar 2008 15:53:15 +0000 (+0000) Subject: yet more compilation fixes after brush/pen style changes: remove trailing commas... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1f2e56674255b092332752bb269fbd5ca74e7204?hp=4d98fefce72245fbbe2de6434445e05b5c74786e yet more compilation fixes after brush/pen style changes: remove trailing commas from enums git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/brush.h b/include/wx/brush.h index 12fdaf2fac..85973acb06 100644 --- a/include/wx/brush.h +++ b/include/wx/brush.h @@ -34,7 +34,7 @@ enum wxBrushStyle wxBRUSHSTYLE_HORIZONTAL_HATCH = wxHORIZONTAL_HATCH, wxBRUSHSTYLE_VERTICAL_HATCH = wxVERTICAL_HATCH, wxBRUSHSTYLE_FIRST_HATCH = wxFIRST_HATCH, - wxBRUSHSTYLE_LAST_HATCH = wxLAST_HATCH, + wxBRUSHSTYLE_LAST_HATCH = wxLAST_HATCH }; diff --git a/include/wx/defs.h b/include/wx/defs.h index cc8a15291e..3d34d267b2 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -2137,7 +2137,7 @@ enum wxDeprecatedGUIConstants wxHORIZONTAL_HATCH, wxVERTICAL_HATCH, wxFIRST_HATCH = wxBDIAGONAL_HATCH, - wxLAST_HATCH = wxVERTICAL_HATCH, + wxLAST_HATCH = wxVERTICAL_HATCH #endif }; diff --git a/include/wx/pen.h b/include/wx/pen.h index 8b85a101ef..b94486f364 100644 --- a/include/wx/pen.h +++ b/include/wx/pen.h @@ -49,7 +49,7 @@ enum wxPenJoin wxJOIN_BEVEL = 120, wxJOIN_MITER, - wxJOIN_ROUND, + wxJOIN_ROUND }; enum wxPenCap