mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
compile fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5110 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
dc31011f80
commit
a4d47c3448
@ -8,7 +8,6 @@ src/converter.C
|
|||||||
src/CutAndPaste.C
|
src/CutAndPaste.C
|
||||||
src/debug.C
|
src/debug.C
|
||||||
src/exporter.C
|
src/exporter.C
|
||||||
src/ext_l10n.h
|
|
||||||
src/FloatList.C
|
src/FloatList.C
|
||||||
src/frontends/controllers/biblio.C
|
src/frontends/controllers/biblio.C
|
||||||
src/frontends/controllers/ButtonController.h
|
src/frontends/controllers/ButtonController.h
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-08-26 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||||
|
|
||||||
|
* insetoptarg.h: add std:: qualifier.
|
||||||
|
|
||||||
2002-08-26 Juergen Vigna <jug@sad.it>
|
2002-08-26 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* insettext.C (localDispatch): ditto.
|
* insettext.C (localDispatch): ditto.
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include "insettext.h"
|
#include "insettext.h"
|
||||||
#include "insetcollapsable.h"
|
#include "insetcollapsable.h"
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* InsetOptArg. Used to insert a short version of sectioning header etc.
|
* InsetOptArg. Used to insert a short version of sectioning header etc.
|
||||||
* automatically, or other optional LaTeX arguments
|
* automatically, or other optional LaTeX arguments
|
||||||
@ -44,7 +45,7 @@ public:
|
|||||||
int latexOptional(Buffer const *, std::ostream &,
|
int latexOptional(Buffer const *, std::ostream &,
|
||||||
bool fragile, bool fp) const;
|
bool fragile, bool fp) const;
|
||||||
/// Write out tothe .lyx file
|
/// Write out tothe .lyx file
|
||||||
void write(Buffer const * buf, ostream & os) const;
|
void write(Buffer const * buf, std::ostream & os) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // INSETOPTARG_H
|
#endif // INSETOPTARG_H
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-08-26 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||||
|
|
||||||
|
* math_parinset.C: add support/LOstream.h and config.h
|
||||||
|
|
||||||
2002-08-14 Lars Gullik Bjønnes <larsbj@gullik.net>
|
2002-08-14 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
|
||||||
* math_hullinset.C: add using std::pair
|
* math_hullinset.C: add using std::pair
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
|
#include <config.h>
|
||||||
|
|
||||||
#include "math_parinset.h"
|
#include "math_parinset.h"
|
||||||
#include "math_mathmlstream.h"
|
#include "math_mathmlstream.h"
|
||||||
|
|
||||||
|
#include "support/LOstream.h"
|
||||||
|
|
||||||
MathParInset::MathParInset(MathArray const & ar)
|
MathParInset::MathParInset(MathArray const & ar)
|
||||||
{
|
{
|
||||||
@ -34,4 +36,3 @@ void MathParInset::infoize(std::ostream & os) const
|
|||||||
{
|
{
|
||||||
os << "Type: Paragraph ";
|
os << "Type: Paragraph ";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user