summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-01-24Clarify commentTor Lillqvist1-1/+1
Change-Id: I33d10ea4f3ca35619d6f857d18b5c53a22d822a7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146097 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-01-24Surround recently added code that breaks on COWASM with ifdefTor Lillqvist1-0/+2
After 7a6324ea0d81bbe2bba09f8a7f5230342a4f4e85 I started getting UNO exceptions with the message "component context fails to supply service com.sun.star.xml.crypto.SEInitializer of type com.sun.star.xml.crypto.XSEInitializer". It is likely that it breaks in the iOS and Android apps, too, so bypass for those, too. Change-Id: Id08afbf6bea071c8b0b6564342716e0b064cb712 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146071 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-01-24Use PYTHONWARNINGS=ignore instead of 'default' for EmscriptenTor Lillqvist1-3/+10
The Emscripten compiler, emcc is a Python script that wraps the actual compiler. It outputs annoying warnings like .../emscripten/tools/building.py:638: ResourceWarning: unclosed file <_io.TextIOWrapper name='/tmp/emscripten_temp_0fvvg__1/conftest.js.jso.js' mode='w' encoding='utf-8'> to stderr. (Ditto for em++.) Some steps in typical configure script think that a non-empty stderr means there was a problem in compiling a test program. This happens even for a microscopic test program with an option like -Werror which surely *is* supported. Avoid this by setting PYTHONWARNINGS=ignore. Change-Id: I11927fc7dccaa65a239ba65dfc7c6bb7487bf12d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146070 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-01-24ScriptForge (SF_Dialog) define constants as propertiesJean-Pierre Ledure1-2/+12
OKBUTTON and CANCELBUTTON are defined in the help as properties, both for Basic and Python user scripts. To make dialog.OKBUTTON valid in Basic, OKBUTTON should be defined either as (1) Public Const OKBUTTON = 1 or (2) Property Get OKBUTTON() Actually, it if a Private constant. <= wrong Choice is made to make it a full property (2). Python equivalent is OK, no change required. No impact on help documentation. Change-Id: Id4cf7dfbaff68fc8cc48a5c4779374ce1e7cc88b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146008 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
2023-01-24Be consistent in checks for LIBO_INTERNAL_ONLYTor Lillqvist1-1/+1
Only check whether LIBO_INTERNAL_ONLY is defined or not. Don't check its value. If undefined, its value will default to 0, but checking the value will cause a warning that will be treated as an error if you compile with -Werror, as you should. Change-Id: I1d9e4569a016d2e6dbaa9d612071a5528ff1902e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146066 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-01-24tdf#153090 xmloff: ODF import/export of source style on ToXMichael Stahl14-28/+159
For Table of Figures/Objects/Tables. Make this similar to DOCX: only one source style is possible, so omit the intermediate text:index-source-styles element. Also a boolean attribute like text:use-index-source-styles appears as unnecessary complexity, so try to do without. Change-Id: I7cb599c7ec1261ddedc196a25c3eafe35f35fbe9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146013 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-01-24tdf#152404 crash in Windows with ctrl+alt+c during ExtTextInputCaolán McNamara1-0/+18
Change-Id: I73ed19eeae49ef737aae372b8f4c053f67a169c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146064 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-01-24sw: disable theme dialog if the theme is not set to the draw pageTomaž Vajngerl1-0/+15
Change-Id: I3d60e9b82dfd59b5afc7769a7895acfcc5c3417c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146061 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-01-24sw: remove tab pages from theme dialog - crashes onlineTomaž Vajngerl1-37/+19
Remove the tab pages for now, as they crash the dialog in online, and the tab pages aren't used currently anyway. Change-Id: I35a2875510fd74b6a3060edf83c7190ba80a4eef Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146060 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-01-24No need for openssl in the cross build's instdir_for_buildJan Holesovsky1-3/+3
So disable it from the configure & make sure it is not brought in by the non-iOS check. Change-Id: I9bbf1c593d1d48197951002e04e7f925d35ecba9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146034 Tested-by: Jenkins Reviewed-by: Jan Holesovsky <kendy@collabora.com>
2023-01-24tdf#66580 write ODF document as an attachment in hybrid modeTomaž Vajngerl5-159/+194
This changes the hybrid mode so that the ODF document is written as an PDF compatible file attachment into the PDF document. It also keeps writing the /AdditionalStreams element into the trailer to keep backwards compatibility for now. Change-Id: Ica31159cfbd591c6741e3da62c42d1fefd085696 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146053 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-01-24pdfimport: refactor pdf and hybrid format detection codeTomaž Vajngerl1-143/+190
Change-Id: I3421fbcc717a75377db887f567ce3bb9631a4f28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146052 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-01-24xmloff: extract XMLThemeContext into own classTomaž Vajngerl4-136/+191
Change-Id: Iee30a84915148297ad5c105d29fdf48098261a9d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146051 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-01-24sw: send LOK call back on refmark deletionPranam Lashkari2-0/+28
this helps with zotero when user deletes a refmark or use undo without this online will be unaware of any such changes made by user Signed-off-by: Pranam Lashkari <lpranam@collabora.com> Change-Id: Ia4326fd03f6b7d27fdb59ccc25d60331ba7923d5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145774 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146005 Tested-by: Jenkins
2023-01-24sw: send field mark delete call back only on deletionPranam Lashkari1-0/+3
previously command call back was also sent when field was selected Signed-off-by: Pranam Lashkari <lpranam@collabora.com> Change-Id: If0768180e81c47a738225e693b07441cf25906b6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145884 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Miklos Vajna <vmiklos@collabora.com> (cherry picked from commit c3a53e0c2503d277fbfeb60d4c2499c2e377f9df) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146021 Tested-by: Jenkins
2023-01-24tdf#45854 sysui: replace wrong ODB mime typeMichael Stahl5-6/+6
https://issues.oasis-open.org/browse/OFFICE-3745 was resolved. Replace all wrong: application/vnd.oasis.opendocument.database with: application/vnd.oasis.opendocument.base There is an identifier "org.oasis-open.opendocument.database" being used in some MacOSX Info.plist files - there is no indication that it needs to "match" the mime-type so leave it as is. Change-Id: Ic8e0d24e3aa74743801a670846daf2d322c33d70 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146040 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-01-24Use ImplInheritanceHelper in OAccessibleComponentHelperStephan Bergmann2-18/+9
(Explicitly deleting the special member functions is needed to avoid MSVC > include\cppuhelper/implbase.hxx(152): error C2280: 'comphelper::OCommonAccessibleComponent::OCommonAccessibleComponent(const comphelper::OCommonAccessibleComponent &)': attempting to reference a deleted function > include\comphelper/accessiblecomponenthelper.hxx(177): note: compiler has generated 'comphelper::OCommonAccessibleComponent::OCommonAccessibleComponent' here > include\comphelper/accessiblecomponenthelper.hxx(177): note: 'comphelper::OCommonAccessibleComponent::OCommonAccessibleComponent(const comphelper::OCommonAccessibleComponent &)': function was implicitly deleted because a base class invokes a deleted or inaccessible function 'cppu::BaseMutex::BaseMutex(const cppu::BaseMutex &)' > include\cppuhelper/basemutex.hxx(43): note: 'cppu::BaseMutex::BaseMutex(const cppu::BaseMutex &)': function was implicitly deleted because a data member invokes a deleted or inaccessible function 'osl::Mutex::Mutex(const osl::Mutex &)' > include\osl/mutex.hxx(107): note: 'osl::Mutex::Mutex(const osl::Mutex &)': function was explicitly deleted > include\comphelper/accessiblecomponenthelper.hxx(200): note: see reference to function template instantiation 'cppu::ImplInheritanceHelper<comphelper::OCommonAccessibleComponent,com::sun::star::accessibility::XAccessibleComponent>::ImplInheritanceHelper<cppu::ImplInheritanceHelper<comphelper::OCommonAccessibleComponent,com::sun::star::accessibility::XAccessibleComponent>>(cppu::ImplInheritanceHelper<comphelper::OCommonAccessibleComponent,com::sun::star::accessibility::XAccessibleComponent> &&)' being compiled > include\comphelper/accessiblecomponenthelper.hxx(200): note: see reference to function template instantiation 'cppu::ImplInheritanceHelper<comphelper::OCommonAccessibleComponent,com::sun::star::accessibility::XAccessibleComponent>::ImplInheritanceHelper<cppu::ImplInheritanceHelper<comphelper::OCommonAccessibleComponent,com::sun::star::accessibility::XAccessibleComponent>>(cppu::ImplInheritanceHelper<comphelper::OCommonAccessibleComponent,com::sun::star::accessibility::XAccessibleComponent> &&)' being compiled ) Change-Id: Ide07c6a7c3660e469f16973d866c949d17fdf419 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146010 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-24AddAttribute may take 'namespace:full:uri^attribute_name'Mike Kaganski1-1/+4
... e.g., created in SaxNamespaceFilter::startElement, which calls XMLNamespaces::applyNSToAttributeName to make such a name. See https://gerrit.libreoffice.org/c/core/+/145526/comments/26536db2_d8fb1e1b, which notified that the assert from f2f008c52aaa88329c07f441de60d6fdfce9f0b3 ("Merge SvXMLAttributeList to comphelper::AttributeList", 2023-01-15) started to fail on some input. Change-Id: Ia0afc167aefac463bcd354dc009bff6e14a64dfa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146054 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-01-24The resolved style name *can* be empty in redlinesMike Kaganski5-5/+20
I assumed otherwise in commit 20adf4683c7d38ad41edac586b897757393c8029 ("tdf#152425 related: don't generate style ids in DocxAttributeOutput::Redline", 2023-01-13). But the string that we try to resolve may come from original file, and so must be treated as arbitrary user input, which may not resolve to a known style. This basically reverts commit 20adf4683c7d38ad41edac586b897757393c8029. Change-Id: Ia6cbce1b9601df2c15edbab653b9b629d52d5ff6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146055 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-01-24Revert "tdf#153167 ImageMap Editor dialog had no title"Christian Lohmaier1-1/+0
This reverts commit 66291d467be4bf0e841814111d57d1af76117f8e. Reason for revert: didn't wait for jenkins and broke the build translatable strings need context attribute. Change-Id: Ie72f30def24b5489925d0f972e8581d3fc636e48 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146031 Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
2023-01-24tdf#152541 sw: don't show hidden __RefHeading__ bookmarksLászló Németh1-0/+9
In visible bookmark mode, don't show __RefHeading__ bookmarks, which are hidden in Navigator, too. Note: they are inserted automatically e.g. with the ToC at the beginning of the headings. Follow-up to commit 4ce8120f1e53f7b81e653b01d141643013bc69ab "tdf#45589 sw: create and paint text portions for bookmarks". Change-Id: Id337613342fa74f5edef59d01349810f9737b62c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146044 Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
2023-01-24tdf#100584 - Arrange sheets in the tab bar depending on the RTL settingsAndreas Heinisch1-4/+7
Change-Id: Id10bfd18029651790be943b74745016f6ad637ff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145765 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
2023-01-24tdf#150806 ODT export: fix fallback svg:width/height for zero layout sizeMiklos Vajna3-0/+196
The reported problem was that once tracked changes is enabled and an image is deleted, its aspect ratio changes on save. What happens here is that the image's frame is marked as a redline deletion, so when the ODT export writes the file, it'll have a zero size. But this zero size is nothing we should take into account on save, XMLTextParagraphExport::addTextFrameAttributes() expected to always have a valid layout size if the LayoutSize property is available. Fix the problem by adding one more condition where we ignore the layout size, which was already there since commit 80550ade305b9e68c6281a258d162bc2c413713a (tdf#150990 ODT export: fix zero layout size of scale/scale images, 2022-09-20). Note that this way the written side will be the original one, so only the aspect ratio will be correct, but that was accepted as a compromise earlier. Change-Id: I108dc2428ce0cb07a044bfef216575fdba19267b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146043 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-01-24[API CHANGE] remove service sd::framework::ConfigurationControllerNoel Grandin8-91/+16
It makes no sense to be constructed externally. Change-Id: I6fb8f58ff8594c58d190f78e6f26b2703046a95b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146001 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-24tdf#135987 xlsx vml export: retain checkbox link to cellJustin Luth2-2/+19
The checkbox can be linked to a cell, so that the cell's value is toggled between true and false. This was lost on a round-trip. Change-Id: I4f2d44a594a92caedb29ded9b2c292006c803115 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145962 Tested-by: Justin Luth <jluth@mail.com> Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-24tdf#117266 tdf#120374 sc oox: export correct vml button name #2Justin Luth3-9/+23
So the actual name is more important than I knew. For example, VBA maps click macros based on the button name. So use the MS-provided name and use the SPID to connect to the shape id. Of the existing unit tests that were affected by this: -macro-button-form-control.xlsm: button now launches hello macro -tdf117266_macroButton.xlsm - same file as ^^^ -button-form-control.xls nearly same file as ^^^ -tdf134769.xlsx - checkbox still exists on round-trip -tdf106181.ods - checkbox still exists, but link to cell still lost. -checkbox-form-control.xlsx - nearly same as ^^^ All looks good. Change-Id: If83cf17d60b73c46d55a21b1a46ed320513044cb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145961 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-23Enforce compiling cairo and pixman for WASM with -O3Tor Lillqvist2-2/+2
Earlier, no -O flag at all got used in the cairo and pixman builds. Which was sad, as these two libraries are performance-critical. Yes, this change is quick-and-dirty. The proper way would be to modify things in solenv/gbuild. But that is somewhat complicated. In general it seems fairly hard to make sure the same compiler flags get used for every external bundled library. Each external library is a special snowflake, more or less, with a differently structured ExternalProject makefile. For instance for the libwpd library (just picked randomly as an example), even -O2 gets used. (Which as such is OK.) This despite solenv/gbuild/platform/EMSCRIPTEN_INTEL_GCC.mk apparently trying to enforce use of -O1 for Emscripten. This change has a visible impact on the performance of COWASM. Change-Id: I99d74db2da733134fde16661881856f9a81100f9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146009 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-01-23lok: ensure to initialize the security contextHenry Castro1-0/+14
if the backend NSS is used, before load the document ensure the NSS is initialized otherwise NSS next functions calls will fail. Signed-off-by: Henry Castro <hcastro@collabora.com> Change-Id: I7ac1d7eeee681995e6c284e2dd4595a33d044af4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142213 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Aron Budea <aron.budea@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142289 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2023-01-23tdf#153167 ImageMap Editor dialog had no titleAdolfo Jayme Barrientos1-0/+1
Change-Id: I90048520d250d086b7b0ef4af675c9e1bcff93f4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146039 Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2023-01-23Bin line that was commented-out in December 2021Tor Lillqvist1-1/+0
Change-Id: Ie6c6891d1a682d57e4606454fb6b295072e57644 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146038 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2023-01-23xmloff: ODF export: missing extension check in XMLStyleExportMichael Stahl1-1/+2
(regression from commit 05f863844d9a5613250e8d787e32752b270ec4d3) Change-Id: Iae891ecec26599c9016be17e4db8eaf99783baa6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146012 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-01-23[API CHANGE] sd::frame::Configuration does not need to be an UNO serviceNoel Grandin7-84/+1
It does not ever appear to have been used as such, and it makes no sense to be constructed externally. Change-Id: Ia1a0cccdaeb19ded1197ad8aae701ac86dd3bb48 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145989 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-23update hardcoded dragonbox include to 1.1.3Rene Engelhard1-1/+1
since dragonbox now installs to that one, and 1.1.3 is default for the internal case anyway since dd1610146528cba8642caad3bf72e27b9ca6c153. Change-Id: Ibd0449b1bd1191a1872c233bfe9810af1d1215cf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145985 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Taichi Haradaguchi <20001722@ymail.ne.jp> Tested-by: René Engelhard <rene@debian.org> Reviewed-by: René Engelhard <rene@debian.org>
2023-01-23tdf#153136: fix IgnoreTabsAndBlanksForLineCalculation compat flagMike Kaganski3-7/+183
It should handle SPACE, EN SPACE, EM SPACE, FOUR-PER-EM SPACE ,and IDEOGRAPHIC SPACE, but not SIX-PER-EM SPACE. The latter was mistakenly added in commit 9ee96273a2090b63e0f579a1e9c9cef780756e6d "tdf#123703 strip six-em-space (U+2006) at line break" (2019-08-24). Change-Id: I857f303eb19e19f067ad47933fa4b7eb96ce5ca0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145995 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-01-23Mark external/zxing/missing-include.patch.0 as upstreamedTaichi Haradaguchi1-0/+4
Change-Id: Ia4c251c952889b4ae174b172839a946302d41c48 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145524 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-23Mark external/zxing/android_include.patch.0 as upstreamedTaichi Haradaguchi1-0/+2
Change-Id: I05f51e0ee83f43614dc85e0b1ca5854f8aed21a0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145523 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-23update creditsXisco Fauli1-2287/+2359
Change-Id: Icbf6bd2aba36baccb5e4046f02c6c5c69cb5f7e1
2023-01-23Update git submodulesStéphane Guillou1-0/+0
* Update helpcontent2 from branch 'master' to 1a892431e8d42b0488af3e9bffd4924cd3e06ad1 - tdf#152666: explain how the paragraph style combobox is populated Change-Id: I4f983153115afe7787f445ed471f14a29d798268 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/145311 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2023-01-23sw: send LOK call back on fieldmark deletionPranam Lashkari2-0/+21
this helps with zotero when user deletes a fieldmark or use undo without this online will be unaware of any such changes made by user Signed-off-by: Pranam Lashkari <lpranam@collabora.com> Change-Id: I93cf102c20b3861140508aee5d81e65f5b9207ec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145753 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Miklos Vajna <vmiklos@collabora.com> (cherry picked from commit 3a6b7e2c07566f22f33189ad4e8393767df5b9f8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146014 Tested-by: Jenkins
2023-01-23sw doc model xml dump: show endnote info about footnote formatsMiklos Vajna3-0/+16
The text-attr doesn't know if this is a footnote or endnote, so let's show its format, which has this info. Change-Id: Ib36621f3206188f48e87fbc7f7899cbe2c8b4326 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146002 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-01-23gtk_tree_view_scroll_to_cell: assertion 'tree_view->priv->tree != NULL' failedCaolán McNamara1-1/+1
Change-Id: Ie02dbee2e21fd5092f8be5f01383f2ce3b60c0aa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146000 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2023-01-23Update git submodulesXisco Fauli1-0/+0
* Update translations from branch 'master' to 20c957e0ff773293fe7c10fb588f6674998a3087 - update translations for 7.5.0 rc3/master and force-fix errors using pocheck Change-Id: I25323301c1346e04623e76a166218efb34a9e034
2023-01-23tdf#153154: m_xDataTypeLB is still in useXisco Fauli1-0/+1
Regression from 2e7f77d3fe01e36222d5ad84c18d7d7537092972 "loplugin:unusedfields" Change-Id: Ic9435ee9417f812281ad75039d4ef88f508bad62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145999 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2023-01-23XUnoTunnel->dynamic_cast in vcl::GraphicNoel Grandin5-22/+6
Change-Id: Iecbae3570851784f0da75fd2899daf620c8e4c06 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145994 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-23sw: prefix members of SwVbaReadFieldParams, TabStopsEnumWrapper, ...Miklos Vajna4-59/+59
... TableCollectionHelper and TablesOfContentsEnumWrapper See tdf#94879 for motivation. Change-Id: I444cee4e834f08f422d5006022c4db552942ad35 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145997 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2023-01-23[API CHANGE] offapi: clean up these index services IDL filesMichael Stahl4-17/+7
CreateFromStarImage isn't implemented, having been removed in 2000. Change-Id: Ic0e90eaf760374df69f8d8779c37819d4943a063 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145911 Tested-by: Michael Stahl <michael.stahl@allotropia.de> Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-01-23tdf#153090 writerfilter,sw: DOCX/RTF import/export of TOC \c \tMichael Stahl10-1/+92
This is for Table of Figures/Objects/Tables. The core will happily generate entries from paragraph styles by simply setting the Template flag and adding the style name. In Word, this feature differs from ToC in that only a single paragraph style is allowed, and there is only one level to assign to so that is omitted and \t is simply the style name (presumably suffering the usual i18n disaster, see tdf#153083). So implement it with the same limitations, not reusing the CreateFromLevelParagraphStyles property on SwXDocumentIndex but instead add new property CreateFromParagraphStyle. Change-Id: Ic8ab1fa9e81bdc85cc932f6bba8724d560e0fbc1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145904 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-01-23XUnoTunnel->dynamic_cast in configmgr::ChildAccessNoel Grandin3-25/+5
Change-Id: Iadfdbb68ad7876801bf79352bdec26da7da63325 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145993 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-23XUnoTunnel->dynamic_cast in AnimationNodeNoel Grandin1-51/+25
Change-Id: I9684ac5987c087797e1ca7a8ddb0f9c5b731faed Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145992 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-23sw: Word export: hyperlinks for ToX Figures/Objects/TablesMichael Stahl2-2/+6
This was missing, and lcl_IsHyperlinked() has a wrong termination check, which is noticable here because these have only 1 level (+ title at 0). Change-Id: I56a8622ee2c9df2167e26863cb3797b01434553c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145903 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>