mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Revert "Do not kill the undo stack when doing a Save As..."
This commit was causing bug #8821.
This reverts commit 467422f9df
.
This commit is contained in:
parent
f835134f16
commit
b89ef8a5b3
@ -4736,7 +4736,7 @@ int Buffer::charCount(bool with_blanks) const
|
||||
}
|
||||
|
||||
|
||||
Buffer::ReadStatus Buffer::reload(bool clearUndo)
|
||||
Buffer::ReadStatus Buffer::reload()
|
||||
{
|
||||
setBusy(true);
|
||||
// c.f. bug http://www.lyx.org/trac/ticket/6587
|
||||
@ -4754,8 +4754,7 @@ Buffer::ReadStatus Buffer::reload(bool clearUndo)
|
||||
updateTitles();
|
||||
markClean();
|
||||
message(bformat(_("Document %1$s reloaded."), disp_fn));
|
||||
if (clearUndo)
|
||||
d->undo_.clear();
|
||||
d->undo_.clear();
|
||||
} else {
|
||||
message(bformat(_("Could not reload document %1$s."), disp_fn));
|
||||
}
|
||||
|
@ -230,8 +230,7 @@ public:
|
||||
/// read a new document from a string
|
||||
bool readString(std::string const &);
|
||||
/// Reloads the LyX file
|
||||
/// \param clearUndo if false, leave alone the undo stack.
|
||||
ReadStatus reload(bool clearUndo = true);
|
||||
ReadStatus reload();
|
||||
//FIXME: The following function should be private
|
||||
//private:
|
||||
/// read the header, returns number of unknown tokens
|
||||
|
@ -2364,7 +2364,7 @@ bool GuiView::renameBuffer(Buffer & b, docstring const & newname, RenameKind kin
|
||||
|
||||
bool const saved = saveBuffer(b, fname);
|
||||
if (saved)
|
||||
b.reload(false);
|
||||
b.reload();
|
||||
return saved;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user