]> git.lyx.org Git - lyx.git/blobdiff - src/BranchList.cpp
* src/LyXRC.{cpp,h}:
[lyx.git] / src / BranchList.cpp
index 5b78d71c3c453293ebae2d1bf37ed191b284f251..89884e60a2e11e77332dadd67c92e3906dcf0439 100644 (file)
@@ -11,7 +11,6 @@
 #include <config.h>
 
 #include "BranchList.h"
-#include "Color.h"
 
 #include "frontends/Application.h"
 
@@ -22,9 +21,11 @@ using std::string;
 namespace lyx {
 
 
-Branch::Branch()
+Branch::Branch() : selected_(false)
 {
-       theApp()->getRgbColor(Color::background, color_);
+       // no theApp() with command line export
+       if (theApp())
+               theApp()->getRgbColor(Color_background, color_);
 }
 
 
@@ -73,7 +74,7 @@ void Branch::setColor(string const & c)
                color_ = RGBColor(c);
        else
                // no color set or invalid color - use normal background
-               theApp()->getRgbColor(Color::background, color_);
+               theApp()->getRgbColor(Color_background, color_);
 }