]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.C
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / Chktex.C
index 707b0cdc0c500ed7638d5cc9b09b914ddb7dbaff..dc94696ace1b5a8317eee8d9a2b7a3c89ef74575 100644 (file)
@@ -27,7 +27,7 @@
 #include "debug.h"
 #include "support/syscall.h"
 #include "support/syscontr.h"
-#include "pathstack.h"
+#include "support/path.h"
 #include "gettext.h"
 
 /*
@@ -46,7 +46,7 @@ int Chktex::run(TeXErrors &terr)
        string log = ChangeExtension(file, ".log", true);
        string tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log;
         Systemcalls one;
-       int result= one.Startscript(Systemcalls::System, tmp);
+       int result= one.startscript(Systemcalls::System, tmp);
        if (result == 0) {
                result = scanLogFile(terr);
        } else {