]> git.lyx.org Git - features.git/commitdiff
(Michael Schmitt): format string correctly.
authorAngus Leeming <leeming@lyx.org>
Mon, 16 Dec 2002 10:40:05 +0000 (10:40 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 16 Dec 2002 10:40:05 +0000 (10:40 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5816 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/FormGraphics.C

index 50f4c77e836e013cf5a4393efd80c07e3d14a1d0..6fce91a77aa735d43015f17b76fc9651c65cb8b2 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-16  Michael Schmitt  <Michael.Schmitt@teststep.org>
+
+       * FormGraphics.C (build): correct string for boost::format.
+
 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
 
        * FormGraphics.C (build): add another xgettext:no-c-format
index 8e4633ad08f4b973ab494c2cd44253ad36f3f009..80c03d7712497b11445fe01b2b651b76bd348ac5 100644 (file)
@@ -124,7 +124,7 @@ void FormGraphics::build()
        fl_addto_choice(file_->choice_display, display_List.c_str());
 
 #if USE_BOOST_FORMAT
-       string const width_list = boost::io::str(boost::format(_("Scale%%|%1$s")) % choice_Length_All);
+       string const width_list = boost::io::str(boost::format(_("Scale%%%%|%1$s")) % choice_Length_All);
 #else
        // xgettext:no-c-format
        string const width_list = _("Scale%%|") + choice_Length_All;