]> git.lyx.org Git - lyx.git/commitdiff
Replace the Qt3 support signal QComboBox::textChanged
authorEnrico Forestieri <forenr@lyx.org>
Wed, 13 Dec 2006 20:01:39 +0000 (20:01 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Wed, 13 Dec 2006 20:01:39 +0000 (20:01 +0000)
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

index 9d3e84501353843d7473be13e0d6283d8b0cca02..b8f329a6cecbbd318d342d8c2e09af552964c814 100644 (file)
@@ -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() ) );
 }