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-19 05:46:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-19 05:47:09 +0400
commita91247c2b4702cbdd423fb5526c2f5a8d04c65d8 (patch)
treeb18f3c10365e52f78eb10f249f5beb8f94477468 /source/blender/editors/space_nla/nla_select.c
parentf127f49b4d8f06fc4328d470e6fae3e4ebf5cff6 (diff)
Code cleanup: unreachable break/return
Diffstat (limited to 'source/blender/editors/space_nla/nla_select.c')
-rw-r--r--source/blender/editors/space_nla/nla_select.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/editors/space_nla/nla_select.c b/source/blender/editors/space_nla/nla_select.c
index f723696de69..2bd2b660bcd 100644
--- a/source/blender/editors/space_nla/nla_select.c
+++ b/source/blender/editors/space_nla/nla_select.c
@@ -67,16 +67,13 @@ static short selmodes_to_flagmodes(short sel)
switch (sel) {
case SELECT_SUBTRACT:
return ACHANNEL_SETFLAG_CLEAR;
- break;
-
+
case SELECT_INVERT:
return ACHANNEL_SETFLAG_INVERT;
- break;
-
+
case SELECT_ADD:
default:
return ACHANNEL_SETFLAG_ADD;
- break;
}
}