[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [17463] branches/blender2.5/blender/source /blender/makesrna/intern/rna_rna.c:

Brecht Van Lommel brecht at blender.org
Fri Nov 14 20:39:14 CET 2008


Revision: 17463
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=17463
Author:   blendix
Date:     2008-11-14 20:39:12 +0100 (Fri, 14 Nov 2008)

Log Message:
-----------

RNA: fix small capitalization mistake.

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_rna.c

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_rna.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_rna.c	2008-11-14 18:46:57 UTC (rev 17462)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_rna.c	2008-11-14 19:39:12 UTC (rev 17463)
@@ -438,13 +438,13 @@
 	prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
 	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
 	RNA_def_property_string_funcs(prop, "rna_Struct_name_get", "rna_Struct_name_length", NULL);
-	RNA_def_property_ui_text(prop, "name", "human readable name.");
+	RNA_def_property_ui_text(prop, "Name", "Human readable name.");
 	RNA_def_struct_name_property(srna, prop);
 
 	prop= RNA_def_property(srna, "identifier", PROP_STRING, PROP_NONE);
 	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
 	RNA_def_property_string_funcs(prop, "rna_Struct_identifier_get", "rna_Struct_identifier_length", NULL);
-	RNA_def_property_ui_text(prop, "identifier", "unique name used in the code and scripting.");
+	RNA_def_property_ui_text(prop, "Identifier", "Unique name used in the code and scripting.");
 
 	prop= RNA_def_property(srna, "name_property", PROP_POINTER, PROP_NONE);
 	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);





More information about the Bf-blender-cvs mailing list