]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Remove dead code + whitespace
[lyx.git] / src / insets / InsetSpecialChar.h
index 70741ec787a5a304927f53ce6178484e3a7f6152..423afda505ae6495b9ef02086a74e2a61560d65f 100644 (file)
@@ -61,7 +61,8 @@ public:
        ///
        void latex(otexstream &, OutputParams const &) const;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
@@ -77,14 +78,14 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
 
-       /// should this inset be handled like a normal charater
+       /// should this inset be handled like a normal character?
        bool isChar() const { return true; }
        /// is this equivalent to a letter?
        bool isLetter() const;
        /// should we break lines after this inset?
        bool isLineSeparator() const;
 private:
-       Inset * clone() const { return new InsetSpecialChar(*this); };
+       Inset * clone() const { return new InsetSpecialChar(*this); }
 
        /// And which kind is this?
        Kind kind_;