]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetFootlike.h
Typo
[features.git] / src / insets / InsetFootlike.h
index ce6f5045ce872ea9ec173348d6a5716d63cfff1c..e0a3fd31d075dfe07f4c4313b21a62fbe4fef6e5 100644 (file)
@@ -25,20 +25,16 @@ public:
        ///
        explicit InsetFootlike(Buffer *);
        ///
-       bool hasSettings() const { return false; }
+       bool hasSettings() const override { return false; }
 private:
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       void write(std::ostream & os) const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
-       ///
-       void write(std::ostream & os) const;
-       ///
-       bool insetAllowed(InsetCode) const;
-       /** returns false if, when outputing LaTeX, font changes should
+       bool insetAllowed(InsetCode) const override;
+       /** returns false if, when outputting LaTeX, font changes should
            be closed before generating this inset. This is needed for
            insets that may contain several paragraphs */
-       bool inheritFont() const { return false; }
+       bool inheritFont() const override { return false; }
 };