]> git.lyx.org Git - features.git/commitdiff
Line length, better grammar.
authorRichard Heck <rgheck@comcast.net>
Thu, 18 Nov 2010 23:12:46 +0000 (23:12 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 18 Nov 2010 23:12:46 +0000 (23:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36391 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiView.cpp

index c6ff79c0f93e67c961f4a7c9ef7ba42e1aaa9ef6..fa930e830c225545a05a6e18c78c097a84401f7a 100644 (file)
@@ -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;
        }