QCustomPlot: Fix clang -Wmisleading-indentation

(ported from commit e5cb4ddd87)
This commit is contained in:
João Valverde 2021-06-07 00:40:09 +01:00 committed by John Thacker
parent e5dc339c18
commit cb9a1479cd
1 changed files with 5 additions and 2 deletions

View File

@ -32114,8 +32114,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 */
@ -32934,8 +32936,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 */