Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArystanbek Dyussenov <arystan.d@gmail.com>2009-10-27 19:13:50 +0300
committerArystanbek Dyussenov <arystan.d@gmail.com>2009-10-27 19:13:50 +0300
commit6c4388e3b09678f360504d7740da82cfc68c6f35 (patch)
treeb4970002a064c292eebec5722103ad858371b551 /source/blender/editors/include/ED_keyframing.h
parentd160891c3695042899e09ad6f39e5427dbe91d51 (diff)
- fixed enum syntax in BKE_fcurve.h and ED_keyframing.h to make g++ happy
- exporting addEditBone from armature module for COLLADA importer
Diffstat (limited to 'source/blender/editors/include/ED_keyframing.h')
-rw-r--r--source/blender/editors/include/ED_keyframing.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_keyframing.h b/source/blender/editors/include/ED_keyframing.h
index 802ceff1c07..97a08845020 100644
--- a/source/blender/editors/include/ED_keyframing.h
+++ b/source/blender/editors/include/ED_keyframing.h
@@ -116,7 +116,7 @@ typedef struct bCommonKeySrc {
/* -------- */
/* mode for modify_keyframes */
-enum {
+typedef enum eModifyKey_Modes {
MODIFYKEY_MODE_INSERT = 0,
MODIFYKEY_MODE_DELETE,
} eModifyKey_Modes;
@@ -208,7 +208,7 @@ short id_frame_has_keyframe(struct ID *id, float frame, short filter);
* WARNING: do not alter order of these, as also stored in files
* (for v3d->keyflags)
*/
-enum {
+typedef enum eAnimFilterFlags {
/* general */
ANIMFILTER_KEYS_LOCAL = (1<<0), /* only include locally available anim data */
ANIMFILTER_KEYS_MUTED = (1<<1), /* include muted elements */