Author: uwestoehr
Date: Mon Nov 8 05:36:11 2010
New Revision: 36207
URL: http://www.lyx.org/trac/changeset/36207
Log:
GuiTabular.cpp: workaround fix for #7022
Modified:
lyx-devel/trunk/src/frontends/qt4/GuiTabular.cpp
Modified: lyx-devel/trunk/src/frontends/qt4/GuiTabular.cpp
==============================================================================
--- lyx-devel/trunk/src/frontends/qt4/GuiTabular.cpp Mon Nov 8 02:58:36
2010 (r36206)
+++ lyx-devel/trunk/src/frontends/qt4/GuiTabular.cpp Mon Nov 8 05:36:11
2010 (r36207)
@@ -60,19 +60,19 @@
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 @@
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 @@
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()));