[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28837] trunk/blender/source/blender/ python/intern/bpy_app.c: needed to increase the field size in last commit.

Campbell Barton ideasman42 at gmail.com
Tue May 18 18:02:33 CEST 2010


Revision: 28837
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28837
Author:   campbellbarton
Date:     2010-05-18 18:02:33 +0200 (Tue, 18 May 2010)

Log Message:
-----------
needed to increase the field size in last commit. 

Modified Paths:
--------------
    trunk/blender/source/blender/python/intern/bpy_app.c

Modified: trunk/blender/source/blender/python/intern/bpy_app.c
===================================================================
--- trunk/blender/source/blender/python/intern/bpy_app.c	2010-05-18 15:57:51 UTC (rev 28836)
+++ trunk/blender/source/blender/python/intern/bpy_app.c	2010-05-18 16:02:33 UTC (rev 28837)
@@ -61,7 +61,7 @@
 	"bpy.app",     /* name */
 	"This module contains application values that remain unchanged during runtime.",    /* doc */
 	app_info_fields,    /* fields */
-	10
+	(sizeof(app_info_fields)/sizeof(PyStructSequence_Field)) - 1
 };
 
 static PyObject *make_app_info(void)





More information about the Bf-blender-cvs mailing list