]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.C
ws changes only
[lyx.git] / src / Chktex.C
index 7956209a6e67c3b13701d2a7dccbbf02b931f92a..4f2fc6c6ae8bc36f3ed3526a4e5ddeacfaf398a2 100644 (file)
@@ -30,7 +30,7 @@ using lyx::support::split;
 using lyx::support::Systemcall;
 
 using std::getline;
-
+using std::string;
 using std::ifstream;
 
 
@@ -64,7 +64,7 @@ int Chktex::scanLogFile(TeXErrors & terr)
        string const tmp = OnlyFilename(ChangeExtension(file, ".log"));
 
 #if USE_BOOST_FORMAT
-       boost::format msg(STRCONV(_("ChkTeX warning id # %1$d")));
+       boost::format msg(_("ChkTeX warning id # %1$d"));
 #else
        string const msg(_("ChkTeX warning id # "));
 #endif
@@ -85,7 +85,7 @@ int Chktex::scanLogFile(TeXErrors & terr)
 
 #if USE_BOOST_FORMAT
                msg % warno;
-               terr.insertError(lineno, STRCONV(msg.str()), warning);
+               terr.insertError(lineno, msg.str(), warning);
                msg.clear();
 #else
                terr.insertError(lineno, msg + warno, warning);