]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_unknowninset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_unknowninset.h
index 05805ff89f69aa8c57c2173ddef17425f35c7305..4389f8aecd81d8d8adaac07631b111ccefaac058 100644 (file)
@@ -15,7 +15,7 @@
 class MathUnknownInset : public MathDimInset {
 public:
        ///
-       explicit MathUnknownInset(string const & nm);
+       explicit MathUnknownInset(string const & name);
        ///
        MathInset * clone() const;
        ///
@@ -28,6 +28,8 @@ public:
        MathUnknownInset const * asUnknownInset() const { return this; }
        ///
        void setName(string const &);
+       ///
+       bool match(MathInset * p) const;
 
        ///
        void normalize(NormalStream &) const;
@@ -43,6 +45,6 @@ private:
        ///
        string name_;
        ///
-       mutable MathMetricsInfo mi_;
+       mutable LyXFont font_;
 };
 #endif