From b0ca60184bea00b389abdbc78c711ef3f803387b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Mon, 9 Jun 2008 11:43:11 +0000 Subject: [PATCH] INTEGRATION: CWS sb87 (1.10.76); FILE MERGED 2008/04/24 13:16:04 sb 1.10.76.2: RESYNC: (1.10-1.11); FILE MERGED 2008/04/09 15:20:03 sb 1.10.76.1: #i87730# use tools::getProcessWorkingDir instead of osl_getProcessWorkingDir --- configmgr/source/localbe/localhierarchybrowsersvc.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configmgr/source/localbe/localhierarchybrowsersvc.cxx b/configmgr/source/localbe/localhierarchybrowsersvc.cxx index 41d27f2a1558..952f1e126024 100644 --- a/configmgr/source/localbe/localhierarchybrowsersvc.cxx +++ b/configmgr/source/localbe/localhierarchybrowsersvc.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: localhierarchybrowsersvc.cxx,v $ - * $Revision: 1.11 $ + * $Revision: 1.12 $ * * This file is part of OpenOffice.org. * @@ -317,7 +317,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL #include "filehelper.hxx" #include -#include +#include "tools/getprocessworkingdir.hxx" #include // ----------------------------------------------------------------------------- @@ -363,7 +363,7 @@ uno::Sequence< ::rtl::OUString > SAL_CALL bool makeAbsoluteURL(OUString & rURL ) { using osl::File; - OUString aBaseDir; osl_getProcessWorkingDir(&aBaseDir.pData); + OUString aBaseDir; tools::getProcessWorkingDir(&aBaseDir); File::RC errcode = osl::File::getAbsoluteFileURL(aBaseDir,rURL,rURL);