]> git.lyx.org Git - features.git/commitdiff
mathed compilation fixes
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 14 Feb 2001 15:00:50 +0000 (15:00 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 14 Feb 2001 15:00:50 +0000 (15:00 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1510 a592a061-630c-0410-9148-cb99ea01b6c8

14 files changed:
src/mathed/ChangeLog
src/mathed/math_accentinset.C
src/mathed/math_bigopinset.C
src/mathed/math_decorationinset.C
src/mathed/math_deliminset.C
src/mathed/math_dotsinset.C
src/mathed/math_fracinset.C
src/mathed/math_funcinset.C
src/mathed/math_macrotable.C
src/mathed/math_macrotemplate.C
src/mathed/math_matrixinset.C
src/mathed/math_root.C
src/mathed/math_spaceinset.C
src/mathed/math_sqrtinset.C

index 9c2de76d2e8c309e81b3d7f1cb51002464194d15..3c910378a428694ee42229f861af5ce2a5e65716 100644 (file)
@@ -1,4 +1,26 @@
+2001-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * math_matrixinset.C: 
+
+       * math_macrotemplate.C: 
+
+       * math_funcinset.C: 
+
+       * math_fracinset.C: 
+
+       * math_dotsinset.C: 
+
+       * math_deliminset.C: 
+
+       * math_decorationinset.C: 
+
+       * math_bigopinset.C: 
+
+       * math_accentinset.C: 
+       * math_sqrtinset.C: include LOstream.h and add using directive.
+
 2001-02-12  André Pönitz  <poenitz@htwm.de>
+
        * math_iter.C: reformatting 
 
 2001-02-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
index e16b59be227b0514a066ad20897ee5dbe3e97a7e..c764348f401bea5c6d55d125174fbb98928e11db 100644 (file)
@@ -3,7 +3,9 @@
 #include "math_accentinset.h"
 #include "mathed/support.h"
 #include "math_parser.h"
+#include "support/LOstream.h"
 
+using std::ostream;
 
 MathAccentInset::MathAccentInset(byte cx, MathedTextCodes f, int cd, short st)
        : MathedInset("", LM_OT_ACCENT, st), c(cx), fn(f), code(cd)
index 5e5823df73edf47ef74c362daa703855c5c91f7f..6d8e0ee3391e208c8ff716418a393c61e45ca1e9 100644 (file)
@@ -4,6 +4,9 @@
 #include "LColor.h"
 #include "Painter.h"
 #include "mathed/support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 bool MathBigopInset::GetLimits() const 
 {  
index 6e38a1cca17645e697fa4d9d5e7a9b989629cb75..6c8b30a3fc46aba032b1ac7027e271a80fd89b4e 100644 (file)
@@ -4,6 +4,9 @@
 #include "math_iter.h"
 #include "mathed/support.h"
 #include "math_parser.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 bool MathDecorationInset::GetLimits() const
index 9e4bbcaf3a160f4c9d811d0995f8a82d57c7a3ef..deecead4ffde0ec67ebde65db34d2719281599ff 100644 (file)
@@ -6,6 +6,9 @@
 #include "LColor.h"
 #include "Painter.h"
 #include "mathed/support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 MathDelimInset::MathDelimInset(int l, int r, short st)
index fc4b37f55db463ccd1616f68dd2f4cdbba9a7cb4..d3deb556c31df75274d70e3f310f1e6a9f1150b6 100644 (file)
@@ -2,6 +2,9 @@
 
 #include "math_dotsinset.h"
 #include "mathed/support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 MathDotsInset::MathDotsInset(string const & nam, int id, short st)
index 73be7a8f75d1afc20cc1e2018759b056e73b6d9e..3e5d5e23b55bf053b283ade290c2d81219faa1d8 100644 (file)
@@ -5,6 +5,9 @@
 #include "LColor.h"
 #include "Painter.h"
 #include "mathed/support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 MathFracInset::MathFracInset(short ot)
index 4a5c4d74fd166f48dc47bcd9bf06474b9a4de74f..093ee9c5695d20275baa8e4430521d3dbe9ed7ea 100644 (file)
@@ -5,6 +5,9 @@
 #include "font.h"
 #include "Painter.h"
 #include "mathed/support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 extern LyXFont WhichFont(short type, int size);
index b34ac612c8944c4791de74fa8bf2bdc30396776f..218c4794e683fecac75dc16a9cb059e1c79005bf 100644 (file)
@@ -11,6 +11,7 @@
 #include "math_parinset.h"
 #include "debug.h"
 
+using std::endl;
 
 MathMacroTable MathMacroTable::mathMTable;
 
index 21e00835755a67e9dac73eb00f51162a1116f15a..37d7f0edf47cc2565872c396b5f2a0659175227e 100644 (file)
@@ -3,6 +3,9 @@
 #include "math_macrotemplate.h"
 #include "math_macro.h"
 #include "macro_support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 void  MathMacroTemplate::setTCode(MathedTextCodes t)
index 8c05eb7fc6029f916b8a343d55fc4a53662692e0..3ee0ab969141be5b987e924e6f71ab93713f53c5 100644 (file)
@@ -3,6 +3,9 @@
 #include "math_matrixinset.h"
 #include "math_rowst.h"
 #include "math_xiter.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 extern int number_of_newlines;
 
index 37c5af883b4e0801b7239425151229ca2a677761..0a95822fdf9ce8fb06287888e81dcd33fe19d016 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "math_iter.h"
 #include "math_root.h"
+#include "support/LOstream.h"
 
 using std::ostream;
 
index c7561ccda3b6ada54b1610ea99870f2f50a8c5a8..a36fef44a98f7eef3cea4e17c053d78b41615115 100644 (file)
@@ -4,6 +4,9 @@
 #include "LColor.h"
 #include "Painter.h"
 #include "mathed/support.h"
+#include "support/LOstream.h"
+
+using std::ostream;
 
 
 void MathSpaceInset::Metrics()
index 1ff4b84c57260b23fe6bdd8609f8cbfb39e5fab0..388c4711d6a40eeac3e578c4b169d33308497a42 100644 (file)
@@ -5,7 +5,9 @@
 #include "LColor.h"
 #include "Painter.h"
 #include "support.h"
+#include "support/LOstream.h"
 
+using std::ostream;
 
 MathSqrtInset::MathSqrtInset(short st)
        : MathParInset(st, "sqrt", LM_OT_SQRT) {}