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>2011-05-09 13:38:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-09 13:38:48 +0400
commit5776d7ff9c24edf516616490377678de5ce3d0a1 (patch)
tree09c91faa6edc0f313aefff5725da10a229a5e9a0 /source/blender/makesrna/intern/rna_mesh_api.c
parent9d8a08de559f2339fa084985510bf151ade76a4e (diff)
parent4c71d9efb536b53e8f1f5fd4c950d32bfa29b363 (diff)
svn merge -r36529:36564 https://svn.blender.org/svnroot/bf-blender/trunk/blender
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh_api.c b/source/blender/makesrna/intern/rna_mesh_api.c
index d237664df0f..690f872f84c 100644
--- a/source/blender/makesrna/intern/rna_mesh_api.c
+++ b/source/blender/makesrna/intern/rna_mesh_api.c
@@ -80,7 +80,7 @@ void RNA_api_mesh(StructRNA *srna)
func= RNA_def_function(srna, "validate", "BKE_mesh_validate");
RNA_def_function_ui_description(func, "validate geometry, return True when the mesh has had invalid geometry corrected/removed.");
- parm= RNA_def_boolean(func, "verbose", 0, "Verbose", "Output information about the errors found");
+ RNA_def_boolean(func, "verbose", 0, "Verbose", "Output information about the errors found");
parm= RNA_def_boolean(func, "result", 0, "Result", "");
RNA_def_function_return(func, parm);
}