]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
reformatting and remove using delc
[lyx.git] / src / insets / insetlabel.h
index 39cc24e8e0e55840981446076b0a845a59195160..87211ae6fe600aacd986174a9d4d98e7200c326a 100644 (file)
@@ -23,9 +23,9 @@ public:
        ///
        InsetLabel(InsetCommandParams const &);
        ///
-       Inset * Clone() const { return new InsetLabel(params()); }
+       Inset * Clone(Buffer const &) const { return new InsetLabel(params()); }
        ///
-       string getScreenLabel() const { return getContents(); }
+       string const getScreenLabel() const { return getContents(); }
        ///
        EDITABLE Editable() const { return IS_EDITABLE; }
        ///
@@ -33,19 +33,19 @@ public:
        ///
        void Edit(BufferView *, int, int, unsigned int);
        ///
-       std::vector<string> getLabelList() const;
+       std::vector<string> const getLabelList() const;
        ///
        int Latex(Buffer const *, std::ostream &,
                  bool fragile, bool free_spc) const;
        ///
-       int Ascii(Buffer const *, std::ostream &) const;
+       int Ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
        int DocBook(Buffer const *, std::ostream &) const;
 private:
        /// This function escapes 8-bit characters
-       string escape(string const &) const;
+       string const escape(string const &) const;
 };
 
 #endif