]> git.lyx.org Git - features.git/commitdiff
compilation fixes
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 4 May 2001 13:17:01 +0000 (13:17 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 4 May 2001 13:17:01 +0000 (13:17 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1986 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/ChangeLog
src/insets/insetfloatlist.C
src/insets/insetfloatlist.h

index 931590d3e56bd415c2ccf9ba1eca64c90177992f..3609380f2d42d2aac5c76a7916994bde196fbb04 100644 (file)
@@ -1,3 +1,7 @@
+2001-05-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * insetfloatlist.h: add a bunch of std:: qualifiers.
+
 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
 
        * lyxinset.h: remve LOF_CODE, LOT_CODE, LOA_CODE, add
index 63b0ba6bcf00580af63b7e2f0049ac571805aa0b..1fd96558ba142bd711133acc95547b34c34d43dd 100644 (file)
@@ -10,6 +10,7 @@
 #include "gettext.h"
 #include "debug.h"
 
+using std::endl;
 
 string const InsetFloatList::getScreenLabel() const 
 {
index 0e449f9e6254a74631f41b63de7c5f347582d36c..58d1f6aa0a564a468d850df39736d4ff67239e56 100644 (file)
@@ -42,15 +42,15 @@ public:
        ///
        Inset::Code LyxCode() const;
        ///
-       void Write(Buffer const *, ostream &) const;
+       void Write(Buffer const *, std::ostream &) const;
        ///
        void Read(Buffer const *, LyXLex &);
        ///
-       int Latex(Buffer const *, ostream &, bool, bool) const;
+       int Latex(Buffer const *, std::ostream &, bool, bool) const;
        ///
-       int Linuxdoc(Buffer const *, ostream &) const { return 0; }
+       int Linuxdoc(Buffer const *, std::ostream &) const { return 0; }
        ///
-       int DocBook(Buffer const *, ostream &) const { return 0; }
+       int DocBook(Buffer const *, std::ostream &) const { return 0; }
        ///
        int Ascii(Buffer const *, std::ostream &, int linelen) const;
 private: