From 328a0f975be68404604ee2571c1d0c4cf828dfec Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 15 Jan 2019 23:14:35 +1100 Subject: Cleanup: comment line length (DNA) Prevents clang-format wrapping text before comments. --- source/blender/makesdna/DNA_screen_types.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'source/blender/makesdna/DNA_screen_types.h') diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h index 869f8c029a3..71b05a2bffa 100644 --- a/source/blender/makesdna/DNA_screen_types.h +++ b/source/blender/makesdna/DNA_screen_types.h @@ -470,7 +470,8 @@ enum { // AREA_FLAG_DEPRECATED_5 = (1 << 5), /* used to check if we should switch back to prevspace (of a different type) */ AREA_FLAG_TEMP_TYPE = (1 << 6), - /* for temporary fullscreens (file browser, image editor render) that are opened above user set fullscreens */ + /* for temporary fullscreens (file browser, image editor render) + * that are opened above user set fullscreens */ AREA_FLAG_STACKED_FULLSCREEN = (1 << 7), /* update action zones (even if the mouse is not intersecting them) */ AREA_FLAG_ACTIONZONES_UPDATE = (1 << 8), @@ -554,12 +555,15 @@ enum { /* uiList filter sort type */ enum { /* Plain values (only one is valid at a time, once masked with UILST_FLT_SORT_MASK. */ - UILST_FLT_SORT_INDEX = 0, /* Just for sake of consistency. */ + /** Just for sake of consistency. */ + UILST_FLT_SORT_INDEX = 0, UILST_FLT_SORT_ALPHA = 1, /* Bitflags affecting behavior of any kind of sorting. */ - UILST_FLT_SORT_LOCK = 1u << 30, /* Special flag to indicate that order is locked (not user-changeable). */ - UILST_FLT_SORT_REVERSE = 1u << 31 /* Special value, bitflag used to reverse order! */ + /** Special flag to indicate that order is locked (not user-changeable). */ + UILST_FLT_SORT_LOCK = 1u << 30, + /** Special value, bitflag used to reverse order! */ + UILST_FLT_SORT_REVERSE = 1u << 31 }; #define UILST_FLT_SORT_MASK (((unsigned int)(UILST_FLT_SORT_REVERSE | UILST_FLT_SORT_LOCK)) - 1) -- cgit v1.2.3