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-07-28 13:26:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-07-28 13:26:53 +0400
commit48b07b7f15590724c1234405e2c1f2cabf3d12b6 (patch)
tree2f4eced37abf9c6bf4ef94426ed0e2efe1a63bb9 /source/blender/python/api2_2x/sceneSequence.h
parentf8544eefad2017b107c145e729c5947b47588ad2 (diff)
Draw.py - typo
sceneSequence.h - bad type check, dosnt matter really since that define isnt used yet. SurfNurb.c - was using lib hashing function and surfNurbs not a lib! (own mistake) buttons_editing.c - Curves PathLen button was MAXFRAMEF and pathlen is a short so the button wrapped around.
Diffstat (limited to 'source/blender/python/api2_2x/sceneSequence.h')
-rw-r--r--source/blender/python/api2_2x/sceneSequence.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/sceneSequence.h b/source/blender/python/api2_2x/sceneSequence.h
index 49890043966..952e861f46d 100644
--- a/source/blender/python/api2_2x/sceneSequence.h
+++ b/source/blender/python/api2_2x/sceneSequence.h
@@ -41,7 +41,7 @@ extern PyTypeObject Sequence_Type;
extern PyTypeObject SceneSeq_Type;
#define BPy_Sequence_Check(v) ((v)->ob_type == &Sequence_Type)
-#define BPy_SceneSeq_Check(v) ((v)->ob_type == &Sequence_Type)
+#define BPy_SceneSeq_Check(v) ((v)->ob_type == &SceneSeq_Type)
/*****************************************************************************/