summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-17gtk4: extend workaround for ampersand in paragraph dialog notebook labelsCaolán McNamara
Change-Id: Ib165f1ab1173f7bb6500d5dfff5f82e4216d9f42 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117380 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17gtk4: no need for ampersand workaround in an empty labelCaolán McNamara
Change-Id: I7e1327303589cc9c2bb24b72d5cac92ff0fc0bfb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117379 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17remove 'relief' from CheckButtonsCaolán McNamara
Change-Id: I8a17c36489946327113e63f80b952525ae4201a7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117377 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17tools: handle special chars correctly in XmlHandler + testTomaž Vajngerl
Add the char encoding handler when calling xmlOutputBufferCreateIO so that special chars are handled correctly. Previously we just set nullptr. Change-Id: I7ef44130869625cc4662bf168550a3f987390287 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117355 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-17indexing: remove indexing changes from html exportTomaž Vajngerl
Turns out that reusing HTML export wasn't the best way to generate output XML that can be used for indexing, so reverting those changes. The IndexingExportTest and the test file has been moved out of html to its own folder, so it can be reused. Change-Id: Ie2b34285775133322c16c05eee9c0e9712c86c3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117354 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-17gtk4: reorder the cell renderers in the comboboxesCaolán McNamara
as used in format, character for the the tickboxes for spellchecking support Change-Id: I7b7b60455beb0f262b2e4c40286dcaec26eb42dc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117375 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17gtk4: implement setting grid row/col/widthCaolán McNamara
as used in e.g. font features dialog Change-Id: I558e52b2a1ccc471673613b63b42599db7c00ac5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117374 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17there is no such thing as a 'margin' propertyCaolán McNamara
added in: commit e97bccdba42b464e2df8d5996d4cdc9b03b6c243 Date: Wed Dec 9 00:44:10 2020 +0530 tdf#128176 Add a vertical scrollwindow to fontfeaturesdialog there is a deprecated 'border' property and various margin-start/margin-end/margin-top/margin-button properties Change-Id: I4528106a6cd51a9feede471cd8a47b81cf0df49a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117372 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17split SurfacePaintable outCaolán McNamara
Change-Id: I07d2109080f19fb7cf95bc439e5d99ba3247c2bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117371 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17ScriptForge - Comments in code: pointers to help pagesJean-Pierre Ledure
Insert in each service module a pointer to the help page on https://help.libreoffice.org containing the user documentation of the given service. Example: SF_Array.xba contains a pointer to next help page https://help.libreoffice.org/latest/en-US/text/sbasic/shared/03/sf_array.html?DbPAR=BASIC Only addition of comments lines. No code change. Change-Id: I83899d9fab247d23e2d5123378e2fb3fd0ade60e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117370 Tested-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2021-06-17use string_view in the Translate APINoel Grandin
Change-Id: I0bb0ea9d39ed623928060ffd3f2e2bc36ba33209 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117272 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-06-17Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'master' to 21d0197b3705212a22b9e221ac1f624049516d9a - tdf#114930 Clarify associativity and precedence of operators to the help Change-Id: Ib55f0901235c082e88b49d1526b1123cd036f875 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/117347 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-06-17Adapt o3tl::temporary to C++23 P2266R1Stephan Bergmann
With the recent implemenation of <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p2266r1.html> "P2266R1: Simpler implicit move" in Clang 13 trunk as <https://github.com/llvm/llvm-project/commit/bf20631782183cd19e0bb7219e908c2bbb01a75f> "[clang] Implement P2266 Simpler implicit move", a --with-latest-c++ build started to fail with > In file included from sal/rtl/random.cxx:25: > include/o3tl/temporary.hxx:21:62: error: non-const lvalue reference to type 'double' cannot bind to a temporary of type 'double' > template <typename T> constexpr T& temporary(T&& x) { return x; } > ^ > sal/rtl/random.cxx:97:37: note: in instantiation of function template specialization 'o3tl::temporary<double>' requested here > return std::modf(random, &o3tl::temporary(double())); > ^ etc. (And fixing that by adding the recommended static_cast then triggered a false loplugin:redundantcast warning.) Change-Id: I222429e9872afdedf77a07014c0a2e9e06c60b50 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117335 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-06-17Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'master' to ae00877c467d6ceee7b5c84ba3be99f0cb1468a4 - Mute l10n Change-Id: Id49c3b5c606c98bbc58d9c06245e2cebf8296676 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/117300 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-06-17split NotifyingLayout outCaolán McNamara
Change-Id: Ib706331f9e6b3749559a0b78f1a07d442a674829 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117369 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17gtk4: undo overflow notebook insert in dtorCaolán McNamara
Change-Id: I2a051486346d4afabbf7f0f6f3b9683c8e0c9e62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117367 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17gtk4: restore double-decker notebooksCaolán McNamara
add a 'NotifyingLayout' to find out when the size of a widget changes now that size-allocate has been removed Change-Id: Iae55b7fafd2fd26c62afaedd777ae40e84fbb964 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117348 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-17Drop the "console" functionality of ProfileZoneTor Lillqvist
It was not used anywhere and had not been cherry-picked to the relevant vendor production branches so apparently it was just some temporary experimentation? It is good to reduce complexity and increase code similarity between branches. Change-Id: Ib6717063f96d901d65ec36d65f3683af31065f2b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117364 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2021-06-17svx: prefix member variables SdrViewEvent SdrView SdrObjGroupTomaž Vajngerl
Change-Id: Ic20c9dc7b8109cb095a883f2dfcec3e4f10b2428 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117352 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-17tdf#90401 xmloff: remove personal info of comments and changesLászló Németh
If Options → LibreOffice → Security → Security Options and Warnings → Options... → Security Options → Remove personal information on saving" is enabled. Use the same time (1970-01-01T00:00:00) for mandatory time stamps, and replace authors and creator-initials with "1", "2", "3" etc., also to avoid of joining adjacent redline ranges. Note: to see the work of the unit test in Linux command line: (cd sw && make UITest_writer_tests7 UITEST_TEST_NAME="tdf90401.tdf90401.test_tdf90401_remove_personal_info" SAL_USE_VCLPLUGIN=gen) Change-Id: I3b4d710dbeeee12177aff378597cd2b683ca6c25 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117319 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org>
2021-06-17svx: pragma once for some SdrObject subclassesTomaž Vajngerl
Change-Id: Ibbadf5069fbf5327a8a5964a3003bf6e258fd00b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117351 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-17tdf#115281 sc Windows: fix shortcut text Ctrl+` in View menuLászló Németh
In View->Show Formula, shortcut text was only "Ctrl" instead of the complete "Ctrl+`". Follow-up to commit 3f9fcf0e7f154e49bbffeaea925edb6055add494 "tdf#103388 Show the backtick used in shortcut in Calc View menu". Change-Id: Icef8904bac0b663d9702e62fcdc0ab1f0f4bd1ee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117332 Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
2021-06-17ScriptForge - Increment version numberJean-Pierre Ledure
Increment the versioning constants from 7.2 to 7.3 in next files modified: wizards/source/scriptforge/SF_Utils.xba modified: wizards/source/scriptforge/po/ScriptForge.pot modified: wizards/source/scriptforge/po/en.po modified: wizards/source/scriptforge/python/scriptforge.py Change-Id: Iba78215cea9c16f3e7dd9302b84c90815c7a9e68 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117258 Tested-by: Jean-Pierre Ledure <jp@ledure.be> Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2021-06-17basegfx: change template param to use int instead bool - Tuple2DTomaž Vajngerl
Change-Id: I82bf089ea95fc3b2b527aa55cc8c9f09aa684502 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117353 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-17tdf#142404 DOCX c15: fix centering when TabOverSpacingJustin Luth
I didn't notice the need for making the same exclusion that TabOverMargin made for centering when 7.2 got the new TabOverSpacing compat flag. But now I see it is still needed. Change-Id: Ia8069b5566eaf6dcdac6ff10ee0c60b849c5fa2e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117339 Tested-by: Jenkins Reviewed-by: Justin Luth <justin_luth@sil.org>
2021-06-17basegfx: generalise tuples with template class Tuple2D and Tuple3DTomaž Vajngerl
B2DTuple2D, B2ITuple2D and B2I64Tuple share a lot in common so we can generalise it as a template class. The same goes for the 3D variants - B3DTuple and B3ITuple. This is the initial attempt, but doesn't yet generalise all that is possible. Add some tests for the tuple variants that test the behaviour of overloaded operators and other common methods. Change-Id: Iee5ed15d58ea88e65ee7854bd05a87ceab22023d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117104 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-17basegfx: change template param to use int instead boolTomaž Vajngerl
Change-Id: I5e0f52ba9b9a82ad702204a2d35ea49a8d74aa55 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117326 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-06-16Adapt implicit OString return value construction to C++23 P2266R1Stephan Bergmann
With the recent implementation of <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p2266r1.html> "P2266R1: Simpler implicit move" in Clang 13 trunk as <https://github.com/llvm/llvm-project/commit/bf20631782183cd19e0bb7219e908c2bbb01a75f> "[clang] Implement P2266 Simpler implicit move", a --with-latest-c++ build started to fail with > comphelper/source/xml/xmltools.cxx:103:20: error: no viable conversion from returned value of type 'char [39]' to function return type 'rtl::OString' > return str; > ^~~ [...] > include/rtl/string.hxx:277:5: note: candidate constructor [with T = char [39]] not viable: expects an lvalue for 1st argument > OString( T& value, typename libreoffice_internal::NonConstCharArrayDetector< T, libreoffice_internal::Dummy >::Type = libreoffice_internal::Dummy() ) > ^ [...] etc. Change-Id: If34f143a1855fdd7cd22ea3d7594f9381d50a7ec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117336 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-06-16gtk4: redo theme unwanted active tab in overflow notebook into invisiblityCaolán McNamara
don't quite see why this doesn't work out of the box in gtk4, but putting it into the application-level style provider and using it via a style class works and probably makes more sense anyway. Change-Id: I4de196e462d7440174a0d67be25923bddab68197 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117337 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16gtk4: partial restoration of double-decker notebooksCaolán McNamara
there isn't an obvious candidate as to when to do the split though Change-Id: Iee6d74015263b180470fc0c90924617bcde14421 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117334 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16gtk4: Notebook label is now inside another widgetCaolán McNamara
Change-Id: If1f37959603dbe10e01d492321e9324ab55f10d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117333 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16gtk4: add some working dialogsCaolán McNamara
Change-Id: Iac09640fe05110ef01cd7e4645b5a9e0ea8eb48e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117328 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16remove SpinButton input-purpose propertiesCaolán McNamara
Change-Id: I68629d4350c43c80fdd00f9fcb8af3733753fe43 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117327 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16Update git submodulesStanislav Horacek
* Update dictionaries from branch 'master' to 8cd38fb5138f2e456506aaa889ec2b7042a7439e - Czech Hunspell: fix word "třídička" Change-Id: I36236d34249e9a8c5e8bfa48b30a26cf595d309b Reviewed-on: https://gerrit.libreoffice.org/c/dictionaries/+/117343 Tested-by: Stanislav Horáček <stanislav.horacek@gmail.com> Reviewed-by: Stanislav Horáček <stanislav.horacek@gmail.com>
2021-06-16Move enable_if from dummy template parameter to return typeStephan Bergmann
...and drop the no-longer necessary loplugin:implicitboolconversion exclusion (which had been necessary to avoid > [CXX] vcl/source/window/dockingarea.cxx > In file included from vcl/source/window/dockingarea.cxx:26: > In file included from vcl/inc/svdata.hxx:26: > include/o3tl/hash_combine.hxx:14:78: error: implicit conversion (Dependent) from 'bool' to 'std::enable_if_t<(sizeof(N) == 4), bool>' (aka 'typename enable_if<(sizeof(N) == 4), bool>::type') [loplugin:implicitboolconversion] > template <typename T, typename N, std::enable_if_t<(sizeof(N) == 4), bool> = false> > ^~~~~ etc.) Change-Id: If764365213cf29f7dec6fdd6a773dc9894dd15bd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117330 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-06-16cid#485150 silence Uncaught exceptionCaolán McNamara
for the record coverity[foo] defect is marked as intentioanl coverity[foo : FALSE] defect is marked as false positive coverity[foo : SUPPRESS] detect is not saved at all Change-Id: I1277c4426b5fa9efde8a9227c2813d53deb56555 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117325 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16stray unwanted 'relief' property on random checkboxCaolán McNamara
Change-Id: Id942f88780d4f697df44433180343ca3c763ed67 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117321 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16tdf#142404 DOCX c15: line full before out-of-bounds TabOverSpacingJustin Luth
MS Word 2016 does something very weird. It attaches a TabOverMargin to the previous word, and pulls it down to a new line. Well, I don't think we want to attempt anything silly like that, but at least we can have the tab itself start on the new line (and thus take up the whole line). This seems to be true only for a left-tab. The other tabs have a different kind of strangeness that I haven't identified yet. In order to do that, when we request a tabstop position, we must query a tabstop beyond the end margin. So modify the GetTabStop function to allow for not checking against an nRight position (when passed a zero). This is complicated by the function's ability to ALWAYS return the first tabstop - even if it is past the given right-most edge. So I made nRight modifiable, so that in this case, it isn't considered to be past the right edge. That is fine for both cases where this function is used. It is a bit ugly, but I don't see how to make it cleaner, when these inherent complications are already built-in. This also has an impact on older DOCX, but the impact is still valid. (In those, the entire paragraph extends past the end in Word. With this patch, at least the first line becomes more than just an auto-tabstop.) Change-Id: I42791a959aea2932b5776789ba45307fbca41a5f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116878 Tested-by: Jenkins Reviewed-by: Justin Luth <justin_luth@sil.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-06-16xalign of 0.5 is already the defaultCaolán McNamara
so no need to make it explicit Change-Id: I933fd914a3a7c408b836a85fee7acb39e731990f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117320 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16Resolves: tdf#142874 missing translation propertyCaolán McNamara
since... commit 15664117ef4db51bdcabb46b7990573509da0d73 Date: Thu Jul 25 21:40:48 2019 +0300 tdf#125923 Fix reset button. Change-Id: Ib589aa32221eaa33a13a17a00c2edb51866a5daa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117315 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16resave with latest gladeCaolán McNamara
Change-Id: I1fac93fc43c80fb986e5b09b497c644be6852b52 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117314 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16tdf#135316 docx open performanceNoel Grandin
avoid unnecessary SwNumFormat creation Change-Id: I62a16fdeb1225606a54f384e5196e5137e8d2139 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117271 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-06-16tdf#38187 Create back link from footnote text to anchor in textGeorgy Litvinov
Change-Id: I1ddf447975872a45447bfa86d050c886f4191962 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117205 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-06-16tdf#59323: pptx export: slide footers roundtrip unit testSarper Akdemir
Roundtrip test that checks the slide footers, and their placeholder indexes. Change-Id: I9c4b819092ac6699617d71538c35b066d6e6f974 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117013 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-06-16tdf#59323: pptx export: add support for slide footersSarper Akdemir
Adds support for exporting slide footers to PPTX. Slide footers are exported as shapes that use placeholder indexes to refer to the shapes on master. To make the references work they are exported to layout slides too. Change-Id: I8bfde520b0aec66405523c719844e69c6fc15b79 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117012 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-06-16both children are at position 0Caolán McNamara
instead of one at 0 and the other at 1 Change-Id: I1943d2e68f39fb463d76237d6eb0bffe800a6b6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117313 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16gtk4: reenable some more working dialogsCaolán McNamara
Change-Id: Iaa8d77b231f8366ff4c33221691e9a3cadb73fa4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117312 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16tdf#59323: pptx export: add initial support for lstStyles in textboxesSarper Akdemir
Adds initial support for writing lstStyles that are specific to a shape. Current implementation only writes first paragraph and first textruns properties in it. Made WriteParagraphProperties return a bool that determines whether or not it wrote a pPr tag. Needed this since lvl1pPr tag should be started even if there was no paragraph properties since run properties also written inside it. Change-Id: Ie0cfc9b9f221093db3a1111ca29140a6dfb5e8ad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117011 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-06-16set default width/height of minimum for dialogCaolán McNamara
Change-Id: I25ea3a44f7bda7916bb129e7642150c80b9dab11 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117291 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-06-16resave with latest gladeCaolán McNamara
Change-Id: I736005e7a6d669dea75347bddcd8114ceea4fe33 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117290 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>