]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetEnvironment.h
Forgot to restore this before committing 18494. This fixes bug 3725.
[lyx.git] / src / insets / InsetEnvironment.h
index 72e6f4755b1bdb3162de5e59d9044624f72fdd24..ceefab862a455f97c127af06cfdc31775fd2e46c 100644 (file)
@@ -23,13 +23,13 @@ public:
        ///
        InsetEnvironment(BufferParams const &, std::string const & name);
        ///
-       docstring getInsetName() const { return name_; }
+       docstring name() const { return name_; }
        ///
        void write(Buffer const & buf, std::ostream & os) const;
        ///
        void read(Buffer const & buf, Lexer & lex);
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::ENVIRONMENT_CODE; }
+       Inset::Code lyxCode() const { return Inset::ENVIRONMENT_CODE; }
        ///
        int latex(Buffer const &, odocstream &,
                  OutputParams const &) const;
@@ -39,9 +39,9 @@ public:
        ///
        virtual docstring const editMessage() const;
        ///
-       InsetBase::EDITABLE editable() const { return HIGHLY_EDITABLE; }
+       Inset::EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       LyXLayout_ptr const & layout() const;
+       Layout_ptr const & layout() 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 */
@@ -49,9 +49,9 @@ public:
 protected:
        InsetEnvironment(InsetEnvironment const &);
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        /// the layout
-       LyXLayout_ptr layout_;
+       Layout_ptr layout_;
        ///
        docstring name_;
 };