diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:52:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:54:36 +0200 |
commit | 4ef5dfad794673f06038e8d8550795d9c5203885 (patch) | |
tree | 1a8cd8f910709e36d3440e5dde2191266152e91e /unotest | |
parent | f42b2268c4303cdad017294d870a255d95e617ee (diff) |
loplugin:staticcall
Change-Id: Ib04cadafab0f3d0cd9e6bb550d846a3a1ca8ea76
Diffstat (limited to 'unotest')
-rw-r--r-- | unotest/source/cpp/bootstrapfixturebase.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx index c407dc677b20..41272c68b753 100644 --- a/unotest/source/cpp/bootstrapfixturebase.cxx +++ b/unotest/source/cpp/bootstrapfixturebase.cxx @@ -95,9 +95,8 @@ OUString test::BootstrapFixtureBase::getPathFromWorkdir( const char *pPath ) void test::BootstrapFixtureBase::setUp() { // set UserInstallation to user profile dir in test/user-template - rtl::Bootstrap aDefaultVars; OUString sUserInstallURL = m_aWorkdirRootURL + "/unittest"; - aDefaultVars.set(OUString("UserInstallation"), sUserInstallURL); + rtl::Bootstrap::set(OUString("UserInstallation"), sUserInstallURL); m_xContext = comphelper::getProcessComponentContext(); m_xFactory = m_xContext->getServiceManager(); |