From f361c49d70bcb4d49c6bbaa0b974551936b828f6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 8 Mar 2007 03:04:17 +0000 Subject: [PATCH] Was missing a define for intern_pos_update, somehow GCC didnt complain but MSVC did. --- source/blender/python/api2_2x/sceneSequence.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/python/api2_2x/sceneSequence.c b/source/blender/python/api2_2x/sceneSequence.c index 71d2566aed9..9fbc890642e 100644 --- a/source/blender/python/api2_2x/sceneSequence.c +++ b/source/blender/python/api2_2x/sceneSequence.c @@ -85,6 +85,7 @@ static PyObject *Sequence_remove( BPy_Sequence * self, PyObject * args ); static PyObject *SceneSeq_new( BPy_SceneSeq * self, PyObject * args ); static PyObject *SceneSeq_remove( BPy_SceneSeq * self, PyObject * args ); +static void intern_pos_update(Sequence * seq); static PyMethodDef BPy_Sequence_methods[] = { /* name, method, flags, doc */ @@ -567,7 +568,7 @@ static PyObject *getIntAttr( BPy_Sequence *self, void *type ) /* internal functions for recursivly updating metastrip locatons */ -void intern_pos_update(Sequence * seq) { +static void intern_pos_update(Sequence * seq) { /* update startdisp and enddisp */ seq->startdisp = seq->start + seq->startofs - seq->startstill; seq->enddisp = ((seq->start + seq->len) - seq->endofs )+ seq->endstill;