]> git.lyx.org Git - lyx.git/blobdiff - src/undo.C
Extend the navigate menu to child docs
[lyx.git] / src / undo.C
index fa377c3e548588d92f62c57a654f37097282eee6..b60d0e11b95f8c3d3fddbbd00d643ad1c4d003c7 100644 (file)
@@ -96,7 +96,7 @@ void doRecordUndo(Undo::undo_kind kind,
        // fill in the real data to be saved
        if (cell.inMathed()) {
                // simply use the whole cell
-               undo.array = to_utf8(asString(cell.cell()));
+               undo.array = asString(cell.cell());
        } else {
                // some more effort needed here as 'the whole cell' of the
                // main LyXText _is_ the whole document.
@@ -170,8 +170,7 @@ bool textUndoOrRedo(BufferView & bv,
                // gained by storing just 'a few' paragraphs (most if not
                // all math inset cells have just one paragraph!)
                //lyxerr << "undo.array=" << undo.array <<endl;
-               // FIXME UNICODE
-               asArray(from_utf8(undo.array), dit.cell());
+               asArray(undo.array, dit.cell());
        } else {
                // Some finer machinery is needed here.
                LyXText * text = dit.text();