Commit graph

482251 commits

Author SHA1 Message Date
Aron Budea
0a2b048482 Make DeepL translator experimental for now
Needs documentation.

Change-Id: If77436a37b5ec40f3eb08a32f0315c1696428c12
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145184
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-10 11:38:04 +00:00
Noel Grandin
b00c1ea3c4 rename setAlphaFrom->ChangeColorAlpha and fix parameter
The nAlphaTo parameter was actually transparency. Change the
implementation and the call sites to actually use alpha.

Also remove one of the calls in Graphic::colorChange, because if the
BitmapEx has no alpha channel, the call was going to do nothing anyway.

Change-Id: I0bf27835b62596ac7c497c8606ceba04fcf859a1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145205
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-10 10:45:58 +00:00
Stephan Bergmann
f1d00da1bb OAccessibleImplementationAccess was apparently effectively unused by now
...as there were no calls to its OAccessibleImplementationAccess::getUnoTunnelId
so no code apparently made use of that XUnoTunnel

Change-Id: I35d392999f1c28e81f7ff4bf395f63642eb17bce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145250
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-10 10:21:16 +00:00
Miklos Vajna
71a479afb7 sw: add a new .uno:UpdateSections command
There was LOK API to insert a new section with provided HTML content and
to query it, but there was no LOK API to update such created section
with new names/contents.

This is needed in case Zotero wants to store citations with refmarks, in
which case it wants to store the bibliography with sections.

Introduce a .uno:UpdateSections UNO command that can do this: the
sections will be renamed if necessary & the content will be updated. The
content update is reasonably straightforward, because the section always
contains at least one empty paragraph, so there is no danger in simply
deleting the old content before inserting the new one.

This is similar to babba47239 (sw,
UpdateFields: add new TypeName, NamePrefix and Fields parameters,
2023-01-04), but that was for refmarks / citations, this is for sections
/ bibliography.

Change-Id: Idde6d5ed1b0f25f40df502bb6b7e7ca590ef9151
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145249
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
2023-01-10 08:11:17 +00:00
Vasily Melenchuk
26d74a57d5 tdf#103956: RTF import: fix for \cellx0 or no params.
If cell width is not given or zero lets not confuse it with too
narrow cell. Lets keep zero to allow domain mapper define some
width.

This patch does not solves autofit issue completely, but finally
tables with autofit are visible somehow and do not contain cells
with minimal almost invisible width (41).

Change-Id: I640228ed117f1d65dde9753a00b8403dda45dd40
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145148
Tested-by: Jenkins
Reviewed-by: Vasily Melenchuk <vasily.melenchuk@cib.de>
2023-01-10 08:05:43 +00:00
Miklos Vajna
d2318503d5 sw, UpdateBookmarks: support renaming bookmarks
The problem was that the LOK API client wanted to change the name of the
bookmark, but nothing happened, because we had a sanity check that made
sure the provided vs existing bookmark names match.

The intention was that the bookmark name is just an ID (you can store
additional properties in per-doc custom properties, those can change),
so we can require that bookmarks never get renamed when using this
command.

Fix the problem by dropping this requirement and rather use renameMark()
to adjust the in-doc bookmark name if needed.

This also handles undo/redo for us.

Change-Id: I7a426c865ddf24f13741c0369fb3991da2e881b2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145235
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-10 07:06:50 +00:00
Miklos Vajna
913b399a73 vcl ITiledRenderable: rename supportsCommandValues() to supportsCommand()
It gets a single command (to determine if using it with
getCommandValues() is OK or not), so the plural was confusing, as
mentioned at
<https://gerrit.libreoffice.org/c/core/+/145082/5#message-802b1be9194440a3dcee0cad5e54795cbbdea584>.

Change-Id: Idf3c81aadeaeb3d42a50aba2ac58d5ed4278651f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145212
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-10 07:06:30 +00:00
Miklos Vajna
2ddd41b420 sw, lok: implement a getCommandValues(Sections)
There was no LOK API to get a list of all sections where the name
matches a certain prefix.

This is useful in case the API client wants to know what previously
inserted sections were deleted by the user as part of deleting text
content.

Add a new getCommandValues(".uno:Sections") that returns the names of
matching sections. Do not return the section text, assuming that would
be updated by the API client anyway.

In practice this is needed by Zotero in case it wants to model its
bibliography items with sections.

Change-Id: If4f02d2a27f2328020934b319d30561aeaaf6612
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145207
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-10 07:06:00 +00:00
Miklos Vajna
42238045c2 sw: document SwGrfExtPage
It's created by SwFrameDlg and this is one of the tabpages which are
only there for images, not for frames.

Change-Id: I1f3740e683413a2dad2bb124c843b170b45c90e4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145242
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-10 07:05:46 +00:00
Patrick Luby
d96c986475 tdf#152648 Handle overflow when multiplying rows and columns
Change-Id: I1f3b4853fb6e6a66e74e798d6594342c84d5a695
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145245
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-10 06:53:53 +00:00
Justin Luth
894efac210 tdf#56258 i18npool en-US: partial revert 5th outline level
This reverts the change of A.I.a.i. -> A.I.a.i.1.
made by commit dd8ed1fdbc.

While it wasn't necessarily a bad change, it no longer has
any justification, since the complementary change in the
other outline definition was modified to become MLA compliant.

Rather than make any change at all, just revert back to the
original definition, and leave the level definition to the
normal 4 levels of numbering before the bullets start.

Change-Id: I88d792a6dd20bd519755349905975cf9028f9fa6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145236
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-10 01:09:27 +00:00
Justin Luth
9993ccab05 tdf#56258 i18npool en-US: extend outline 1.a) to 4 levels
Change 1. a) -> 1) a) 1) A)

This is intended as a clean, modern style of outline
that has good visual spacing in LibreOffice.

This differentiates it a bit more from the first option,
and extends the numbered level to the typical depth of 4,
while still keeping a logical suffix pattern
and maintaining the general "theme" of the previous definition.

Yes, it is a bit odd to have a capital A following
a smaller case a. However, this is at the fourth
level, which isn't reached very often,
and I wanted to keep a choice that focuses on a small a.

Surprisingly, with the default 12pt/Liberation font, a
10) still fits in the allotted space before the tabstop,
so in most cases this outline will have proper visual spacing
all the way up to 99).

There are plenty of choices that start with 1 followed by a dot,
so I used this opportunity to create the only list
that starts with a ")" suffix. Google docs for example has a
1) a) i) choice, but for modern lists I don't think
we want to use roman numerals.

Change-Id: I34725d6aa113831eaeaa88c295b3b3f1294f8998
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145155
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-10 01:09:04 +00:00
Eike Rathke
b5cca905c6 Resolves: tdf#152948 Do not use GetExcelName() to obtain English function name
As the function name says, it's the Excel compatibility name and
not the Calc UI visible name and thus does not have the _ADD or
_EXCEL2003 suffixes. Theoretically the names may even be
completely different.

Change-Id: I5f52dee77009123ebc3762defe08c937a3a59a18
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145246
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
2023-01-10 00:02:40 +00:00
Miklos Vajna
d24fc94281 sw: prefix members of ListLevelsEnumWrapper, ListTemplatesEnumWrapper, ...
... SwVbaListLevel and SwVbaListLevels

See tdf#94879 for motivation.

Change-Id: I8f3b88b71ba2696179e2f48c9c6e66f5fc947553
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145187
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
2023-01-09 19:09:00 +00:00
Xisco Fauli
3c7cba927b tdf#152917: basic_macros: Add unittest
Change-Id: I69050ae0e6607ed4a1d1da0e89b45125e2c06e3b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145190
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2023-01-09 19:08:03 +00:00
Stephan Bergmann
9cc91e1717 loplugin:fakebool
Change-Id: Idf69f13c3e8ab94ac04d83c9a0d171cddc399a10
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145213
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-09 18:54:13 +00:00
Miklos Vajna
8336c61ba0 sw: document FN_UPDATE_TEXT_FORMFIELD and FN_UPDATE_TEXT_FORMFIELDS
If you don't read the commit message or the code, it wasn't really
obvious that FN_UPDATE_TEXT_FORMFIELD works based on the current cursor.

Change-Id: Icd8bc856e5d50b995fa92559c873a50b48b98ba8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145189
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-09 15:48:35 +00:00
Stephan Bergmann
a58abb4296 Clean up VCLXAccessibleComponent::getAccessibleParent
...after 21e0d8162a "loplugin:unusedfields" had
dropped the base class
OAccessibleImplementationAccess::implGetForeignControlledParent

Change-Id: I753aad41baaa0ac1d1f7eb0a6084993df5a58d5f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145197
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-09 15:15:41 +00:00
Justin Luth
2570eb7265 tdf#56258 i18npool en-US: document ISO 2145 compliant outline list format
Change-Id: I2cccc7c2c3621434a4dbbcdd032672c668632494
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145158
Tested-by: Jenkins
Reviewed-by: Vernon, Stuart Foote <vsfoote@libreoffice.org>
Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-09 15:06:12 +00:00
Justin Luth
5297528b85 tdf#56258 i18npool en-US: replace illogical outline 1.(a).i.A
Change 1.(a).i.A. -> A.1.a.1.

This is intended as a clean, modern style of outline
that has good visual spacing in LibreOffice.

It provides a simple alternative to the second style,
reversing the order while still keeping a logical suffix pattern.

This design will easily allow large/long lists
to fit in the allotted space before the tabstop.

There was no attempt to match the theme of the
previous definition, since it neither looked
good in LO's default spacing, nor was it consistent/logical.

Change-Id: If7de1302110a3c97922bd2eeba7a917444110b27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145156
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Reviewed-by: Vernon, Stuart Foote <vsfoote@libreoffice.org>
2023-01-09 15:05:27 +00:00
Justin Luth
c3964de14c tdf#56258 i18npool en-US: change outline order to match MLA style
Changed I.A.i.a) -> I.A.1.a.i.

The overwhelming result of a google search for
"official/correct outline list format"
indicates that the third level should be a 1, not an i.

MLA Handbook (according to wikipedia) uses the order
I.A.1.a.i. (a) (1) i)

Chicago Mode of Style is usually interpreted as
I.A.1.a) or I.A.1.a. with varying lower sublevels/suffixes.

Wikipedia also suggest the logical order of
I.A.1.a.i.I) A) 1) a) i) (I) (A) (1) (a) (i)

Change-Id: I7fcc8a1ee727d6cddca4bf0c6a8461538769cf5d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145147
Tested-by: Justin Luth <jluth@mail.com>
Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-09 15:04:57 +00:00
Szymon Kłos
aff8807403 jsdialog: don't export collapsed/expanded icons when empty
Change-Id: Iec56c11fdba066f9b62b2d5d56ad011a821e4087
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145040
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145066
Tested-by: Jenkins
2023-01-09 14:14:47 +00:00
Miklos Vajna
dd775cd630 sw, .uno:InsertSection: add a new Content parameter and accept HTML there
When Zotero uses refmarks to represent citations, then a section is used
for the bibliography. While it was possible to insert refmarks with a
given name & content, inserting a section with a provided HTML content
was not possible.

A section (and not a refmark) is needed for the bibliography, as a
refmark is a text attribute, so it must start and end in the same
paragraph.

Fix this by adding a new, optional Content parameter to
.uno:InsertSection, which allows providing multi-paragraph, formatted
text.

This is somewhat similar to what commit
fa82e151d8 (sw, .uno:InsertBookmark: add a
new BookmarkText parameter and accept HTML there, 2022-12-06) did for
the bookmark case.

Change-Id: I0ccbc8a765fed4e019783d0b743c1cd2d0596093
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145188
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
2023-01-09 12:25:12 +00:00
Szymon Kłos
60f6b0e363 jsdialog: dump stock images id in TreeView
Change-Id: I11342e1d7963a7e4d1ef139f504fc44dd6c89d90
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144223
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Rashesh Padia <rashesh.padia@collabora.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145065
Tested-by: Jenkins
2023-01-09 11:54:26 +00:00
Rafael Lima
9c6aa7f291 tdf#152531 Fix background color of Dialog Editor in dark mode
Change-Id: I7006ff472dae5ce8d4b52c108f742c3c6d9b0b61
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144603
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2023-01-09 11:53:59 +00:00
Christian Lohmaier
522b3ce2ee Update git submodules
* Update translations from branch 'master'
  to fd1416ef15091d8b08ea7dbad77148e68e4d89f9
  - update translations for 7.5.0 rc2 / master
    
    and force-fix errors using pocheck
    
    Change-Id: Ia0f91e00129cb802164fd4323b3072cf8a76cb5c
2023-01-09 11:14:31 +00:00
Julien Nabet
6410fafc6f Fix deprecated Curl elements for update part
Change-Id: Ide008c8a80800b33c8104ec3d697e836fae73827
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145186
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-01-09 10:40:19 +00:00
Pranam Lashkari
e65b27e79f sw, UpdateFields: update in sorted order
This was using the order used by GetItemSurrogates() which can be hard to predict

So it used to update field in uncertain ways

Now it updates field in order of the fields in file

Change-Id: I7fc39b476cae6ed6a7fb7186803d4205832d7a73
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145167
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
(cherry picked from commit 83f5340538d8aa8c469de3fee6012e83f8b56317)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145129
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-09 10:18:52 +00:00
Andrea Gelmini
71cd508c06 Fix typo
Change-Id: Iccacf0e31153f31d2f61de27e28db6074a9d3eca
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145191
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-01-09 09:54:28 +00:00
Bogdan B
3dbaeb2edf tdf#143977 Consistent hide/show in Toolbars
Change-Id: I022699498480a0d1bb3eb2a7fb0a972779feef03
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142194
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2023-01-09 09:43:53 +00:00
Leonid Ryzhov
1b44a4c558 tdf#147906 Use std::hypot for Pythagorean addition
Change-Id: Ia325af8d9a23e617eb62e6cecab0aa68f1d206f8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145089
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
2023-01-09 09:18:12 +00:00
offtkp
2dd45d5d81 Fix wrong version in comment
Change-Id: I4185b019b8dbce7de9bf853c0416fd43201b1f60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144987
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-09 09:01:55 +00:00
offtkp
5e5631a8f6 Add comment for new class
Change-Id: Icb20bfc68183bd22d1d83985bf3932fd2918b074
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145166
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-09 09:01:33 +00:00
Caolán McNamara
72a08a5579 tdf#152931 deref of moPenColor std::optional on launching writer
Change-Id: I13cb7aade5b4a0142e23bd62e62d2160c73d8740
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145180
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-01-09 08:55:22 +00:00
Arnaud VERSINI
555f433318 use std::this_thread::sleep_for instead of osl equivalent
Change-Id: I5b4edc5417e5bb5e082688df616e1d5735717d92
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142357
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-09 08:37:35 +00:00
Stephan Bergmann
42d9077fc4 Missing include
...as reported at
<https://lists.freedesktop.org/archives/libreoffice/2023-January/089788.html>
"boost 1.81 breaks libetonyek and gtv-calc-header-bar.cxx",

> /home/etna/Tmpbuild/libreoffice/libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.cxx:36:25: error: implicit instantiation of undefined template 'std::vector<(anonymous namespace)::GtvCalcHeaderBarPrivateImpl::Header>'
>     std::vector<Header> m_aHeaders;
>                         ^
> /home/etna/Runtime/BuildSystem/LLVM13WithWASM/bin/../include/c++/v1/iosfwd:251:28: note: template is declared here
> class _LIBCPP_TEMPLATE_VIS vector;
>                            ^

Change-Id: I6cc93195147979a5bf2785faf4bb0e71a9fd4a94
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145185
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-09 08:26:19 +00:00
Vasily Melenchuk
788cc6ff3b tdf#148578: Do not apply table shift for RTF
Table shift based on cell lect margin should be applied
for DOCX (earlier compat options) but not actual for RTF.

Maybe earlier RTF version did behave this way, but nowadays
this behavior does not match MS Word 365.

Change-Id: Icdc4fa6298167fe5f263c85164d7c4c4176be25f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145088
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
2023-01-09 07:54:51 +00:00
Adolfo Jayme Barrientos
8ae84bb556 Update git submodules
* Update helpcontent2 from branch 'master'
  to e3b49a858d147035096a9e1cbc4967c87db9f42c
  - Typo grab bag
    
    Change-Id: I705b56ac8fd84227aaa6a81e57d182dfd797bd62
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145183
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-01-09 00:53:36 +00:00
Julien Nabet
5c4fa7ddb0 Fix deprecated Curl elements for minidump part
Change-Id: I43df411eed24e86f5d72982b5d24188e0cb7e507
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145177
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-01-08 14:46:10 +00:00
Andrea Gelmini
a9a90f92ee Fix typo
Change-Id: I5dd29c8b3d899f8a889c364dc5c20026e6495259
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145176
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-01-08 13:48:31 +00:00
Stanislav Horacek
b4dc43b6d0 Update git submodules
* Update helpcontent2 from branch 'master'
  to dc494d3f21dd9aeb475a2cec95948b058c4696c5
  - remove redundant tag
    
    Change-Id: I9f0838ad3b230d454abc2810ce83033945339805
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145174
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-01-08 12:02:56 +00:00
Heiko Tietze
3babbc31bf Revert "Resolves tdf#143100 - Disable cell style commands when sheet is protected"
This reverts commit a3cb71ac80.

Reason for revert: tdf#149857

Change-Id: I5ea780b986073a8db16d5dc2ea503aa30da7ef27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145118
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2023-01-08 09:19:17 +00:00
Heiko Tietze
e37f06f534 Resolves tdf#139141 - Make variable date/time field the default
Switched the fixed and variable/current field
See also I18136feebed225f7645b6869d3600ee78f945bfb and
I56f42b4ce104dbb96d8fda1bc71af727fa46d536

Change-Id: Id885c09410dc9aecc9570c8d3b7750e9d69e9c9c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145170
Tested-by: Jenkins
Reviewed-by: Jim Raykowski <raykowj@gmail.com>
2023-01-08 09:13:10 +00:00
Stanislav Horacek
9b5c342121 Update git submodules
* Update helpcontent2 from branch 'master'
  to 34e1fdb87700f1541ca5b15e3e3cfcd0dc5c2e98
  - do not localize source code
    
    Change-Id: I00c8b6014be077f78485e43cbe0f86f2c2f29c6c
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145173
    Tested-by: Jenkins
    Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-01-08 04:23:48 +00:00
Eike Rathke
e06198e154 Resolves: tdf#152917 Add ConvertFromUrl() put result back, tdf#147132 follow-up
Regression from

    commit 6b3e66cd7a
    CommitDate: Mon Sep 5 16:04:25 2022 +0200

        tdf147132 basic : flaten some functions

Change-Id: I20e6b00ed613b98a5e58623a010d894b1bcb4c6f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145172
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
2023-01-07 20:28:55 +00:00
Jim Raykowski
156fd06dbc Outline folding: Fix cursor position after undo redo
This patch makes the cursor position to be the same after undo redo as
when outline folding is not active.

Change-Id: I9e1f827455afb2675f3085c1560b1e2a246f4524
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144873
Tested-by: Jenkins
Reviewed-by: Jim Raykowski <raykowj@gmail.com>
2023-01-07 19:46:42 +00:00
Caolán McNamara
34791b203f cid#1518911 Uninitialized scalar variable
Change-Id: Ieef6bf8cd20907531301ab8cf6d81d2dcd5397a4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145171
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-01-07 16:03:21 +00:00
Noel Grandin
4ddfdeefe7 remove dead code
we already know the IsAlpha is true from the outer if condition

Change-Id: I627a9b952cb63154baf773b6162b422de4f253bc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145157
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-07 11:29:52 +00:00
Caolán McNamara
2a8660c6d3 Related: rhbz#2158548 allow longer words for hunspell-ko
https://github.com/hunspell/hunspell/issues/903

A problem since the sanity check added in:

commit 05e44e069e4cfaa9ce1264bf13f23fc9abd7ed05
Author: Caolán McNamara <caolanm@redhat.com>
Date:   Thu Sep 1 13:46:40 2022 +0100

    Check word limit (#813)

    * check against hentry blen max

Change-Id: Iab2c062584da076260c3262537690435eae7f396
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145154
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-01-07 10:57:04 +00:00
Caolán McNamara
ab2a44f81b ofz#54567 Out-of-memory
Change-Id: If7a3f75aea614bf136049efc9d04ff404acbb170
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145165
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-01-07 10:56:44 +00:00