Cleanup: style

This commit is contained in:
Campbell Barton
2019-02-18 08:35:03 +11:00
parent 4bbd1b9610
commit 4859151154
4 changed files with 11 additions and 7 deletions

View File

@@ -88,7 +88,7 @@ public:
const bPoseChannel *, pchan, &object->pose->chanbase)
{
LISTBASE_FOREACH (
const bConstraint *, constraint, &pchan->constraints)
const bConstraint *, constraint, &pchan->constraints)
{
BLI_ghash_insert(contraint_to_pchan_map_,
const_cast<bConstraint *>(constraint),
@@ -109,7 +109,7 @@ protected:
/* ***************************** Node Identifier **************************** */
RNANodeIdentifier::RNANodeIdentifier()
RNANodeIdentifier::RNANodeIdentifier()
: id(NULL),
type(NodeType::UNDEFINED),
component_name(""),
@@ -143,7 +143,8 @@ RNANodeQuery::RNANodeQuery(Depsgraph *depsgraph)
{
}
RNANodeQuery::~RNANodeQuery() {
RNANodeQuery::~RNANodeQuery()
{
BLI_ghash_free(id_data_map_, NULL, ghash_id_data_free_func);
}

View File

@@ -2077,11 +2077,13 @@ static void gp_paint_initstroke(tGPsdata *p, eGPencil_PaintModes paintmode, Deps
if (p->gpl == NULL) {
p->gpl = BKE_gpencil_layer_addnew(p->gpd, DATA_("GP_Layer"), true);
if (p->custom_color[3])
if (p->custom_color[3]) {
copy_v3_v3(p->gpl->color, p->custom_color);
}
}
if ((paintmode != GP_PAINTMODE_ERASER) &&
(p->gpl->flag & GP_LAYER_LOCKED)) {
(p->gpl->flag & GP_LAYER_LOCKED))
{
p->status = GP_STATUS_ERROR;
if (G.debug & G_DEBUG)
printf("Error: Cannot paint on locked layer\n");

View File

@@ -580,7 +580,8 @@ static int edbm_bevel_modal(bContext *C, wmOperator *op, const wmEvent *event)
/* When activated from toolbar, need to convert leftmouse release to confirm */
if (etype == LEFTMOUSE && eval == KM_RELEASE &&
RNA_boolean_get(op->ptr, "release_confirm")) {
RNA_boolean_get(op->ptr, "release_confirm"))
{
etype = EVT_MODAL_MAP;
eval = BEV_MODAL_CONFIRM;
}

View File

@@ -186,7 +186,7 @@ static void rna_def_light_energy(StructRNA *srna, bool distant)
{
PropertyRNA *prop;
if(distant) {
if (distant) {
/* Distant light strength has no unit defined, it's proportional to
* Watt/m^2 and is not sensitive to scene unit scale. */
prop = RNA_def_property(srna, "energy", PROP_FLOAT, PROP_NONE);