]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/ColorCache.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / ColorCache.h
index 05dabea4b04e9c0b7316ba61f3ae3de2101dcaa5..4ac490501160c2f244a2a67167ee2235245d2593 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef COLORCACHE_H
 #define COLORCACHE_H
 
-#include "Color.h"
+#include "ColorCode.h"
 
 #include <QColor>
 
@@ -33,13 +33,13 @@ public:
        ColorCache() {}
 
        /// get the given color
-       QColor const & get(Color_color color) const;
+       QColor const & get(ColorCode color) const;
 
        /// clear all colors
        void clear();
 
 private:
-       typedef std::map<Color_color, QColor> lcolor_map;
+       typedef std::map<ColorCode, QColor> lcolor_map;
 
        mutable lcolor_map colormap;
 };