]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.C
Point fix, earlier forgotten
[lyx.git] / src / Chktex.C
index 1e7f62d2bc7724506ecaa9f364aff8fd13fcd51a..5e2fe5ce6ae5495036425029e011dd645355f79e 100644 (file)
@@ -1,14 +1,11 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file Chktex.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *          Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+ * \author Asger Alstrup
  *
- *           This file is Copyright 1997-1998
- *           Asger Alstrup
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 #include "support/path.h"
 #include "support/lstrings.h"
 
-#include "BoostFormat.h"
+#include "support/BoostFormat.h"
 
 #include <fstream>
 
+using namespace lyx::support;
+
 using std::ifstream;
 using std::getline;
 
-/*
- * CLASS Chktex
- */
 
 Chktex::Chktex(string const & chktex, string const & f, string const & p)
                : cmd(chktex), file(f), path(p)
@@ -48,7 +44,7 @@ int Chktex::run(TeXErrors &terr)
        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);
+       int result = one.startscript(Systemcall::Wait, tmp);
        if (result == 0) {
                result = scanLogFile(terr);
        } else {
@@ -66,7 +62,7 @@ int Chktex::scanLogFile(TeXErrors & terr)
        string const tmp = OnlyFilename(ChangeExtension(file, ".log"));
 
 #if USE_BOOST_FORMAT
-       boost::format msg(_("ChkTeX warning id # %1$d"));
+       boost::format msg(STRCONV(_("ChkTeX warning id # %1$d")));
 #else
        string const msg(_("ChkTeX warning id # "));
 #endif
@@ -83,11 +79,11 @@ int Chktex::scanLogFile(TeXErrors & terr)
                token = split(token, warno, ':');
                token = split(token, warning, ':');
 
-               int const lineno = lyx::atoi(line);
+               int const lineno = atoi(line);
 
 #if USE_BOOST_FORMAT
                msg % warno;
-               terr.insertError(lineno, msg.str(), warning);
+               terr.insertError(lineno, STRCONV(msg.str()), warning);
                msg.clear();
 #else
                terr.insertError(lineno, msg + warno, warning);