mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
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:
parent
d76392af63
commit
39c1fcb864
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user