]> git.lyx.org Git - lyx.git/blobdiff - src/support/rename.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / rename.C
index f6a33670628bec1d76888f2f2a45957b49cbba8c..3db8cd2d0099c7859b9385612a217f24a14610c7 100644 (file)
@@ -1,14 +1,27 @@
+/**
+ * \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 <cstdio>
 
 #include "support/lyxlib.h"
 
-bool lyx::rename(string const & from, string const & to)
+bool lyx::support::rename(string const & from, string const & to)
 {
+#ifdef __EMX__
+       unlink(to);
+#endif
        if (::rename(from.c_str(), to.c_str()) == -1)
-               if (lyx::copy(from, to)) {
-                       lyx::unlink(from);
+               if (copy(from, to)) {
+                       unlink(from);
                        return true;
                } else
                        return false;