]> git.lyx.org Git - lyx.git/blobdiff - src/support/rename.C
remove unused stuff
[lyx.git] / src / support / rename.C
index f6a33670628bec1d76888f2f2a45957b49cbba8c..33045adbaae3c94bdfe033d75a6625d459d91719 100644 (file)
@@ -1,16 +1,39 @@
+/**
+ * \file rename.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
+#include "support/lyxlib.h"
+#include "support/filename.h"
+
 #include <cstdio>
 
-#include "support/lyxlib.h"
 
-bool lyx::rename(string const & from, string const & to)
+namespace lyx {
+namespace support {
+
+
+using std::string;
+
+
+bool rename(FileName const & from, FileName const & to)
 {
-       if (::rename(from.c_str(), to.c_str()) == -1)
-               if (lyx::copy(from, to)) {
-                       lyx::unlink(from);
+       if (::rename(from.toFilesystemEncoding().c_str(), to.toFilesystemEncoding().c_str()) == -1)
+               if (copy(from, to)) {
+                       unlink(from);
                        return true;
                } else
                        return false;
        return true;
 }
+
+
+} // namespace support
+} // namespace lyx