mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
'new InsetHFill();' should be 'new InsetHFill;'
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7457 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1c155241d8
commit
29ebc1d4d6
@ -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 ??
|
||||
|
Loading…
Reference in New Issue
Block a user