From: Alfredo Braunstein Date: Tue, 2 Sep 2003 12:03:30 +0000 (+0000) Subject: make bformat happy X-Git-Tag: 1.6.10~16201 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=621e1d43b4b5c1e56e4a9cda121218ed1c2390f5;p=features.git make bformat happy git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7635 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 835dac6655..4e6aaa2758 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,7 @@ +2003-09-02 Alfredo Braunstein + + * formulamacro.C (prefix): replace %s by %1$s to make bformat happy + 2003-09-01 Alfredo Braunstein * formulabase.C (InsetFormulaBase): initialize view_ diff --git a/src/mathed/formulamacro.C b/src/mathed/formulamacro.C index 6e0bc6b8ef..a54a0e3642 100644 --- a/src/mathed/formulamacro.C +++ b/src/mathed/formulamacro.C @@ -124,7 +124,7 @@ void InsetFormulaMacro::read(std::istream & is) string InsetFormulaMacro::prefix() const { - return bformat(_(" Macro: %s: "), getInsetName()); + return bformat(_(" Macro: %1$s: "), getInsetName()); }