diff --git a/src/gui/components/cc_frm.h b/src/gui/components/cc_frm.h index f809728a0..b44cd5a66 100644 --- a/src/gui/components/cc_frm.h +++ b/src/gui/components/cc_frm.h @@ -144,15 +144,15 @@ class CComponentsForm : public CComponentsItem void paintCCItems(); ///clean up and deallocate existant items from v_cc_items at once - virtual void clear(); + void clear(); ///return true, if no items available - virtual bool empty(){return v_cc_items.empty();}; + bool empty(){return v_cc_items.empty();}; ///return size (count) of available items - virtual size_t size(){return v_cc_items.size();}; + size_t size(){return v_cc_items.size();}; ///return reference to first item - virtual CComponentsItem* front(){return v_cc_items.front();}; + CComponentsItem* front(){return v_cc_items.front();}; ///return reference to last item - virtual CComponentsItem* back(){return v_cc_items.back();}; + CComponentsItem* back(){return v_cc_items.back();}; ///sets alignment offset between items void setAppendOffset(const int &x_offset, const int& y_offset){append_x_offset = x_offset; append_y_offset = y_offset;};