]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
tex2lyx/text.cpp: fix typos
[lyx.git] / src / insets / InsetCaption.h
index 6499e0b895fa03443a1e477204803a1002555446..dc28873fb109acd464d1789f6f7688a0f5ed2186 100644 (file)
@@ -25,11 +25,11 @@ public:
        ///
        std::string const & type() const { return type_; }
        ///
-       docstring name() const;
+       docstring layoutName() const;
        /// return the mandatory argument (LaTeX format) only
-       int getArgument(odocstream & os, OutputParams const &) const;
+       void getArgument(otexstream & os, OutputParams const &) const;
        /// return the optional argument(s) only
-       int getOptArg(odocstream & os, OutputParams const &) const;
+       void getOptArg(otexstream & os, OutputParams const &) const;
        /// return the caption text
        int getCaptionAsPlaintext(odocstream & os, OutputParams const &) const;
        /// return the caption text as HTML
@@ -38,8 +38,6 @@ private:
        ///
        void write(std::ostream & os) const;
        ///
-       void read(Lexer & lex);
-       ///
        DisplayType display() const { return AlignCenter; }
        ///
        bool neverIndent() const { return true; }
@@ -67,7 +65,7 @@ private:
        // Update the counters of this inset and of its contents
        void updateBuffer(ParIterator const &, UpdateType);
        ///
-       int latex(odocstream & os, OutputParams const &) const;
+       void latex(otexstream & os, OutputParams const &) const;
        ///
        int plaintext(odocstream & os, OutputParams const & runparams) const;
        ///
@@ -77,7 +75,7 @@ private:
        ///
        void setCustomLabel(docstring const & label);
        ///
-       void addToToc(DocIterator const &);
+       void addToToc(DocIterator const &) const;
        /// 
        virtual bool forcePlainLayout(idx_type = 0) const { return true; }
        /// Captions don't accept alignment, spacing, etc.