diff --git a/src/support/ChangeLog b/src/support/ChangeLog index f46384c372..9629df4208 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,8 @@ +2005-01-30 Angus Leeming + + * os_cygwin.C (cygwin_path_fix): + * os_win32.C (cygwin_path_fix): move the function into namespace os. + 2005-01-16 Angus Leeming * filetools.C (CreateLyXTmpDir): backport the 1.4.x code. diff --git a/src/support/os_cygwin.C b/src/support/os_cygwin.C index cfcc829888..a260cbb866 100644 --- a/src/support/os_cygwin.C +++ b/src/support/os_cygwin.C @@ -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; } diff --git a/src/support/os_win32.C b/src/support/os_win32.C index ce4b768062..5f2b214f7a 100644 --- a/src/support/os_win32.C +++ b/src/support/os_win32.C @@ -181,5 +181,5 @@ char os::path_separator() } -void cygwin_path_fix(bool) +void os::cygwin_path_fix(bool) {}