]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formulamacro.C
small up/down tweaking
[lyx.git] / src / mathed / formulamacro.C
index a4473a9847e7d4f0115bdd6dfbbef3d4857668c5..fc02a5a8b0160b77dc9cd16e229102110186c380 100644 (file)
@@ -128,7 +128,11 @@ void InsetFormulaMacro::read(std::istream & is)
 
 string InsetFormulaMacro::prefix() const
 {
-       return boost::io::str(boost::format(_(" Macro: %1$s: ")) % getInsetName());
+#if USE_BOOST_FORMAT
+       return boost::io::str(boost::format(_(" Macro: %s: ")) % getInsetName());
+#else
+       return _(" Macro: ") + getInsetName() + ": ";
+#endif
 }