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
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2011-02-21 02:21:15 +0300
committerJoshua Leung <aligorith@gmail.com>2011-02-21 02:21:15 +0300
commit55a0e21a03e88e5489dd6f53a91b6f3a6f770d9a (patch)
tree3869f942d4883bed11663c680e3868825d49b99e /source
parent187f9c5874b7b65bcb030034e17fff5c0b08f6a1 (diff)
Revert r35003. It was just an extra semicolon
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/armature/poselib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/armature/poselib.c b/source/blender/editors/armature/poselib.c
index 12abd475142..4aaa62c703e 100644
--- a/source/blender/editors/armature/poselib.c
+++ b/source/blender/editors/armature/poselib.c
@@ -477,12 +477,12 @@ void POSELIB_OT_pose_add (wmOperatorType *ot)
/* can be called with C == NULL */
static EnumPropertyItem *poselib_stored_pose_itemf(bContext *C, PointerRNA *UNUSED(ptr), int *free)
{
+ Object *ob = get_poselib_object(C);
+ bAction *act = (ob) ? ob->poselib : NULL;
TimeMarker *marker;
EnumPropertyItem *item= NULL, item_tmp= {0};
int totitem= 0;
int i= 0;
- Object *ob = get_poselib_object(C);
- bAction *act = (ob) ? ob->poselib : NULL;
if (C == NULL) {
return DummyRNA_DEFAULT_items;