]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetmarginal.h
index d8253c6343cdaa2048e7c4a38421ecc048ee6565..6e177327f5f870ab40d56ec63d0188349c5bb64d 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 1998 The LyX Team.
 #include "insetfootlike.h"
 
 /** The marginal note inset
-  
+
 */
 class InsetMarginal : public InsetFootlike {
 public:
        ///
-       InsetMarginal();
+       InsetMarginal(BufferParams const &);
        ///
-       Inset * Clone() const;
+       InsetMarginal(InsetMarginal const &, bool same_id = false);
        ///
-       Inset::Code LyxCode() const { return Inset::MARGIN_CODE; }
+       Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       Inset::Code lyxCode() const { return Inset::MARGIN_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