summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-04-01 09:11:52 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2021-04-01 08:24:51 +0200
commit3595b8037d9d00fe5fa45f79dd19a032fc5f0ba5 (patch)
treefbf271a073ee52cffe62a970f5c075418576e461
parent3b92b0c7a6d6832917fbc5073c3299a1ffe861da (diff)
Fix --disable-pch Windows build - missing includes
... after commit 6a6cd129f34220fadf5d134a2dc2c1e368acbc4f Change-Id: I681fec2e801a02681f4f6722681832d7046e164f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113437 Tested-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r--include/vcl/fileregistration.hxx3
-rw-r--r--vcl/win/app/fileregistration.cxx5
2 files changed, 8 insertions, 0 deletions
diff --git a/include/vcl/fileregistration.hxx b/include/vcl/fileregistration.hxx
index 3dd16f728cc9..ad9ac876e9e8 100644
--- a/include/vcl/fileregistration.hxx
+++ b/include/vcl/fileregistration.hxx
@@ -11,6 +11,9 @@
#include <sal/config.h>
+#include <vcl/dllapi.h>
+#include <vcl/weld.hxx>
+
namespace vcl::fileregistration
{
VCL_DLLPUBLIC void LaunchRegistrationUI();
diff --git a/vcl/win/app/fileregistration.cxx b/vcl/win/app/fileregistration.cxx
index 863e66d0a3b1..7454f5e0c2f4 100644
--- a/vcl/win/app/fileregistration.cxx
+++ b/vcl/win/app/fileregistration.cxx
@@ -15,10 +15,15 @@
#include <comphelper/scopeguard.hxx>
#include <o3tl/char16_t2wchar_t.hxx>
+#include <officecfg/Office/Common.hxx>
+#include <unotools/resmgr.hxx>
#include <vcl/abstdlg.hxx>
#include <vcl/fileregistration.hxx>
#include <strings.hrc>
+#include <svdata.hxx>
+
+#include <map>
#include <prewin.h>
#include <Shobjidl.h>