]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.cpp
Correct the mess introduced in r33250.
[lyx.git] / src / graphics / GraphicsParams.cpp
index 0b2fbb2c1457a0acff2cdcd519c9e6ed889eb3ba..a53d2c57b1ffb4f038c998cde7ceeea046f9b34c 100644 (file)
@@ -23,10 +23,9 @@ namespace lyx {
 namespace graphics {
 
 Params::Params()
-       : display(ColorDisplay),
+       : display(true),
          scale(100),
-         angle(0),
-         icon("")
+         angle(0)
 {}
 
 
@@ -36,8 +35,7 @@ bool operator==(Params const & a, Params const & b)
                a.display == b.display &&
                a.bb == b.bb &&
                a.scale == b.scale &&
-               a.angle == b.angle &&
-               a.icon == b.icon);
+               a.angle == b.angle);
 }