summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-11 18:00:38 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-11 18:05:05 +0300
commitd404c67e8a0f597e3d2fdd027e8e822823c6b1ae (patch)
tree0632bd1f6b3aa09c4f90bde11a510c9f54d7c2e2 /vcl/source
parent54be385b3332a0ad615426a1085ef18b6f517af7 (diff)
Don't use X11 concepts on iOS or Android
Change-Id: I39023acc08e652fcc9d365fe50a8240cbe0b610d
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/window/window.cxx2
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);