From 43222b46f7873b835e77fb11a3baa4417a349ad6 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Thu, 18 Apr 2019 22:22:58 +0200 Subject: [PATCH] cc_frm.h: clean up remove unneeded virtual declarations Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/bfc4ccc97d8a1ed71d1ed7863515fe51b39690b2 Author: Thilo Graf Date: 2019-04-18 (Thu, 18 Apr 2019) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/components/cc_frm.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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;};