Forgot this

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20139 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2007-09-08 13:09:58 +00:00
parent 2e5355e4c2
commit c45c7c2c7d

View File

@ -470,7 +470,7 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
inset.reset(new InsetNote(buf.params(), tmptok));
} else if (tmptok == "Box") {
inset.reset(new InsetBox(buf.params(), tmptok));
} else if (tmptok == "CharStyle") {
} else if (tmptok == "Flex") {
lex.next();
string s = lex.getString();
InsetLayout il = tclass.insetlayout(from_utf8(s));