components: use const bool& parameter in paint methodes

This commit is contained in:
2019-10-27 16:24:47 +01:00
parent 7783b755d0
commit d86dcd36a7
43 changed files with 61 additions and 60 deletions

View File

@@ -56,7 +56,7 @@ CComponentsShapeSquare::CComponentsShapeSquare( const int x_pos, const int y_pos
initParent(parent);
}
void CComponentsShapeSquare::paint(bool do_save_bg)
void CComponentsShapeSquare::paint(const bool &do_save_bg)
{
paintInit(do_save_bg);
}
@@ -105,7 +105,7 @@ CComponentsShapeCircle::CComponentsShapeCircle( int x_pos, int y_pos, int diam,
//
// + - +
void CComponentsShapeCircle::paint(bool do_save_bg)
void CComponentsShapeCircle::paint(const bool &do_save_bg)
{
paintInit(do_save_bg);
}