]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insettoc.C
index 46137a94c78fad93855924e60c05a21dbe21e4bb..876c9b0e75a41397c942c1c95fb4fdd5358ca041 100644 (file)
@@ -23,8 +23,8 @@ using std::vector;
 using std::ostream;
 
 
-InsetTOC::InsetTOC(InsetCommandParams const & p, bool same_id)
-       : InsetCommand(p, same_id)
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p)
 {}
 
 
@@ -45,12 +45,12 @@ string const InsetTOC::getScreenLabel(Buffer const *) const
 }
 
 
-Inset::Code InsetTOC::lyxCode() const
+InsetOld::Code InsetTOC::lyxCode() const
 {
        string const cmdname(getCmdName());
        if (cmdname == "tableofcontents")
-               return Inset::TOC_CODE;
-       return Inset::NO_CODE;
+               return InsetOld::TOC_CODE;
+       return InsetOld::NO_CODE;
 }
 
 
@@ -61,7 +61,7 @@ dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
                InsetCommandMailer("toc", *this).showDialog(cmd.view());
                return DISPATCHED;
        default:
-               return UNDISPATCHED;
+               return InsetCommand::localDispatch(cmd);
        }
 }
 
@@ -70,7 +70,7 @@ int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       toc::asciiTocList(toc::getType(getCmdName()), buffer, os);
+       lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
 
        os << "\n";
        return 0;