]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.cpp
* Inset and derivatives: insetName() -> name()
[lyx.git] / src / mathed / InsetMathColor.cpp
index c3358bfe34907c6c8e1d582df3a03ace9d103ca3..08959b98b2b8cb407e51b3528eaf9b52800f5ded 100644 (file)
@@ -24,7 +24,7 @@ namespace lyx {
 using std::auto_ptr;
 using std::string;
 
-InsetMathColor::InsetMathColor(bool oldstyle, LColor_color const & color)
+InsetMathColor::InsetMathColor(bool oldstyle, Color_color const & color)
        : InsetMathNest(1), oldstyle_(oldstyle),
          color_(from_utf8(lcolor.getLaTeXName(color)))
 {}
@@ -35,9 +35,9 @@ InsetMathColor::InsetMathColor(bool oldstyle, docstring const & color)
 {}
 
 
-auto_ptr<InsetBase> InsetMathColor::doClone() const
+auto_ptr<Inset> InsetMathColor::doClone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathColor(*this));
+       return auto_ptr<Inset>(new InsetMathColor(*this));
 }
 
 
@@ -54,7 +54,7 @@ bool InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetMathColor::draw(PainterInfo & pi, int x, int y) const
 {
-       LColor_color origcol = pi.base.font.color();
+       Color_color origcol = pi.base.font.color();
        pi.base.font.setColor(lcolor.getFromLaTeXName(to_utf8(color_)));
        cell(0).draw(pi, x + 1, y);
        pi.base.font.setColor(origcol);