Cosmetics.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28562 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2009-02-19 19:41:41 +00:00
parent 90258a0dd3
commit 3373aa588c
2 changed files with 4 additions and 4 deletions

View File

@ -78,8 +78,8 @@ GuiRef::GuiRef(GuiView & lv)
this, SLOT(selectionChanged()));
connect(refsLW, SIGNAL(itemActivated(QListWidgetItem *)),
this, SLOT(refSelected(QListWidgetItem *)));
connect(sortCB, SIGNAL(clicked(bool)),
this, SLOT(sortToggled(bool)));
connect(sortCB, SIGNAL(clicked()),
this, SLOT(sortToggled()));
connect(gotoPB, SIGNAL(clicked()),
this, SLOT(gotoClicked()));
connect(updatePB, SIGNAL(clicked()),
@ -169,7 +169,7 @@ void GuiRef::refSelected(QListWidgetItem * sel)
}
void GuiRef::sortToggled(bool on)
void GuiRef::sortToggled()
{
redoRefs();
}

View File

@ -37,7 +37,7 @@ private Q_SLOTS:
void refHighlighted(QListWidgetItem *);
void selectionChanged();
void refSelected(QListWidgetItem *);
void sortToggled(bool);
void sortToggled();
void updateClicked();
void reset_dialog();
void dialog_rejected();