summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-04-06 22:53:16 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2021-04-06 23:25:10 +0200
commit6aa6b6c814b0353768fa7276d1f11d69a0ebedba (patch)
treedc63dee2704e3e25bbab8196f4136b8767d09773
parent598348c797854450d03c9064b45d4b4e525ebd15 (diff)
Fix --disable-pch build: missing include
... after b1253218e428640c0079916ddd5688c8fbb7171e Change-Id: I62f4c06d804258ed25a0906510ab215e8a8482e1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113704 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r--vcl/source/control/quickselectionengine.cxx1
-rw-r--r--vcl/source/edit/textdata.cxx1
-rw-r--r--vcl/source/window/keyevent.cxx1
3 files changed, 3 insertions, 0 deletions
diff --git a/vcl/source/control/quickselectionengine.cxx b/vcl/source/control/quickselectionengine.cxx
index e3b060896d5e..bea72d9d0c8b 100644
--- a/vcl/source/control/quickselectionengine.cxx
+++ b/vcl/source/control/quickselectionengine.cxx
@@ -23,6 +23,7 @@
#include <vcl/i18nhelp.hxx>
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
+#include <vcl/window.hxx>
#include <sal/log.hxx>
#include <optional>
diff --git a/vcl/source/edit/textdata.cxx b/vcl/source/edit/textdata.cxx
index 610b723d5057..79ddb8442d09 100644
--- a/vcl/source/edit/textdata.cxx
+++ b/vcl/source/edit/textdata.cxx
@@ -24,6 +24,7 @@
#include <cstddef>
#include <vcl/textdata.hxx>
+#include <vcl/window.hxx>
#include "textdat2.hxx"
diff --git a/vcl/source/window/keyevent.cxx b/vcl/source/window/keyevent.cxx
index eca00d411463..c5c092d519b2 100644
--- a/vcl/source/window/keyevent.cxx
+++ b/vcl/source/window/keyevent.cxx
@@ -18,6 +18,7 @@
*/
#include <vcl/event.hxx>
+#include <vcl/window.hxx>
KeyEvent KeyEvent::LogicalTextDirectionality (TextDirectionality eMode) const
{