mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
compilation fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1986 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
52153a589b
commit
0124d8d292
@ -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
|
||||
|
@ -10,6 +10,7 @@
|
||||
#include "gettext.h"
|
||||
#include "debug.h"
|
||||
|
||||
using std::endl;
|
||||
|
||||
string const InsetFloatList::getScreenLabel() const
|
||||
{
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user