fix buggy boost format

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6941 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-05-06 18:34:46 +00:00
parent 525259940d
commit d2179e4e65
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-05-06 John Levon <levon@movementarian.org>
* ControlDocument.C: fix buggy boost format
2003-05-06 Lars Gullik Bjønnes <larsbj@gullik.net> 2003-05-06 Lars Gullik Bjønnes <larsbj@gullik.net>
* ControlDocument.C (classApply): adjust call to * ControlDocument.C (classApply): adjust call to

View File

@ -132,7 +132,7 @@ void ControlDocument::classApply()
#if USE_BOOST_FORMAT #if USE_BOOST_FORMAT
if (ret == 1) { if (ret == 1) {
boost::format fmt(_("One paragraph could not be converted\n" 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(); fmt % textclasslist[new_class].name();
s = fmt.str(); s = fmt.str();
} else { } else {