X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxvc.C;h=220d7c2491381332f1d573c523cf95e14bc749f2;hb=09e01879979643949f1f2c7216023f1f35d5ada2;hp=3e09e77d346b5bfffffb89b72d1d2d5a636558dd;hpb=d31244b5e2c29b5c03f38272e6a1ff51a1197b5c;p=lyx.git diff --git a/src/lyxvc.C b/src/lyxvc.C index 3e09e77d34..220d7c2491 100644 --- a/src/lyxvc.C +++ b/src/lyxvc.C @@ -4,7 +4,6 @@ #include "vc-backend.h" #include "debug.h" #include "buffer.h" -#include "BufferView.h" #include "gettext.h" #include "funcrequest.h" @@ -16,14 +15,12 @@ #include +using namespace lyx::support; + using std::endl; using std::pair; -/* WARNING: Several of the vcs-> methods end up - * deleting this object via BufferView::reload() ! - */ - LyXVC::LyXVC() { vcs = 0; @@ -74,25 +71,6 @@ void LyXVC::buffer(Buffer * buf) } -bool LyXVC::ensureClean() -{ - if (owner_->isClean()) - return true; - - string const file = MakeDisplayPath(owner_->fileName(), 30); - string text = bformat(_("The document %1$s has unsaved changes.\n\n" - "Do you want to save the document?"), file); - int const ret = Alert::prompt(_("Save changed document?"), - text, 0, 1, _("&Save"), _("&Cancel")); - - if (ret == 0) { - vcs->owner()->getUser()->owner()->dispatch(FuncRequest(LFUN_MENUWRITE)); - } - - return owner_->isClean(); -} - - void LyXVC::registrer() { string const filename = owner_->fileName(); @@ -100,8 +78,8 @@ void LyXVC::registrer() // there must be a file to save if (!IsFileReadable(filename)) { Alert::error(_("Document not saved"), - _("You must save the document " - "before it can be registered.")); + _("You must save the document " + "before it can be registered.")); return; } @@ -127,11 +105,6 @@ void LyXVC::registrer() vcs->owner(owner_); } - // Maybe the save fails, or we answered "no". In both cases, - // the document will be dirty, and we abort. - if (!ensureClean()) - return; - lyxerr[Debug::LYXVC] << "LyXVC: registrer" << endl; pair tmp = Alert::askForText(_("LyX VC: Initial description"), @@ -148,16 +121,6 @@ void LyXVC::registrer() void LyXVC::checkIn() { - // If the document is changed, we might want to save it - if (!vcs->owner()->isClean()) { - vcs->owner()->getUser()->owner() - ->dispatch(FuncRequest(LFUN_MENUWRITE)); - } - - // Maybe the save fails, or we answered "no". In both cases, - // the document will be dirty, and we abort. - if (!vcs->owner()->isClean()) - return; lyxerr[Debug::LYXVC] << "LyXVC: checkIn" << endl; pair tmp = Alert::askForText(_("LyX VC: Log Message")); @@ -175,8 +138,6 @@ void LyXVC::checkIn() void LyXVC::checkOut() { lyxerr[Debug::LYXVC] << "LyXVC: checkOut" << endl; - if (!ensureClean()) - return; vcs->checkOut(); } @@ -243,12 +204,12 @@ string const & LyXVC::locker() const } -const string LyXVC::getLogFile() const +string const LyXVC::getLogFile() const { if (!vcs) return string(); - string tmpf = lyx::tempName(string(), "lyxvclog"); + string tmpf = tempName(string(), "lyxvclog"); lyxerr[Debug::LYXVC] << "Generating logfile " << tmpf << endl; vcs->getLog(tmpf); return tmpf;