]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insettoc.h
index 0c850e00645c6fef6581bfbd1392925fbe134e85..bf12da1f6e1ef5c293e9d509e42b368f7cec5053 100644 (file)
@@ -19,8 +19,6 @@
 #include "insetcommand.h"
 #include "gettext.h"
 
-using std::ostream;
-
 class Buffer;
 
 /** Used to insert table of contents
@@ -30,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);
         ///
@@ -46,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;