]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.C
Point fix, earlier forgotten
[lyx.git] / src / Chktex.C
index 7b728fc9d4ec1262623be06311501e21559c0abb..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>
@@ -29,6 +26,8 @@
 
 #include <fstream>
 
+using namespace lyx::support;
+
 using std::ifstream;
 using std::getline;
 
@@ -80,7 +79,7 @@ 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;