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/SurfNurb.c
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/SurfNurb.c')
-rw-r--r--source/blender/python/api2_2x/SurfNurb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/SurfNurb.c b/source/blender/python/api2_2x/SurfNurb.c
index b758c6b2e65..3499ec09936 100644
--- a/source/blender/python/api2_2x/SurfNurb.c
+++ b/source/blender/python/api2_2x/SurfNurb.c
@@ -772,7 +772,7 @@ PyTypeObject SurfNurb_Type = {
/* More standard operations (here for binary compatibility) */
- ( hashfunc ) GenericLib_hash, /* hashfunc tp_hash; */
+ NULL, /* hashfunc tp_hash; */
NULL, /* ternaryfunc tp_call; */
NULL, /* reprfunc tp_str; */
NULL, /* getattrofunc tp_getattro; */