]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_notinset.C
updates to latexfeatures stuff; allow empty \document_path
[lyx.git] / src / mathed / math_notinset.C
index 3c6442c7ba1f410b8c354c8c3dd3333bba76f143..1929286e129397e7fb6aa4ed854058cd1768dcda 100644 (file)
@@ -1,11 +1,9 @@
 #include "math_notinset.h"
 #include "math_parser.h"
-#include "support.h"
-#include "support/LOstream.h"
+#include "math_mathmlstream.h"
+#include "math_support.h"
 
 
-using std::ostream;
-
 MathNotInset::MathNotInset()
 {}
 
@@ -16,13 +14,13 @@ MathInset * MathNotInset::clone() const
 }
 
 
-void MathNotInset::write(MathWriteInfo & os) const
+void MathNotInset::write(WriteStream & os) const
 {
        os << "\\not ";
 }
 
 
-void MathNotInset::writeNormal(ostream & os) const
+void MathNotInset::normalize(NormalStream & os) const
 {
        os << "[not] ";
 }
@@ -41,9 +39,6 @@ void MathNotInset::metrics(MathMetricsInfo const & mi) const
 
 void MathNotInset::draw(Painter & pain, int x, int y) const
 {  
-       xo(x);
-       yo(y);
-
        if (math_font_available(LM_TC_CMSY))
                drawChar(pain, LM_TC_CMSY, mi_, x, y, 54);
        else