mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
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:
parent
816737b843
commit
b4831be219
@ -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 &)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user