From: Angus Leeming Date: Wed, 30 Jul 2003 23:29:49 +0000 (+0000) Subject: 'new InsetHFill();' should be 'new InsetHFill;' X-Git-Tag: 1.6.10~16374 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=29ebc1d4d6f7fd022884ad390a38f2bf3ff4fd85;p=features.git 'new InsetHFill();' should be 'new InsetHFill;' git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7457 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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 ??