From 0a6f607c8132bb5e94288c8b2c8f7da6f990694b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20St=C3=B6hr?= Date: Mon, 8 Nov 2010 04:36:11 +0000 Subject: [PATCH] GuiTabular.cpp: workaround fix for #7022 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36207 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiTabular.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/frontends/qt4/GuiTabular.cpp b/src/frontends/qt4/GuiTabular.cpp index b69b8e5db9..bcf91f54d4 100644 --- a/src/frontends/qt4/GuiTabular.cpp +++ b/src/frontends/qt4/GuiTabular.cpp @@ -60,19 +60,19 @@ GuiTabular::GuiTabular(QWidget * parent) bottomspaceUnitCB->setCurrentItem(Length::defaultUnit()); interlinespaceUnitCB->setCurrentItem(Length::defaultUnit()); - connect(topspaceED, SIGNAL(textEdited(QString)), + connect(topspaceED, SIGNAL(editingFinished()), this, SLOT(checkEnabled())); connect(topspaceUnitCB, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SLOT(checkEnabled())); connect(topspaceCO, SIGNAL(activated(int)), this, SLOT(checkEnabled())); - connect(bottomspaceED, SIGNAL(textEdited(QString)), + connect(bottomspaceED, SIGNAL(editingFinished()), this, SLOT(checkEnabled())); connect(bottomspaceUnitCB, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SLOT(checkEnabled())); connect(bottomspaceCO, SIGNAL(activated(int)), this, SLOT(checkEnabled())); - connect(interlinespaceED, SIGNAL(textEdited(QString)), + connect(interlinespaceED, SIGNAL(editingFinished()), this, SLOT(checkEnabled())); connect(interlinespaceUnitCB, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SLOT(checkEnabled())); @@ -94,7 +94,7 @@ GuiTabular::GuiTabular(QWidget * parent) this, SLOT(checkEnabled())); connect(multirowCB, SIGNAL(clicked()), this, SLOT(checkEnabled())); - connect(multirowOffsetED, SIGNAL(textEdited(QString)), + connect(multirowOffsetED, SIGNAL(editingFinished()), this, SLOT(checkEnabled())); connect(multirowOffsetUnitCB, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SLOT(checkEnabled())); @@ -132,7 +132,7 @@ GuiTabular::GuiTabular(QWidget * parent) this, SLOT(checkEnabled())); connect(specialAlignmentED, SIGNAL(textEdited(QString)), this, SLOT(checkEnabled())); - connect(widthED, SIGNAL(textEdited(QString)), + connect(widthED, SIGNAL(editingFinished()), this, SLOT(checkEnabled())); connect(widthUnitCB, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SLOT(checkEnabled()));