Better safe than sorry

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28299 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-01-30 23:40:53 +00:00
parent 80e87042b4
commit b3adfd3d26

View File

@ -45,9 +45,13 @@ int VCS::doVCCommandCall(string const & cmd, FileName const & path){
int VCS::doVCCommand(string const & cmd, FileName const & path)
{
owner_->setBusy(true);
if (owner_)
owner_->setBusy(true);
int const ret = doVCCommandCall(cmd, path);
owner_->setBusy(false);
if (owner_)
owner_->setBusy(false);
if (ret)
frontend::Alert::error(_("Revision control error."),
bformat(_("Some problem occured while running the command:\n"