]> git.lyx.org Git - lyx.git/commitdiff
compile fixes
authorLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 26 Aug 2002 11:27:37 +0000 (11:27 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Mon, 26 Aug 2002 11:27:37 +0000 (11:27 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5110 a592a061-630c-0410-9148-cb99ea01b6c8

po/POTFILES.in
src/insets/ChangeLog
src/insets/insetoptarg.h
src/mathed/ChangeLog
src/mathed/math_parinset.C

index ca6ca71010c61182409b0fd7fcb5b657ebb642e5..0736ed59c6c5fdd18cace8a490e7fb0e134d63d6 100644 (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
index b572b432057f41e243bd3f57d728451dc3f559e3..7d6c7c704381c66a2215d71252924dc02d65783c 100644 (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
index a413d40202f16c089ddf960ed9dc6726895212ee..bff64d22b6b4b222f35bcc96206753dc9d701a09 100644 (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
index 1612da19b7cda0f880ade6c4aa9a35ad003b174d..d55f3f2fdbfd2d3d3206622ce22b481f4d7447f9 100644 (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
index 750717a98d1499b3826a58616c6ea9006ad966ba..371d458938d47c6e517c4b5988e0db055804cc8e 100644 (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 ";
 }
-