[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43055] trunk/blender/source/blender: Fixed names of VertexWeight modifiers RNA structs, in RNA_access.h ( probably forgotten when they were renamed, before the merge in trunk, and was never noticed as they are not used...).

Bastien Montagne montagne29 at wanadoo.fr
Sun Jan 1 17:09:37 CET 2012


Revision: 43055
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=43055
Author:   mont29
Date:     2012-01-01 16:09:32 +0000 (Sun, 01 Jan 2012)
Log Message:
-----------
Fixed names of VertexWeight modifiers RNA structs, in RNA_access.h (probably forgotten when they were renamed, before the merge in trunk, and was never noticed as they are not used...).

Also removed the $ID$ from remesh modifier header, and quited a gcc warning.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/RNA_access.h
    trunk/blender/source/blender/modifiers/intern/MOD_remesh.c

Modified: trunk/blender/source/blender/makesrna/RNA_access.h
===================================================================
--- trunk/blender/source/blender/makesrna/RNA_access.h	2012-01-01 13:09:58 UTC (rev 43054)
+++ trunk/blender/source/blender/makesrna/RNA_access.h	2012-01-01 16:09:32 UTC (rev 43055)
@@ -580,9 +580,9 @@
 extern StructRNA RNA_VoxelDataTexture;
 extern StructRNA RNA_WarpModifier;
 extern StructRNA RNA_WaveModifier;
-extern StructRNA RNA_WeightVGEditModifier;
-extern StructRNA RNA_WeightVGMixModifier;
-extern StructRNA RNA_WeightVGProximityModifier;
+extern StructRNA RNA_VertexWeightEditModifier;
+extern StructRNA RNA_VertexWeightMixModifier;
+extern StructRNA RNA_VertexWeightProximityModifier;
 extern StructRNA RNA_Window;
 extern StructRNA RNA_WindowManager;
 extern StructRNA RNA_WipeSequence;

Modified: trunk/blender/source/blender/modifiers/intern/MOD_remesh.c
===================================================================
--- trunk/blender/source/blender/modifiers/intern/MOD_remesh.c	2012-01-01 13:09:58 UTC (rev 43054)
+++ trunk/blender/source/blender/modifiers/intern/MOD_remesh.c	2012-01-01 16:09:32 UTC (rev 43055)
@@ -1,27 +1,24 @@
 /*
-* $Id$
-*
-* ***** BEGIN GPL LICENSE BLOCK *****
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License
-* as published by the Free Software Foundation; either version 2
-* of the License, or (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software  Foundation,
-* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-*
-* The Original Code is Copyright (C) 2011 by Nicholas Bishop.
-*
-* ***** END GPL LICENSE BLOCK *****
-*
-*/
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * The Original Code is Copyright (C) 2011 by Nicholas Bishop.
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
 
 /** \file blender/modifiers/intern/MOD_remesh.c
  *  \ingroup modifiers
@@ -152,7 +149,7 @@
 	DualConInput input;
 	DerivedMesh *result;
 	DualConFlags flags = 0;
-	DualConMode mode;
+	DualConMode mode = 0;
 
 	rmd = (RemeshModifierData*)md;
 




More information about the Bf-blender-cvs mailing list