From: Juergen Spitzmueller Date: Sat, 5 May 2018 08:00:20 +0000 (+0200) Subject: Remove connections X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3487 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0a8ec32a3bbcefc5ce7d7772fec82b85ba58f2d1;p=features.git Remove connections We have on_emphCB_clicked() and on_nounCB_cklicked() that call change_adaptor at the end (after doing other things) --- diff --git a/src/frontends/qt4/GuiCharacter.cpp b/src/frontends/qt4/GuiCharacter.cpp index d1bbc524e8..5e6e124dcf 100644 --- a/src/frontends/qt4/GuiCharacter.cpp +++ b/src/frontends/qt4/GuiCharacter.cpp @@ -219,8 +219,6 @@ GuiCharacter::GuiCharacter(GuiView & lv) connect(ulineCO, SIGNAL(activated(int)), this, SLOT(change_adaptor())); connect(strikeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor())); - connect(emphCB, SIGNAL(clicked(bool)), this, SLOT(change_adaptor())); - connect(nounCB, SIGNAL(clicked(bool)), this, SLOT(change_adaptor())); connect(sizeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor())); connect(familyCO, SIGNAL(activated(int)), this, SLOT(change_adaptor())); connect(seriesCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));