Commit graph

469280 commits

Author SHA1 Message Date
Julien Nabet
8ee18d0bb5 Clear also m_aDestTypeInfo in dtor like m_aTypeInfo (dbaccess/WCopyTable)
Change-Id: Ia73503628451a3e5ee5121022545c92b50d12b23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125261
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2021-11-17 07:05:40 +01:00
Mike Kaganski
f007f32958 tdf#145711: filename may be 1-character, and must not contain path separator
Surfaced after 6ea7ca4578

Change-Id: I4975f51a7a0ca73eccfd17338abc122254b57113
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125338
Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-17 06:15:17 +01:00
Eike Rathke
eec32be26d Add script codes to standalone {mis} tags
Also, mis-Medf is dmf-Medf.

Change-Id: I5d0766d63effb985a94355a95cfb6c447362051f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125339
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
2021-11-17 01:51:05 +01:00
Stephan Bergmann
696e60427e loplugin:finalprotected
Change-Id: I16d32d51266fc32e8ee37f9e1deed4c9577764b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125316
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-11-16 22:40:44 +01:00
Caolán McNamara
d581103943 WrtStt->WrdStt for consistency with the other word start abbrevs
Change-Id: I4ec773b5867d804d9c293c4c89cb9be4acb017b8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125315
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16 22:14:33 +01:00
Xisco Fauli
e36fddde8a uitest: sw: ExportToEPUB is already tested
Change-Id: I3c125a9193f7d38d30c0c0ab76296c80c46e4245
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125323
Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2021-11-16 21:19:16 +01:00
Eike Rathke
263961306e Update to ICU 70.1
Unicode 14, 5 new scripts, 12 new Unicode blocks.

In i18npool/qa/cppunit/test_breakiterator.cxx
TestBreakIterator::testLao() had to be disabled/adapted.
Needs to be investigated, see comments there.
As is, Lao script word break has regressions.

Correct UBLOCK_TANGUT_SUPPLEMENT Unicode range endpoint to
0x18D7F, see
https://www.unicode.org/versions/Unicode14.0.0/erratafixed.html
for which ublock_getCode(0x18D8F) now returned UBLOCK_NO_BLOCK and
thus luckily the assert in svx/source/dialog/charmap.cxx hit.

Change-Id: I4bad16ecfab3f44be365b8f884c57f34af68218e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125322
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
2021-11-16 20:23:45 +01:00
Noel Grandin
a2bb4fc917 rtl::Static->thread-safe static
Change-Id: I0f39dea1392eb2ba11881615aedbe386870282ee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125324
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-16 19:53:51 +01:00
Mike Kaganski
ae8802cef1 Drop redundant 'using rtl::OUString'
obsoleted by 6080259862

Change-Id: I246dc6050fe7adf60ab3c836db3cfa781578d483
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125142
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-16 19:48:15 +01:00
Xisco Fauli
837bb7370b tdf#139922: sw_uiwriter3: Add unittest
Change-Id: I4401ba7d00dae654a6e3c897719e5f1a112a9abb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125318
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2021-11-16 19:40:51 +01:00
Luboš Luňák
09dfad9565 fix drawBitmap() unittests with Skia/HiDPI
Force non-smooth scaling to get exact pixel values. Introduced
in 6792e6e5e4.

Change-Id: Iec2633e9ef8e930688c95ceb1037696456f344f5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125312
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 18:37:36 +01:00
Luboš Luňák
a0a4709eb4 try to avoid scaling bitmaps twice in Skia when drawing
The scenario is that something scales a bitmap and then asks for it
to be drawn (possibly drawn scaled again). One example is
OutputDevice::DrawBitmap() subsampling the bitmap that according
to c0ce7ca488 is supposed to improve quality with headless(?)
backend, but with Skia it's pointless and it breaks things like
caching during repeated drawing, because then GetSkImage() will need
to generate a new SkImage each time.
Since Skia backend uses delayed scaling, these cases can be sorted
out by checking the stored SkImage and using it if suitable, as
the original image is as good as the rescaled one, but often
it's better - it may be cached, sometimes the scaling operations
cancel each other out (often the case in HiDPI mode).

Change-Id: I0af32f7abdf057a3bdda75247d2dc374eaf1bc4b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125311
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 18:37:21 +01:00
Luboš Luňák
f33b76b4e6 make SkiaHelper::dump() available also in non-dbgutil builds
They are just a set of small functions, and I sometimes need
to debug optimized builds too.

Change-Id: I6350476e8c7fef85460a88b9e3d56d02213764ea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125310
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 18:37:06 +01:00
Luboš Luňák
f22e5078cf do not rebuild PCHs on icecream/ccache change, take #2
It turns out $(gb_SPACE) is not just one space.

Change-Id: I8f5cd13d14d71f0a6dd7d8b89ee857f983d27d20
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125309
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 18:36:23 +01:00
Michael Stahl
71b9369f1c postgresql: upgrade to release 13.5
Fixes CVE-2021-23222.

Change-Id: I4e16fcc60c634382a864f66b211d0e0170a06db0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125308
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16 17:50:34 +01:00
Michael Stahl
0047e38da8 svtools: HTMLParser: don't insert EOF into strings
It's not a valid Unicode code point.

Change-Id: I96103f4c505047bdf0451619937b8e1b2efb127f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125307
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16 17:50:07 +01:00
Michael Stahl
a7116b890c ofz#40766 svtools, sw: HTMLParser: really stop inserting control chars
35d248cab1 forgot to fix one place where
control characters were in a presumed XML declaration.

Another place looks missing where comments are handled, but it's not
clear if these can be passed on to Writer.

Revert the previous fix from commit
b3325ef8cd.

Change-Id: I11ad13de9122533626e512ce0384051e3e5bd97f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125306
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16 17:49:12 +01:00
Caolán McNamara
75a14a1e96 Related: tdf#142719 first time undo adds an exception it gets lost
Change-Id: Ie963e92a15ddd45316f999e950fff359d7dd6f5d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125314
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16 17:32:32 +01:00
Andreas Heinisch
7a2d8ee2b4 tdf#142781 - Calculate width/height keeping aspect ratio
Importing an HTML file including an image conserves the aspect ratio in
Writer.

Change-Id: Ia31b36884daf2728b0989ae7c1e6ece683543d7b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125170
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
2021-11-16 17:12:26 +01:00
Xisco Fauli
2f5657ca8e tdf#116640: sw_uiwriter4: Add unittest
Change-Id: If201d0825dc9ad6f6ed15d2367f1f717ec9dd1c4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125297
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2021-11-16 16:38:32 +01:00
Michael Stahl
3f54dc7469 svl: fix misleading comment
Change-Id: I41406200aa953081c2e2a6ab9cbe8c404d8b5d86
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125305
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16 16:08:30 +01:00
Justin Luth
59dc5d00b0 tdf#139922 sw autocorr: don't return GetPrevPara if isEmpty
This fixes a LO 6.2 regression caused by
commit 4cf5a46f16.

Change-Id: I4aee8f4e79a40a8b8f82faa3e62dead80a952510
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125037
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16 16:07:07 +01:00
Hossein
b0ce4e848f Use basegfx::deg2rad instead of *0.01745329251994
* Replaced multiplying by magic number 0.01745329251994 with
    basegfx::deg2rad() which is equal to M_PI/180.0
* Instances of this could be found using:

   git grep 0.01745329251994 *.cxx *.hxx

Change-Id: Ib813251f6223e4218fe977c0211732c22199295d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125294
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-16 15:54:30 +01:00
Tomaž Vajngerl
84b817130a Support reading back theme color from an ooxml document
ooxml supports theme colors and tint/shade value that additionally
changed the theme color. Read back which theme color + tint/shade
value was applied in the resulting color and add this attributes
as properties to be used by writer.
In sidebar theme panel the changing the theme colors now doesn't
takes this into account and changes the colors correctly.

[ Miklos: left out the Wrtier bits for now, focusing on Impress first. ]

(cherry picked from commit 16a0a2089e8572a35a36a7e649703893ecd06299,
from the feature/themesupport2 branch)

Change-Id: I8e0d62ec8c0534e603fb1e5fb000dcf84aea5da2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125304
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-11-16 15:40:36 +01:00
Ilmari Lauhakangas
fcbf3841c5 Related tdf#139031: add missing colons
Reporter mentioned a bunch of missing colons across the UI.

Change-Id: I278d0ad7073fb399c979f0fc52adc306f51ae49d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125147
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
2021-11-16 14:51:50 +01:00
Luboš Luňák
ae4a9d5cc5 add a vcl backend test that draws a sheared bitmap
Change-Id: I06838e01ed41ac41c8b578fd6c7d984f1c073e31
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125298
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 14:36:13 +01:00
Tomaž Vajngerl
5006dfcbc3 Theme color and tint/shade attribute for SvxColorItem
To support theme colors the SvxColorItem must be extended with
an optional attribute theme index to define the index to which
theme color current color belongs and an optional tint/shade
attribute define how much the color ha been additionally tinted
or shaded.

[ Miklos: left out the potentially breaking svx/sdi/svxitems.sdi
changes. ]

(cherry picked from commit ccdbf815e00dbe2ba21f7e86b6743df100b7401f,
from the feature/themesupport2 branch)

Change-Id: Ifb0481770be675181dafa94cd2778f374fcf3c7e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125296
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-11-16 14:19:40 +01:00
Alain Romedenne
e73e45e0ff Update git submodules
* Update helpcontent2 from branch 'master'
  to eb45e7df8aeeab7791876038c16345d5321e49b1
  - tdf#141474 Asc, AscW function signatures
    
    Change-Id: Ia85bf08bb1e5cb0e7db5717caec01e7e50c3b106
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124853
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 14:15:02 +01:00
Caolán McNamara
7fdcc2d3f2 Related: tdf#142706 mask with GDK_MODIFIER_MASK to ignore unwanted bits
Change-Id: I6d3f6fb6e9385b8077c23d5b7f78c43d9fb7b9d3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125295
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16 13:59:09 +01:00
Caolán McNamara
af1b9bf6e1 avoid using always-show-arrow in gtk4 < 4.4
Change-Id: Ie2df9cd91a5ea857965d24dc669a6c1d94c965a4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125293
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16 13:58:50 +01:00
Christian Lohmaier
eda22714fd Update git submodules
* Update translations from branch 'master'
  to a692f49808bffb7f402cd88cbf48e32b2044d111
  - update translations for master
    
    and force-fix errors using pocheck
    
    Change-Id: I93c02cdd542eb2c42765f65e9e78f2dc8f339005
2021-11-16 13:09:52 +01:00
Luboš Luňák
a0f35cd270 hard-require Clang for Skia also on Mac
Since Skia is now the default on Mac too. Clang on Mac should
be the given, but check for consistency.

Change-Id: I490d5434374d98b1d7a219c2bca48747e31eecac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122337
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 13:00:02 +01:00
Luboš Luňák
7ee24b7358 make Skia the default now on Mac too (again)
This is a re-land of commit 2489edcbe0,
now that HiDPI support (tdf#144214) has been implemented properly.
Originally coming from the ESC decision from Aug 26th.

Change-Id: I4d397282adeeac50ff19ba651b920c73080d3dfd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125273
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 12:59:44 +01:00
Noel Grandin
1170db278d rtl::Static->thread-safe static in jvmfwk
Change-Id: I049148d82eb306e8ba7fdc9f0cc650f45b05da0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125257
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-16 12:29:38 +01:00
Noel Grandin
2d2dc141f6 rtl::Static->thread-safe static in oox
Change-Id: I4436188aa52766a07dadc1accb52c524666ae2f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125258
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-16 11:54:10 +01:00
Caolán McNamara
0659c488ef Resolves: tdf#143511 SysObj is clipped out if the widget is out of view
so the sizes and relative positions are invalid under gtk, unclip
the SysObj when using get_extents_relative_to

Change-Id: Ibdaff20531a2a40b3b9b7dc9ac880d014db07d5a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125272
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16 11:26:33 +01:00
Katarina Behrens
71a186aedc tdf#135033: Make undo of adding and editing animations possible
weird this somehow sneaked out when converting custom animation
pane to sidebar when undoing other operations (delete etc.) stayed
in place

Change-Id: I6287682839d0e0401cc60bf82257d86765f3a858
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125110
Tested-by: Jenkins
Reviewed-by: Katarina Behrens <bubli@bubli.org>
2021-11-16 11:09:42 +01:00
Szymon Kłos
1430d76700 tdf#145694 sidebar: add glow and soft edge panel for fontwork
Change-Id: Ia501a0f1084e4b6d5ca2052a0241ee7675cd2f12
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125270
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Tested-by: Szymon Kłos <szymon.klos@collabora.com>
2021-11-16 10:53:49 +01:00
Luboš Luňák
621430208d optimize Skia's copyArea() to copy less data
Change-Id: Ia1cd0522643b58ea1be3ad974c1fc5f7fed657d4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125268
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 10:41:36 +01:00
Luboš Luňák
adba50494e log also whether SkiaSalBitmap has any pending scaling
Change-Id: I09a1921e203e1088577abf75350c8b41e4c78381
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125265
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 10:40:19 +01:00
Luboš Luňák
07e5e9f4c4 don't bother caching bitmaps that prefer shaders
Change-Id: Ibc78371f9e2ba92470714847bb6a5b8b96d1037f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125264
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 10:40:00 +01:00
Luboš Luňák
6792e6e5e4 when caching bitmaps in skia, take into account HiDPI
Since the image will be actually eventually drawn twice as big,
cache an image that is twice as big.

Change-Id: Iea0340cd92c102e453330723c797659c742feb63
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125263
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 10:39:43 +01:00
Luboš Luňák
29a2120fcf apply SAL_FORCE_HIDPI_SCALING on X11 even while drawing
It'll draw double-sized 1/4 of the content in the topleft corner
of windows, but it's still useful for some tests.

Change-Id: I20c6d2382d704ddcd67b8cb81eb7abf37b57a92f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125262
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 10:39:27 +01:00
Luboš Luňák
b5983dbe2c implement HiDPI support for Skia/Mac (tdf#144214)
The basic idea is the same as the 'aqua' backend, simply set up
a scaling matrix for all drawing. That will take care of the basic
drawing everything twice as large, which is twice the resolution.
And then blit this data to the window, which expects data this way.

Converting back from backing surface needs explicit coordinate
conversions, and when converting to a bitmap the bitmap needs
to be scaled down in order to appear normally sized. Fortunately
I've already implemented delayed scaling, which means that if
the bitmap is drawn later again without any modifications, no
data would be lost (to be done in a follow-up commit).

Unittests occassionally need special handling, as such scaling
down to bitmap not being smoothed, because they expect exact
color values.

Change-Id: Ieadf2c3693f7c9676c31c7394d46299addf7880c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125060
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16 10:38:54 +01:00
Johnny_M
67669707e0 Update git submodules
* Update helpcontent2 from branch 'master'
  to bcc3ccc059f426ef2d79295338e50bb7b7a6642a
  - tdf#132643 Translate German section IDs
    
    Change-Id: I19a2a9073c17b4785f1d76bdd073ef1248c567ad
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125192
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 09:58:37 +01:00
Johnny_M
0dbc636869 Update git submodules
* Update helpcontent2 from branch 'master'
  to 6ecaae4914ab0d7cea926c64407637ea6b05723d
  - tdf#132643 Translate German section IDs
    
    Change-Id: I0bfd3e56449f87f90b20d083b15b885d18a889e8
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125190
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 09:58:06 +01:00
Johnny_M
f7d02c3a66 Update git submodules
* Update helpcontent2 from branch 'master'
  to 88f6c6a5b87012345a2b5a06cfce640513a57106
  - tdf#132643 Translate German section IDs
    
    Change-Id: I77e097bc550945e9f55d0b14b028261b503301aa
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125191
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 09:57:19 +01:00
Johnny_M
e8b667f7ec Update git submodules
* Update helpcontent2 from branch 'master'
  to 1aa8bf640c894799bfd3c1ece4df34cbb5c29a6d
  - tdf#132643 Translate German section IDs
    
    Change-Id: I9e03d674b96a857255f6f34c87a4ceff2b16969c
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125189
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 09:56:39 +01:00
Johnny_M
09cfd99b85 Update git submodules
* Update helpcontent2 from branch 'master'
  to e713d1e606f3e87692bcbe629a6427a706859152
  - tdf#132643 Translate German section IDs
    
    Change-Id: I2371a142bd3f7c088acc402ebb3d3f21d376e485
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125187
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 09:55:50 +01:00
Johnny_M
0abf9d62c2 Update git submodules
* Update helpcontent2 from branch 'master'
  to 2ee280bfb365d3cee940f96a93957360a6025eec
  - tdf#132643 Translate German section IDs
    
    Remove unused.
    
    Change-Id: Ic6458663921fa886780b84180ad1239fe9ee3896
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125188
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16 09:55:12 +01:00