From: Richard Heck Date: Mon, 8 Aug 2011 18:30:43 +0000 (+0000) Subject: Apparently, we are not supposed to be using QComboBox::textChanged X-Git-Tag: 2.0.1~44 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=809beacb5a9fc066a7aa12aef5deb1ca96ac7d59;p=features.git 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 --- diff --git a/src/frontends/qt4/GuiSendto.cpp b/src/frontends/qt4/GuiSendto.cpp index 7ee8d384d6..5675342959 100644 --- a/src/frontends/qt4/GuiSendto.cpp +++ b/src/frontends/qt4/GuiSendto.cpp @@ -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);