]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathChar.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathChar.h
index acbbccd67a958ed915692888432a4bca4782c627..140c16829b7adc14d176d36710836bc39fa07aec 100644 (file)
@@ -21,7 +21,7 @@ namespace lyx {
 class InsetMathChar : public InsetMath {
 public:
        ///
-       explicit InsetMathChar(char c);
+       explicit InsetMathChar(char_type c);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -40,18 +40,18 @@ public:
        ///
        void octave(OctaveStream & os) const;
        ///
-       void mathmlize(MathMLStream & ms) const;
+       void mathmlize(MathStream & ms) const;
        /// identifies Charinsets
        InsetMathChar const * asCharInset() const { return this; }
        ///
-       char getChar() const { return char_; }
+       char_type getChar() const { return char_; }
        ///
        bool isRelOp() const;
 
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        /// the character
-       char char_;
+       char_type char_;
        /// cached width
        mutable int width_;
 };