X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.cpp;h=8ca70d80be042f550bc7fa4a655414aa0d25c19e;hb=2d7cf039351fba0d91746dce8cbf1f9e31cdc224;hp=20ee902876738a9d1f4d01bec583594acad6884f;hpb=b89cc942eb458284f40f4d4e7db58890c3288979;p=lyx.git diff --git a/src/Chktex.cpp b/src/Chktex.cpp index 20ee902876..8ca70d80be 100644 --- a/src/Chktex.cpp +++ b/src/Chktex.cpp @@ -38,7 +38,7 @@ Chktex::Chktex(string const & chktex, string const & f, string const & p) int Chktex::run(TeXErrors &terr) { // run bibtex - string log = onlyFilename(changeExtension(file, ".log")); + string log = onlyFileName(changeExtension(file, ".log")); string tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log; Systemcall one; int result = one.startscript(Systemcall::Wait, tmp); @@ -55,9 +55,9 @@ int Chktex::scanLogFile(TeXErrors & terr) { int retval = 0; - // FIXME: Find out whether onlyFilename() is really needed, - // or whether makeAbsPath(onlyFilename()) is a noop here - FileName const tmp(makeAbsPath(onlyFilename(changeExtension(file, ".log")))); + // FIXME: Find out whether onlyFileName() is really needed, + // or whether makeAbsPath(onlyFileName()) is a noop here + FileName const tmp(makeAbsPath(onlyFileName(changeExtension(file, ".log")))); #if USE_BOOST_FORMAT boost::basic_format msg(_("ChkTeX warning id # %1$d")); @@ -67,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;