From 29ebc1d4d6f7fd022884ad390a38f2bf3ff4fd85 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Wed, 30 Jul 2003 23:29:49 +0000 Subject: [PATCH] 'new InsetHFill();' should be 'new InsetHFill;' git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7457 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/paragraph_funcs.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paragraph_funcs.C b/src/paragraph_funcs.C index 916c8b6669..61e392a767 100644 --- a/src/paragraph_funcs.C +++ b/src/paragraph_funcs.C @@ -928,7 +928,7 @@ int readParToken(Buffer & buf, Paragraph & par, LyXLex & lex, string const & tok inset->read(&buf, lex); par.insertInset(par.size(), inset, font, change); } else if (token == "\\hfill") { - par.insertInset(par.size(), new InsetHFill(), font, change); + par.insertInset(par.size(), new InsetHFill, font, change); } else if (token == "\\change_unchanged") { // Hack ! Needed for empty paragraphs :/ // FIXME: is it still ?? -- 2.39.2