]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSpace.cpp
visual mode for bidi cursor movement
[lyx.git] / src / mathed / InsetMathSpace.cpp
index af8b77ea3ee2cfdcb59c3513b18d4270b883d801..7d44accf7bd2146919a953d62332611c67dd73aa 100644 (file)
 #include "MathStream.h"
 
 #include "LaTeXFeatures.h"
-#include "Color.h"
 
 #include "frontends/Painter.h"
 
-using std::string;
+using namespace std;
 
 namespace lyx {
 
@@ -101,7 +100,7 @@ void InsetMathSpace::draw(PainterInfo & pi, int x, int y) const
        xp[2] = x + w - 2;  yp[2] = y;
        xp[3] = x + w - 2;  yp[3] = y - 3;
 
-       pi.pain.lines(xp, yp, 4, (space_ < 3) ? Color::latex : Color::math);
+       pi.pain.lines(xp, yp, 4, (space_ < 3) ? Color_latex : Color_math);
 }