compile fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5110 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-08-26 11:27:37 +00:00
parent dc31011f80
commit a4d47c3448
5 changed files with 16 additions and 7 deletions

View File

@ -8,7 +8,6 @@ src/converter.C
src/CutAndPaste.C
src/debug.C
src/exporter.C
src/ext_l10n.h
src/FloatList.C
src/frontends/controllers/biblio.C
src/frontends/controllers/ButtonController.h

View File

@ -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>
* insettext.C (localDispatch): ditto.
@ -7,7 +11,7 @@
2002-08-25 John Levon <levon@movementarian.org>
* inseturl.C: elide long URLs (bug 404)
2002-08-23 Rob Lahaye <lahaye@snu.ac.kr>
* insetgraphics.[Ch]: remove InsetGraphics::readFigInset()
@ -25,7 +29,7 @@
* insetoptarg.h:
* insetoptarg.C: ws, pedantry ...
2002-08-21 Lars Gullik Bjønnes <larsbj@birdstep.com>
* insettext.C (collapseParagraphs): pasteParagraph now in global

View File

@ -17,6 +17,7 @@
#include "insettext.h"
#include "insetcollapsable.h"
/**
* InsetOptArg. Used to insert a short version of sectioning header etc.
* automatically, or other optional LaTeX arguments
@ -29,14 +30,14 @@ public:
/// make a duplicate of this inset
Inset * clone(Buffer const &, bool same_id = false) const;
/// this inset is editable
EDITABLE editable() const { return IS_EDITABLE; }
/// code of the inset
Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
/// return an message upon editing
string const editMessage() const;
/// Standard LaTeX output -- short-circuited
int latex(Buffer const *, std::ostream &,
bool fragile, bool fp) const;
@ -44,7 +45,7 @@ public:
int latexOptional(Buffer const *, std::ostream &,
bool fragile, bool fp) const;
/// 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

View File

@ -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>
* math_hullinset.C: add using std::pair

View File

@ -1,7 +1,9 @@
#include <config.h>
#include "math_parinset.h"
#include "math_mathmlstream.h"
#include "support/LOstream.h"
MathParInset::MathParInset(MathArray const & ar)
{
@ -34,4 +36,3 @@ void MathParInset::infoize(std::ostream & os) const
{
os << "Type: Paragraph ";
}