Fix \hfill output which was broken by the InsetCommand changes.

getCommand does not include the {} anymore, because \hfill has no arguments.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15379 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-10-19 17:09:59 +00:00
parent 8b67659646
commit 850962d0ba

View File

@ -49,7 +49,7 @@ docstring const InsetHFill::getScreenLabel(Buffer const &) const
int InsetHFill::latex(Buffer const &, odocstream & os,
OutputParams const &) const
{
os << getCommand();
os << getCommand() << "{}";
return 0;
}