From 272fd4d7dffcab975e2e21974a8b04f324954666 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Wed, 13 Dec 2006 20:01:39 +0000 Subject: [PATCH] Replace the Qt3 support signal QComboBox::textChanged with the correct Qt4 signal QComboBox::editTextChanged. * src/frontends/qt4/QSearchDialog.C (QSearchDialog::QSearchDialog): use QComboBox::editTextChanged instead of QComboBox::textChanged. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16270 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/QSearchDialog.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/QSearchDialog.C b/src/frontends/qt4/QSearchDialog.C index 9d3e845013..b8f329a6ce 100644 --- a/src/frontends/qt4/QSearchDialog.C +++ b/src/frontends/qt4/QSearchDialog.C @@ -52,7 +52,7 @@ QSearchDialog::QSearchDialog(QSearch * form) connect( findPB, SIGNAL( clicked() ), this, SLOT( findClicked() ) ); connect( replacePB, SIGNAL( clicked() ), this, SLOT( replaceClicked() ) ); connect( replaceallPB, SIGNAL( clicked() ), this, SLOT( replaceallClicked() ) ); - connect( findCO, SIGNAL( textChanged(const QString&) ), this, SLOT( findChanged() ) ); + connect( findCO, SIGNAL( editTextChanged(const QString&) ), this, SLOT( findChanged() ) ); }