Move cygwin_path_fix into namespace os.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9544 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-01-30 20:29:02 +00:00
parent 4c41cd5d0f
commit 280a6071a7
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-01-30 Angus Leeming <leeming@lyx.org>
* os_cygwin.C (cygwin_path_fix):
* os_win32.C (cygwin_path_fix): move the function into namespace os.
2005-01-16 Angus Leeming <leeming@lyx.org>
* filetools.C (CreateLyXTmpDir): backport the 1.4.x code.

View File

@ -123,7 +123,7 @@ char os::path_separator()
}
void cygwin_path_fix(bool use_cygwin_paths)
void os::cygwin_path_fix(bool use_cygwin_paths)
{
cygwin_path_fix_ = use_cygwin_paths;
}

View File

@ -181,5 +181,5 @@ char os::path_separator()
}
void cygwin_path_fix(bool)
void os::cygwin_path_fix(bool)
{}