]> git.lyx.org Git - features.git/commitdiff
Remove the GuiRef::sort_ member. It was a relic of the old days.
authorVincent van Ravesteijn <vfr@lyx.org>
Thu, 19 Feb 2009 19:24:42 +0000 (19:24 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Thu, 19 Feb 2009 19:24:42 +0000 (19:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28561 a592a061-630c-0410-9148-cb99ea01b6c8

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

index b1144e372605dcab634032167334383d5765bafa..e685d00920506df795f934c68bcb9c00c228c4a4 100644 (file)
@@ -45,7 +45,6 @@ GuiRef::GuiRef(GuiView & lv)
 {
        setupUi(this);
 
-       sort_ = false;
        at_ref_ = false;
 
        //FIXME: when/if we support the xr package for cross-reference
@@ -172,7 +171,6 @@ void GuiRef::refSelected(QListWidgetItem * sel)
 
 void GuiRef::sortToggled(bool on)
 {
-       sort_ = on;
        redoRefs();
 }
 
@@ -225,8 +223,6 @@ void GuiRef::updateContents()
        if (!typeAllowed())
                typeCO->setCurrentIndex(0);
 
-       sortCB->setChecked(sort_);
-
        // insert buffer list
        bufferCO->clear();
        FileNameList const & buffers = theBufferList().fileNames();
@@ -330,7 +326,7 @@ void GuiRef::redoRefs()
                refsLW->addItem(toqstr(*iter));
        }
 
-       if (sort_)
+       if (sortCB->isEnabled() && sortCB->isChecked())
                refsLW->sortItems();
 
        referenceED->setText(oldSelection);
index a7f389e66e3eb44fa93d2d4365f93030d8eb05e7..4cece7e91f685ee7db3839bdbc3d07343c02aa93 100644 (file)
@@ -86,8 +86,6 @@ private:
        ///
        InsetCommandParams params_;
 
-       /// sort or not persistent state
-       bool sort_;
        /// went to a reference ?
        bool at_ref_;
        /// the last reference entered or examined