summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDmitry Zhulanov <dmitry.zhulanov@gmail.com>2016-10-03 15:25:41 +0000
committerDmitry Zhulanov <dmitry.zhulanov@gmail.com>2016-10-03 15:25:41 +0000
commitd43d0384c8f95baa781beaaca79b938e680b727a (patch)
tree2197353cf989d86a206b526210649499a11e2620 /src
parentbeautify idents (diff)
downloadinkscape-d43d0384c8f95baa781beaaca79b938e680b727a.tar.gz
inkscape-d43d0384c8f95baa781beaaca79b938e680b727a.zip
beautify idents
(bzr r15136.1.15)
Diffstat (limited to 'src')
-rw-r--r--src/main-cmdlineact.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main-cmdlineact.cpp b/src/main-cmdlineact.cpp
index f5c6e52eb..03bf4083c 100644
--- a/src/main-cmdlineact.cpp
+++ b/src/main-cmdlineact.cpp
@@ -86,13 +86,12 @@ CmdLineAction::doIt (ActionContext const & context) {
bool
CmdLineAction::doList (ActionContext const & context) {
- bool hasActions = !_list.empty();
- for (std::list<CmdLineAction *>::iterator i = _list.begin();
- i != _list.end(); ++i) {
+ bool hasActions = !_list.empty();
+ for (std::list<CmdLineAction *>::iterator i = _list.begin(); i != _list.end(); ++i) {
CmdLineAction * entry = *i;
entry->doIt(context);
}
- return hasActions;
+ return hasActions;
}
bool