From d2179e4e65fe5b1b15d58dfaccd7cc0455c96d78 Mon Sep 17 00:00:00 2001 From: John Levon Date: Tue, 6 May 2003 18:34:46 +0000 Subject: [PATCH] fix buggy boost format git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6941 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/controllers/ChangeLog | 4 ++++ src/frontends/controllers/ControlDocument.C | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/frontends/controllers/ChangeLog b/src/frontends/controllers/ChangeLog index 625a811144..0a598db1d6 100644 --- a/src/frontends/controllers/ChangeLog +++ b/src/frontends/controllers/ChangeLog @@ -1,3 +1,7 @@ +2003-05-06 John Levon + + * ControlDocument.C: fix buggy boost format + 2003-05-06 Lars Gullik Bjønnes * ControlDocument.C (classApply): adjust call to diff --git a/src/frontends/controllers/ControlDocument.C b/src/frontends/controllers/ControlDocument.C index dd23125bab..5b0c2068a6 100644 --- a/src/frontends/controllers/ControlDocument.C +++ b/src/frontends/controllers/ControlDocument.C @@ -132,7 +132,7 @@ void ControlDocument::classApply() #if USE_BOOST_FORMAT if (ret == 1) { boost::format fmt(_("One paragraph could not be converted\n" - "into the document class %2$s.")); + "into the document class %1$s.")); fmt % textclasslist[new_class].name(); s = fmt.str(); } else {