]> 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 8e0469482548c9bee87976a2aa2cdb5e1cd158bd..876c9b0e75a41397c942c1c95fb4fdd5358ca041 100644 (file)
@@ -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;
 }
 
 
@@ -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;