X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.cpp;h=5b78d71c3c453293ebae2d1bf37ed191b284f251;hb=b81c90adeef28a836d9786671849401b747e350b;hp=128d27c59051c5929c9b31df649cae9c10611f34;hpb=f630be890494c849981e4fb52ea4740506e92bed;p=lyx.git diff --git a/src/BranchList.cpp b/src/BranchList.cpp index 128d27c590..5b78d71c3c 100644 --- a/src/BranchList.cpp +++ b/src/BranchList.cpp @@ -11,21 +11,20 @@ #include #include "BranchList.h" -#include "LColor.h" +#include "Color.h" #include "frontends/Application.h" #include +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_); }