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>2014-03-30 22:45:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-30 22:46:19 +0400
commit482201d1a0a2e8002c9c8c8dda9e06b8b5c52fea (patch)
tree376b8c58a78e1c6e506d0c5b8df5ca975d3cd14d /source/blender/makesrna/intern/rna_brush.c
parent0b8774fc427267793b3fc228da4bb0ce63f6cf76 (diff)
Style cleanup
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 67cea35b945..8b2c55afb93 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -473,7 +473,7 @@ static EnumPropertyItem *rna_Brush_direction_itemf(bContext *UNUSED(C), PointerR
}
static EnumPropertyItem *rna_Brush_stroke_itemf(bContext *C, PointerRNA *UNUSED(ptr),
- PropertyRNA *UNUSED(prop), bool *UNUSED(r_free))
+ PropertyRNA *UNUSED(prop), bool *UNUSED(r_free))
{
static EnumPropertyItem sculpt_stroke_method_items[] = {
{0, "DOTS", 0, "Dots", "Apply paint on each mouse move step"},
@@ -486,7 +486,7 @@ static EnumPropertyItem *rna_Brush_stroke_itemf(bContext *C, PointerRNA *UNUSED(
PaintMode mode = BKE_paintmode_get_active_from_context(C);
- switch(mode) {
+ switch (mode) {
case PAINT_SCULPT:
return sculpt_stroke_method_items;