]> git.lyx.org Git - features.git/commitdiff
InsetList no longer exists.
authorRichard Heck <rgheck@comcast.net>
Tue, 16 Oct 2007 08:09:58 +0000 (08:09 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 16 Oct 2007 08:09:58 +0000 (08:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20984 a592a061-630c-0410-9148-cb99ea01b6c8

src/factory.cpp

index 54a893685444715e6558698390c01b5f0e8a8b4b..cc188a6558819fecc271668d7f0cf27ad1d7155f 100644 (file)
@@ -225,9 +225,6 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
                case LFUN_INFO_INSERT:
                        return new InsetInfo(params, to_utf8(cmd.argument()));
 #if 0
-               case LFUN_LIST_INSERT:
-                       return new InsetList;
-
                case LFUN_THEOREM_INSERT:
                        return new InsetTheorem;
 #endif
@@ -489,8 +486,6 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
                        string tmptok = lex.getString();
                        inset.reset(new InsetWrap(buf.params(), tmptok));
 #if 0
-               } else if (tmptok == "List") {
-                       inset.reset(new InsetList);
                } else if (tmptok == "Theorem") {
                        inset.reset(new InsetList);
 #endif