]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.C
Remove unused font variable which caused a warning.
[lyx.git] / src / Chktex.C
index dd7b410b0296087c38cf69c942e3796a68e86929..e0b3991379df9d3f8c589d2bbe4f92ab754d4dba 100644 (file)
@@ -68,7 +68,11 @@ int Chktex::scanLogFile(TeXErrors & terr)
 
        ifstream ifs(tmp.c_str());
        while (getline(ifs, token)) {
-               string srcfile, line, pos, warno, warning;
+               string srcfile;
+               string line;
+               string pos;
+               string warno;
+               string warning;
                token = split(token, srcfile, ':');
                token = split(token, line, ':');
                token = split(token, pos, ':');