]> git.lyx.org Git - lyx.git/commitdiff
Fix crash introduced in my previous commit f6b1c24b
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 17 Jul 2012 20:26:44 +0000 (22:26 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 17 Jul 2012 20:26:44 +0000 (22:26 +0200)
Cursor::fixIfBroken does not do what I thought it did. Lift some code
from StableDocIterator::asDocIterator instead.

src/Cursor.cpp
src/Cursor.h
src/DocIterator.cpp
src/DocIterator.h

index 663bc7552f1a8834c64df8a05e873ad71c9aa0f7..b0f7b7074ea5451d7a077f7e63aada6c010d6f6a 100644 (file)
@@ -2313,6 +2313,14 @@ bool Cursor::fixIfBroken()
 }
 
 
+void Cursor::sanitize()
+{
+       setBuffer(&bv_->buffer());
+       DocIterator::sanitize();
+       anchor_.sanitize();
+}
+
+
 bool notifyCursorLeavesOrEnters(Cursor const & old, Cursor & cur)
 {
        // find inset in common
@@ -2400,7 +2408,7 @@ bool Cursor::textUndo()
 {
        if (!buffer()->undo().textUndo(*this))
                return false;
-       fixIfBroken();
+       sanitize();
        return true;
 }
 
@@ -2409,7 +2417,7 @@ bool Cursor::textRedo()
 {
        if (!buffer()->undo().textRedo(*this))
                return false;
-       fixIfBroken();
+       sanitize();
        return true;
 }
 
index 318c5d9a6d45e34e5f7a9343abf7ac496973ca9a..31debbf9c48edc17fba7e76b827b095f0ff47a38 100644 (file)
@@ -306,6 +306,9 @@ public:
        /// fix cursor in circumstances that should never happen.
        /// \retval true if a fix occured.
        bool fixIfBroken();
+       /// Repopulate the slices insets from bottom to top. Useful
+       /// for stable iterators or Undo data.
+       void sanitize();
 
        /// output
        friend std::ostream & operator<<(std::ostream & os, Cursor const & cur);
index 310b85131ba8e1e3fe16eeaf69e58713d62cfc47..5cd1c0eac3c0e84f199e6ce12cce830c4b14bc73 100644 (file)
@@ -530,6 +530,35 @@ bool DocIterator::fixIfBroken()
 }
 
 
+void DocIterator::sanitize()
+{
+       // this function re-creates the cache of inset pointers
+       //lyxerr << "converting:\n" << *this << endl;
+       if (buffer_)
+               inset_ = &buffer_->inset();
+       Inset * inset = inset_;
+       for (size_t i = 0, n = slices_.size(); i != n; ++i) {
+               if (inset == 0) {
+                       // FIXME
+                       LYXERR0(" Should not happen, but does e.g. after "
+                               "C-n C-l C-z S-C-z\n"
+                               << " or when a Buffer has been concurrently edited by two views"
+                               << '\n' << "dit: " << *this << '\n'
+                               << " lastpos: " << slices_[i].lastpos());
+                       fixIfBroken();
+                       break;
+               }
+               slices_[i].inset_ = inset;
+               if (fixIfBroken())
+                       break;
+               if (i + 1 != n)
+                       inset = slices_[i].inset().inMathed() ? slices_[i].cell()[slices_[i].pos()].nucleus() 
+                               : slices_[i].paragraph().getInset(pos());
+       }
+       //lyxerr << "convert:\n" << *this << " to:\n" << dit << endl;
+}
+
+
 int DocIterator::find(MathData const & cell) const
 {
        for (size_t l = 0; l != slices_.size(); ++l) {
@@ -597,29 +626,9 @@ StableDocIterator::StableDocIterator(DocIterator const & dit)
 
 DocIterator StableDocIterator::asDocIterator(Buffer * buf) const
 {
-       // this function re-creates the cache of inset pointers
-       //lyxerr << "converting:\n" << *this << endl;
-       Inset * inset = &buf->inset();
-       DocIterator dit = DocIterator(buf, inset);
-       for (size_t i = 0, n = data_.size(); i != n; ++i) {
-               if (inset == 0) {
-                       // FIXME
-                       LYXERR0(" Should not happen, but does e.g. after "
-                               "C-n C-l C-z S-C-z\n"
-                               << " or when a Buffer has been concurrently edited by two views"
-                               << '\n' << "dit: " << dit << '\n'
-                               << " lastpos: " << dit.lastpos());
-                       dit.fixIfBroken();
-                       break;
-               }
-               dit.push_back(data_[i]);
-               dit.top().inset_ = inset;
-               if (dit.fixIfBroken())
-                       break;
-               if (i + 1 != n)
-                       inset = dit.nextInset();
-       }
-       //lyxerr << "convert:\n" << *this << " to:\n" << dit << endl;
+       DocIterator dit = DocIterator(buf);
+       dit.slices_ = data_;
+       dit.sanitize();
        return dit;
 }
 
index 2aeff8fca13b69f6488691100a4f9b3b306f901e..3d5647c8931b55008a81f1470429bc94266a2ceb 100644 (file)
@@ -231,6 +231,9 @@ public:
        /// fix DocIterator in circumstances that should never happen.
        /// \return true if the DocIterator was fixed.
        bool fixIfBroken();
+       /// Repopulate the slices insets from bottom to top. Useful
+       /// for stable iterators or Undo data.
+       void sanitize();
 
        /// find index of CursorSlice with &cell() == &cell (or -1 if not found)
        int find(MathData const & cell) const;