From: Georg Baum Date: Sat, 18 Jul 2015 14:23:24 +0000 (+0200) Subject: Devirtualize some methods X-Git-Tag: 2.2.0alpha1~421 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=39c1fcb8646e34ac206853c6592aea8589d629e1;p=features.git Devirtualize some methods These do not need to be virtual, since no class inherits from LengthCombo.h, and they do not exist in the base class either. --- diff --git a/src/frontends/qt4/LengthCombo.h b/src/frontends/qt4/LengthCombo.h index 1701dcfa0f..3e69de4865 100644 --- a/src/frontends/qt4/LengthCombo.h +++ b/src/frontends/qt4/LengthCombo.h @@ -30,7 +30,7 @@ public: LengthCombo(QWidget * parent); /// set the current item from unit - virtual void setCurrentItem(lyx::Length::UNIT unit); + void setCurrentItem(lyx::Length::UNIT unit); /// set the current item from length string virtual void setCurrentItem(QString const & item); /// set the current item from int @@ -40,11 +40,11 @@ public: /// enable the widget virtual void setEnabled(bool b); /// use the %-items? - virtual void noPercents(); + void noPercents(); /// remove a unit from the combo - virtual void removeUnit(lyx::Length::UNIT unit); + void removeUnit(lyx::Length::UNIT unit); /// add a unit to the combo - virtual void addUnit(lyx::Length::UNIT unit); + void addUnit(lyx::Length::UNIT unit); protected Q_SLOTS: virtual void hasActivated(int index);