From 850962d0bae8080734882b1af9958fc82a81c248 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Thu, 19 Oct 2006 17:09:59 +0000 Subject: [PATCH] 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 --- src/insets/insethfill.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5