From: Richard Heck Date: Thu, 18 Nov 2010 23:12:46 +0000 (+0000) Subject: Line length, better grammar. X-Git-Tag: 2.0.0~1775 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2be835f92592bd027934a6105bc57aee1f70b859;p=lyx.git Line length, better grammar. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36391 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index c6ff79c0f9..fa930e830c 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -802,7 +802,8 @@ void GuiView::closeEvent(QCloseEvent * close_event) LYXERR(Debug::DEBUG, "GuiView::closeEvent()"); if (!GuiViewPrivate::busyBuffers.isEmpty()) { - Alert::warning(_("Exit LyX"), _("LyX could not be closed because documents are processed by LyX.")); + Alert::warning(_("Exit LyX"), + _("LyX could not be closed because documents are being processed by LyX.")); close_event->setAccepted(false); return; } @@ -2414,7 +2415,8 @@ bool GuiView::closeWorkArea(GuiWorkArea * wa, bool close_buffer) Buffer & buf = wa->bufferView().buffer(); if (close_buffer && GuiViewPrivate::busyBuffers.contains(&buf)) { - Alert::warning(_("Close document"), _("Document could not be closed because it is processed by LyX.")); + Alert::warning(_("Close document"), + _("Document could not be closed because it is being processed by LyX.")); return false; }