From 0124d8d29278824c7ebca0a283984ae1fa38cd34 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 4 May 2001 13:17:01 +0000 Subject: [PATCH] compilation fixes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1986 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/ChangeLog | 4 ++++ src/insets/insetfloatlist.C | 1 + src/insets/insetfloatlist.h | 8 ++++---- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index 931590d3e5..3609380f2d 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2001-05-04 Jean-Marc Lasgouttes + + * insetfloatlist.h: add a bunch of std:: qualifiers. + 2001-05-04 Lars Gullik Bjønnes * lyxinset.h: remve LOF_CODE, LOT_CODE, LOA_CODE, add diff --git a/src/insets/insetfloatlist.C b/src/insets/insetfloatlist.C index 63b0ba6bcf..1fd96558ba 100644 --- a/src/insets/insetfloatlist.C +++ b/src/insets/insetfloatlist.C @@ -10,6 +10,7 @@ #include "gettext.h" #include "debug.h" +using std::endl; string const InsetFloatList::getScreenLabel() const { diff --git a/src/insets/insetfloatlist.h b/src/insets/insetfloatlist.h index 0e449f9e62..58d1f6aa0a 100644 --- a/src/insets/insetfloatlist.h +++ b/src/insets/insetfloatlist.h @@ -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: -- 2.39.5