From b03a20d2721c938f0e65bf9a426fd44028c4592a Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 3 Aug 2005 18:48:22 +0000 Subject: - got rid of silly #define ..._BIT, #define ... (1<<..._BIT) stuff - switched almost all uiDefBut(..., TOG|BIT|..) to use UiDefButBit and the name of the actual bit define instead of just a magic constant, this makes searching the code much nicer. most of the credit here goes to LetterRip who did almost all of the conversions, I mostly just checked them over. --- source/blender/makesdna/DNA_nla_types.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'source/blender/makesdna/DNA_nla_types.h') diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h index 8c3c4d7a7a3..49c8363192c 100644 --- a/source/blender/makesdna/DNA_nla_types.h +++ b/source/blender/makesdna/DNA_nla_types.h @@ -57,15 +57,9 @@ typedef struct bActionStrip { #define ACTSTRIPMODE_ADD 1 #define ACTSTRIP_SELECT 0x00000001 - #define ACTSTRIP_USESTRIDE 0x00000002 #define ACTSTRIP_BLENDTONEXT 0x00000004 #define ACTSTRIP_HOLDLASTFRAME 0x00000008 -#define ACTSTRIP_SELECTBIT 0 -#define ACTSTRIP_USESTRIDEBIT 1 -#define ACTSTRIP_BLENDTONEXTBIT 2 -#define ACTSTRIP_HOLDLASTFRAMEBIT 3 - #endif -- cgit v1.2.3