]> git.lyx.org Git - features.git/commitdiff
discard changes
authorJohn Levon <levon@movementarian.org>
Mon, 28 Apr 2003 22:52:05 +0000 (22:52 +0000)
committerJohn Levon <levon@movementarian.org>
Mon, 28 Apr 2003 22:52:05 +0000 (22:52 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6875 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/bufferlist.C

index dec95766f9da90500378e3f98003a1604d196c4e..47e2488cbd07196b7fdfcf1c2453119d5fc0dc42 100644 (file)
@@ -1,3 +1,7 @@
+2003-04-28  John Levon  <levon@movementarian.org>
+
+       * bufferlist.C: changes for unsaved changes dialog
+
 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
 
        * bufferlist.C (newFile): set language (messages_) for new
index 89a4b8d993268fb5319bfc823df191791f50ecc1..31f59ba57279c2346df8fb81c5afea631ba99f1b 100644 (file)
@@ -78,7 +78,7 @@ bool BufferList::quitWriteBuffer(Buffer * buf)
        text += file + _(" has unsaved changes.\n\nWhat do you want to do with it?");
 #endif
        int const ret = Alert::prompt(_("Save changed document?"),
-               text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
+               text, 0, 2, _("&Save Changes"), _("&Discard Changes"), _("&Cancel"));
 
        if (ret == 0) {
                // FIXME: WriteAs can be asynch !
@@ -187,7 +187,7 @@ bool BufferList::close(Buffer * buf, bool ask)
        text += fname + _(" has unsaved changes.\n\nWhat do you want to do with it?");
 #endif
        int const ret = Alert::prompt(_("Save changed document?"),
-               text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
+               text, 0, 2, _("&Save Changes"), _("&Discard Changes"), _("&Cancel"));
 
        if (ret == 0) {
                if (buf->isUnnamed()) {