]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
ws changes only
[lyx.git] / src / insets / insetfoot.h
index 3e47b9682d8dc03b1d01ca53a84e69d49414b28a..821c73016d5bf8dac117e06db974c1db25e4d0a5 100644 (file)
@@ -7,14 +7,12 @@
  * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETFOOT_H
 #define INSETFOOT_H
 
-
-#include "LaTeXFeatures.h"
 #include "insetfootlike.h"
 
 /** The footnote inset
@@ -27,16 +25,16 @@ public:
        ///
        InsetFoot(InsetFoot const &);
        ///
-       InsetBase * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::FOOT_CODE; }
        ///
-       int latex(Buffer const *, std::ostream &,
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
        ///
-       string const editMessage() const;
+       std::string const editMessage() const;
 };
 
 #endif