]> git.lyx.org Git - lyx.git/blobdiff - src/support/os_win32.cpp
Revert qprocess code. Revisions reverted: 22026, 22030, 22044, 22048,
[lyx.git] / src / support / os_win32.cpp
index a4f98e07c3ea7135049f434575ad5e8e3e56fadb..4beaaa16e446c46e2e41f9c72bf3ff37666fa1f1 100644 (file)
 
 #include "support/os.h"
 #include "support/os_win32.h"
-#include "support/lstrings.h"
+#include "support/debug.h"
+#include "support/gettext.h"
 #include "support/filetools.h"
+#include "support/lstrings.h"
 #include "support/ExceptionMessage.h"
 
-#include "debug.h"
-#include "gettext.h"
-
 #include <boost/assert.hpp>
 
 #include <cstdlib>
@@ -63,9 +62,7 @@
 # endif
 #endif
 
-using std::endl;
-using std::string;
-
+using namespace std;
 
 namespace lyx {
 namespace support {
@@ -247,7 +244,7 @@ string latex_path(string const & p)
                string const drive = p.substr(0, 2);
                string const cygprefix = cygdrive + "/" + drive.substr(0, 1);
                string const cygpath = subst(subst(p, '\\', '/'), drive, cygprefix);
-               LYXERR(Debug::LATEX, << "<Path correction for LaTeX> ["
+               LYXERR(Debug::LATEX, "<Path correction for LaTeX> ["
                        << p << "]->>[" << cygpath << ']');
                return cygpath;
        }