summaryrefslogtreecommitdiffstats
path: root/qt-models/diveplannermodel.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-02-17 21:21:16 +0100
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2018-02-17 19:38:52 -0800
commit5c248d91cd5b7e9401e4393b2193ad44c32016bc (patch)
tree6ecf145a0ee951e8c1dd94de075e9d854da32aae /qt-models/diveplannermodel.cpp
parent36b8594ccea5f72fc24041eae6a0dc69a9b5bc51 (diff)
downloadsubsurface-5c248d91cd5b7e9401e4393b2193ad44c32016bc.tar.gz
Coding-style: remove superfluous parentheses
Mostly replace "return (expression);" by "return expression;" and one case of "function((parameter))" by "function(parameter)". Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r--qt-models/diveplannermodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index 17d21fe64..614f194aa 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -178,7 +178,7 @@ bool DivePlannerPointsModel::updateMaxDepth()
if (p.depth.mm > displayed_dive.maxdepth.mm)
displayed_dive.maxdepth.mm = p.depth.mm;
}
- return (displayed_dive.maxdepth.mm != prevMaxDepth);
+ return displayed_dive.maxdepth.mm != prevMaxDepth;
}
void DivePlannerPointsModel::removeDeco()