X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.cpp;h=8683203d3b040b959aaf11244972a9932066a991;hb=2098f1d8c20d51e63e670bcdc9da8996068975bf;hp=2af1ed0487a20bdf118fd9b112a1e07bed8c52bf;hpb=ada0bd00f07c85235c6653a0f7ecb04a8c28b54d;p=lyx.git diff --git a/src/Chktex.cpp b/src/Chktex.cpp index 2af1ed0487..8683203d3b 100644 --- a/src/Chktex.cpp +++ b/src/Chktex.cpp @@ -11,31 +11,23 @@ #include #include "Chktex.h" -#include "gettext.h" #include "LaTeX.h" // TeXErrors #include "support/convert.h" #include "support/docstream.h" #include "support/filetools.h" +#include "support/gettext.h" #include "support/lstrings.h" #include "support/Systemcall.h" #include -using std::getline; -using std::string; - +using namespace std; +using namespace lyx::support; namespace lyx { -using support::changeExtension; -using support::FileName; -using support::makeAbsPath; -using support::onlyFilename; -using support::split; -using support::Systemcall; - Chktex::Chktex(string const & chktex, string const & f, string const & p) : cmd(chktex), file(f), path(p) @@ -75,7 +67,7 @@ int Chktex::scanLogFile(TeXErrors & terr) docstring token; // FIXME UNICODE // We have no idea what the encoding of the error file is - idocfstream ifs(tmp.toFilesystemEncoding().c_str()); + ifdocstream ifs(tmp.toFilesystemEncoding().c_str()); while (getline(ifs, token)) { docstring srcfile; docstring line;