summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉrico Nogueira <ericonr@disroot.org>2021-05-10 22:58:54 -0300
committerTomaž Vajngerl <quikee@gmail.com>2021-05-11 08:28:48 +0200
commit2dfecd43114a1d7e69e682d9145746e9aa18e051 (patch)
tree3dfe31e430479a27219bdb0c6f77bab3da863f5a
parenta67a30227ef32ab9fc3026bb19e48d4447df25d1 (diff)
vcl: fix build with vlc backend enabled
avmedia/source/vlc/vlcplayer.cxx tries to access the aWindow member directly, which leads to a compilation failure, since it's private. Change-Id: I08ba00f23652ced7184aa24fd1d3ad1cef441a66 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115367 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
-rw-r--r--include/vcl/sysdata.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index 63b7c810de3d..0cd0e037c823 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -73,9 +73,8 @@ struct VCL_DLLPUBLIC SystemEnvData
// however, the GTK3 vclplug wants to store pointers in here!
sal_IntPtr aShellWindow; // the window of the frame's shell
Platform platform; // the windowing system in use
-private:
- sal_uIntPtr aWindow; // the window of the object
public:
+ sal_uIntPtr aWindow; // the window of the object
void SetWindowHandle(sal_uIntPtr nWindow)
{