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.
This commit is contained in:
Georg Baum 2015-07-18 16:23:24 +02:00
parent d76392af63
commit 39c1fcb864

View File

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