]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt4/LengthCombo.h
Devirtualize some methods
[features.git] / src / frontends / qt4 / LengthCombo.h
index 1701dcfa0fc73a20b57909f9ca17ad06ed1420ca..3e69de486531b8662f8d1bd1076bb312ee553c7f 100644 (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);