]> git.lyx.org Git - lyx.git/blobdiff - src/support/chdir.C
fix compiler warnings about unused parameter
[lyx.git] / src / support / chdir.C
index 9d9be72ddc595ffe1372d5a713369585d560c6aa..6ac268772c18610afc0ec2ee766bb61219f863eb 100644 (file)
 
 #include <config.h>
 
-#include <unistd.h>
-
 #include "support/lyxlib.h"
 
-int lyx::support::chdir(string const & name)
+#include "support/filename.h"
+
+
+namespace lyx {
+
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+#ifdef _WIN32
+# include <windows.h>
+#endif
+
+int support::chdir(FileName const & name)
 {
-#ifndef __EMX__
-       return ::chdir(name.c_str());
+#ifdef _WIN32
+       return SetCurrentDirectory(name.toFilesystemEncoding().c_str()) != 0 ? 0 : -1;
 #else
-       return ::_chdir2(name.c_str());
+       return ::chdir(name.toFilesystemEncoding().c_str());
 #endif
 }
+
+
+} // namespace lyx