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>2009-03-28 14:44:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-03-28 14:44:07 +0300
commite42070d20fd87d720ddcb8b0f4c6808a8c163714 (patch)
tree402d61e3e7ce861f0eff146274f3c98f1a075016 /source/blender/makesrna/intern/rna_color.c
parent6b3935f8eb0c1bf59adb948e101e326ed7f67dd6 (diff)
- made epydoc generator write a list of words used in descriptions
- fix spelling mistakes in rna docs (and some comments)
Diffstat (limited to 'source/blender/makesrna/intern/rna_color.c')
-rw-r--r--source/blender/makesrna/intern/rna_color.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_color.c b/source/blender/makesrna/intern/rna_color.c
index f36f2b51bbc..dcd5a494e5d 100644
--- a/source/blender/makesrna/intern/rna_color.c
+++ b/source/blender/makesrna/intern/rna_color.c
@@ -218,12 +218,12 @@ static void rna_def_curvemapping(BlenderRNA *brna)
prop= RNA_def_property(srna, "black_level", PROP_FLOAT, PROP_COLOR);
RNA_def_property_float_sdna(prop, NULL, "black");
- RNA_def_property_ui_text(prop, "Black Level", "For RGB curves, the colour that black is mapped to");
+ RNA_def_property_ui_text(prop, "Black Level", "For RGB curves, the color that black is mapped to");
RNA_def_property_float_funcs(prop, NULL, "rna_CurveMapping_black_level_set", NULL);
prop= RNA_def_property(srna, "white_level", PROP_FLOAT, PROP_COLOR);
RNA_def_property_float_sdna(prop, NULL, "white");
- RNA_def_property_ui_text(prop, "White Level", "For RGB curves, the colour that white is mapped to");
+ RNA_def_property_ui_text(prop, "White Level", "For RGB curves, the color that white is mapped to");
RNA_def_property_float_funcs(prop, NULL, "rna_CurveMapping_white_level_set", NULL);
}