From dd91340a3715270a69fc056a76460ee06c06d916 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sat, 10 Nov 2012 20:54:24 +0100 Subject: [PATCH] CComponentsForm: paintCCItems() is needed as public member --- src/gui/components/cc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/components/cc.h b/src/gui/components/cc.h index d34554f07..48cac5c50 100644 --- a/src/gui/components/cc.h +++ b/src/gui/components/cc.h @@ -428,8 +428,7 @@ class CComponentsTitleBar : public CComponentsItemBox class CComponentsForm : public CComponentsItem { protected: - std::vector v_cc_items; - void paintCCItems(); + std::vector v_cc_items; void initVarForm(); void clearCCItems(); public: @@ -443,6 +442,7 @@ class CComponentsForm : public CComponentsItem void paint(bool do_save_bg = CC_SAVE_SCREEN_YES); void hide(bool no_restore = false); virtual void addCCItem(CComponentsItem* cc_Item); + virtual void paintCCItems(); }; class CComponentsHeader : public CComponentsForm