From e5cb4ddd873538686404f6ee2284d3328161f73c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Mon, 7 Jun 2021 00:40:09 +0100 Subject: [PATCH] Qt: Fix clang -Wmisleading-indentation --- ui/qt/widgets/qcustomplot.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ui/qt/widgets/qcustomplot.cpp b/ui/qt/widgets/qcustomplot.cpp index b614b8400d..36d37b9220 100644 --- a/ui/qt/widgets/qcustomplot.cpp +++ b/ui/qt/widgets/qcustomplot.cpp @@ -32087,8 +32087,10 @@ QCPPolarAxisRadial::SelectablePart QCPPolarAxisRadial::getPartAt(const QPointF & return spTickLabels; else if (mAxisPainter->labelSelectionBox().contains(pos.toPoint())) return spAxisLabel; - else */ + else return spNone; + */ + return spNone; } /* inherits documentation from base class */ @@ -32907,8 +32909,9 @@ QCPPolarAxisAngular::SelectablePart QCPPolarAxisAngular::getPartAt(const QPointF return spTickLabels; else if (mAxisPainter->labelSelectionBox().contains(pos.toPoint())) return spAxisLabel; - else */ return spNone; + */ + return spNone; } /* inherits documentation from base class */