]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathAutoCorrect.cpp
last commit was incomplete... not sure how I managed this..
[lyx.git] / src / mathed / MathAutoCorrect.cpp
index 2b384d330e0f00e0c685a8549589e1c3be5ab277..f34765ec4d0c1e9a95e14f15344b47b632b0cfa5 100644 (file)
@@ -11,7 +11,7 @@
 #include <config.h>
 
 #include "MathAutoCorrect.h"
-#include "MathArray.h"
+#include "MathData.h"
 #include "InsetMath.h"
 #include "MathSupport.h"
 #include "MathParser.h"
@@ -62,7 +62,7 @@ bool Correction::read(idocstream & is)
                return false;
        if (s2.size() != 1)
                return false;
-       MathArray ar1, ar3;
+       MathData ar1, ar3;
        mathed_parse_cell(ar1, s1);
        mathed_parse_cell(ar3, s3);
        if (ar1.size() != 1 || ar3.size() != 1)