From 280a6071a7ed0f38e155633d6d2c67df9264ace5 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Sun, 30 Jan 2005 20:29:02 +0000 Subject: [PATCH] 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 --- src/support/ChangeLog | 5 +++++ src/support/os_cygwin.C | 2 +- src/support/os_win32.C | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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) {}