From: Georg Baum Date: Thu, 19 Oct 2006 17:09:59 +0000 (+0000) Subject: Fix \hfill output which was broken by the InsetCommand changes. X-Git-Tag: 1.6.10~12342 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=850962d0bae8080734882b1af9958fc82a81c248;p=features.git 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 --- diff --git a/src/insets/insethfill.C b/src/insets/insethfill.C index dbf49cb9c1..96d05c336a 100644 --- a/src/insets/insethfill.C +++ b/src/insets/insethfill.C @@ -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; }