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:
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc
index a7c44a17e05..9a3f2b9b708 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc
+++ b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.cc
@@ -343,7 +343,8 @@ static int vertex_color_brightness_contrast_exec(bContext *C, wmOperator *op)
}
Mesh *me;
- if (((me = BKE_mesh_from_object(obact)) == NULL) || (ED_mesh_color_ensure(me, NULL) == false)) {
+ if (((me = BKE_mesh_from_object(obact)) == nullptr) ||
+ (ED_mesh_color_ensure(me, nullptr) == false)) {
return OPERATOR_CANCELLED;
}
@@ -390,7 +391,8 @@ static int vertex_color_hsv_exec(bContext *C, wmOperator *op)
const float val = RNA_float_get(op->ptr, "v");
Mesh *me;
- if (((me = BKE_mesh_from_object(obact)) == NULL) || (ED_mesh_color_ensure(me, NULL) == false)) {
+ if (((me = BKE_mesh_from_object(obact)) == nullptr) ||
+ (ED_mesh_color_ensure(me, nullptr) == false)) {
return OPERATOR_CANCELLED;
}
@@ -441,7 +443,8 @@ static int vertex_color_invert_exec(bContext *C, wmOperator *UNUSED(op))
Object *obact = CTX_data_active_object(C);
Mesh *me;
- if (((me = BKE_mesh_from_object(obact)) == NULL) || (ED_mesh_color_ensure(me, NULL) == false)) {
+ if (((me = BKE_mesh_from_object(obact)) == nullptr) ||
+ (ED_mesh_color_ensure(me, nullptr) == false)) {
return OPERATOR_CANCELLED;
}
@@ -479,7 +482,8 @@ static int vertex_color_levels_exec(bContext *C, wmOperator *op)
const float offset = RNA_float_get(op->ptr, "offset");
Mesh *me;
- if (((me = BKE_mesh_from_object(obact)) == NULL) || (ED_mesh_color_ensure(me, NULL) == false)) {
+ if (((me = BKE_mesh_from_object(obact)) == nullptr) ||
+ (ED_mesh_color_ensure(me, nullptr) == false)) {
return OPERATOR_CANCELLED;
}