InsetPhantom::latex(): use a switch

This commit is contained in:
Juergen Spitzmueller 2015-03-16 14:22:03 +01:00
parent e30db1e444
commit 245c2b3c45

View File

@ -313,12 +313,21 @@ void InsetPhantom::latex(otexstream & os, OutputParams const & runparams) const
{
if (runparams.moving_arg)
os << "\\protect";
if (params_.type == InsetPhantomParams::Phantom)
switch (params_.type) {
case InsetPhantomParams::Phantom:
os << "\\phantom{";
else if (params_.type == InsetPhantomParams::HPhantom)
break;
case InsetPhantomParams::HPhantom:
os << "\\hphantom{";
else if (params_.type == InsetPhantomParams::VPhantom)
break;
case InsetPhantomParams::VPhantom:
os << "\\vphantom{";
break;
default:
os << "\\phantom{";
break;
}
InsetCollapsable::latex(os, runparams);
os << "}";
}