]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.cpp
Account for old versions of Pygments
[lyx.git] / src / Chktex.cpp
index 8683203d3b040b959aaf11244972a9932066a991..816837a025c4967611cb2bf6ae0bef29d9ea7f84 100644 (file)
@@ -21,8 +21,6 @@
 #include "support/lstrings.h"
 #include "support/Systemcall.h"
 
-#include <boost/format.hpp>
-
 using namespace std;
 using namespace lyx::support;
 
@@ -31,14 +29,13 @@ namespace lyx {
 
 Chktex::Chktex(string const & chktex, string const & f, string const & p)
                : cmd(chktex), file(f), path(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,15 +52,11 @@ 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<char_type> msg(_("ChkTeX warning id # %1$d"));
-#else
-       docstring const msg(_("ChkTeX warning id # "));
-#endif
+       docstring const msg(_("ChkTeX warning id # %1$s"));
        docstring token;
        // FIXME UNICODE
        // We have no idea what the encoding of the error file is
@@ -82,13 +75,7 @@ int Chktex::scanLogFile(TeXErrors & terr)
 
                int const lineno = convert<int>(line);
 
-#if USE_BOOST_FORMAT
-               msg % warno;
-               terr.insertError(lineno, msg.str(), warning);
-               msg.clear();
-#else
-               terr.insertError(lineno, msg + warno, warning);
-#endif
+               terr.insertError(lineno, bformat(msg, warno), warning);
 
                ++retval;
        }