]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLine.cpp
Make listings dialog translatable (mostly strings from InsetListingsParams), fix...
[lyx.git] / src / insets / InsetLine.cpp
index 481bd446c7c81fc2a2f55c4bbb49f07e3bf714f5..7b763cee94ed5175a3178ce2aa4c42537d595819 100644 (file)
@@ -13,8 +13,8 @@
 #include "InsetLine.h"
 
 #include "debug.h"
-#include "LColor.h"
-#include "LyXText.h"
+#include "Color.h"
+#include "Text.h"
 #include "MetricsInfo.h"
 #include "LaTeXFeatures.h"
 #include "OutputParams.h"
@@ -30,7 +30,7 @@ using std::endl;
 using std::ostream;
 
 
-void InsetLine::read(Buffer const &, LyXLex &)
+void InsetLine::read(Buffer const &, Lexer &)
 {
        /* Nothing to read */
 }
@@ -55,7 +55,7 @@ bool InsetLine::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetLine::draw(PainterInfo & pi, int x, int y) const
 {
-       pi.pain.line(x, y, x + dim_.wid, y, LColor::topline, Painter::line_solid,
+       pi.pain.line(x, y, x + dim_.wid, y, Color::topline, Painter::line_solid,
                        Painter::line_thick);
 }