Skip to content
Snippets Groups Projects
Commit 90a61b01 authored by Ammar Nejati's avatar Ammar Nejati
Browse files

[fixQCustomPlot] QCustomPlot: Fix commented sections to avoid compiler warnings (Minor change)

Merging branch 'fixQCustomPlot'  into 'main'.

See merge request !1116
parents 374edaab 9702d51f
No related branches found
No related tags found
1 merge request!1116QCustomPlot: Fix commented sections to avoid compiler warnings (Minor change)
Pipeline #78148 passed
......@@ -32088,8 +32088,11 @@ 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 */
......@@ -32908,8 +32911,11 @@ QCPPolarAxisAngular::SelectablePart QCPPolarAxisAngular::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 */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment