mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix bug #10932.
This commit is contained in:
parent
6d565300be
commit
c0e79898c3
@ -652,8 +652,8 @@ Inset * readInset(Lexer & lex, Buffer * buf)
|
||||
inset.reset(new InsetFloat(buf, string()));
|
||||
} else if (tmptok == "Wrap") {
|
||||
lex.next();
|
||||
string tmptok = lex.getString();
|
||||
inset.reset(new InsetWrap(buf, tmptok));
|
||||
string tmptok2 = lex.getString();
|
||||
inset.reset(new InsetWrap(buf, tmptok2));
|
||||
} else if (tmptok == "Caption") {
|
||||
lex.eatLine();
|
||||
string s = lex.getString();
|
||||
|
Loading…
Reference in New Issue
Block a user