mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
479abc6efd
* src/lyx_cb.C (newFile): Remove OS/2 code * src/lyxserver.C (LyXComm::startPipe): ditto (LyXComm::endPipe): ditto (LyXComm::send): ditto * src/support/rename.C (lyx::support::rename): ditto * src/support/filetools.C (fileOpenSearch): ditto (createTmpDir): ditto (createLyXTmpDir): ditto (makeAbsPath): ditto * src/support/getcwd.C (l_getcwd): ditto * src/support/forkedcall.C (Forkedcall::generateChild): ditto * src/support/chdir.C (lyx::support::chdir): ditto * src/support/os.C: ditto * configure.ac: ditto * development/scons/scons_utils.py: ditto * development/Win32/config.h: ditto * lyx.man: Remove OS/2 related stuff * lib/doc/Customization.lyx: ditto * lib/doc/fr_Customization.lyx: ditto * lib/doc/it_Customization.lyx: ditto * src/support/os2_defines.h: Remove * src/support/os2_errortable.h: ditto * src/support/os_os2.C: ditto * INSTALL.OS2: ditto * README.OS2: ditto * development/OS2/quick_fix.patch: ditto * development/OS2/gnugettext.diff: ditto * development/OS2: ditto * src/support/Makefile.am: Remove deleted files * development/Makefile.am: Remove deleted OS2 directory git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13848 a592a061-630c-0410-9148-cb99ea01b6c8
31 lines
537 B
C
31 lines
537 B
C
/**
|
|
* \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 <cstdio>
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
bool lyx::support::rename(string const & from, string const & to)
|
|
{
|
|
if (::rename(from.c_str(), to.c_str()) == -1)
|
|
if (copy(from, to)) {
|
|
unlink(from);
|
|
return true;
|
|
} else
|
|
return false;
|
|
return true;
|
|
}
|