summaryrefslogtreecommitdiff
path: root/vcl/headless
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2019-05-15 12:25:26 +0200
committerAndras Timar <andras.timar@collabora.com>2019-05-15 17:22:37 +0200
commitad9d2faff8ccb216c85e617d4d86464a91f317e0 (patch)
tree6de1fcda50388c719325b3a96e17c49bec0517f6 /vcl/headless
parent8511fd9023548acfec7af730831a45378083bf93 (diff)
Attempt to load the theme when LibreOfficeKit is active.
Change-Id: Ie8640b7179a96cb40fb774ede097ca7b3640edd8 Reviewed-on: https://gerrit.libreoffice.org/72349 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com> (cherry picked from commit 7d55c2b8886ae00a60aa469503f596ee488c25c0) Reviewed-on: https://gerrit.libreoffice.org/72353 Tested-by: Jenkins
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpgdi.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index 74c27e9ba960..0f6fda87fd5b 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -594,9 +594,10 @@ SvpSalGraphics::SvpSalGraphics()
, m_ePaintMode(PaintMode::Over)
, m_aTextRenderImpl(*this)
{
- if (!initWidgetDrawBackends())
+ bool bLOKActive = comphelper::LibreOfficeKit::isActive();
+ if (!initWidgetDrawBackends(bLOKActive))
{
- if (comphelper::LibreOfficeKit::isActive())
+ if (bLOKActive)
m_pWidgetDraw.reset(new vcl::CustomWidgetDraw(*this));
}
}