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:
authorDaniel Salazar <zanqdo@gmail.com>2010-05-04 09:15:53 +0400
committerDaniel Salazar <zanqdo@gmail.com>2010-05-04 09:15:53 +0400
commit96beb8330c3488d5c0b18be3d6dc468086963167 (patch)
tree7d793b4b894288d1fae6489287f784dfff571b13 /source/blender/makesrna/intern/rna_rna.c
parent850a4b508bcf3db4c010bd1395671b26a8a51d29 (diff)
Great patch by Harley Acheson fixing about 80 typos and spelling
mistakes in makesrna
Diffstat (limited to 'source/blender/makesrna/intern/rna_rna.c')
-rw-r--r--source/blender/makesrna/intern/rna_rna.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_rna.c b/source/blender/makesrna/intern/rna_rna.c
index c75706b91bb..aa174fd97c3 100644
--- a/source/blender/makesrna/intern/rna_rna.c
+++ b/source/blender/makesrna/intern/rna_rna.c
@@ -991,7 +991,7 @@ static void rna_def_property(BlenderRNA *brna)
prop= RNA_def_property(srna, "is_required", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Property_is_required_get", NULL);
- RNA_def_property_ui_text(prop, "Required", "False when this property is an optional argument in an rna function");
+ RNA_def_property_ui_text(prop, "Required", "False when this property is an optional argument in an RNA function");
prop= RNA_def_property(srna, "is_never_none", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
@@ -1001,17 +1001,17 @@ static void rna_def_property(BlenderRNA *brna)
prop= RNA_def_property(srna, "use_output", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Property_use_output_get", NULL);
- RNA_def_property_ui_text(prop, "Return", "True when this property is an output value from an rna function");
+ RNA_def_property_ui_text(prop, "Return", "True when this property is an output value from an RNA function");
prop= RNA_def_property(srna, "registered", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Property_registered_get", NULL);
- RNA_def_property_ui_text(prop, "Registered", "Property is registerd as part of type registration");
+ RNA_def_property_ui_text(prop, "Registered", "Property is registered as part of type registration");
prop= RNA_def_property(srna, "registered_optional", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Property_registered_optional_get", NULL);
- RNA_def_property_ui_text(prop, "Registered Optionally", "Property is optionally registerd as part of type registration");
+ RNA_def_property_ui_text(prop, "Registered Optionally", "Property is optionally registered as part of type registration");
}
static void rna_def_function(BlenderRNA *brna)
@@ -1043,12 +1043,12 @@ static void rna_def_function(BlenderRNA *brna)
prop= RNA_def_property(srna, "registered", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Function_registered_get", NULL);
- RNA_def_property_ui_text(prop, "Registered", "Function is registerd as callback as part of type registration");
+ RNA_def_property_ui_text(prop, "Registered", "Function is registered as callback as part of type registration");
prop= RNA_def_property(srna, "registered_optional", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Function_registered_optional_get", NULL);
- RNA_def_property_ui_text(prop, "Registered Optionally", "Function is optionally registerd as callback part of type registration");
+ RNA_def_property_ui_text(prop, "Registered Optionally", "Function is optionally registered as callback part of type registration");
}
static void rna_def_number_property(StructRNA *srna, PropertyType type)