CComponents: add missing paint-members to circle and square classes

paint () ist in CComponentsItem abstrakt, muss definiert werden
seine eigene in Unterklassen.
This commit is contained in:
2012-10-23 15:39:04 +02:00
parent 4df7e4d144
commit e37b5d86f4
2 changed files with 14 additions and 0 deletions

View File

@@ -513,6 +513,12 @@ CComponentsShapeSquare::CComponentsShapeSquare(const int x_pos, const int y_pos,
col_shadow = color_shadow;
}
void CComponentsShapeSquare::paint(bool do_save_bg)
{
paintInit(do_save_bg);
}
//-------------------------------------------------------------------------------------------------------
//sub class CComponentsShapeCircle from CComponentsItem
CComponentsShapeCircle::CComponentsShapeCircle( int x_pos, int y_pos, int diam, bool has_shadow,
@@ -549,6 +555,11 @@ CComponentsShapeCircle::CComponentsShapeCircle( int x_pos, int y_pos, int diam,
//
// + - +
void CComponentsShapeCircle::paint(bool do_save_bg)
{
paintInit(do_save_bg);
}
//-------------------------------------------------------------------------------------------------------
//sub class CComponentsDetailLine from CComponents