compilation fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1986 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-05-04 13:17:01 +00:00
parent 52153a589b
commit 0124d8d292
3 changed files with 9 additions and 4 deletions

View 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

View File

@ -10,6 +10,7 @@
#include "gettext.h"
#include "debug.h"
using std::endl;
string const InsetFloatList::getScreenLabel() const
{

View 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: