X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbuffer_funcs.cpp;h=03ecc90abeb9d9a8bea5c4ec654ac38fde923016;hb=b6b263b9fc4cd70849c60de9f8849c346b3c12ab;hp=85a22ebff756827a13eae8f13d79052680d48a65;hpb=9d99d3dbea13bde365273a6c36e087573f66a02b;p=lyx.git diff --git a/src/buffer_funcs.cpp b/src/buffer_funcs.cpp index 85a22ebff7..03ecc90abe 100644 --- a/src/buffer_funcs.cpp +++ b/src/buffer_funcs.cpp @@ -47,6 +47,7 @@ #include "support/filetools.h" #include "support/gettext.h" #include "support/lstrings.h" +#include "support/mutex.h" #include "support/textutils.h" using namespace std; @@ -73,13 +74,22 @@ Buffer * checkAndLoadLyXFile(FileName const & filename, bool const acceptDirty) docstring const text = bformat(_( "The document %1$s is already loaded and has unsaved changes.\n" "Do you want to abandon your changes and reload the version on disk?"), file); - if (!Alert::prompt(_("Reload saved document?"), - text, 0, 1, _("&Reload"), _("&Keep Changes"))) { - // reload the document - if (checkBuffer->reload() != Buffer::ReadSuccess) + int res = Alert::prompt(_("Reload saved document?"), + text, 2, 2, _("Yes, &Reload"), _("No, &Keep Changes"), _("&Cancel")); + switch (res) { + case 0: { + // reload the document + if (checkBuffer->reload() != Buffer::ReadSuccess) + return 0; + return checkBuffer; + } + case 1: + // keep changes + return checkBuffer; + case 2: + // cancel return 0; } - return checkBuffer; } bool const exists = filename.exists(); @@ -164,7 +174,9 @@ Buffer * newUnnamedFile(FileName const & path, string const & prefix, string const & templatename) { static map file_number; + static Mutex mutex; + Mutex::Locker locker(&mutex); FileName filename; do {