summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-27osl::Mutex->std::mutex in rptxml::ExportDocumentHandlerNoel Grandin
Change-Id: Ida7fbf7a619f4a6beb9f05107110e9c9a0b60813 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147861 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-27UITest does not need to be a classNoel Grandin
Change-Id: I0d9b67076abe0acc20406f594b1724a909504a1a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147866 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-27It seems to work to compile also the MMX code for WASMTor Lillqvist
Change-Id: I27b56297a07e248102cae1bee4074b7be422ce23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147875 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-02-27Simplify a bitMike Kaganski
Change-Id: I2b4dc36e102f47b7fe61cd7c32bb2810cb35ea7d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147855 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-27Related: tdf#151429 Move fix for tdf#152717 to ScByteSequenceToStringMike Kaganski
The GetString method is only used in DDE context; and allowing it to handle Anys with OUStrings generalizes the fix, simplifying its use. Change-Id: I50952c25fa736a9ca73515801cc1b1903c62453e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147753 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-27osl::Mutex->std::mutex in FileViewContentEnumeratorNoel Grandin
Change-Id: Ib9f0b7ba39f5acbfbdbd664f74a4a91f645c8192 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147862 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-27sw: prefix members of OOXMLDocumentImpl, OOXMLFastContextHandler, ...Miklos Vajna
... OOXMLFastContextHandlerLinear and OOXMLParserState See tdf#94879 for motivation. Change-Id: I65f1b98918da40d9e3dbc27af54dadd38aaba8be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147854 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-02-27Optional may be avoided here, tooMike Kaganski
Change-Id: I6320f8b745ead030cb7ae304bdf85e0064a57380 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147751 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-27Use SAL_NEWLINE_STRING to avoid some wheel re-inventionMike Kaganski
Change-Id: Ib60ddf2b1111fb2d6caf22ac6e0848bd27373b9e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147750 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-27tdf#153709 Adapt message for Delete SheetLaurent Balland
When deleting sheets, the message is adapted to the count of selected sheets (singular or plural). The confirmation message is skipped if selected sheets are empty The message for pivot table data losing is replaced by regular confirmation message if both pivot table and data are selected Update UItests when there is no more confirmation Change-Id: I5cbd6d7cbe271ad86c5c68820b23df5a2307f3bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147309 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins Reviewed-by: Laurent Balland <laurent.balland@mailo.fr>
2023-02-27can use a reference instead of a pointerCaolán McNamara
Change-Id: I770983c2a46c2181db80243efa7c926e356d5e6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147745 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-02-27sw floattable: allow extra space on top of child content in SwFlyFrame::Grow_()Miklos Vajna
Once a floating table with a single cell wanted to span over two pages ("split row"), SwTextFrame::SplitFrame() was called, but then the table split failed because everything moved to the next page. The reason for this was that we tried to grow the text frame (and all of its parents: cell, row, table, fly), but a non-test growing a fly normally just works by recalculating its size based on the content, ignoring what growth is wanted. This is fine in the non-split fly case, but we do want to increase the size of a split fly to control what content remains in the current fly frame and what goes to a follow fly frame. Fix this by extending SwFlyFrame::Grow_() so it grows more than just its own content in the split fly case if the request wanted that. Now a single row can split, but the position of the follow fly frame is still bad. Change-Id: I1c6aa61996dab058c291331a795627d3fae1bca8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147858 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-02-27Simplify a bitMike Kaganski
Change-Id: I78f5dd63a70d52e7e0b257eed1c668bead2039d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147856 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-27tdf#151548 sw content controls: add UI for Id and TabIndexJustin Luth
This is my first go at adding anything to the UI. (I've done some fixing of other people's design, but never created anything new myself.) I took all my inspiration from Miklos' add110bad816fadeb96e7af0d4689389c04c263e. In the first iteration I did a fancy "same as id" scenario. But ID-as-unsigned, securing unique IDs, and English-only number recognition sadly made me decide to drop the fancy features. Now, both are simple, stand-alone spinbuttons that depend on tooltips to guide user input, not fancy comboboxes. It is important for the ID to display as unsigned, since that is how it is used as a "name" in VBA. It should be copy-pasteable for use in VBA programming. It is useful for the TABINDEX to display as signed, since it allows entering a -1 to disable tab navigation to the control. make UITest_sw_ui_misc Change-Id: Ia7c99888e60c33ac39616b24c7c1715604c3ec69 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147591 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com> Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-02-27Update git submodulesAdolfo Jayme Barrientos
* Update helpcontent2 from branch 'master' to a2868f03eda97185d96cf661624e3c8668876294 - This sentence is missing a subject Change-Id: I2eb66e5ced49809b86a3cdb48103381646b965a2
2023-02-27Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 976284c63182811da8da66144f22ff0502c880df - Impress: Rework of help files (main 01) Change-Id: I8daa90ed8b82d3b8775a613c47491f69f7be575a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147700 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-02-27no need to hold CollatorWrapper by std::unique_ptrNoel Grandin
allocate it inline, it is only one pointer in size Change-Id: Idb6217e6c9c37da92427aa6c497223a84015c553 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147742 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-27Update git submodulesMike Kaganski
* Update helpcontent2 from branch 'master' to 19fc476019704c84f0a4aad9846b2dac579d19a3 - Clarify that it's "character key" See e.g. https://ask.libreoffice.org/t/88505, where people expect capital letter in mnemonics to mean "exactly capital", i.e. with Shift. Change-Id: Id42c3aeaad6d04a4df58780f5ce5aca71532366b Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147835 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-27Update git submodulesSeth Chaiklin
* Update helpcontent2 from branch 'master' to 22b85af46f3eacc6abd45be4e78d13079851e55c - tdf#153722 "Chapter Styles" -> "Document Structure" Change-Id: I722631402b093ee29174e4ed029f543525f46951 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147596 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-02-26cid#1521198 Untrusted loop boundCaolán McNamara
move sanity check inside CountTTCFonts so it applies to the fd smuggle in via filename mechanism Change-Id: Id2fee5801d71720747a8736859681e7c9a324bc3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147740 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-02-26Fix Library_jpipe__staticsalhackStephan Bergmann
...after e7bad15bc13292defd99cb561f867d8b77692e97 "Unify osl_{g,s}etThreadTextEncoding implementation across platforms" caused > /etc/alternatives/java_sdk_11/bin/java: symbol lookup error: /home/tdf/lode/jenkins/workspace/lo_ubsan/instdir/program/libjpipe.so: undefined symbol: osl_getThreadTextEncoding (<https://ci.libreoffice.org/job/lo_ubsan/2694/>) Change-Id: I0e309da4bc88668e4ba57b53e2a60d6074d4c124 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147744 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-26Revert "Mark ssXX and cvXX off by default in font features dialog"خالد حسني
This reverts commit 3f9a8a3b7656470cfcf04c18a46a7b7bbeca8950. Reason for revert: Needs more work, currently causes all ssXX and cvXX to be added to font string when the dialog is used. Change-Id: I07eff710a2813e60fa4de3c23eb0a3c31d40e41d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147810 Tested-by: Jenkins Reviewed-by: خالد حسني <khaled@aliftype.com>
2023-02-26no need to hold SvtSysLocale by std::unique_ptrNoel Grandin
allocate it inline, it is only one pointer in size Change-Id: I736f3322784897054993fbddd423f36357f817c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147741 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to afa78ade65147468ca4f0b4ad168c4288e8a79b2 - Impress: Rework of help files /02/ 20 Change-Id: I898a05cd1b79e69e36cb1d65174fdd8733f7bd88 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147697 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 42a2c3690f7991cc6c854bc9454e361cf309a03f - Impress: Rework of help files /02/ 19 Change-Id: I864134d17d8a5b4d28a38a011b52099fcb01b9c6 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147696 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 1a80b1487e881fa471425e91f8682aaa2eea4381 - Impress: Rework of help files /02/ 11 Change-Id: I90cb7ddb3e21d3a0f7dbd92a189d0e594d529e7c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147648 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 2c1273a6d37db796f3d1c4de2e029d54fb310f73 - Impress: Rework of help files /02/ 08 Change-Id: I90d6d661dcbae087408c711be24eb3940147886a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147645 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schroeder
* Update helpcontent2 from branch 'master' to 32c3be6bcab10a181cfc6b10eef3d110b23f8b1a - Impress: Rework of help files /02/ 09 Change-Id: I1f3ff833ddf2e25b8cfc703c341c77119f72490c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147646 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 614abe4a78bc3b03a15e5c67d035ae1c9d4d16fa - Impress: Rework of help files /02/ 02 Change-Id: I37cfeec8472e51edc427de5b796db94dbf21b18c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147638 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 1bb9993d63ad88d8cb4879fa248ec6f355c7b41d - Impress: Rework of help files /02/ 01 Change-Id: Ib41b18357c354df2ce164e62adf989bb8cab73d5 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147635 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 953737d3aa31c0acda9adf3dfc4514fd2d8e8b58 - Impress: Rework of help files /02/ 04 Change-Id: I8facd25cb9f2fdc9c511f1564ba136d6ca9302cc Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147641 Reviewed-by: Sophia Schröder <sophia.schroeder@libreoffice.org> Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 1574b3f4a3c2d5e2d0402a200a79c77fd14cf015 - Impress: Rework of help files /02/ 07 Change-Id: I481815f6e4abea6f6d35e1b5174c4ace3ae47ef6 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147644 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 912f37e81e65829c80c5f388b60330be7eb7f496 - Impress: Rework of help files /02/ 03 Change-Id: Ibe8472e3787af74f440ccd483dfa956ba8a24fb9 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147640 Reviewed-by: Sophia Schröder <sophia.schroeder@libreoffice.org> Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to 7fe2c828d9888663387fba17611d380be48da1b1 - Rework of fontwork.xhp Change-Id: I42e36ebbd830ccaa12a8fc5b06fb8792ddaac018 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147449 Tested-by: Jenkins Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org> Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-02-26tdf#141474 tdf#151901 BASIC functions argument names do not match that of VBAAlain Romedenne
Basic function argument names can be used either by position either by name, keyword arguments ae called 'named arguments' in VBA - VBA doc: https://learn.microsoft.com/en-us/office/vba/language/concepts/getting-started/understanding-named-arguments-and-optional-arguments - libO Basic function signatures: https://help.libreoffice.org/latest/en-US/text/sbasic/shared/03090401.html?DbPAR=BASIC#bm_id3154422 This patch attempts to correct - all in one - malformed keyword names in BASIC function signatures. It reflects keyword arguments usage inside QA BASIC unit tests. In the end Online help pages may incorporate such practice. Change-Id: Iab0c92b2c152d2564662e51e68f1f736b8deefd0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145720 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
2023-02-26Cleanup general options tab a bitMike Kaganski
The crashreporter feature (and thus, the whole frame visibility) depends not on OS, but on the HAVE_FEATURE_BREAKPAD define. No need to control the checkbox visibility separate from the label, when we can show the whole frame selectively. The quickstarter feature is only available on Windows, since the systray support was removed in commit 3e9c908b73f0fe0978c9980750a06bbc9e02295e (remove Linux ("UNX") systray "Quickstarter", 2018-05-23). Change-Id: Id990b53a6bbfa6b42defec0cc196e7fe817a1924 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147738 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-26zxing: fix build after upgrade to v.2.0Mike Kaganski
Change-Id: If1b85a1f9f1b562aed8f357fd34434c8fe97e2f7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147737 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-26cid#1521508 Dereference after null checkCaolán McNamara
Change-Id: Ica9039a9aea7e1247ea957a8e25aaaafc944a97a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147686 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-02-26cid#1521509 Logically dead codeCaolán McNamara
and cid#1521507 Logically dead code Change-Id: I1d2c9ee4a4099fadb5da7a6850b4124488e2ebe8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147687 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-02-26ofz#56345 Heap-buffer-overflowCaolán McNamara
happening since: commit db115bec9254417ef7a3faf687478fe5424ab378 Date: Tue Feb 14 18:03:55 2023 +0100 tdf#78510 sw,cui: split SvxLRSpaceItem for SwTextNode, SwTextFormatColl but due to commit 29dfcc7521311e547fc069466cc3edc9fcbdbe03 Date: Mon Nov 23 16:17:37 2015 +0100 tdf#94088 add import of HTML inline graphics splitting the condition that used to fall through to default handling with an unrelated RES_BACKGROUND case instead Change-Id: I26a077c755f214cf35582ec146fcf34f87cc4494 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147688 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-02-26Missing ":" for "Background color" option in Area/HatchJulien Nabet
Change-Id: I021c983337500adb0dce348e8b7e3f42a2316e62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147736 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-02-26Hide Quickstarter from General options in Windows store appsMike Kaganski
In that environment, the shell:Startup shortcut created by us points to the quickstart.exe under Program Files\WindowsApps\<StoreSpecificAppDir>\program. The resulting shortcut can't launch, because of an inaccessible part in the path (the protected WindowsApps directory). So the feature does not work in the dialog. Windows store apps should advertise the Windows startup task in the manifest. Let's just hide the dialog entry in this case. A possible TODO would be to provide a button instead, which would open the Startup Apps system applet, similar to what we do for Default apps for file associations. Change-Id: Ieafdf6d23ced96506b01c6b3cf9fb12904696df1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147735 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-26tdf#152595 Colibre: Update icons in Start Center to match new brandingRizal Muttaqin
Change-Id: I2991bd9b68e2148b8852b95544f3e187148540d1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147734 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <rizmut@libreoffice.org>
2023-02-26tdf#153802: make it possible to change the UI with read-only docsXisco Fauli
Change-Id: I392ae68ef086a8c857e0d9d9e6117e27a85c9ba9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147655 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2023-02-25Update git submodulesSophia Schröder
* Update helpcontent2 from branch 'master' to e08030ec02875d4903bf22cfc7054f27822e7266 - Impress: Rework of help files /02/ 10 Change-Id: Ia95572f48e9502528895545a7edfa48507ef983c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147647 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-02-25Update git submodulesSeth Chaiklin
* Update helpcontent2 from branch 'master' to 9b4f3d78786ba6b1d014dfb6075b3245cd5f7bf2 - tdf#153560 update changes "Chapter"->"Heading"; "Level"->"Up to level" corrections to command descriptions Change-Id: Iebc4e664d8b0e2df2dd9640b30f5ab13b7729705 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147639 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-02-25word vba: tie "Word" to VBAGlobalsJustin Luth
This allows Word. to prefix global commands. While this is superfluous to use this profix in a DOC/X, the purpose is to allow the spreadsheet to call Word.<whatever> macro calls that execute in a word processor. At this point, it is simply added to SwVbaGlobals to allow macro calls to run without raising an error. make CppunitTest_sw_macros_test Change-Id: Ibeda67d458d4757be809d8669a4e424c4e6c3458 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147682 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com>
2023-02-25refactor DocPosUpdate, part 2Bjoern Michaelsen
- separate the message send from the field manager to the fields containing no start index from those send from the field to the frames containing an index - use member functions where possible: SwFieldType, SwFormatField, SwTextNode Change-Id: I488e4003b75bf7b0ae700f39e2364d6e34a8bbfc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147490 Tested-by: Jenkins Reviewed-by: Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org>
2023-02-25Remove duplicated includeAndrea Gelmini
Change-Id: I3848788410525b36a1ece56b125e75a2281fafe6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147474 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-02-25tdf#143148 Use pragma once in vclNirnayK
Change-Id: I99317552a32f0cb70333f542d54c86dbdd9d1746 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147676 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>