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:
authorM.G. Kishalmi <lmg@kishalmi.net>2011-03-02 09:47:08 +0300
committerM.G. Kishalmi <lmg@kishalmi.net>2011-03-02 09:47:08 +0300
commit54b654c18fad89c798e6d6bcf925dcf8e065579c (patch)
tree2b2b20a60687fa6de417a435c5ced5770fbf06e1 /source/blender/python
parent58eb5ffc2882885fbeb2c8cb616b826c69e020c3 (diff)
fixed compile problem intruduced in r35295
one import was missing, another one used twice.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna_anim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna_anim.c b/source/blender/python/intern/bpy_rna_anim.c
index 1872cf3bedf..e000f19be82 100644
--- a/source/blender/python/intern/bpy_rna_anim.c
+++ b/source/blender/python/intern/bpy_rna_anim.c
@@ -42,7 +42,7 @@
#include "BKE_animsys.h"
#include "BKE_fcurve.h"
-#include "ED_keyframing.h"
+#include "RNA_access.h"
#include "bpy_rna.h"
#include "bpy_util.h"