]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt4/GuiWorkArea.cpp
rename LyXKeySym into KeySymbol
[features.git] / src / frontends / qt4 / GuiWorkArea.cpp
index 0b383c7bd61f5317573211229b1cd41a66663f2f..f63d44c64bb4bbfdc612e825b2ce82a0377ecf75 100644 (file)
@@ -15,7 +15,7 @@
 
 #include "GuiApplication.h"
 #include "QLPainter.h"
-#include "QLyXKeySym.h"
+#include "QKeySymbol.h"
 #include "qt_helpers.h"
 
 #include "LyXView.h"
@@ -24,7 +24,7 @@
 #include "rowpainter.h"
 #include "debug.h"
 #include "FuncRequest.h"
-#include "LColor.h"
+#include "Color.h"
 #include "version.h"
 #include "LyXRC.h"
 
@@ -129,7 +129,7 @@ public:
 
        void update(int x, int y, int h, CursorShape shape)
        {
-               color_ = guiApp->colorCache().get(LColor::cursor);
+               color_ = guiApp->colorCache().get(Color::cursor);
                rect_ = QRect(x, y, CursorWidth, h);
                shape_ = shape;
        }
@@ -421,7 +421,7 @@ void GuiWorkArea::keyPressEvent(QKeyEvent * e)
                << " key=" << e->key()
                << endl;
 
-       boost::shared_ptr<QLyXKeySym> sym(new QLyXKeySym);
+       boost::shared_ptr<QKeySymbol> sym(new QKeySymbol);
        sym->set(e);
        processKeySym(sym, q_key_state(e->modifiers()));
 }
@@ -458,7 +458,7 @@ void GuiWorkArea::update(int x, int y, int w, int h)
 void GuiWorkArea::doGreyOut(QLPainter & pain)
 {
        pain.fillRectangle(0, 0, width(), height(),
-               LColor::bottomarea);
+               Color::bottomarea);
 
        //if (!lyxrc.show_banner)
        //      return;