]> git.lyx.org Git - features.git/commitdiff
Cosmetics.
authorVincent van Ravesteijn <vfr@lyx.org>
Thu, 19 Feb 2009 19:41:41 +0000 (19:41 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Thu, 19 Feb 2009 19:41:41 +0000 (19:41 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28562 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiRef.cpp
src/frontends/qt4/GuiRef.h

index e685d00920506df795f934c68bcb9c00c228c4a4..d344ab64faaa77255f82ef56983b4a238cb9e2c5 100644 (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();
 }
index 4cece7e91f685ee7db3839bdbc3d07343c02aa93..d34908751045b5bd4c9c7092e13d0454796fa37d 100644 (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();