make bformat happy

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7635 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2003-09-02 12:03:30 +00:00
parent b02a5bf656
commit 621e1d43b4
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-09-02 Alfredo Braunstein <abraunst@libero.it>
* formulamacro.C (prefix): replace %s by %1$s to make bformat happy
2003-09-01 Alfredo Braunstein <abraunst@libero.it>
* formulabase.C (InsetFormulaBase): initialize view_

View File

@ -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());
}