That commit is obsoleted by 5bd14af8.
This commit is contained in:
Enrico Forestieri 2014-07-12 19:52:12 +02:00
parent 5bd14af887
commit 2af17f8f89

View File

@ -259,9 +259,8 @@ string const LaTeXFont::getPackageOptions(bool ot1, bool complete, bool sc, bool
&& providesScale(ot1, complete, nomath)) {
if (!os.str().empty())
os << ',';
ostringstream value;
value << float(scale) / 100;
os << subst(to_ascii(scaleoption_), "$$val", value.str());
os << subst(to_ascii(scaleoption_), "$$val",
convert<std::string>(float(scale) / 100));
}
return os.str();
}