]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetlist.h
index dc1e415e1af170c0f57b5e244ebfb2682d576e1e..9e3df491dbb66f53ffedb8a76e42f2dbcbed449c 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 1998 The LyX Team.
 #include "insetcollapsable.h"
 
 /** The list inset
-  
+
 */
 class InsetList : public InsetCollapsable {
 public:
        ///
        InsetList();
        ///
-       void Write(Buffer const * buf, std::ostream & os) const;
-       ///
-       Inset * Clone(Buffer const &) const;
-       ///
-       Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
+       void write(Buffer const * buf, std::ostream & os) const;
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       string const EditMessage() const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       string const editMessage() const;
 };
 
 #endif