]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.cpp
Add context menu for outline operations. Choice of words might not be best.
[lyx.git] / src / graphics / GraphicsParams.cpp
index e5c9b3d24f75fb4302737ff6307076159b552b5e..659cbe84c07c062bd2c26fb7946d2bdd84b1afd8 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "Length.h"
 
+#include <cstdlib>
 #include <sstream>
 
 using namespace std;
@@ -24,8 +25,7 @@ namespace graphics {
 Params::Params()
        : display(ColorDisplay),
          scale(100),
-         angle(0),
-         icon("")
+         angle(0)
 {}
 
 
@@ -35,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);
 }