]> git.lyx.org Git - lyx.git/blobdiff - src/support/rename.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / rename.C
index 4a927fdf71eeeeca27c22d9e355544599abb7c1f..bfa0a82bff3137a194f0fc8abcd0a0bbb6d44252 100644 (file)
@@ -3,9 +3,9 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "support/lyxlib.h"
 
-bool lyx::rename(string const & from, string const & to)
+
+using std::string;
+
+
+bool lyx::support::rename(string const & from, string const & to)
 {
 #ifdef __EMX__
-       lyx::unlink(to.c_str());
+       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;