]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_autocorrect.C
Remove mixed_content from output parameters.
[lyx.git] / src / mathed / math_autocorrect.C
index feb6d7b58e22e4b1c275167c32af407062666182..4d06c78259210d21900e5463474ca64c083cfc00 100644 (file)
 #include <config.h>
 
 #include "math_autocorrect.h"
-#include "support/std_sstream.h"
-#include "debug.h"
-#include "support/filetools.h" //  LibFileSearch
 #include "math_data.h"
 #include "math_inset.h"
+#include "math_support.h"
 #include "math_parser.h"
+#include "debug.h"
+
+#include "support/filetools.h" //  LibFileSearch
 
 #include <fstream>
+#include <sstream>
 
 using lyx::support::LibFileSearch;
 
+using std::string;
 using std::ifstream;
 using std::istream;
 using std::istringstream;
@@ -84,7 +87,7 @@ bool Correction::correct(MathAtom & at, char c) const
        //      << "trying to correct ar: " << at << " from: '" << from1_ << '\'' << endl;
        if (from2_ != c)
                return false;
-       if (!at->match(from1_))
+       if (asString(at) != asString(from1_))
                return false;
        lyxerr[Debug::MATHED]
                << "match found! subst in " << at