diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-08-06 16:04:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-08-06 21:15:31 +0200 |
commit | cc21480a25f1a289c7dd1bc536699fcae1457fc8 (patch) | |
tree | 1104825fee8a7c17495881a569ad5f8966f96a94 /unotest/source | |
parent | 030cdbc7f8782eb196f09661bc2f116d790de9be (diff) |
make --disable-scripting compile
Change-Id: Ie2be232e062389b74408dd9f001b1cf4db7db7d6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120123
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'unotest/source')
-rw-r--r-- | unotest/source/cpp/bootstrapfixturebase.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx index 5c5b3bcc3a9c..aec7d4f820dd 100644 --- a/unotest/source/cpp/bootstrapfixturebase.cxx +++ b/unotest/source/cpp/bootstrapfixturebase.cxx @@ -12,6 +12,7 @@ #include <unotest/bootstrapfixturebase.hxx> #include <comphelper/processfactory.hxx> #include <basic/sbstar.hxx> +#include <config_features.h> using namespace ::com::sun::star; @@ -30,6 +31,11 @@ void test::BootstrapFixtureBase::setUp() m_xSFactory.set(m_xFactory, uno::UNO_QUERY_THROW); } -void test::BootstrapFixtureBase::tearDown() { StarBASIC::DetachAllDocBasicItems(); } +void test::BootstrapFixtureBase::tearDown() +{ +#if HAVE_FEATURE_SCRIPTING + StarBASIC::DetachAllDocBasicItems(); +#endif +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |