No real changes, just remove trailing commas from enums.
These commas are not allowed by standard C++ and Sun CC warns about them (and some other compilers, e.g. HP aCC, even give errors for them). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -35,7 +35,7 @@ enum wxRibbonToolBarToolState
|
||||
wxRIBBON_TOOLBAR_TOOL_DROPDOWN_ACTIVE = 1 << 6,
|
||||
wxRIBBON_TOOLBAR_TOOL_ACTIVE_MASK = wxRIBBON_TOOLBAR_TOOL_NORMAL_ACTIVE | wxRIBBON_TOOLBAR_TOOL_DROPDOWN_ACTIVE,
|
||||
wxRIBBON_TOOLBAR_TOOL_DISABLED = 1 << 7,
|
||||
wxRIBBON_TOOLBAR_TOOL_STATE_MASK = 0xF8,
|
||||
wxRIBBON_TOOLBAR_TOOL_STATE_MASK = 0xF8
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user