]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.cpp
* Inset:
[lyx.git] / src / mathed / InsetMathColor.cpp
index f237eb9c4fceb05a4eb28434fa17eba6c8be7698..eb5ed56ca5f81bd1bd05921e168ddbb9e1de6bd3 100644 (file)
@@ -21,9 +21,6 @@
 
 namespace lyx {
 
-using std::auto_ptr;
-using std::string;
-
 InsetMathColor::InsetMathColor(bool oldstyle, Color_color const & color)
        : InsetMathNest(1), oldstyle_(oldstyle),
          color_(from_utf8(lcolor.getLaTeXName(color)))
@@ -35,20 +32,17 @@ InsetMathColor::InsetMathColor(bool oldstyle, docstring const & color)
 {}
 
 
-auto_ptr<InsetBase> InsetMathColor::doClone() const
+Inset * InsetMathColor::clone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathColor(*this));
+       return new InsetMathColor(*this);
 }
 
 
-bool InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        cell(0).metrics(mi, dim);
        metricsMarkers(dim);
-       if (dim_ == dim)
-               return false;
        dim_ = dim;
-       return true;
 }