From: Juergen Spitzmueller Date: Mon, 18 May 2015 11:13:04 +0000 (+0200) Subject: GuiBox: remove unneeded connection and use a more senible signal X-Git-Tag: 2.2.0alpha1~765 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e1b1dd7445315162aea33163cb2e9e6fb45f9349;p=features.git GuiBox: remove unneeded connection and use a more senible signal --- diff --git a/src/frontends/qt4/GuiBox.cpp b/src/frontends/qt4/GuiBox.cpp index b34bd68d06..afc646281f 100644 --- a/src/frontends/qt4/GuiBox.cpp +++ b/src/frontends/qt4/GuiBox.cpp @@ -151,8 +151,8 @@ GuiBox::GuiBox(QWidget * parent) : InsetParamsWidget(parent) connect(shadowsizeED, SIGNAL(textChanged(QString)), this, SIGNAL(changed())); connect(shadowsizeUnitsLC, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SIGNAL(changed())); - connect(frameColorCO, SIGNAL(highlighted(QString)), this, SIGNAL(changed())); - connect(backgroundColorCO, SIGNAL(highlighted(QString)), this, SIGNAL(changed())); + connect(backgroundColorCO, SIGNAL(currentIndexChanged(int)), + this, SIGNAL(changed())); heightED->setValidator(unsignedLengthValidator(heightED)); widthED->setValidator(unsignedLengthValidator(widthED));