]> git.lyx.org Git - lyx.git/commitdiff
add missing lyx::
authorEdwin Leuven <e.leuven@gmail.com>
Tue, 24 Oct 2006 19:05:26 +0000 (19:05 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Tue, 24 Oct 2006 19:05:26 +0000 (19:05 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15539 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QTabularDialog.C

index af27ad51397c4990ea9701ae86e8ccadac8e60a3..47837b0396e2aa9d1f7f0f2106d319cb3ee7987a 100644 (file)
@@ -44,17 +44,17 @@ QTabularDialog::QTabularDialog(QTabular * form)
 
        connect(topspaceED, SIGNAL(returnPressed()),
                this, SLOT(topspace_changed()));
-       connect(topspaceUnit, SIGNAL(selectionChanged(LyXLength::UNIT)),
+       connect(topspaceUnit, SIGNAL(selectionChanged(lyx::LyXLength::UNIT)),
                this, SLOT(topspace_changed()));
        connect(topspaceCO, SIGNAL(activated(int)), this, SLOT(topspace_changed()));
        connect(bottomspaceED, SIGNAL(returnPressed()),
                this, SLOT(bottomspace_changed()));
-       connect(bottomspaceUnit, SIGNAL(selectionChanged(LyXLength::UNIT)),
+       connect(bottomspaceUnit, SIGNAL(selectionChanged(lyx::LyXLength::UNIT)),
                this, SLOT(bottomspace_changed()));
        connect(bottomspaceCO, SIGNAL(activated(int)), this, SLOT(bottomspace_changed()));
        connect(interlinespaceED, SIGNAL(returnPressed()),
                this, SLOT(interlinespace_changed()));
-       connect(interlinespaceUnit, SIGNAL(selectionChanged(LyXLength::UNIT)),
+       connect(interlinespaceUnit, SIGNAL(selectionChanged(lyx::LyXLength::UNIT)),
                this, SLOT(interlinespace_changed()));
        connect(interlinespaceCO, SIGNAL(activated(int)), this, SLOT(interlinespace_changed()));
        connect(booktabsRB, SIGNAL(clicked()), this, SLOT(on_booktabsRB_toggled()));
@@ -82,7 +82,7 @@ QTabularDialog::QTabularDialog(QTabular * form)
        connect(lastfooterNoContentsCB, SIGNAL(clicked()), this, SLOT(ltLastFooterEmpty_clicked()));
        connect(specialAlignmentED, SIGNAL(returnPressed()), this, SLOT(specialAlignment_changed()));
        connect(widthED, SIGNAL(returnPressed()), this, SLOT(width_changed()));
-       connect(widthUnit, SIGNAL(selectionChanged(LyXLength::UNIT)), this, SLOT(width_changed()));
+       connect(widthUnit, SIGNAL(selectionChanged(lyx::LyXLength::UNIT)), this, SLOT(width_changed()));
        connect(closePB, SIGNAL(clicked()), this, SLOT(close_clicked()));
        connect(borders, SIGNAL(topSet(bool)), this, SLOT(topBorder_changed()));
        connect(borders, SIGNAL(bottomSet(bool)), this, SLOT(bottomBorder_changed()));