diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-11 18:00:38 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-11 18:05:05 +0300 |
commit | d404c67e8a0f597e3d2fdd027e8e822823c6b1ae (patch) | |
tree | 0632bd1f6b3aa09c4f90bde11a510c9f54d7c2e2 /vcl/source/window/window.cxx | |
parent | 54be385b3332a0ad615426a1085ef18b6f517af7 (diff) |
Don't use X11 concepts on iOS or Android
Change-Id: I39023acc08e652fcc9d365fe50a8240cbe0b610d
Diffstat (limited to 'vcl/source/window/window.cxx')
-rw-r--r-- | vcl/source/window/window.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 95c6f6140eed..9aa62897ef76 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -8504,7 +8504,7 @@ uno::Reference< XClipboard > Window::GetPrimarySelection() { uno::Reference< XComponentContext > xContext( comphelper::getProcessComponentContext() ); -#if defined(UNX) && !defined(MACOSX) +#if defined(UNX) && !defined(MACOSX) && !defined(IOS) && !defined(ANDROID) // A hack, making the primary selection available as an instance // of the SystemClipboard service on X11: css::uno::Sequence<css::uno::Any> args(1); |