summaryrefslogtreecommitdiff
path: root/filter
AgeCommit message (Collapse)AuthorFilesLines
4 daystdf#147906 Use Math.hypot() for Pythagorean additionYousef_Rabia1-1/+1
Change-Id: I8823038bde51002ea8c02ca7e841aca99f928a58 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149618 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
8 daysloplugin:stringadd in editeng..frameworkNoel Grandin2-13/+9
after my patch to merge the bufferadd loplugin into stringadd Change-Id: Ieac16a01fde6467a2f6fe47864069304a3c44e47 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149552 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
9 daysFix typoAndrea Gelmini1-1/+1
Change-Id: I4cc8dbd5a315844f858bf60e3b5b949c4adb1f58 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149535 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
9 daystdf#142978 Remove a11y check dialogSamuel Mehrbrodt2-10/+0
in favor of sidebar deck Change-Id: I2daf34edbe71341ebc44ca9b966c97f8e494d583 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149433 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
9 daystdf#142978 Show a11y sidebar when finding issues on PDF exportSamuel Mehrbrodt2-9/+40
Change-Id: I5234aca76153e1a781b7df1d3fbea8bb856af921 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149430 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
10 daystdf#114441 Convert sal_uLong to better integer typesArvind K1-2/+2
filter/ -> nFilePos in struct SvxMSDffBLIPInfo is assigned nBLIPPos which is defined as sal_uInt32. Change-Id: If2815449d12b17e8caadaff0324371c69a5a5ab6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148291 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
11 daysfilter: PDF export dialog: always disable ReferenceXObject for PDF/UAMichael Stahl3-0/+14
7.20 XObjects Reference XObjects, as noted in ISO 32000-1:2008, 8.10.4, shall not be used in conforming PDF/UA files. Change-Id: I62a4b6b76a6cb1d14d4fd39fad90ec0323a481c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149261 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
14 daysMCGR: Model data changes for ColorStepsArmin Le Grand (allotropia)2-5/+9
Added tooling replaceStart/EndColor to allow simple transition for code that does not immediately adapt to multi color gradients. Also added createColorStepsFromStartEndColor for the same purpose. Adapted XGradient to no longer have Start/EndColor at all, but only use ColorSteps. Adapted all usages of XGradient to no longer use Get/Set/Start/EndColor, but access the ColorSteps instead. Replaced quite some XGradient constructors that used XGradient() as Start/EndColor since this is already the default. Adapted ColorBlending to black AKA Start/EndIntens in XGradient to work now on all ColorSteps in the required linearly-scaled manner. UNO API changes: Added com::sun::star::awt::ColorStep as basic data element that holds a pair of Offset and Color. Added com::sun::star::awt::ColorStepSequence to handle an array of sorted entries. Added com::sun::star::awt::Gradient2 derived from com::sun::star::awt::Gradient, extended by the needed com::sun::star::awt::ColorStepSequence. Added MID_GRADIENT_COLORSTEPSEQUENCE to UNO API to provide access to ColorSteps directly. Adapted XFillGradientItem::QueryValue/PutValue to make use of new UNO API data structures. To do so, added tooling methods for data transition: - fillColorStepSequenceFromColorSteps - fillGradient2FromXGradient - fillColorStepsFromAny - fillXGradientFromAny and adapted - case '0' (all data) - MID_FILLGRADIENT - MID_GRADIENT_COLORSTEPSEQUENCE - MID_GRADIENT_START/ENDCOLOR to make use of these. Tested usage of these in the office. Renamed from GradientStep to GradientStop after discussions with members on the list to make this closer related to other norms/definitions. Also renamed classes and class members to better reflect to GradientStop, so grepping/finding will be easier (e.g. 'Color' just exists pretty often, but 'StopColor' is more precise). Changed the used UNO API class for reprsenting the Color to better reflect to ranges [0.0 .. 1.0] and usage of RGB. Change-Id: I1eeb3e97e81d6785967615d1ff256551fc3b882d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148849 Tested-by: Jenkins Reviewed-by: Armin Le Grand <Armin.Le.Grand@me.com>
2023-03-16Fix typoAndrea Gelmini1-1/+1
Change-Id: Ic43a5bb4d243b2c4081fcd56130e20ed1c3b43a1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149009 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2023-03-16tdf#39667 filter,officecfg: PDF export dialog: set initial view to...Michael Stahl2-3/+74
... Outline for PDF/UA. * change the dialog to disable the radio buttons if PDF/UA is enabled * also change the configuration to make Outline the default Change-Id: Iea8c5e0f8560c972dc250859198bea1cb9fc3597 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148883 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-14filter: PDF export dialog: always enable Outlines for PDF/UAMichael Stahl2-1/+24
This is not a hard requirement, but why not prevent this pitfall at least in the dialog: 7.17 Navigation A document should include a document outline that matches the reading order and level of navigational targets (ISO 32000-1:2008, 12.3.3). Change-Id: I06533123cdfe5fe1c79180d6ebd4e961b25a63b6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148818 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-14filter: PDF export/PDF dialog: PDF/UA requires P bit 10 enabledMichael Stahl2-0/+11
Adapt dialog and export filter to ensure the bit is set: 7.16 Security An encrypted conforming file shall contain a P key in its encryption dictionary (ISO 32000-1:2008, 7.6.3.2, Table 21). The 10th bit position of the P key shall be true. Change-Id: I2e8e4f5b0ef44efeabf3017f2e12b58914e93520 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148802 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-14tdf#154171 filter: PDF export dialog: don't show spurious error if PDF/UA ↵Michael Stahl1-1/+1
toggled 1. Security tab, set permission password 2. General tab, disable PDF/UA 3. General tab, enable PDF/UA 4. spurious error dialog mentioning PDF/A, which is unrelated to PDF/UA (regression from commit 5a7cfe98e96489b7fa19d286ddd1e8c8e591d7dd) Change-Id: I742da1cd459919faeae53fc21e5f97ee6a7c6ffe Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148801 Tested-by: Michael Stahl <michael.stahl@allotropia.de> Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-09remove some unnecessary locking in TypeDetectionNoel Grandin2-37/+12
the FilterCache class is already internally thread-safe Change-Id: Ic869bda1257cc61fc69557624c8d6e169645b23a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148538 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-03-09tdf#153839: add newline after certain tagsFranklin Weng3-0/+48
Add newline after certain tags in head section and paragraphs, to make generated xhtml easier to read. Change-Id: I9562ef48d9dd1283110be4a45527616dce186681 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148026 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-03-08vcl: PDF export: default to PDF 1.7Michael Stahl1-1/+1
Released by Adobe in 2006, and standardized as ISO 32000-1:2008. Change-Id: I22c89019905c90e10fefb752c210ec7ea81b725b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148388 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-08vcl,filter,officecfg: PDF export: add PDFVersion::PDF_1_7Michael Stahl1-0/+3
Also, PDF_A_2 and PDF_A_3 are based on PDF 1.7, claims Wikipedia. Change-Id: Ia0afd9a38859953db945a5d1568f171f3d500b09 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148386 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-07no need to allocate these separatelyNoel Grandin1-3/+3
they are all one or two words in size Change-Id: I44d60e9fca03ce6709551a660661dd2a6778fd7e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148377 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-03-07clang-tidy dead-storeNoel Grandin1-3/+0
Change-Id: Id7c48e995b4f92f081fbd4d1af257e1b81e6a421 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148347 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-03-07clang-tidy dead-storeNoel Grandin2-2/+1
Change-Id: I40574713beaf1799cbc177a679e3485b4dc4eb1b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148349 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-03-03tdf#137883 filter: use en-dash instead of hyphen in UINamesMichael Stahl4-4/+4
(regression from commit ed0476b0625c4361df5ff040a6661a9634588cea) Change-Id: I7c380a9871cf16623031751bd735f456a7ea200f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148167 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-03-02tdf#114441: replace sal_uLong with sal_uInt8 as all of them are small constantsYomnasalama1-3/+3
The constants are now of type sal_uInt8 as all of them are small and will not exceed the limit. Also, they are not going to change after that in the code. Change-Id: I81d144bffe5c381f9280a4c364462e33b3a9a8b5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146721 Tested-by: Hossein <hossein@libreoffice.org> Reviewed-by: Hossein <hossein@libreoffice.org>
2023-03-01no need to allocate Gradient separatelyNoel Grandin2-8/+9
it is only one pointer big Change-Id: I21afdeb8015c658c7b9d5db24bceeb8e43694272 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148038 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-24BaseMutex->std::mutex in PDFErrorRequestNoel Grandin1-7/+4
Change-Id: Iae9c6fa3da9547d233470168aff3cda6270739cf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147589 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-24drop OComponentHelper in XMLFilterDialogComponentNoel Grandin1-86/+16
nothing seems to be using the aggregation here - as expected, this is not the kind of thing that is aggregated Change-Id: I8abc4f4db0dc9447e4018330bba86f3579bb21c9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147503 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-22BaseMutex->std::mutex in ConfigFlushNoel Grandin2-36/+13
Change-Id: Ia8c5d5cc6ea52ed385ae4ea3e860f2cc88d06377 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147456 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-22LOAD_IMPLICIT has been activeNoel Grandin2-10/+0
since commit c847b9430e26f98664f42c8fd4c28dc0433174b2 Author: Oliver Bolte <obo@openoffice.org> Date: Thu Apr 29 12:38:50 2004 +0000 Change-Id: I496e5d52fae29274e4782f700dc391a86a50eb72 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147403 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-22osl::Mutex->std::mutex in BaseContainerNoel Grandin7-152/+108
Change-Id: I66fcebb897446a5839ebde03e8e0a91d75a5e57c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147402 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-21tdf#150164 PDF exports bookmarks as named destinationsSeth Chaiklin1-2/+3
partial revert of c42dc1be0c3161e621ed0a667ae6b047f8bb23d4 Change-Id: I01fa72faf6365d0f999872562aaaa6139ed61d60 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147133 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-02-20osl::Mutex->std::mutex in FilterCacheNoel Grandin2-139/+126
Change-Id: I5cdfe5397235eef276fdf77a4bf83bebdc96438b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147338 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-20tdf#137883 filter: rename DOCX filters to be less confusingMichael Stahl10-12/+15
Rename misleading "Word 2007–365" filter which corresponds to the sightly incompatible first pre-ISO version of OOXML (ECMA-376 1st edition) and is actually very specifically for Word 2007. Stop confusing users with standardese like "Office Open XML Text Document (Transitional)" and instead use the name of the application that the format is intended for, "Word 2010-365". Hopefully users will now pick the latter filter over the former. Also, the OOXML_Text_Template.xcu was missing EXPORT flag so didn't show up in Save dialog. Also, the OOXML_Text.xcu was missing SUPPORTSSIGNING flag which vmiklos said was by accident. Change-Id: I3aa88ac0fee51c906f11e75558a5d6de4f36a402 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147210 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-02-17tdf#153549 update extended tip because of command name changeSeth Chaiklin1-1/+2
Change-Id: I469b3852b406f209ed70e19a75f64cd67583c643 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147123 Tested-by: Jenkins Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
2023-02-15Remove css.xml.xslt.XSLT2Transformer not implemented by LOStephan Bergmann1-2/+4
(see f4238ed900cdfa65d447fbef81b2e8ae95095a4e "Revert 'XSLT2Transformer::create should always succeed'": "LO does not ship this service, it's only provided by Saxon extension") Change-Id: I8ff8c9e4bd0eae7055dcb4fc83a04ea41310b9a8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147038 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-14Revert "XSLT2Transformer::create should always succeed"Stephan Bergmann1-1/+11
This reverts commit 304ebfad5193c857e4edf18cb05d61b6ccc1f7d0. As mst pointed out on IRC, "LO does not ship this service, it's only provided by Saxon extension". Change-Id: Iafb416f3a3385345fd74cf76af4e9f600ff8eb79 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146975 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-14Simplify code a bitStephan Bergmann1-4/+1
("instantiation of XSLT 2.0 transformer service failed" would mean that it throws an exception, not that xTransformer would be null) Change-Id: I8994c4b8d1c7ade8d5c7ef93569315d45fc7265d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146950 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-14Remove an unhelpful try/catchStephan Bergmann1-17/+10
The theMacroExpander operations should never throw, so better leave uncaught any exceptions that would happen after all, rather than silently swallowing them. Change-Id: Ic5160a69e7cd7412c91ae3589b3dc89f6fe4c43b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146951 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-13Assume that only vnd.sun.star.expand URLs shall be macro-expanded hereStephan Bergmann1-2/+5
...even though XSLTFilter::expandUrl did that unconditionally ever since the function's introduction in 3218e6592694da70760c1a42b7c562c6864799b2 "INTEGRATION: CWS xsltfilter09". Change-Id: I08022091bc15048478c08e3f0f5cfffbb954df5d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146911 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-13XSLT2Transformer::create should always succeedStephan Bergmann1-11/+1
Change-Id: Ie2aa4fe48da2362ff1a88fa44a51bed498a4f432 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146935 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-02-13Fix/simplify some vnd.sun.star.expand: handlingMike Kaganski1-6/+7
The vnd.sun.star.expand: payload must be URL-decoded prior to passing it to expandMacros; the protocol must be checked case-insensitively. Use startsWithIgnoreAsciiCase for that. Change-Id: I2be993a0400a27cb7dc57207cd0824b4505afd2b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146855 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-02-07tdf#153083 writerfilter,sw: consolidate StyleName->StyleId in msfilterMichael Stahl1-0/+19
Turns out there was already a function MSWordStyles::CreateStyleId() doing the same thing as FilterChars(), presumably better. Change-Id: Idd0129c753841b86bd026e1300aa57a56721c89e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146609 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2023-02-07improve readability of VirtualDevice constructorNoel Grandin1-1/+1
(a) It is not obvious what DeviceFormat::DEFAULT means (b) There are two parameters (each with two states), but only really 2 possible overall states So (1) use more useful names (2) combine the two parameters into one enum Change-Id: Ic0595b39e032cc9e019b88326389d055b977da00 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146589 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-02-01sw: implement "Theme" property for the XDrawPage in WriterTomaž Vajngerl1-4/+8
Change-Id: I8eed04f0ccb2e626a648abcaecd957b6f62c39d8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146226 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-02-01tdf#66580 write more metadata to embedded and attached filesTomaž Vajngerl1-1/+1
Change-Id: I6f40fd98b48893d01d29a806877821c561688897 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146288 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2023-01-24tdf#66580 write ODF document as an attachment in hybrid modeTomaž Vajngerl1-13/+19
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-19Make PDFExport Password Subdialog AsyncNickWingate2-29/+48
Dialog in File>Export As PDF>Security>Set Password Close subdialog when parent dialog is closed Signed-off-by: NickWingate <nick.wingate@collabora.com> Change-Id: I9db8459309f2806ed47f9f932e0bde246400b2dc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144854 Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145759 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2023-01-15Merge SvXMLAttributeList to comphelper::AttributeListMike Kaganski4-19/+17
And simplify the latter, to always use "CDATA" type (as the former did). "CDATA" was used in all cases but one, where an empty string was used. Change-Id: I1b3bfae40e29628e4094d9a6e58a69a66865874c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145526 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2023-01-15tdf#117266 sc oox: export vml button with a correct nameJustin Luth2-8/+12
Without a correctly formatted ID, LO was unable to import the shape into the spreadsheet. Now at least the button shows up and can be pressed. MS Word already showed the button before the patch, so nothing there has changed. That suggests that our problem may be more during import. This code path is also followed by DOC and DOCX formats, but they do completely different things with the results. This is super nasty code... Change-Id: I383736a7de9c3e94b427d5747e5949c0348dcecd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145509 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com>
2023-01-12drop internal support for 1-bit imagesNoel Grandin1-1/+1
on modern hardware, these are less efficient than regular alpha channels. Also, this greatly simplies the range of stuff that vcl needs to deal with, which will make the upcoming transparency->alpha patch easier to deal with. Enhance vcl::CreateFromData to convert incoming 1-bit data to 8-bit image. Change-Id: I35829da750029fe373d0d2911a669d10bab6ad23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145321 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-12-20lok: hide 'View PDF after export' checkbox in PDF export dialogAndras Timar1-1/+9
Change-Id: I866e4765ba88ca6c93375c9fecd51f22b79ce72e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144535 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2022-12-20lok: hide signatures in PDF export dialogSzymon Kłos1-1/+5
Change-Id: Idd67e7ffe4dffc89555d75773501908165cbdd7b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144149 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144513 Tested-by: Jenkins