mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +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()));
|
inset.reset(new InsetFloat(buf, string()));
|
||||||
} else if (tmptok == "Wrap") {
|
} else if (tmptok == "Wrap") {
|
||||||
lex.next();
|
lex.next();
|
||||||
string tmptok = lex.getString();
|
string tmptok2 = lex.getString();
|
||||||
inset.reset(new InsetWrap(buf, tmptok));
|
inset.reset(new InsetWrap(buf, tmptok2));
|
||||||
} else if (tmptok == "Caption") {
|
} else if (tmptok == "Caption") {
|
||||||
lex.eatLine();
|
lex.eatLine();
|
||||||
string s = lex.getString();
|
string s = lex.getString();
|
||||||
|
Loading…
Reference in New Issue
Block a user