mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-24 17:09:41 +00:00
Apparently, we are not supposed to be using QComboBox::textChanged
anymore, but instead QComboBox::editTextChanged. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39444 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3b30a0049d
commit
809beacb5a
@ -52,7 +52,7 @@ GuiSendTo::GuiSendTo(GuiView & lv)
|
|||||||
this, SLOT(changed_adaptor()));
|
this, SLOT(changed_adaptor()));
|
||||||
connect(formatLW, SIGNAL(itemSelectionChanged()),
|
connect(formatLW, SIGNAL(itemSelectionChanged()),
|
||||||
this, SLOT(changed_adaptor()));
|
this, SLOT(changed_adaptor()));
|
||||||
connect(commandCO, SIGNAL(textChanged(QString)),
|
connect(commandCO, SIGNAL(editTextChanged(QString)),
|
||||||
this, SLOT(changed_adaptor()));
|
this, SLOT(changed_adaptor()));
|
||||||
|
|
||||||
bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);
|
bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user