]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
lowercase.diff
[lyx.git] / src / insets / insettoc.C
index 0e9685fb5bb6f1583ed089c4e3baadd7853c06c9..48652ba3d5c5934fed86d1b762637fb3f5aca6f8 100644 (file)
@@ -24,7 +24,7 @@ string const InsetTOC::getScreenLabel() const
 }
 
 
-Inset::Code InsetTOC::LyxCode() const
+Inset::Code InsetTOC::lyxCode() const
 {
        string const cmdname(getCmdName());
        if (cmdname == "tableofcontents")
@@ -33,13 +33,13 @@ Inset::Code InsetTOC::LyxCode() const
 }
 
 
-void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
+void InsetTOC::edit(BufferView * bv, int, int, unsigned int)
 {
        bv->owner()->getDialogs()->showTOC(this);
 }
 
 
-int InsetTOC::Ascii(Buffer const * buffer, std::ostream & os, int) const
+int InsetTOC::ascii(Buffer const * buffer, std::ostream & os, int) const
 {
        os << getScreenLabel() << "\n\n";
 
@@ -63,7 +63,7 @@ int InsetTOC::Ascii(Buffer const * buffer, std::ostream & os, int) const
 }
 
 
-int InsetTOC::Linuxdoc(Buffer const *, std::ostream & os) const
+int InsetTOC::linuxdoc(Buffer const *, std::ostream & os) const
 {
        if (getCmdName() == "tableofcontents")
                os << "<toc>";