fix for asserts added in own recent commit with more strict type-checking

- BMO_slot_copy now only copies compatible elements.

other minor changes
- don't use text.format(...), convention for UI scripts is C style string formatting.
- rename bmo_edgenet_prepare --> bmo_edgenet_prepare_exec
- float/double warning in bevel.
This commit is contained in:
2012-11-27 02:34:40 +00:00
parent 33c92a02e4
commit 9982b283e6
8 changed files with 56 additions and 11 deletions

View File

@@ -136,8 +136,8 @@ typedef enum eBMOpSlotSubType_Ptr {
} eBMOpSlotSubType_Ptr;
typedef union eBMOpSlotSubType_Union {
eBMOpSlotSubType_Map elem;
eBMOpSlotSubType_Map ptr;
eBMOpSlotSubType_Elem elem;
eBMOpSlotSubType_Ptr ptr;
eBMOpSlotSubType_Map map;
} eBMOpSlotSubType_Union;