summaryrefslogtreecommitdiff
path: root/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-09 12:02:09 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-09 12:02:09 +0000
commit3f68a054495a8e443174505e748d9e58126f44a1 (patch)
tree649de8d8f5281e49e2fcfe2d900a8265141e2d46 /desktop/source/pkgchk/unopkg/unopkg_misc.cxx
parent83dd0b1152ef3fd29e186a0141e7310264a23b28 (diff)
INTEGRATION: CWS sb87 (1.13.26); FILE MERGED
2008/04/24 13:22:07 sb 1.13.26.2: RESYNC: (1.13-1.14); FILE MERGED 2008/04/09 13:54:49 sb 1.13.26.1: #i87730# use tools::getProcessWorkingDir instead of osl_getProcessWorkingDir
Diffstat (limited to 'desktop/source/pkgchk/unopkg/unopkg_misc.cxx')
-rw-r--r--desktop/source/pkgchk/unopkg/unopkg_misc.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
index 283750a982fe..8226238eda10 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: unopkg_misc.cxx,v $
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
* This file is part of OpenOffice.org.
*
@@ -44,6 +44,7 @@
#include "osl/process.h"
#include "osl/file.h"
#include "osl/thread.hxx"
+#include "tools/getprocessworkingdir.hxx"
#include "ucbhelper/contentbroker.hxx"
#include "ucbhelper/configurationkeys.hxx"
#include "unotools/processfactory.hxx"
@@ -200,7 +201,7 @@ struct ProcessWorkingDir : public rtl::StaticWithInit<
const OUString, ProcessWorkingDir> {
const OUString operator () () {
OUString workingDir;
- osl_getProcessWorkingDir( &workingDir.pData );
+ tools::getProcessWorkingDir(&workingDir);
return workingDir;
}
};