summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-04tdf#157289 normalize ellipse bounding box in oox exportRegina Henschel
The predefined geometry of a circular arrow shape has bottom-right vertex first and then top-left vertex of the bounding box of the ellipse. We now use the normalized rectangle to calculate the radii of the ellipse. Before this patch the calculation had resulted in negative radii. Because the ODF standard only states, '(x1, y1) and (x2, y2) define the bounding box of an ellipse.', but not which vertices to use, the fix is not made in changing the geometry of the circular arrow. Instead the export is changed to use the normalized rectangle. That is more general and will cover other shape types too. Especially non-primivite shapes might use other vertices than top-left and bottom-right to determine the ellipse. Change-Id: Ica859c9adc508a6517e30f111cd54518ec9929a9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157526 Tested-by: Jenkins Reviewed-by: Regina Henschel <rb.henschel@t-online.de>
2023-10-04tdf#157394 sw: fix inserting reference mark with existing selectionMiklos Vajna
Type "myword" in Writer, select it, Insert -> Cross-reference, set Name to "myname", click Insert. The body text now had "myword" twice, instead of creating a reference mark on the existing "myword" word. This went wrong in commit 16075474819696f920979969474aa8300f4af530 (sw, field insert: handle the Content param for refmarks and accept HTML there, 2022-12-21), because it assumed that in case the uno comand is dispatched with some reference text, then that has to be inserted at the cursor position and only then the refmark can be created on that range. It was not expected that the current Writer selection would show up as refmark text. Fix the problem by taking the refmark text from the uno command parameter only in case we don't have selection, which restores the old behavior on manual insert of a refmark and keeps the new uno command parameter working. Note that contrary to the bug title, inserting cross-references did work, but the trouble was the insert of the duplicated word. Change-Id: I1a8b002c2a6f196975a18e01f0e8c457cfb416bf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157524 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-10-03Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'master' to 330186afbf28123351e97dc7f67583952e0b6ff7 - tdf#155875 UI cmds Writer/Help in Help(49) + refactoring + Help part, search commands. Change-Id: I9f22318164f53107fc1d84bedc1c0ae67e6d6448 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157522 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-10-03Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'master' to c4ef220076879c2e0061af81c62611068d2182b8 - tdf#155875 UI cmds Writer/Help in Help(48) + refactoring + Help part. Change-Id: I7ce7c293a283c62040f351816843a2f8f84ca9e4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157521 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-10-03tdf#145538 Use range based for loops in idl:objectYli875
Change-Id: I7c9935254be5bea050a09859cebbc4112894999b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156858 Tested-by: Jenkins Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2023-10-03tdf#155512: oox: ppt: abstraction "importMasterSlide"Henry Castro
Signed-off-by: Henry Castro <hcastro@collabora.com> Change-Id: Icfe8e3abbada7f728b2ad1f8e300a688f51d8f75 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157386 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> (cherry picked from commit 84ac58c37fffa0c8b6d55c70009515d013ad65b4) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157468 Tested-by: Jenkins
2023-10-03tdf#155756 sidebar properties not displaying height over 100Caolán McNamara
Change-Id: I5ea2441319e0d7c34ffdcd179d8a82738da4733f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157519 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-03Simplify long if statementsHannah Meeks
Change-Id: I379fb5809e5e00788445bcf9cebdcaba563b1af4 Use structured binding, fixup Change-Id: Ibd52ff1313336aa8a082477dee3ea7fce0f1d3f9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157492 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-10-03tdf#126449 sw floattable: fix too small height of non-last anchorsMiklos Vajna
The bugdoc had an outer inline table, a middle inline table and an inner floating table. The floating table is expected to be on pages 2, 3 and 4; actually it was only on page 2 and 3. This happened because the fly frame that should be on page 4 was on page 3, leading to overlapping text. And that bad fly position seems to happen because the anchor frames just have a 1 line height (~269 twips instead of the fly height). Fix this similar to how "first paragraph only" wrapping works: increase the (anchor) text frame height, even if the contained lines would not require that amount of height. With this, finally the DOCX version of the bugdoc lays out reasonable (all 5 pages). Change-Id: Ib08bf34be61eb2b4d8656887f83ac7fd17e3b252 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157507 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-10-03Use Degree100Mike Kaganski
Change-Id: I133dbe40d57eda77b64f3e38631da30f296489f4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157517 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-10-03accessibility: avoid OUString creation by using unicode OUString literalsArnaud Versini
Change-Id: I0f1f8c4e7601c68af607d6c540527e2979520586 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157136 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-10-03sfx2: fix gcc dbgutil -Werror=unused-variableMiklos Vajna
/home/vmiklos/git/libreoffice/master/sfx2/source/appl/workwin.cxx: In member function ‘void SfxWorkWindow::ToggleChildWindow_Impl(sal_uInt16, bool)’: /home/vmiklos/git/libreoffice/master/sfx2/source/appl/workwin.cxx:1861:27: error: unused variable ‘pCW’ [-Werror=unused-variable] 1861 | if (SfxChildWin_Impl* pCW = Get_BySaveId(aChildWins, nId)) | ^~~ /home/vmiklos/git/libreoffice/master/sfx2/source/appl/workwin.cxx: In member function ‘void SfxWorkWindow::ShowChildWindow_Impl(sal_uInt16, bool, bool)’: /home/vmiklos/git/libreoffice/master/sfx2/source/appl/workwin.cxx:1990:27: error: unused variable ‘pCW’ [-Werror=unused-variable] 1990 | if (SfxChildWin_Impl* pCW = Get_BySaveId(aChildWins, nId)) | ^~~ Change-Id: Iecc60032459ca8a6543f3836f17b76b25939cda9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157516 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-10-03tdf#157170: clarify angle quotes autocorrect ruleStéphane Guillou
Change-Id: Idb514e0e0487a65e3057328a13d34659d706ab90 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157300 Tested-by: Jenkins Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
2023-10-03tdf#151384 Character Style internet link.. Testsahil
Change-Id: Ia402648b9b3feea64b7a8ba16c72dc439dbd6679 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157281 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2023-10-03ofz: Timeout, reduce limitCaolán McNamara
Change-Id: Id14418dc382c0d11554817fc37990e3f3cba3a05 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157514 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-03openssl: upgrade to release 3.0.11Taichi Haradaguchi
Change-Id: I80c6fde3b6ae526f46b6bc346f09b287cc88b032 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157433 Tested-by: Jenkins Reviewed-by: Taichi Haradaguchi <20001722@ymail.ne.jp>
2023-10-03ofz#62935 avoid negative numbers in olHanglJasoCaolán McNamara
Change-Id: I3898b95e9d2fe60690889ba259859ed9f66636d1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157512 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-03Try to use doubles in a saner wayMike Kaganski
This avoids convertion to integers too early, so makes the calculations more consistent (no more "use a truncated double later in a calculation involving doubles"). Also it moves variables into proper scopes. Change-Id: Idc11c30c2c6892db092a04a127eb31266b4b70e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157510 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-10-03tdf#156756 Icon sizes for the toolbar wrong (part2)Noel Grandin
my previous fix commit 715a6ea8cb3aa6c80edbb22909aac3f18b7daec6 Author: Noel Grandin <noel.grandin@collabora.co.uk> Date: Mon Oct 2 11:31:09 2023 +0200 tdf#156756 Icon sizes for the toolbar wrong had a bug which broke changing themes Change-Id: Icf19fee5034ec2795354641c62979b6284e1a5d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157506 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-10-03replace ErrorInfo with simpler mechanismNoel Grandin
Instead of returning ErrCode class everywhere, return a new class ErrrCodeMsg, which combines an ErrCode with the other parameters that are used to control the error reporting. I do not change everything that uses ErrCode here, I started from SfxBaseController/SfxMedium and worked outwards. This change serves two purposes (1) Replace the extremely whacky ErrorInfo mechanism we were using to smuggle information into the error handler reporting mechanism with a very straightforward approach of just combining it into the error class. (2) Allow us to capture the source location that produced the error, which makes debugging the source of a problem soooo much easier. Change-Id: I978b8f00c9851b41a216c7ebdef2ef94251d5519 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157440 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-10-03tdf#141908: CppUnittests: replace usage of sal_Int32 with colorsAnkit_Jaipuriar
Change-Id: I6c7d8d92fe6860cd213a3cbded2451e8788ae2f0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157196 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2023-10-03optimize DrawRect if we fill but no line colorCaolán McNamara
because that's the same as if we had line color the same as fill color Change-Id: I540b31c0dcd07dfddbbd9f8cf396f7df3a4edb4b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157498 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-03tdf#147906 Use std::hypot for Pythagorean additionAnkit_Jaipuriar
Change-Id: I155cf98404dea83121f95ad3e784bc0e862f46d2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157416 Tested-by: Jenkins Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2023-10-03sw: improve documentation for SwFormatSurroundMiklos Vajna
Mention which item set is expected to contain this and where is the UI. Change-Id: I63ee57218eb7c4bc9be4430eb90d98bd43739b83 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157502 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-10-03tdf#157370 Bring A11y issue to attention in the document viewJim Raykowski
when issue is clicked on in the A11y sidebar Change-Id: I9122e608e88568fa2deeee91b6cf4616b0f61db8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157200 Tested-by: Jenkins Reviewed-by: Jim Raykowski <raykowj@gmail.com>
2023-10-03tdf#157315 Don't set mark after inserting a file in a Master documentJim Raykowski
Removes setting a mark after inserting a file. Setting a mark here causes a selection to be made on mouse click in the document after inserting a file which probably isn't what is expected. Change-Id: I3e7597dfecb04c9b3cfba8081fa74dffcf0d78dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157032 Tested-by: Jenkins Reviewed-by: Jim Raykowski <raykowj@gmail.com>
2023-10-02Deduplicate and simplify some SfxWorkWindow methodsMike Kaganski
Change-Id: Ibd7153454f1efd1d311ac99b9c2529958f4ca3e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157500 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-10-02Remove unused/deprecated TypeDetection.xcuSamuel Mehrbrodt
Change-Id: I75b8e7b2ab14d46dc4ca966c9995c6f8e69eead1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157487 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
2023-10-02tdf#146619 Recheck include/s* with IWYUGabor Kelemen
Change-Id: Ia0a6330278b044f448c9928362308aadc8fc9a20 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156989 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
2023-10-02Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'master' to e0a3eafc3fabcdceab8324073548a0117908ef51 - tdf#128150 (related) Illustrate "use background" + Add illustration for "Use Background" for area fill in Impress + Refactor Change-Id: Ia70861904d9e4c3b1d126aa50b468cd226995792 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157431 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-10-02ScriptForge (SF_Session) validate Recipient arg of SendMailJean-Pierre Ledure
When the Recipient argument is absent when calling session.SendMail(...) or is not a string, an error message is raised, as should, but its content is wrong. The error message is now corrected. Change-Id: I248b6ce55c85a4b956f834c8e1ea7d0df40ab233 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157488 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2023-10-02tdf#157131: sw_uiwriter3: Add unittestXisco Fauli
Change-Id: I4a74712e5472002295c2febc7c12bcdb7f932e47 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157489 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2023-10-02lok: add broken package interaction handlerSzymon Kłos
in case of repair don't use template flag to not make file readonly so we can overwrite it and upload to storage updated version Conflicts: desktop/source/lib/lokinteractionhandler.cxx desktop/source/lib/lokinteractionhandler.hxx sfx2/source/doc/sfxbasemodel.cxx Change-Id: Ia460009fc3b77582dde06dd6f94a85aef3aee11b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157493 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-10-02drop use of urp: followed by newline of spaceCaolán McNamara
and just use space Change-Id: Ib2765855971691aa72643d3e3d5c06cdcbd634ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157435 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-02cid#1545284 fix UR: Uninitialized read of field in constructorCaolán McNamara
Change-Id: I6d2449f86c4d5745c6068b5df4bf362198cabd18 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157479 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-02tdf#157543 Add glue points to binary 5-point starRegina Henschel
The patch adds the glue points defined in 'Microsoft Office Drawing 97-2007 Binary Format Specification' to our corresponding preset 'msoStar'. This star shape is contained on page 1 in odp/shapes-test.odp. It had previously no glue points, but now it has five glue points. Thus I have updated the xml dump. Import from pptx is still broken, tracked in tdf#157216. Change-Id: Ifc9f28118fe23a3d37af0357b72bb23eeef6b894 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157446 Tested-by: Jenkins Reviewed-by: Regina Henschel <rb.henschel@t-online.de>
2023-10-02tdf#157164 Vertical Position preview does not show red line for baselineNoel Grandin
regression from commit f510ea2d7962a4325055c6380a0032331b4e87cf Author: Noel Grandin <noel.grandin@collabora.co.uk> Date: Wed Jan 12 11:49:35 2022 +0200 don't bother trying to draw stuff which is effectively invisible Change-Id: Idc947163521ebfb65b27204fb5c65b1f59fe6de3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157481 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-10-02tdf#156756 Icon sizes for the toolbar wrongNoel Grandin
So my change in commit 0558926c2f9201a12b4c46efc36b8a4080af4d46 Author: Noel Grandin <noel.grandin@collabora.co.uk> Date: Tue Jun 6 10:42:10 2023 +0200 use more officecfg for SvtMiscOptions Made an existing bug much worse. The underlying bug started in commit fd92b09db497a7dfd594a5418f87856dc3886bf9 Author: Caolán McNamara <caolanm@redhat.com> Date: Tue Feb 14 13:12:38 2023 +0000 tdf#153541 notify listeners when any of the icon sizes change which resulted in changes to icon sizes not being saved to the registry, because the registry layer would throw an exception when called from SvtMiscOptions_Impl::ImplCommit, because it does not like being passed null values for SidebarIconSize and NotebookbarIconSize properties. So I have done two things (1) finish removing handling of SymbolSet from the SvtMiscOptions_Impl code, and just use the officecfg:: layer. (2) Change the ImplCommit code to only pass down properties for which it actually has valid values. Change-Id: Ib7c09cac373060f5437b81c63e9b12411fdc1c68 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157483 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-10-02reduce allocations in InterceptedInteractionNoel Grandin
the list of intercepted interactions is static per sub-class, so just pass up a o3tl::span at constructor time. Change-Id: Ib45c5a3338e0eb3848486dfc707052f07492eb61 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157480 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-10-02Update git submodulesChristian Lohmaier
* Update translations from branch 'master' to a005336559523e33025cc23b144a4b6a0f89f5c6 - update translations for master and force-fix errors using pocheck Change-Id: I93d4f5b65843f98eda63af0f8e45468a0f9a073f
2023-10-02svx: prefix members of SdrHdlGradientMiklos Vajna
See tdf#94879 for motivation. Change-Id: I1da02ee14cb3cbc0cd51ccc4f612947b789ca46a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157478 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-10-02tdf#87638 - Modify slide pane title in Impress/Draw based on edit modeAndreas Heinisch
Change-Id: I0dd668324c32172144f29cf40c52e2b66e7895b3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157444 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
2023-10-02these can be finalCaolán McNamara
like ScDrawDefaultsObj is related to cid#1545815 API usage error and cid#1546386 API usage error Change-Id: Ib015a6c6c2e4b6425f218b603a41a8a0027e4a92 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157474 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-02cid#1546494 Dm: Dubious method usedCaolán McNamara
Change-Id: I19a4a9321d544eb6d9d37ffb82bbbbfc4f08661c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157473 Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-02cid#1545515 Dm: Dubious method usedCaolán McNamara
Change-Id: Ife18effd9e477e977e555aea03a78b312e99c6c5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157472 Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-02cid#1546292 DLS: Dead local storeCaolán McNamara
Change-Id: Id3afb3c3541f55da5e1bff6f139c7320d6760b0f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157471 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-02Mention correct config keySamuel Mehrbrodt
Change-Id: Icb7c3d8b0350aa3b086c54793f9107e873eba401 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157368 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
2023-10-02Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'master' to 67d1ef52211182f7e3dc3e15583b3732c32124d1 - Improve wording on title page Help Change-Id: I203e01aeac1a98c35ad85ef836f8a764d55e2b6a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157454 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-10-01cid#1545284 UR: Uninitialized read of field in constructorCaolán McNamara
and cid#1545614 UR: Uninitialized read of field in constructor Change-Id: I7d801651951fa7243cdd106f54f6a15bdfb0e423 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157470 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2023-10-01Resolves: tdf#157515 only remove RID_SVXPAGE_PARA_ASIAN onceCaolán McNamara
Change-Id: I65faa99444636c5bc5b21008d4cfb144fbcafb83 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157447 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>