(svn r19507) -Codechange: remove semicolon after DECLARE_POSTFIX_INCREMENT and DECLARE_ENUM_AS_BIT_SET

This commit is contained in:
smatz
2010-03-23 22:25:43 +00:00
parent f45e579923
commit 53aaabe6e9
44 changed files with 57 additions and 57 deletions

View File

@@ -235,7 +235,7 @@ enum NWidgetDisplay {
ND_SHADE_DIMMED = 1 << NDB_SHADE_DIMMED, ///< Bit value of the 'dimmed colours' flag.
ND_DROPDOWN_ACTIVE = 1 << NDB_DROPDOWN_ACTIVE, ///< Bit value of the 'dropdown active' flag.
};
DECLARE_ENUM_AS_BIT_SET(NWidgetDisplay);
DECLARE_ENUM_AS_BIT_SET(NWidgetDisplay)
/** Base class for a 'real' widget.
* @ingroup NestedWidgets */
@@ -358,7 +358,7 @@ enum NWidContainerFlags {
NC_NONE = 0, ///< All flags cleared.
NC_EQUALSIZE = 1 << NCB_EQUALSIZE, ///< Value of the #NCB_EQUALSIZE flag.
};
DECLARE_ENUM_AS_BIT_SET(NWidContainerFlags);
DECLARE_ENUM_AS_BIT_SET(NWidContainerFlags)
/** Container with pre/inter/post child space. */
class NWidgetPIPContainer : public NWidgetContainer {