cc_draw: use const for getFrameThickness()

Origin commit data
------------------
Commit: a5f87f4e00
Author: Thilo Graf <dbt@novatux.de>
Date: 2019-10-27 (Sun, 27 Oct 2019)
This commit is contained in:
2019-10-27 22:56:49 +01:00
committed by vanhofen
parent 1e51ce8681
commit ecdde02eab

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;}