QComboBox::textChanged is a Qt3 support signal only, QComboBox::editTextChanged is the new Qt4 signal

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15931 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2006-11-14 21:00:34 +00:00
parent f71a169294
commit c72b361fc9

View File

@ -54,7 +54,7 @@ QBibtexDialog::QBibtexDialog(QBibtex * form)
this, SLOT( browsePressed() ) );
connect(deletePB, SIGNAL( clicked() ),
this, SLOT( deletePressed() ) );
connect(styleCB, SIGNAL( textChanged(const QString&) ),
connect(styleCB, SIGNAL( editTextChanged (const QString&) ),
this, SLOT( change_adaptor() ) );
connect(databaseLW, SIGNAL( itemSelectionChanged() ),
this, SLOT( databaseChanged() ) );