cc_frm.h: clean up remove unneeded virtual declarations

Origin commit data
------------------
Branch: ni/coolstream
Commit: bfc4ccc97d
Author: Thilo Graf <dbt@novatux.de>
Date: 2019-04-18 (Thu, 18 Apr 2019)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2019-04-18 22:22:58 +02:00
committed by vanhofen
parent 449a8df071
commit 43222b46f7

View File

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