CProgressBar: declare paintShapes() static, whitespace fixes

Technically the member function 'CProgressBar::paintShapes' can be static.
This commit is contained in:
2013-08-26 21:43:30 +02:00
parent aca06a5c02
commit 5a224dfbb2

View File

@@ -92,7 +92,7 @@ class CProgressBar : public CComponentsItem
///paint version of progressbar with color and advanced display modifications ///paint version of progressbar with color and advanced display modifications
void paintAdvanced(); void paintAdvanced();
///painting of activ/passive bars via shape object ///painting of activ/passive bars via shape object
void paintShapes(int &shx, int &shy, int &shw, int &shh, fb_pixel_t &col); static void paintShapes(int &shx, int &shy, int &shw, int &shh, fb_pixel_t &col);
void initDimensions(); void initDimensions();