]> git.lyx.org Git - features.git/commitdiff
Apparently, we are not supposed to be using QComboBox::textChanged
authorRichard Heck <rgheck@comcast.net>
Mon, 8 Aug 2011 18:30:43 +0000 (18:30 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 8 Aug 2011 18:30:43 +0000 (18:30 +0000)
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

src/frontends/qt4/GuiSendto.cpp

index 7ee8d384d6934de10c6887d83823f21bbc111463..56753429595ba99aa86600708456e470bb333efb 100644 (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);