]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Fix text frame drawing.
[lyx.git] / src / insets / InsetSpecialChar.h
index f383d1081b7e8fcd6e2799e6f7a725a70bbd9ed9..bd93bce1c3c41e0def76aa41d55c64e1f44e88fa 100644 (file)
@@ -23,7 +23,7 @@ namespace lyx {
 class LaTeXFeatures;
 
 ///  Used to insert special chars
-class InsetSpecialChar : public InsetOld {
+class InsetSpecialChar : public Inset {
 public:
 
        /// The different kinds of special chars we support
@@ -57,18 +57,18 @@ public:
        void read(Buffer const &, Lexer & lex);
        ///
        int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+                 OutputParams const &) const;
        ///
        int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+                     OutputParams const &) const;
        ///
        int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+                   OutputParams const &) const;
        /// the string that is passed to the TOC
        virtual int textString(Buffer const &, odocstream &,
                OutputParams const &) const;
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::SPECIALCHAR_CODE; }
+       Inset::Code lyxCode() const { return Inset::SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
        bool directWrite() const { return true; }
        ///
@@ -81,7 +81,7 @@ public:
        // should we break lines after this inset?
        bool isLineSeparator() const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 
        /// And which kind is this?
        Kind kind_;