]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetSpace.cpp
Move Color::color enum to ColorCode.h
[features.git] / src / insets / InsetSpace.cpp
index bbab7f278e73cabf0b3c9a2d37abd0bb44973516..55aa3fd3faf71669df7effa24a07d12e815b5535 100644 (file)
@@ -16,7 +16,6 @@
 #include "InsetSpace.h"
 
 #include "debug.h"
-#include "Color.h"
 #include "Lexer.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
@@ -100,9 +99,9 @@ void InsetSpace::draw(PainterInfo & pi, int x, int y) const
        yp[3] = y - max(h / 4, 1);
 
        if (kind_ == PROTECTED || kind_ == ENSPACE || kind_ == NEGTHIN)
-               pi.pain.lines(xp, yp, 4, Color::latex);
+               pi.pain.lines(xp, yp, 4, Color_latex);
        else
-               pi.pain.lines(xp, yp, 4, Color::special);
+               pi.pain.lines(xp, yp, 4, Color_special);
 }