mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix signals
This commit is contained in:
parent
a320403590
commit
6c35d5cb5b
@ -217,14 +217,14 @@ GuiCharacter::GuiCharacter(GuiView & lv)
|
|||||||
connect(autoapplyCB, SIGNAL(stateChanged(int)), this,
|
connect(autoapplyCB, SIGNAL(stateChanged(int)), this,
|
||||||
SLOT(slotAutoApply()));
|
SLOT(slotAutoApply()));
|
||||||
|
|
||||||
connect(ulineCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(ulineCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(strikeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(strikeCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(sizeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(sizeCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(familyCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(familyCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(seriesCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(seriesCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(shapeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(shapeCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(colorCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(colorCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
connect(langCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
connect(langCO, SIGNAL(currentIndexChanged(int)), this, SLOT(change_adaptor()));
|
||||||
|
|
||||||
family = familyData();
|
family = familyData();
|
||||||
series = seriesData();
|
series = seriesData();
|
||||||
|
Loading…
Reference in New Issue
Block a user