]> git.lyx.org Git - lyx.git/blobdiff - src/support/os.cpp
add onoff support for "inset-modify changetype xxx" in include inset
[lyx.git] / src / support / os.cpp
index 99bb35810fbb6e04d28c1dd744b700433a6eb37c..6984d2c7480fbfd43fe0079716d7eab4252a370d 100644 (file)
 #include <config.h>
 
 #if defined(__CYGWIN__) || defined(__CYGWIN32__)
-#include "os_cygwin.cpp"
+#include "support/os_cygwin.cpp"
 #elif defined(_WIN32)
-#include "os_win32.cpp"
+#include "support/os_win32.cpp"
 #else
-#include "os_unix.cpp"
+#include "support/os_unix.cpp"
 #endif
 
 namespace lyx {
 namespace support {
 namespace os {
 
-std::string const python()
+string const python()
 {
        // Use the -tt switch so that mixed tab/whitespace indentation is
        // an error
-       static std::string const command("python -tt");
+       static string const command("python -tt");
        return command;
 }