]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathXYMatrix.h
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathXYMatrix.h
index 3dfcd9b4ab03cbf1c1e50d53d053bfa6fc141b4c..8cef0b8656fb46401124749c5e32904f7cd5810a 100644 (file)
@@ -22,7 +22,7 @@ namespace lyx {
 class InsetMathXYMatrix : public InsetMathGrid {
 public:
        ///
-       InsetMathXYMatrix();
+       InsetMathXYMatrix(LyXLength const & = LyXLength(), char c = '\0');
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -42,9 +42,15 @@ public:
        void normalize(NormalStream &) const;
        ///
        void maple(MapleStream &) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
 private:
        ///
        virtual std::auto_ptr<InsetBase> doClone() const;
+       /// extra spacing, may be empty
+       LyXLength spacing_;
+       ///
+       char spacing_code_;
 };