]> git.lyx.org Git - features.git/commitdiff
'new InsetHFill();' should be 'new InsetHFill;'
authorAngus Leeming <leeming@lyx.org>
Wed, 30 Jul 2003 23:29:49 +0000 (23:29 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 30 Jul 2003 23:29:49 +0000 (23:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7457 a592a061-630c-0410-9148-cb99ea01b6c8

src/paragraph_funcs.C

index 916c8b666959d0dbe4f9535026a25958e4d86dfb..61e392a767ae529c038c4db1a56b00d86533374c 100644 (file)
@@ -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 ??