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:
Richard Heck 2011-08-08 18:30:43 +00:00
parent 3b30a0049d
commit 809beacb5a

View File

@ -52,7 +52,7 @@ GuiSendTo::GuiSendTo(GuiView & lv)
this, SLOT(changed_adaptor()));
connect(formatLW, SIGNAL(itemSelectionChanged()),
this, SLOT(changed_adaptor()));
connect(commandCO, SIGNAL(textChanged(QString)),
connect(commandCO, SIGNAL(editTextChanged(QString)),
this, SLOT(changed_adaptor()));
bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);