]> git.lyx.org Git - lyx.git/blobdiff - src/BranchList.cpp
Use home made code for the bool facet.
[lyx.git] / src / BranchList.cpp
index 128d27c59051c5929c9b31df649cae9c10611f34..5b78d71c3c453293ebae2d1bf37ed191b284f251 100644 (file)
 #include <config.h>
 
 #include "BranchList.h"
-#include "LColor.h"
+#include "Color.h"
 
 #include "frontends/Application.h"
 
 #include <algorithm>
 
+using std::string;
 
 namespace lyx {
 
-using std::string;
-
 
 Branch::Branch()
 {
-       theApp()->getRgbColor(LColor::background, color_);
+       theApp()->getRgbColor(Color::background, color_);
 }
 
 
@@ -74,7 +73,7 @@ void Branch::setColor(string const & c)
                color_ = RGBColor(c);
        else
                // no color set or invalid color - use normal background
-               theApp()->getRgbColor(LColor::background, color_);
+               theApp()->getRgbColor(Color::background, color_);
 }