]> git.lyx.org Git - lyx.git/blobdiff - src/dociterator.C
* remove various xforms relicts, in particular:
[lyx.git] / src / dociterator.C
index 565a43f8945f26ca1f81e5ed50c36953cf378433..2e314e012f60708c06b95c607dcea98575a870a8 100644 (file)
@@ -300,7 +300,7 @@ void DocIterator::forwardPos(bool ignorecollapsed)
        // jump over collapsables if they are collapsed
        // FIXME: the check for asMathInset() shouldn't be necessary
        // but math insets do not return a sensible editable() state yet.
-       if (ignorecollapsed && nextInset() && (!nextInset()->asMathInset() 
+       if (ignorecollapsed && nextInset() && (!nextInset()->asMathInset()
            && nextInset()->editable() != InsetBase::HIGHLY_EDITABLE)) {
                ++top().pos();
                return;
@@ -512,7 +512,7 @@ bool DocIterator::hasPart(DocIterator const & it) const
 }
 
 
-void DocIterator::updateInsets(InsetBase * inset) 
+void DocIterator::updateInsets(InsetBase * inset)
 {
        // this function re-creates the cache of inset pointers.
        // code taken in part from StableDocIterator::asDocIterator.
@@ -587,4 +587,3 @@ bool operator==(StableDocIterator const & dit1, StableDocIterator const & dit2)
 {
        return dit1.data_ == dit2.data_;
 }
-