diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-27 11:35:40 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-27 11:36:03 +0200 |
commit | a8c3c673eaec987e9fe47123f60e5f9d34a4e93f (patch) | |
tree | addc0a07ffb5430f6a2c74e4cb599bd1f3de41dd /desktop/source/deployment | |
parent | 556fe2c6128a32233b411a85c54177e1d5be1e0d (diff) |
Use <config_features.h> instead of -DLIBO_FEATURE_*
Change-Id: Idc198beb6d759dbe3bad6ea58d896c1555b4cc0f
Diffstat (limited to 'desktop/source/deployment')
-rw-r--r-- | desktop/source/deployment/registry/help/dp_help.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/source/deployment/registry/help/dp_help.cxx b/desktop/source/deployment/registry/help/dp_help.cxx index 5c660fb3d393..35c798e52b35 100644 --- a/desktop/source/deployment/registry/help/dp_help.cxx +++ b/desktop/source/deployment/registry/help/dp_help.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <config_features.h> #include "dp_help.hrc" #include "dp_backend.h" @@ -31,7 +32,7 @@ #include "uno/current_context.hxx" #include "unotools/pathoptions.hxx" -#ifdef LIBO_FEATURE_HELP +#if HAVE_FEATURE_HELP #include <helpcompiler/compilehelp.hxx> #include <helpcompiler/HelpIndexer.hxx> #endif @@ -386,7 +387,7 @@ void BackendImpl::implProcessHelp( data.dataUrl = xPackage->getURL(); if (!package->extensionContainsCompiledHelp()) { -#ifdef LIBO_FEATURE_HELP +#if HAVE_FEATURE_HELP const OUString sHelpFolder = createFolder(OUString(), xCmdEnv); data.dataUrl = sHelpFolder; |