]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathFont.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathFont.h
index e73dc3de4cf3f1e4269a3e8e2b77d0884191b979..b83910523fefe68643ced98c351491d0fbcb8f3c 100644 (file)
@@ -15,6 +15,9 @@
 #include "InsetMathNest.h"
 
 
+namespace lyx {
+
+
 class latexkeys;
 
 /// Inset for font changes
@@ -29,7 +32,7 @@ public:
        /// are we in math mode, text mode, or unsure?
        mode_type currentMode() const;
        ///
-       std::string name() const;
+       docstring name() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -41,11 +44,14 @@ public:
        ///
        void validate(LaTeXFeatures & features) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
 
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        /// the font to be used on screen
        latexkeys const * key_;
 };
+
+
+} // namespace lyx
 #endif