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:
authorJoshua Leung <aligorith@gmail.com>2010-03-16 11:07:43 +0300
committerJoshua Leung <aligorith@gmail.com>2010-03-16 11:07:43 +0300
commitf1c049137ef89d0597f79cb0d909c7ac2821b14c (patch)
treea1d60ba404ab93b72bed8397d7e44c468351155b /source/blender/editors/include/ED_keyframing.h
parentca8f5cef7903c721c1c767ed6f2f85e593e8256f (diff)
Fixing compiler errors for those people who compile those c++ modules... bleh!
Diffstat (limited to 'source/blender/editors/include/ED_keyframing.h')
-rw-r--r--source/blender/editors/include/ED_keyframing.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_keyframing.h b/source/blender/editors/include/ED_keyframing.h
index 576069d78e8..dc0fb597c22 100644
--- a/source/blender/editors/include/ED_keyframing.h
+++ b/source/blender/editors/include/ED_keyframing.h
@@ -106,6 +106,7 @@ short delete_keyframe(struct ID *id, struct bAction *act, const char group[], co
/* forward decl. for this struct which is declared a bit later... */
struct KeyingSetInfo;
+struct ExtensionRNA;
/* Polling Callback for KeyingSets */
typedef int (*cbKeyingSet_Poll)(struct KeyingSetInfo *ksi, struct bContext *C);
@@ -141,7 +142,7 @@ typedef struct KeyingSetInfo {
cbKeyingSet_Generate generate;
/* RNA integration */
- ExtensionRNA ext;
+ struct ExtensionRNA ext;
} KeyingSetInfo;
/* -------- */