]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/LengthCombo.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / LengthCombo.h
index 345d2bdc18162275ff0b65bee7cbcb8740044523..affae3034ff8fcd290cf7ba6ae5381703f0e16b3 100644 (file)
@@ -20,7 +20,7 @@
 //namespace lyx {
 
 /**
- * A combo box for selecting LyXLength::UNIT types.
+ * A combo box for selecting Length::UNIT types.
  */
 class LengthCombo : public QComboBox {
        Q_OBJECT
@@ -29,11 +29,11 @@ public:
        LengthCombo(QWidget * parent);
 
        /// set the current item from unit
-       virtual void setCurrentItem(lyx::LyXLength::UNIT unit);
+       virtual void setCurrentItem(lyx::Length::UNIT unit);
        /// set the current item from int
        virtual void setCurrentItem(int item);
        /// get the current item
-       lyx::LyXLength::UNIT currentLengthItem() const;
+       lyx::Length::UNIT currentLengthItem() const;
        /// enable the widget
        virtual void setEnabled(bool b);
        /// use the %-items?
@@ -43,7 +43,7 @@ protected Q_SLOTS:
        virtual void has_activated(int index);
 Q_SIGNALS:
        /// the current selection has changed
-       void selectionChanged(lyx::LyXLength::UNIT unit);
+       void selectionChanged(lyx::Length::UNIT unit);
 };