mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-30 05:12:40 +00:00
InsetList no longer exists.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20984 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
83a1f1189f
commit
d18971cf99
@ -225,9 +225,6 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
|
|||||||
case LFUN_INFO_INSERT:
|
case LFUN_INFO_INSERT:
|
||||||
return new InsetInfo(params, to_utf8(cmd.argument()));
|
return new InsetInfo(params, to_utf8(cmd.argument()));
|
||||||
#if 0
|
#if 0
|
||||||
case LFUN_LIST_INSERT:
|
|
||||||
return new InsetList;
|
|
||||||
|
|
||||||
case LFUN_THEOREM_INSERT:
|
case LFUN_THEOREM_INSERT:
|
||||||
return new InsetTheorem;
|
return new InsetTheorem;
|
||||||
#endif
|
#endif
|
||||||
@ -489,8 +486,6 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
|
|||||||
string tmptok = lex.getString();
|
string tmptok = lex.getString();
|
||||||
inset.reset(new InsetWrap(buf.params(), tmptok));
|
inset.reset(new InsetWrap(buf.params(), tmptok));
|
||||||
#if 0
|
#if 0
|
||||||
} else if (tmptok == "List") {
|
|
||||||
inset.reset(new InsetList);
|
|
||||||
} else if (tmptok == "Theorem") {
|
} else if (tmptok == "Theorem") {
|
||||||
inset.reset(new InsetList);
|
inset.reset(new InsetList);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user