diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-01-17 16:07:36 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-01-17 16:08:09 +0100 |
commit | 769778e489722f454fa3d81ffcf73f1934a0a88b (patch) | |
tree | 14e5e3739f335b2890a402e6e7d5737c16625473 /unotest/source | |
parent | 2681f6442faa7b50fb49c48d64f64d3fddcc776e (diff) |
test::BootstrapFixtureBase::getPathFromWorkdir not unused
Change-Id: I4ddad27d1e5a4de9885956b80db37f1e2f80a96e
Diffstat (limited to 'unotest/source')
-rw-r--r-- | unotest/source/cpp/bootstrapfixturebase.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx index cc8ae3fa189a..87a72a725eb0 100644 --- a/unotest/source/cpp/bootstrapfixturebase.cxx +++ b/unotest/source/cpp/bootstrapfixturebase.cxx @@ -83,6 +83,14 @@ OUString test::BootstrapFixtureBase::getURLFromWorkdir( const char *pPath ) return m_aWorkdirRootURL + OUString::createFromAscii( pPath ); } +#ifdef _WIN32 // ifdef just to keep it out of unusedcode.easy +OUString test::BootstrapFixtureBase::getPathFromWorkdir( const char *pPath ) +{ + return m_aWorkdirRootPath + OUString::createFromAscii( pPath ); + +} +#endif + void test::BootstrapFixtureBase::setUp() { // set UserInstallation to user profile dir in test/user-template |