]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.h
Properly fix bug 3258.
[lyx.git] / src / mathed / InsetMathColor.h
index 71fada04738581adc3bfb7a913c56c9b6937561d..01f53298bf3480c08298656c14206ea813a5d307 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef MATH_COLORINSET_H
 #define MATH_COLORINSET_H
 
-#include "LColor.h"
+#include "Color.h"
 
 #include "InsetMathNest.h"
 
@@ -25,11 +25,11 @@ class InsetMathColor : public InsetMathNest {
 public:
        /// Create a color inset from LyX color number
        explicit InsetMathColor(bool oldstyle,
-               LColor_color const & color = LColor::none);
+               Color_color const & color = Color::none);
        /// Create a color inset from LaTeX color name
        explicit InsetMathColor(bool oldstyle, docstring const & color);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        /// we write extra braces in any case...
        /// FIXME Why? Are they necessary if oldstyle_ == false?
        bool extraBraces() const { return true; }
@@ -44,7 +44,7 @@ public:
        ///
        void infoize(odocstream & os) const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        /// width of '[' in current font
        mutable int w_;
        ///