mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 08:21:12 +02:00
cc_frm.h: clean up remove unneeded virtual declarations
This commit is contained in:
@@ -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;};
|
||||
|
Reference in New Issue
Block a user