]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.h
remove commented same_id functions, and also remove some const_casts
[lyx.git] / src / insets / insetfootlike.h
index efa3f2845f1575917018db23877b874dacc7ed90..bea01ff58cb78dc98fae6711c6276b56fc20a643 100644 (file)
 #ifndef INSETFOOTLIKE_H
 #define INSETFOOTLIKE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "insetcollapsable.h"
 
 // To have this class is probably a bit overkill... (Lgb)
 
-/** The footnote inset
-
-*/
+// The footnote inset
 class InsetFootlike : public InsetCollapsable {
 public:
        ///
        InsetFootlike(BufferParams const &);
        ///
-       InsetFootlike(InsetFootlike const &, bool same_id = false);
+       InsetFootlike(InsetFootlike const &);
        ///
        void write(Buffer const * buf, std::ostream & os) const;
        ///
        bool insetAllowed(Inset::Code) const;
        /** returns true if, when outputing LaTeX, font changes should
-            be closed before generating this inset. This is needed for
-            insets that may contain several paragraphs */
+           be closed before generating this inset. This is needed for
+           insets that may contain several paragraphs */
        bool noFontChange() const { return true; }
 };