]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNewline.cpp
* src/insets/InsetListingsParams.cpp: fix user message
[lyx.git] / src / insets / InsetNewline.cpp
index 51874b64f641bdf13ea7a00f717d30e5f15e2d36..ee06ef9c7d65880c15fccc450c6c60e60ec156ea 100644 (file)
@@ -13,8 +13,8 @@
 #include "InsetNewline.h"
 
 #include "debug.h"
-#include "LColor.h"
-#include "LyXText.h"
+#include "Color.h"
+#include "Text.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
 #include "Paragraph.h"
@@ -63,7 +63,7 @@ int InsetNewline::latex(Buffer const &, odocstream &,
 
 
 int InsetNewline::plaintext(Buffer const &, odocstream & os,
-                            OutputParams const &) const
+                           OutputParams const &) const
 {
        os << '\n';
        return PLAINTEXT_NEWLINE;
@@ -101,7 +101,7 @@ void InsetNewline::draw(PainterInfo & pi, int x, int y) const
                xp[2] = int(x + wid * 0.625);
        }
 
-       pi.pain.lines(xp, yp, 3, LColor::eolmarker);
+       pi.pain.lines(xp, yp, 3, Color::eolmarker);
 
        yp[0] = int(y - 0.500 * asc * 0.75);
        yp[1] = int(y - 0.500 * asc * 0.75);
@@ -117,7 +117,7 @@ void InsetNewline::draw(PainterInfo & pi, int x, int y) const
                xp[2] = int(x);
        }
 
-       pi.pain.lines(xp, yp, 3, LColor::eolmarker);
+       pi.pain.lines(xp, yp, 3, Color::eolmarker);
 }