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:
authorCampbell Barton <ideasman42@gmail.com>2007-03-08 06:04:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-03-08 06:04:17 +0300
commitf361c49d70bcb4d49c6bbaa0b974551936b828f6 (patch)
tree983f0a30dc5af89981788ae00f8056d630dcb7f5 /source/blender/python/api2_2x/sceneSequence.c
parentf56fca448a21c2e19ee9b365e15eeeb5dfd18f71 (diff)
Was missing a define for intern_pos_update, somehow GCC didnt complain but MSVC did.
Diffstat (limited to 'source/blender/python/api2_2x/sceneSequence.c')
-rw-r--r--source/blender/python/api2_2x/sceneSequence.c3
1 files changed, 2 insertions, 1 deletions
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;