cc_draw: use const for getFrameThickness()

This commit is contained in:
2019-10-27 16:24:47 +01:00
parent 83dfe855b0
commit f4c0a34b48

View File

@@ -212,7 +212,7 @@ class CCDraw : public COSDFader, public CComponentsSignals, public CCTypes
///set frame thickness ///set frame thickness
void setFrameThickness(const int& thickness); void setFrameThickness(const int& thickness);
///return of frame thickness ///return of frame thickness
int getFrameThickness(){return fr_thickness;} int getFrameThickness() const {return fr_thickness;}
///set frame color ///set frame color
void setColorFrame(fb_pixel_t color){col_frame = color;} void setColorFrame(fb_pixel_t color){col_frame = color;}