Commit graph

469497 commits

Author SHA1 Message Date
Johnny_M
186cdc22ee Update git submodules
* Update helpcontent2 from branch 'master'
  to 649d6ca20c8e574e86a25318510b4ba611da94c3
  - tdf#132643 Translate German section IDs
    
    Change-Id: I2c676d21d8b78ca1f5307904508bbd620724ddfd
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125608
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-22 10:52:50 +01:00
Johnny_M
d09492732e Update git submodules
* Update helpcontent2 from branch 'master'
  to 430875f024037702e09291ee48c6dec481ad40c5
  - tdf#132643 Translate German section IDs
    
    Change-Id: I10ce80babf0e191f854f151a480d3340bf2eef0f
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125607
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-22 10:51:39 +01:00
Johnny_M
916fec758b Update git submodules
* Update helpcontent2 from branch 'master'
  to 598bf0b1deb8a4e0795a79c78001a10d3b262e87
  - tdf#132643 Translate German section IDs
    
    Change-Id: I1e582772a69cca77716f270b243bf8f73b173dcd
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125605
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-22 10:50:57 +01:00
Johnny_M
adb5ab8fbe Update git submodules
* Update helpcontent2 from branch 'master'
  to a6e8b1dcb95877d2d03586482e70e96f276961da
  - tdf#132643 Translate German section IDs
    
    Change-Id: I6ec193b5e751a9f1ceab602ef88582d01457fbb3
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125604
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-22 10:50:17 +01:00
Justin Luth
fbda2f3b7b tdf#132470 tabbar: revert back to bold font on visible tab
This is a partial regression to LO 6.3's
commit fad98c8641.

The current sheet is always selected, which is fairly
distinctive. However, it is possible to select
multiple sheets, and the current one should be
distinctly marked to differentiate it from
the other selected sheets.

Change-Id: Ib160535cccebcfcabee94d17e5941cc3cd23bb15
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125601
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2021-11-22 10:30:37 +01:00
Dr. David Alan Gilbert
4c577a0ada pszctrl: cppcheck undefined shift
cppcheck noticed that the shift in:

    for ( sal_uInt16 nCheck = 1; nCheck < 32; ++nCheck )
        if ( nCheckEncoded & (1 << nCheck) )

is undefined since 1 << 31 is implementation defined.
Make it 1u, and the others around.
(Not that we define bits that high, but we are explicitly checking it)

Change-Id: Ieb780ac999af71df2b48ce64daaf4b2878162e35
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125016
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-11-22 10:03:22 +01:00
Noel Grandin
626296cb6c osl::Mutex->std::recursive_mutex in LanguageTag
Change-Id: I75e2d0b78ebf4390ed67d94eb1021145f245fe50
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125631
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 09:52:34 +01:00
Noel Grandin
ef1e087dc9 osl::Mutex->std::mutex in MimeConfigurationHelper
Change-Id: Ib9a628d42448aea858271094ef5bdaac022b0f21
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125633
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 09:52:18 +01:00
Noel Grandin
2d073a759f osl::Mutex->std::mutex in OPropertyArrayUsageHelper
Change-Id: I4fd784f291fd6606b25520e3f08aa8692132e997
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125634
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 09:51:40 +01:00
Noel Grandin
a6ed758811 tdf#133835 speedup calc autofilter (7)
vcl::Font avoid allocating a new instance if the setter doesn't
change anything, saves 5%

Change-Id: I461a2a8e3709b3f3f20e431cb3b976ad47bed0ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125625
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 09:51:25 +01:00
Caolán McNamara
131c1c7da8 Related: tdf#145786 cooperate between our own grabs
don't try to workaround a grab if the grab is done by another
of our own popups, and on tearing down one of our popups, restore
the grab of its parent if that parent was one of our own popups.

This typically matters on X where we don't use GtkPopovers (unlike
wayland, where Popovers can escape the parent window). Things to test
are:

writer's watermark dialog: click the color button to get the 1st level
popup, then click the combobox to get the 2nd level one, select an entry
to return to the 1st level.
a) Clicking a valueset element should select that color, not dismiss the
popup without selecting a color.
b) Clicking the combobox to get the popup again should result in a popup
where the focus still follows the mouse (i.e. the 1st level popup
doesn't try and steal away the 2nd level grab)

sidebar: same scenario as above, except a color popover parented to a
sidebar pane and not a dialog.

Change-Id: Ib5d765b22b8a9b6b1a7806676c8fe3cfb7709734
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125638
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-22 09:47:19 +01:00
Caolán McNamara
873e4d30e3 gtk3: popover replacement for GtkMenuButton has to be modal
Change-Id: If1b18c4b39fbe82fd613ff0f62f0ff60fdaeeed8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125637
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-22 09:35:09 +01:00
Miklos Vajna
e6b75a22df sw: prefix members of SwDBManager, SwWebGlosDocShell, SwWordCountWrapper ...
... and SwZoomControl

See tdf#94879 for motivation.

Change-Id: I74f31e45a8c215d406371a23b64d548fbb851d28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125641
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
2021-11-22 09:09:27 +01:00
Hossein
7b0f5178d8 Cleaning up math in SvgNumber
* Simplifying math expression

Change-Id: Ie67874eb79879186a1b971fbdc2c02945bae9191
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123092
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-11-22 08:26:56 +01:00
Michael Meeks
4eb4057ab3 Crash when fetching clipboard data.
Seems like some unusual corner-case around HTML export.

	sw::DocumentContentOperationsManager::CopyImplImpl(SwPaM&, SwPosition&, bool, SwPaM*, bool) const
		/sw/source/core/doc/DocumentContentOperationsManager.cxx:5068
	sw::DocumentContentOperationsManager::CopyImpl(SwPaM&, SwPosition&, bool, SwPaM*, bool) const
		/sw/source/core/doc/DocumentContentOperationsManager.cxx:4609
	sw::DocumentContentOperationsManager::CopyRange(SwPaM&, SwPosition&, bool, bool, bool) const
		/sw/source/core/doc/DocumentContentOperationsManager.cxx:1936
	SwEditShell::CopySelToDoc(SwDoc*)
		/sw/inc/pam.hxx:193 (discriminator 2)
	SwFEShell::Copy(SwDoc*, rtl::OUString const*)
		/sw/source/core/frmedt/fecopy.cxx:224
	(anonymous namespace)::lclOverWriteDoc(SwWrtShell&, SwDoc&)
		/sw/source/uibase/dochdl/swdtflvr.cxx:413
	SwTransferable::GetData(com::sun::datatransfer::DataFlavor const&, rtl::OUString const&)
		/include/sfx2/objsh.hxx:866
	TransferableHelper::getTransferData2(com::sun::datatransfer::DataFlavor const&, rtl::OUString const&)
		/include/com/sun/star/uno/Type.h:121
	TransferableHelper::getTransferData(com::sun::datatransfer::DataFlavor const&)
		/include/rtl/ustring.hxx:438
	getFromTransferrable.isra.0
		/include/com/sun/star/uno/Any.hxx:151
	encodeImageAsHTML
		/desktop/source/lib/init.cxx:4382
	doc_getTextSelection

Change-Id: I1af52d827ebdc9bbc5278f56547d1b3fd1b87e7c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125454
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-11-22 08:23:51 +01:00
Noel Grandin
c36a21e4a3 osl::Mutex->std::mutex in WindowCommandDispatch
Change-Id: Ia89f4a7b1f444a031e8f58f644ba9129f8c48942
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125622
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 07:55:42 +01:00
Noel Grandin
16289b6de6 osl::Mutex->std::mutex in XFrameImpl::windowShown
Change-Id: I1e56d0931a6e814cb9a4faa6a06e70b3740cb728
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125628
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 07:55:31 +01:00
Noel Grandin
9b0ea78959 use more OInterfaceContainerHelper3 in ContentImplHelper_Impl
Change-Id: Id4e4fca8a5a4e2d050752e666a843e7d8661ec0f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125635
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 07:55:24 +01:00
Noel Grandin
b67257c5dc osl::Mutex->std::mutex in GlobalSettings_Access
Change-Id: I5162a157fd07870bf768947b32e8afe8f1fb0a02
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125629
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 07:55:13 +01:00
Noel Grandin
60e185446e osl::Mutex->std::mutex in TransliterationImpl::loadBody
Change-Id: I15441110bf27c3f2ad9a61389339c55b9c4c3bb4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125632
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 07:55:06 +01:00
Noel Grandin
7805a224b9 tdf#133835 speedup calc autofilter (6)
INetURLObject::SetPort Avoid allocating temporary string on heap,
saves 20%

Change-Id: I61ba4bd80c561266341143e35650b54b9d70f1d3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125624
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-22 07:50:59 +01:00
Andrea Gelmini
dc50ac6f71 Removed duplicated entry in Korean autocorrect
Change-Id: Ibc640574517da486af8b35e736a45c1adcf78434
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125639
Tested-by: Jenkins
Reviewed-by: DaeHyun Sung <sungdh86+git@gmail.com>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2021-11-22 07:15:06 +01:00
Hossein
6e7f06c297 Convert #define to enum
* Converted multiple symbolic constants using #define in wmfreader.cxx
  to enum

Change-Id: Ie55f27414c230cd624cacb805897933707244ed6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122734
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-22 07:06:51 +01:00
Andrea Gelmini
7b73163e6d Removed break after return
Change-Id: I0ad0ae7074905075cdff46ded69eaaa07570f0ca
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125075
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2021-11-21 21:40:55 +01:00
Caolán McNamara
2221c6ffb3 gtk3: consider replacement for popovers visibility when queryed for it
Change-Id: I4ca71f8544720e99514abe78717dcd07617c00cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125475
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-21 20:30:47 +01:00
Noel Grandin
449977192b osl::Mutex->std::mutex in ActionLockGuard
Change-Id: I8081d017f8a03be94b60011fcd4eb34eba786aa9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125623
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 19:43:10 +01:00
Noel Grandin
d54a1380d1 osl::Mutex->std::mutex in ConfigurationAccess_FactoryManager
Change-Id: I0e7a6eb4700e1108b31dfdf8681e8f4743ab7c5d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125618
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 19:42:48 +01:00
Noel Grandin
c33b0e928e osl::Mutex->std::mutex in ConfigurationAccess_ControllerFactory
Change-Id: I2e526ff2dc9f02850bd9fc510c63b5d9db24af58
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125619
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 15:47:48 +01:00
Noel Grandin
dc2010964f tdf#133835 speedup calc autofilter (5)
Tweak INetURLObject to reduce the number of
OUString and OUStringBuffer we create,
saves 5%

And add a asView() method to OUStringConstExpr,
to make it easier to pass to OUStringBuffer::insert

Change-Id: I115ec2398cfc8df39bd1efbbd5f0d5cc9712dba7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125600
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 15:47:25 +01:00
Noel Grandin
efd95650cb osl::Mutex->std::mutex in framework::ConfigAccess
Change-Id: I44d41db2498ea39fca309785278c1fe50d7ae8b9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125617
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 15:47:17 +01:00
Noel Grandin
c3b968a2f1 osl::Mutex->std::mutex in StatusIndicatorFactory
Change-Id: I2365e172ef8d631f30cfffdb650ebcb3035f77f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125620
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 15:47:05 +01:00
Harjot
805fd18d93 tdf#143148 Use pragma once in i18npool
Change-Id: Id67d8926fdc1616add1bd9de051911b2aae030e4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125419
Tested-by: Jenkins
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2021-11-21 14:40:56 +01:00
Noel Grandin
7ef421dbfb osl::Mutex->std::mutex in configuration_registry
Change-Id: If5561d6532716bfe3151f555a691aa5188264a1f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125603
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 13:27:20 +01:00
Noel Grandin
b28fdd1a15 osl::Mutex->std::mutex in OLockListener
Change-Id: I391de15296932ea65f2335b0df7a76e2f77a1a50
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125602
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 12:52:20 +01:00
Noel Grandin
0b46361ef8 tdf#133835 speedup calc autofilter (4)
Tweak INetURLObject::parseHost so it doesn't need its own
OUStringBuffer, and can just use the callers'
Saves 5%

Change-Id: I481fabd4272bc9f172dd751a7019090b95a65e2d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125599
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-21 10:26:52 +01:00
Jim Raykowski
437d5a4467 tdf#145207 Check for drawing object before Table to handle Tab key
to fix crash that can occur if done the other way

Change-Id: I378aa8444906d56647ab4fdde26d4ff1c9f511f5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125435
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-21 09:47:57 +01:00
Ming Hua
52b9a1fdbb Update git submodules
* Update helpcontent2 from branch 'master'
  to 9bff7df37fa8a6303ef5fe4f10085ef635be3a95
  - Related to tdf#141869: Update help for inserting cross-reference
    
    ...to match the UI changes made in commit
    81472692c4.
    
    Change-Id: If09e850fe769a1475e92f7605399316d74af95df
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125534
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2021-11-21 05:13:21 +01:00
Kevin Suo
918b62bea6 Change aboveWord and belowWord for Simplified Chinese locale
Per Wechat discussion by our Simplified Chinese l10n team.

上方 and 下方 are written languages which are more suitable for
cross-reference context, while 上面 and 下面 are spoken languages.
Also in this way they are consistent with MS Word.

Change-Id: Iccf8c330b2e5a04be3916b810a29ea0d62f26225
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125533
Tested-by: Jenkins
Reviewed-by: Eike Rathke <erack@redhat.com>
2021-11-20 23:09:40 +01:00
Mihail Balabanov
7193ed4401 Fix the above/below words for Bulgarian
Change-Id: Ib81da535411b07596785b06d7a5dac36a8a2ee28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124704
Tested-by: Jenkins
Reviewed-by: Eike Rathke <erack@redhat.com>
2021-11-20 23:02:33 +01:00
DaeHyun Sung
69db2d21a7 tdf#135727 add autocorrect lists for Korean Language
Add autocorrect lists for Korean Language.
Submit the Korean autocorrect lists as the result of Hacktoberfest 2021.
Link: https://github.com/libreoffice-kr/autocorr_kr/blob/master/DocumentList.xml

Change-Id: I6d0ca38581a21c59b98e96045bb6d091c8c89bf6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125548
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-20 22:08:47 +01:00
Caolán McNamara
0cc2a8e893 cid#1494386 Dereference null return value
Change-Id: I3dee29c68166c88bce30d2c88a6684be43f8e717
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125598
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-20 22:00:28 +01:00
Johnny_M
1559596632 Update git submodules
* Update helpcontent2 from branch 'master'
  to 45533ee580bb1dae59847fdce7ff269b4b7b3709
  - tdf#132643 Translate German section IDs
    
    Change-Id: I9ff9645bb3283ac824bc663897d40d2fbe43a931
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125596
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 20:45:58 +01:00
Johnny_M
1e151da05a Update git submodules
* Update helpcontent2 from branch 'master'
  to 2c7ee29857fd322080dac8e99151d31be991d0b3
  - tdf#132643 Translate German section IDs
    
    Change-Id: I71d7f73845bc57e3a1bc9acdaa8a8aa630e8351e
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125595
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 20:45:10 +01:00
Johnny_M
a870bab1bd Update git submodules
* Update helpcontent2 from branch 'master'
  to f3fcc169054a340ed3dbea4cd8905b2015417a23
  - tdf#132643 Translate German section IDs
    
    Change-Id: I1a45b29e40b1b1ba90258e20a2d909688bd0e302
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125593
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 20:44:35 +01:00
Johnny_M
a1c8ad8ded Update git submodules
* Update helpcontent2 from branch 'master'
  to 2667e50e6435579443057d55cc7a57f674f543ae
  - tdf#132643 Translate German section IDs
    
    Change-Id: I13bcfce76d858630b40c6c39566c0015c3ee470a
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125591
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 20:43:03 +01:00
Johnny_M
21e4e5fa68 Update git submodules
* Update helpcontent2 from branch 'master'
  to 1f0c493cddde7a30c5af42a1d895d05c1efed9d2
  - tdf#132643 Translate German section IDs
    
    Change-Id: I4a2f4422276d2944dcffcce597c7a4a013c3af6e
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125590
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 20:42:20 +01:00
Johnny_M
d63f182977 Update git submodules
* Update helpcontent2 from branch 'master'
  to 5628bb0f03d71e6a30ce93ce966962c42d0abc76
  - tdf#132643 Translate German section IDs
    
    Change-Id: I019ee515a93f3c9159a4b5d40b46a3568d72c61c
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125589
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 20:41:39 +01:00
Andrea Gelmini
d88bd04812 Fix typos
Change-Id: I21161022d1b1e09eeccd39169577992c2ec2d47a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125586
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2021-11-20 19:26:46 +01:00
Andrea Gelmini
9b431a9b55 Fix typos
Change-Id: I3db97c20af3815a366d93454c8fc66cf8bdd848e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125207
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2021-11-20 19:25:05 +01:00
Johnny_M
0b505dfff4 Update git submodules
* Update helpcontent2 from branch 'master'
  to a4d192693f92434fe8f92c745a15afc1e09b77d9
  - tdf#132643 Translate German section IDs
    
    Change-Id: I8fea2f205848348c38e507b9169dc7ca434b3b7f
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125588
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-20 19:24:58 +01:00