X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathAutoCorrect.cpp;h=3e1405b3dc6b97f2647447e1993903aca4e7be7c;hb=4c724a6072013247ac178f0acec06825585c6c55;hp=2f8f1e812475b9c9622c849d5ae3f9818101bc8c;hpb=9cca7a0c1a2069f04e4104f0d96c14165757d869;p=lyx.git diff --git a/src/mathed/MathAutoCorrect.cpp b/src/mathed/MathAutoCorrect.cpp index 2f8f1e8124..3e1405b3dc 100644 --- a/src/mathed/MathAutoCorrect.cpp +++ b/src/mathed/MathAutoCorrect.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -15,24 +15,21 @@ #include "InsetMath.h" #include "MathSupport.h" #include "MathParser.h" -#include "debug.h" +#include "support/debug.h" +#include "support/FileName.h" #include "support/filetools.h" // LibFileSearch #include "support/docstream.h" #include #include +using namespace std; namespace lyx { using support::libFileSearch; -using std::string; -using std::ifstream; -using std::endl; -using std::vector; - namespace { class Correction { @@ -84,20 +81,20 @@ void Correction::write(odocstream & os) const bool Correction::correct(MathAtom & at, char_type c) const { - //LYXERR(Debug::MATHED) - // << "trying to correct ar: " << at << " from: '" << from1_ << '\'' << endl; + //LYXERR(Debug::MATHED, + // "trying to correct ar: " << at << " from: '" << from1_ << '\''); if (from2_ != c) return false; if (asString(at) != asString(from1_)) return false; - LYXERR(Debug::MATHED) - << "match found! subst in " << at - << " from: '" << from1_ << "' to '" << to_ << '\'' << endl; + LYXERR(Debug::MATHED, "match found! subst in " << at + << " from: '" << from1_ << "' to '" << to_ << '\''); at = to_; return true; } +#if 0 idocstream & operator>>(idocstream & is, Correction & corr) { corr.read(is); @@ -110,7 +107,7 @@ odocstream & operator<<(odocstream & os, Correction & corr) corr.write(os); return os; } - +#endif @@ -143,7 +140,7 @@ Corrections theCorrections; void initAutoCorrect() { - LYXERR(Debug::MATHED) << "reading autocorrect file" << endl; + LYXERR(Debug::MATHED, "reading autocorrect file"); support::FileName const file = libFileSearch(string(), "autocorrect"); if (file.empty()) { lyxerr << "Could not find autocorrect file" << endl; @@ -153,28 +150,28 @@ void initAutoCorrect() string line; ifstream is(file.toFilesystemEncoding().c_str()); while (getline(is, line)) { - if (line.size() == 0 || line[0] == '#') { - //LYXERR(Debug::MATHED) << "ignoring line '" << line << '\'' << endl; + if (line.empty() || line[0] == '#') { + //LYXERR(Debug::MATHED, "ignoring line '" << line << '\''); continue; } idocstringstream il(from_utf8(line)); - //LYXERR(Debug::MATHED) << "line '" << line << '\'' << endl; + //LYXERR(Debug::MATHED, "line '" << line << '\''); Correction corr; if (corr.read(il)) { - //LYXERR(Debug::MATHED) << "parsed: '" << corr << '\'' << endl; + //LYXERR(Debug::MATHED, "parsed: '" << corr << '\''); theCorrections.insert(corr); } } - LYXERR(Debug::MATHED) << "done reading autocorrections." << endl; + LYXERR(Debug::MATHED, "done reading autocorrections."); } } // namespace anon -bool math_autocorrect(MathAtom & at, char c) +bool math_autocorrect(MathAtom & at, char_type c) { static bool initialized = false;