X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FUndo.cpp;h=8378859ea3fe21ba25e74d5f4627de3621a3f913;hb=0362c6aae73c293d1c20277c12d362acfe0b2ef6;hp=401051e3f58e5ac22d4d94293cfc5e81fd01aabb;hpb=b89cc942eb458284f40f4d4e7db58890c3288979;p=lyx.git diff --git a/src/Undo.cpp b/src/Undo.cpp index 401051e3f5..8378859ea3 100644 --- a/src/Undo.cpp +++ b/src/Undo.cpp @@ -20,7 +20,6 @@ #include "Buffer.h" #include "BufferParams.h" #include "buffer_funcs.h" -#include "support/debug.h" #include "DocIterator.h" #include "Paragraph.h" #include "ParagraphList.h" @@ -31,6 +30,7 @@ #include "insets/Inset.h" +#include "support/debug.h" #include "support/limited_stack.h" #include @@ -146,7 +146,7 @@ bool Undo::hasRedoStack() const namespace { -std::ostream & operator<<(std::ostream & os, UndoElement const & undo) +ostream & operator<<(ostream & os, UndoElement const & undo) { return os << " from: " << undo.from << " end: " << undo.end << " cell:\n" << undo.cell @@ -172,7 +172,7 @@ void Undo::Private::doRecordUndo(UndoKind kind, bool isUndoOperation) { if (first_pit > last_pit) - std::swap(first_pit, last_pit); + swap(first_pit, last_pit); // create the position information of the Undo entry UndoElement undo; undo.array = 0; @@ -223,7 +223,7 @@ void Undo::Private::doRecordUndo(UndoKind kind, // push the undo entry to undo stack stack.push(undo); - //lyxerr << "undo record: " << stack.top() << std::endl; + //lyxerr << "undo record: " << stack.top() << endl; // next time we'll try again to combine entries if possible undo_finished = false; @@ -243,7 +243,7 @@ void Undo::Private::recordUndo(UndoKind kind, DocIterator & cur, redostack.clear(); //lyxerr << "undostack:\n"; //for (size_t i = 0, n = buf.undostack().size(); i != n && i < 6; ++i) - // lyxerr << " " << i << ": " << buf.undostack()[i] << std::endl; + // lyxerr << " " << i << ": " << buf.undostack()[i] << endl; } @@ -281,7 +281,7 @@ bool Undo::Private::textUndoOrRedo(DocIterator & cur, bool isUndoOperation) // This is a full document otherstack.top().bparams = buffer_.params(); buffer_.params() = undo.bparams; - std::swap(buffer_.paragraphs(), *undo.pars); + swap(buffer_.paragraphs(), *undo.pars); delete undo.pars; undo.pars = 0; } else if (dit.inMathed()) {