]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_casesinset.h
index 9ee1fa1a8a69b6d0e2d131088593f9648f21b9f8..f28776c51b72d6c2c73553ad155abd1e2404ad2b 100644 (file)
@@ -22,11 +22,14 @@ public:
        ///
        explicit MathCasesInset(row_type rows = 1u);
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
+       ///
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       ///
+       bool getStatus(LCursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
 
        ///
        void infoize(std::ostream & os) const;
@@ -38,6 +41,8 @@ public:
        void write(WriteStream & os) const;
        ///
        void validate(LaTeXFeatures & features) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif