]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Fix GRAPHICS_EDIT of InsetGraphics
[lyx.git] / src / insets / InsetSpecialChar.h
index 8103cb21a058aa546bb80cc973789446e33f69fd..d2e18d7c352afe6d51de3edd5c8293a6e719fe02 100644 (file)
@@ -47,8 +47,7 @@ public:
        ///
        InsetSpecialChar() {}
        ///
-       explicit
-       InsetSpecialChar(Kind k);
+       explicit InsetSpecialChar(Kind k);
        ///
        Kind kind() const;
        ///
@@ -56,20 +55,17 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void write(Buffer const &, std::ostream &) const;
+       void write(std::ostream &) const;
        /// Will not be used when lyxf3
-       void read(Buffer const &, Lexer & lex);
+       void read(Lexer & lex);
        ///
-       int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
        /// the string that is passed to the TOC
-       void textString(Buffer const &, odocstream &) const;
+       void textString(odocstream &) const;
        ///
        InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
@@ -84,7 +80,7 @@ public:
        // should we break lines after this inset?
        bool isLineSeparator() const;
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const { return new InsetSpecialChar(*this); };
 
        /// And which kind is this?
        Kind kind_;