X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBranchList.cpp;h=5ca0fd58fc62cba233dbeff99a590c311bb559a2;hb=b271e3e06d778dbe7f20973c718f06d8aac0cf6f;hp=8eb585d717541257932fc840c8fee522114396fa;hpb=5031a8eb64c729cbc3095cd6be50eb340c412957;p=lyx.git diff --git a/src/BranchList.cpp b/src/BranchList.cpp index 8eb585d717..5ca0fd58fc 100644 --- a/src/BranchList.cpp +++ b/src/BranchList.cpp @@ -17,14 +17,16 @@ #include -using std::string; +using namespace std; namespace lyx { Branch::Branch() : selected_(false) { - theApp()->getRgbColor(Color::background, color_); + // no theApp() with command line export + if (theApp()) + theApp()->getRgbColor(Color_background, color_); } @@ -67,20 +69,20 @@ void Branch::setColor(RGBColor const & c) } -void Branch::setColor(string const & c) +void Branch::setColor(string const & str) { - if (c.size() == 7 && c[0] == '#') - color_ = RGBColor(c); + if (str.size() == 7 && str[0] == '#') + color_ = rgbFromHexName(str); else // no color set or invalid color - use normal background - theApp()->getRgbColor(Color::background, color_); + theApp()->getRgbColor(Color_background, color_); } Branch * BranchList::find(docstring const & name) { List::iterator it = - std::find_if(list.begin(), list.end(), BranchNamesEqual(name)); + find_if(list.begin(), list.end(), BranchNamesEqual(name)); return it == list.end() ? 0 : &*it; } @@ -88,7 +90,7 @@ Branch * BranchList::find(docstring const & name) Branch const * BranchList::find(docstring const & name) const { List::const_iterator it = - std::find_if(list.begin(), list.end(), BranchNamesEqual(name)); + find_if(list.begin(), list.end(), BranchNamesEqual(name)); return it == list.end() ? 0 : &*it; } @@ -106,7 +108,7 @@ bool BranchList::add(docstring const & s) name = s.substr(i, j - i); // Is this name already in the list? bool const already = - std::find_if(list.begin(), list.end(), + find_if(list.begin(), list.end(), BranchNamesEqual(name)) != list.end(); if (!already) { added = true;