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>2020-05-21 09:22:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-21 09:22:37 +0300
commit8d648e097261f81afc340b07e48f34ee99216a2b (patch)
tree2fb6c38c75a7fca61fc5ceeaf5fc3af7528ca33a /source/blender
parentfcfb87def9378e874c9bb32638bd58ac5c06d19a (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/displist.c9
-rw-r--r--source/blender/bmesh/tools/bmesh_intersect_edges.c4
-rw-r--r--source/blender/editors/sculpt_paint/paint_ops.c2
-rw-r--r--source/blender/makesrna/intern/rna_wm.c2
4 files changed, 9 insertions, 8 deletions
diff --git a/source/blender/blenkernel/intern/displist.c b/source/blender/blenkernel/intern/displist.c
index 5cb536f98b9..55fdfdac63a 100644
--- a/source/blender/blenkernel/intern/displist.c
+++ b/source/blender/blenkernel/intern/displist.c
@@ -1134,17 +1134,18 @@ static void curve_calc_modifiers_post(Depsgraph *depsgraph,
if (r_final) {
if (force_mesh_conversion && !modified) {
- /* XXX 2.8 : This is a workaround for by some deeper technical depts:
+ /* XXX 2.8 : This is a workaround for by some deeper technical debts:
* - DRW Batch cache is stored inside the ob->data.
* - Curve data is not COWed for instances that use different modifiers.
- * This can causes the modifiers to be applied on all user of the same datablock (see T71055)
+ * This can causes the modifiers to be applied on all user of the same data-block
+ * (see T71055)
*
* The easy workaround is to force to generate a Mesh that will be used for display data
* since a Mesh output is already used for generative modifiers.
* However it does not fix problems with actual edit data still being shared.
*
- * The right solution would be to COW the Curve data block at the input of the modifer stack
- * just like what the mesh modifier does.
+ * The right solution would be to COW the Curve data block at the input of the modifier
+ * stack just like what the mesh modifier does.
* */
modified = BKE_mesh_new_nomain_from_curve_displist(ob, dispbase);
}
diff --git a/source/blender/bmesh/tools/bmesh_intersect_edges.c b/source/blender/bmesh/tools/bmesh_intersect_edges.c
index e2d03a65d46..3f0492aebb6 100644
--- a/source/blender/bmesh/tools/bmesh_intersect_edges.c
+++ b/source/blender/bmesh/tools/bmesh_intersect_edges.c
@@ -893,7 +893,7 @@ bool BM_mesh_intersect_edges(
if (BM_vert_pair_share_face_check(va, va_dest)) {
/* Vert par acts on the same face.
- * Although there are cases like this where the face can be splitted,
+ * Although there are cases like this where the face can be split,
* for efficiency it is better to ignore then. */
continue;
}
@@ -909,7 +909,7 @@ bool BM_mesh_intersect_edges(
if (BM_vert_pair_share_face_check(v_other, v_other_dest)) {
/* Vert par acts on the same face.
- * Although there are cases like this where the face can be splitted,
+ * Although there are cases like this where the face can be split,
* for efficiency and to avoid complications, it is better to ignore these cases.
*/
break;
diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c
index c2b771088a8..634e29ca400 100644
--- a/source/blender/editors/sculpt_paint/paint_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_ops.c
@@ -732,7 +732,7 @@ static bool brush_generic_tool_set(bContext *C,
/* Tool System
* This is needed for when there is a non-sculpt tool active (transform for e.g.).
- * In case we are toogling (and the brush changed to the toggle_brush), we need to get the
+ * In case we are toggling (and the brush changed to the toggle_brush), we need to get the
* tool_name again. */
int tool_result = brush_tool(brush, paint->runtime.tool_offset);
ePaintMode paint_mode = BKE_paintmode_get_active_from_context(C);
diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c
index deeb4f5789c..6749aa9495a 100644
--- a/source/blender/makesrna/intern/rna_wm.c
+++ b/source/blender/makesrna/intern/rna_wm.c
@@ -450,7 +450,7 @@ static const EnumPropertyItem operator_flag_items[] = {
"UNDO_GROUPED",
0,
"Grouped Undo",
- "Push a single undo event for repetead instances of this operator"},
+ "Push a single undo event for repeated instances of this operator"},
{OPTYPE_BLOCKING, "BLOCKING", 0, "Blocking", "Block anything else from using the cursor"},
{OPTYPE_MACRO, "MACRO", 0, "Macro", "Use to check if an operator is a macro"},
{OPTYPE_GRAB_CURSOR_XY,