Fix gcc warning.

Those arguments are not needed because update() will always look at what is currently selected and the info is there.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17546 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-03-25 13:21:23 +00:00
parent 816737b843
commit b4831be219

View File

@ -286,7 +286,7 @@ void QCitationDialog::updateInfo(const QModelIndex & idx)
}
void QCitationDialog::on_selectedLV_clicked(const QModelIndex & idx)
void QCitationDialog::on_selectedLV_clicked(const QModelIndex &)
{
availableLV->selectionModel()->reset();
update();
@ -303,7 +303,7 @@ void QCitationDialog::selectedChanged(const QModelIndex & idx, const QModelIndex
}
void QCitationDialog::on_availableLV_clicked(const QModelIndex & idx)
void QCitationDialog::on_availableLV_clicked(const QModelIndex &)
{
selectedLV->selectionModel()->reset();
update();
@ -332,7 +332,7 @@ void QCitationDialog::on_availableLV_activated(const QModelIndex & idx)
}
void QCitationDialog::on_availableLV_entered(const QModelIndex & idx)
void QCitationDialog::on_availableLV_entered(const QModelIndex &)
{
}