]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnderset.h
* Inset and derivatives: insetName() -> name()
[lyx.git] / src / mathed / InsetMathUnderset.h
index ba0d223a70684cfb6b4e249e28581e48e9e45004..c195eb10b6987e3cf8ddb35f18e15e16dd00922e 100644 (file)
 
 #include "InsetMathFracBase.h"
 
+
+namespace lyx {
+
 /// Inset for underset
 class InsetMathUnderset : public InsetMathFracBase {
 public:
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       bool idxFirst(LCursor & cur) const;
+       bool idxFirst(Cursor & cur) const;
        ///
-       bool idxLast(LCursor & cur) const;
+       bool idxLast(Cursor & cur) const;
        ///
-       bool idxUpDown(LCursor & cur, bool up) const;
+       bool idxUpDown(Cursor & cur, bool up) const;
        ///
        void write(WriteStream & ws) const;
        ///
@@ -35,7 +38,10 @@ public:
        ///
        void validate(LaTeXFeatures & features) const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
 };
 
+
+
+} // namespace lyx
 #endif