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>2015-10-23 18:44:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-10-23 18:44:43 +0300
commitd5fb0e517ca998ce39c3c3e46274b91f6d7e5124 (patch)
tree5623f938943d603f9b411729542e97e299494fdd /source/blender/makesrna/intern/rna_curve.c
parent4ff10119f79170f1d297361e8afd8cae732ea1f1 (diff)
Cleanup: rename 'datablocks' -> 'data-blocks'
Similar to addons -> add-ons, for reading it fits better to hyphenate.
Diffstat (limited to 'source/blender/makesrna/intern/rna_curve.c')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index 65175e37518..c5e1914bd32 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1193,7 +1193,7 @@ static void rna_def_surface(BlenderRNA *brna)
srna = RNA_def_struct(brna, "SurfaceCurve", "Curve");
RNA_def_struct_sdna(srna, "Curve");
- RNA_def_struct_ui_text(srna, "Surface Curve", "Curve datablock used for storing surfaces");
+ RNA_def_struct_ui_text(srna, "Surface Curve", "Curve data-block used for storing surfaces");
RNA_def_struct_ui_icon(srna, ICON_SURFACE_DATA);
rna_def_nurbs(brna, srna);
@@ -1205,7 +1205,7 @@ static void rna_def_text(BlenderRNA *brna)
srna = RNA_def_struct(brna, "TextCurve", "Curve");
RNA_def_struct_sdna(srna, "Curve");
- RNA_def_struct_ui_text(srna, "Text Curve", "Curve datablock used for storing text");
+ RNA_def_struct_ui_text(srna, "Text Curve", "Curve data-block used for storing text");
RNA_def_struct_ui_icon(srna, ICON_FONT_DATA);
rna_def_font(brna, srna);
@@ -1336,7 +1336,7 @@ static void rna_def_curve(BlenderRNA *brna)
};
srna = RNA_def_struct(brna, "Curve", "ID");
- RNA_def_struct_ui_text(srna, "Curve", "Curve datablock storing curves, splines and NURBS");
+ RNA_def_struct_ui_text(srna, "Curve", "Curve data-block storing curves, splines and NURBS");
RNA_def_struct_ui_icon(srna, ICON_CURVE_DATA);
RNA_def_struct_refine_func(srna, "rna_Curve_refine");