officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |    6 +++
 static/StaticLibrary_unoembind.mk                              |    6 ---
 udkapi/UnoApi_udkapi.mk                                        |   10 +++++
 udkapi/org/libreoffice/embindtest/Struct.idl                   |   20 
++++++++++
 udkapi/org/libreoffice/embindtest/Test.idl                     |   16 ++++++++
 udkapi/org/libreoffice/embindtest/XTest.idl                    |    8 ----
 unotest/InternalUnoApi_embindtest.mk                           |   16 --------
 unotest/Library_embindtest.mk                                  |    4 --
 unotest/Module_unotest.mk                                      |    1 
 9 files changed, 52 insertions(+), 35 deletions(-)

New commits:
commit 6158928209bd0f6bd532df9092f3a81ff615cdcc
Author:     Heiko Tietze <tietze.he...@gmail.com>
AuthorDate: Tue Feb 27 08:32:06 2024 +0100
Commit:     Heiko Tietze <heiko.tie...@documentfoundation.org>
CommitDate: Wed Feb 28 07:52:23 2024 +0100

    Resolves tdf#159863 - Default shortcut to access foot-/endnote area
    
    Change-Id: Ie95e94602a0dfd0c899f70d30d2c78e7063a4818
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164001
    Tested-by: Jenkins
    Reviewed-by: Heiko Tietze <heiko.tie...@documentfoundation.org>

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 43b6523c7616..56eb20da6bd3 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6196,6 +6196,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
             <value xml:lang="en-US">.uno:ParaRightToLeft</value>
           </prop>
         </node>
+        <node oor:name="E_SHIFT_MOD1" oor:op="replace">
+          <prop oor:name="Command">
+            <value xml:lang="x-no-translate">L10N SHORTCUTS - NO 
TRANSLATE</value>
+            <value xml:lang="en-US">.uno:JumpToFootnoteOrAnchor</value>
+          </prop>
+        </node>
         <node oor:name="END" oor:op="replace">
           <prop oor:name="Command">
             <value xml:lang="x-no-translate">L10N SHORTCUTS - NO 
TRANSLATE</value>
commit 80e2c4e5b9ef1d299c6caa271c9f177a4d011937
Author:     Stephan Bergmann <stephan.bergm...@allotropia.de>
AuthorDate: Tue Feb 27 16:29:18 2024 +0100
Commit:     Stephan Bergmann <stephan.bergm...@allotropia.de>
CommitDate: Wed Feb 28 07:52:11 2024 +0100

    Fold InternalUnoApi_embindtest into UnoApi_udkapi
    
    80d3f33876a2ad4ce32d3c6183131984e8c6b5da "Library_embindtest should use
    comprehensive InternalUnoApi_embindtest" was an attempt at making type
    information about that library available at runtime.  Which worked for cases
    where code directly called one of the types' cppu_detail_getUnoType 
function.
    But it would still fail for cases where code indirectly wants to obtain one 
of
    the types' information by type name---which is what upcoming code will do 
that
    changes the Embind'ing of UNO sequences.
    
    So InternalUnoApi_embindtest would need to become a UnoApi_embindtest whose
    instdir/program/types/embindtest.rdb would be available at runtime.  But 
I'm too
    dumb to convince gbuild to create that new UnoApi_embindtest.  So instead 
just
    tack the embindtest UNOIDL entities onto the existing UnoApi_udkapi for the
    EMSCRIPTEN-ENABLE_DBGUTIL case.  (Which requires that the single 
embindtest.idl
    is split into individual per-entity files, sigh.)
    
    Change-Id: Ie189b17213ac5b2de7a61ac5f97a143fa097337f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164057
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de>

diff --git a/static/StaticLibrary_unoembind.mk 
b/static/StaticLibrary_unoembind.mk
index 5d4438ef2f85..e2a2bfacd892 100644
--- a/static/StaticLibrary_unoembind.mk
+++ b/static/StaticLibrary_unoembind.mk
@@ -22,12 +22,6 @@ $(eval $(call gb_StaticLibrary_use_api,unoembind,\
     udkapi \
 ))
 
-ifneq ($(ENABLE_DBGUTIL),)
-$(eval $(call gb_StaticLibrary_use_internal_api,unoembind, \
-    embindtest \
-))
-endif
-
 $(call gb_StaticLibrary_get_target,unoembind): $(call 
gb_CustomTarget_get_target,static/unoembind)
 
 # vim: set noet sw=4 ts=4:
diff --git a/udkapi/UnoApi_udkapi.mk b/udkapi/UnoApi_udkapi.mk
index f18b9f758ddc..5f22026027ee 100644
--- a/udkapi/UnoApi_udkapi.mk
+++ b/udkapi/UnoApi_udkapi.mk
@@ -520,6 +520,16 @@ $(eval $(call 
gb_UnoApi_add_idlfiles,udkapi,com/sun/star/util,\
        XVeto \
 ))
 
+ifeq ($(OS)-$(ENABLE_DBGUTIL),EMSCRIPTEN-TRUE)
+$(eval $(call gb_UnoApi_add_idlfiles,udkapi,org/libreoffice/embindtest, \
+    Struct \
+    XTest \
+))
+$(eval $(call gb_UnoApi_add_idlfiles_nohdl,udkapi,org/libreoffice/embindtest, \
+    Test \
+))
+endif
+
 $(eval $(call 
gb_UnoApi_set_reference_rdbfile,udkapi,$(SRCDIR)/udkapi/type_reference/udkapi.idl))
 
 # vim: set noet sw=4 ts=4:
diff --git a/udkapi/org/libreoffice/embindtest/Struct.idl 
b/udkapi/org/libreoffice/embindtest/Struct.idl
new file mode 100644
index 000000000000..6b9d36e40a1b
--- /dev/null
+++ b/udkapi/org/libreoffice/embindtest/Struct.idl
@@ -0,0 +1,20 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+module org { module libreoffice { module embindtest {
+
+struct Struct {
+    long m1;
+    double m2;
+    string m3;
+};
+
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/udkapi/org/libreoffice/embindtest/Test.idl 
b/udkapi/org/libreoffice/embindtest/Test.idl
new file mode 100644
index 000000000000..ac7a1ece34f3
--- /dev/null
+++ b/udkapi/org/libreoffice/embindtest/Test.idl
@@ -0,0 +1,16 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+module org { module libreoffice { module embindtest {
+
+singleton Test: XTest;
+
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/unotest/source/embindtest/embindtest.idl 
b/udkapi/org/libreoffice/embindtest/XTest.idl
similarity index 97%
rename from unotest/source/embindtest/embindtest.idl
rename to udkapi/org/libreoffice/embindtest/XTest.idl
index a0884661b395..36aae5c7c394 100644
--- a/unotest/source/embindtest/embindtest.idl
+++ b/udkapi/org/libreoffice/embindtest/XTest.idl
@@ -9,12 +9,6 @@
 
 module org { module libreoffice { module embindtest {
 
-struct Struct {
-    long m1;
-    double m2;
-    string m3;
-};
-
 interface XTest {
     boolean getBoolean();
     boolean isBoolean([in] boolean value);
@@ -72,8 +66,6 @@ interface XTest {
     boolean isSequenceStruct([in] sequence<Struct> value);
 };
 
-singleton Test: XTest;
-
 }; }; };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/unotest/InternalUnoApi_embindtest.mk 
b/unotest/InternalUnoApi_embindtest.mk
deleted file mode 100644
index ed96a209ce81..000000000000
--- a/unotest/InternalUnoApi_embindtest.mk
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 
100 -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call 
gb_InternalUnoApi_InternalUnoApi,embindtest,unotest/source/embindtest/embindtest.idl))
-
-$(eval $(call gb_InternalUnoApi_use_api,embindtest, \
-    udkapi \
-))
-
-# vim: set noet sw=4 ts=4:
diff --git a/unotest/Library_embindtest.mk b/unotest/Library_embindtest.mk
index 6dc356ace4d5..8f53db5e52d0 100644
--- a/unotest/Library_embindtest.mk
+++ b/unotest/Library_embindtest.mk
@@ -19,8 +19,4 @@ $(eval $(call gb_Library_use_api,embindtest, \
     udkapi \
 ))
 
-$(eval $(call gb_Library_use_internal_comprehensive_api,embindtest, \
-    embindtest \
-))
-
 # vim: set noet sw=4 ts=4:
diff --git a/unotest/Module_unotest.mk b/unotest/Module_unotest.mk
index a12267817d27..196d6cd1af7f 100644
--- a/unotest/Module_unotest.mk
+++ b/unotest/Module_unotest.mk
@@ -33,7 +33,6 @@ endif
 
 ifeq ($(OS)-$(ENABLE_DBGUTIL),EMSCRIPTEN-TRUE)
 $(eval $(call gb_Module_add_targets,unotest, \
-    InternalUnoApi_embindtest \
     Library_embindtest \
 ))
 endif

Reply via email to