mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
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
This commit is contained in:
parent
042605b93f
commit
272fd4d7df
@ -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() ) );
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user