diff options
author | Andras Timar <andras.timar@collabora.com> | 2019-09-18 11:48:13 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2019-09-22 19:03:25 +0200 |
commit | 0976d3b966186422c1051c8513d4caaec8968826 (patch) | |
tree | 0a409c794748343105af199fb4376fa9fb0a2911 /framework | |
parent | 102f3e37a9439c6eba4f990576019eb7110fecdc (diff) |
Replace remaining occurrences of LIBO_HEADLESS with HAVE_FEATURE_UI
Change-Id: Ie2b04ee443dece851d3d96afbc932aa64369c75c
Reviewed-on: https://gerrit.libreoffice.org/79084
Tested-by: Jenkins
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/fwe/helper/titlehelper.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/source/fwe/helper/titlehelper.cxx b/framework/source/fwe/helper/titlehelper.cxx index 36141cfba0f1..cab7be43d50d 100644 --- a/framework/source/fwe/helper/titlehelper.cxx +++ b/framework/source/fwe/helper/titlehelper.cxx @@ -17,6 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <config_features.h> + #include <framework/titlehelper.hxx> #include <classes/fwkresid.hxx> #include <strings.hrc> @@ -577,7 +579,7 @@ void TitleHelper::impl_appendDebugVersion (OUStringBuffer& sTitle) OUString sVersion = ::utl::Bootstrap::getBuildIdData("development"); sTitle.append(" ["); sTitle.append(sVersion); -#ifndef LIBO_HEADLESS +#if HAVE_FEATURE_UI if (OpenGLWrapper::isVCLOpenGLEnabled()) sTitle.append("-GL"); #endif |