X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=bf12da1f6e1ef5c293e9d509e42b368f7cec5053;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=794c49ffe62b996456f49de5ce0917eef5a2a6d6;hpb=0088121bd8c3fc7f2109e8dc9b22b73ca193f20e;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 794c49ffe6..bf12da1f6e 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -28,11 +28,12 @@ public: /// InsetTOC() : InsetCommand("tableofcontents") {} /// + explicit InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {} /// Inset * Clone() const { return new InsetTOC(owner); } /// - string getScreenLabel() const { return _("Table of Contents"); } + string getScreenLabel() const; /// On edit, we open the TOC pop-up void Edit(BufferView * bv, int, int, unsigned int); /// @@ -44,9 +45,9 @@ public: /// Inset::Code LyxCode() const { return Inset::TOC_CODE; } /// - int Linuxdoc(ostream &) const; + int Linuxdoc(std::ostream &) const; /// - int DocBook(ostream &) const; + int DocBook(std::ostream &) const; private: /// Buffer * owner;