diff options
author | Skyler Grey <skyler.grey@collabora.com> | 2024-11-08 17:53:47 +0000 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2025-01-30 16:30:56 +0100 |
commit | 523662727ccdd5c03842dd2c6607dace6b86cb41 (patch) | |
tree | a01f9af066e2629b53c9267dbb374d223caeac9a /solenv/bin/native-code.py | |
parent | 5d2b2b9f381bbfb19ffd393f361c1fdd4a898550 (diff) |
feat(iOS): Allow use of desktop clipboard code
Historically, iOS has used pasteboard code instead of the normal
clipboard code, forming a different clipboard flow for the Collabora
Online app for iOS. This is "not ideal" for consistency in clipboard
behavior between iOS and other platforms, so we're switching iOS to use
the same clipboard APIs as everywhere else. This means that we need this
desktop clipboard code to be compiled into iOS.
Change-Id: I42567ad64641913817a26d1494858393501b6503
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180946
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'solenv/bin/native-code.py')
-rwxr-xr-x | solenv/bin/native-code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index b64606bac16e..3992949f2311 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -128,7 +128,7 @@ core_constructor_list = [ "com_sun_star_comp_dba_ODatabaseSource", "com_sun_star_comp_dba_ORowSet_get_implementation", # desktop/lokclipboard.component - ("desktop_LOKClipboard_get_implementation", "#ifndef IOS"), + "desktop_LOKClipboard_get_implementation", # drawinglayer/drawinglayer.component "drawinglayer_XPrimitive2DRenderer", # embeddedobj/util/embobj.component |