]> git.lyx.org Git - features.git/blobdiff - src/factory.cpp
rename LColor into Color
[features.git] / src / factory.cpp
index 3e55b3fa84974aa81ddb35ff1ebc3268f52caf03..333739943123eecae1b66d046101d5f55d37a036 100644 (file)
@@ -18,8 +18,8 @@
 #include "debug.h"
 #include "FloatList.h"
 #include "FuncRequest.h"
-#include "LColor.h"
-#include "LyXLex.h"
+#include "Color.h"
+#include "Lexer.h"
 #include "LyX.h"
 #include "Paragraph.h"
 
@@ -211,7 +211,7 @@ InsetBase * createInset(BufferView * bv, FuncRequest const & cmd)
                        auto_ptr<InsetCaption> inset(new InsetCaption(params));
                        inset->setAutoBreakRows(true);
                        inset->setDrawFrame(true);
-                       inset->setFrameColor(LColor::captionframe);
+                       inset->setFrameColor(Color::captionframe);
                        return inset.release();
                }
 
@@ -372,7 +372,7 @@ InsetBase * createInset(BufferView * bv, FuncRequest const & cmd)
 }
 
 
-InsetBase * readInset(LyXLex & lex, Buffer const & buf)
+InsetBase * readInset(Lexer & lex, Buffer const & buf)
 {
        // consistency check
        if (lex.getString() != "\\begin_inset") {