]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettheorem.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insettheorem.h
index 46485caa0658de58cc04e596bd8cc419101664b7..41a1aa3eb3f49a72ac08765c422702d44cfe1b6d 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 theorem inset
-  
+
 */
 class InsetTheorem : public InsetCollapsable {
 public:
        ///
        InsetTheorem();
        ///
-       void Write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const * buf, std::ostream & os) const;
        ///
-       Inset * Clone() const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       Inset::Code LyxCode() const { return Inset::THEOREM_CODE; }
+       Inset::Code lyxCode() const { return Inset::THEOREM_CODE; }
        ///
        bool display() const { return true; }
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
-       ///
-       const char * EditMessage() const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       string const editMessage() const;
 };
 
 #endif