summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-11Add loongarch64 support.wjh-la
Loongarch is a new RISC ISA , which includes a 32-bit version and a 64-bit version, Here are some documents about Loongarch: https://github.com/loongson/LoongArch-Documentation. The loongarch64 bridges implementation refers to mips64 bridges, and the code related to abi and asm has been modified Change-Id: I1d9cd3aadf63046c8cdecc9a64842567bfa1cecc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137486 Tested-by: Stephan Bergmann <sbergman@redhat.com> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-08-11jsdialog: dump tooltips for IconView entriesMike Kaganski
This required to move the code calling Help::ShowQuickHelp from weld objects into SvTreeListBox::RequestHelp, and have it only request the tooltip text from those objects. Change-Id: I25c97360bbaac4705830a13aa06e0992b68fffff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138084 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-08-11unique_ptr->optional in SwASCIIParserNoel Grandin
Change-Id: I46cb62609c738a12cb988aa9c09171403e33c619 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138105 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-11unique_ptr->optional in SwWW8ImplReaderNoel Grandin
Change-Id: I9d5961c974cf0ec378dd3560ad24d65e5d3aa197 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138104 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-11calc: fix undo action disabled in different viewsNoel Grandin
when actions are independant. Update existing unit test to test this too. Change-Id: I0af804321c371e72fb1ce096ec4ec3566a3fcffc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138079 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> (cherry picked from commit db23578b694228c983b615c9be6aed8a6a2af84b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138029 Tested-by: Jenkins
2022-08-11uitest: sd: split UITest_impress_tests into 2Xisco Fauli
Change-Id: I3c9d0ef457085f14ce59092db8756c04ad5ce62b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138087 Tested-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2022-08-11tdf#119246: sd: Add UItestXisco Fauli
Change-Id: I587c42e658d6f3dca2203d95cda2a972a4ddff91 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138058 Tested-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2022-08-11make dtor order as reverse ctor orderCaolán McNamara
Change-Id: Ia5bff2361006d3dcb1032adef584ceb9910e56fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138100 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-08-11gtk4: clear action group in dtorCaolán McNamara
Change-Id: I0b0a11fe108f63b63238e2517e9151d52673bbf9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138099 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-08-11gtk4: get submenu hierarchy rightCaolán McNamara
i.e deck sidebar menubutton dropdown Change-Id: Ib33d4ed8593c6c73b51c4de4d2da4b5036c8a723 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138097 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-08-11gtk4: get the menu in sidebar menubutton workingCaolán McNamara
this is an edge case where for gtk3 there has to be a GtkWindow present to support the accelerators, and for gtk4 the final window the menubutton is in must be the same one present when the actions were created. Change-Id: I08911daf8e7752b6eb589a162bb07edda76b6f30 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138091 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-08-11clang-tidy modernize-pass-by-value in sdNoel Grandin
Change-Id: Ic1e641b1a9373e3ae8da09436b0e8e7b852bede7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138082 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-11qt a11y: Use correct coord system in QtAccessibleWidget::childAtMichael Weghorn
`QAccessibleInterface::childAt` uses screen coordinates, but `XAccessibleComponent::getAccessibleAtPoint` wants local coordinates (i.e. coordinates relative to the object's top left corner), so convert accordingly. Change-Id: I61ab695ea6fdaf336903a0dc7d4c50c90a14e656 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138096 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
2022-08-11qt a11y: Implement QtAccessibleWidget::text{After,Before}OffsetMichael Weghorn
In a quick test with a Writer paragraph having the text "Abcd efgh ijkl" selected in Accerciser's treeview of the LO a11y hierarchy, the results of running these commands looked as expected: In [28]: text = acc.queryText() In [29]: text.getTextBeforeOffset(4, pyatspi.text.TEXT_BOUNDARY_CHAR) Out[29]: ('d', 3, 4) In [30]: text.getTextAfterOffset(4, pyatspi.text.TEXT_BOUNDARY_CHAR) Out[30]: ('e', 5, 6) In [31]: text.getTextBeforeOffset(4, pyatspi.text.TEXT_BOUNDARY_WORD_START) Out[31]: ('Abcd', 0, 4) In [32]: text.getTextAfterOffset(4, pyatspi.text.TEXT_BOUNDARY_WORD_START) Out[32]: ('efgh', 5, 9) Change-Id: Icc310c05634763e92c298e793d87a603b654ac4c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138092 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
2022-08-11qt a11y: Check range for offset passed to text methodsMichael Weghorn
Otherwise LO crashes when invalid offsets are passed from AT when using the qt5/qt6/kf5 VCL plugins. One scenario that resulted in a crash: * start Accerciser * start Calc * press F2 in cell A1 to enter edit mode * navigate to the "Cell A1" object representing the editable cell, then to its paragraph child in Accerciser's treeview of the LO a11y hierarchy * in Accerciser's "Interface Viewer", type Enter, then any character This would crash due to a `com::sun::star::lang::IndexOutOfBoundsException` being thrown by one of the methods of the XAccessibleText/XAccessibleEditableText interfaces. Change-Id: I1b8c6057ca1e4e4485d516418bb82cd1a6697ce1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138078 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
2022-08-11Related: tdf#150176 pptx chart import: fix automatic border styleBalazs Varga
With this patch it will work not just for pptx, but other ooxml presentation file formats. Follow up of commit: 071a36e042c76286fedb38f479dac79f29b661f9 (tdf#150176 pptx chart import: fix automatic border style) Change-Id: I05e03d2723e9978156dfd8025e3a4b5bcecddbc0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138059 Tested-by: Jenkins Reviewed-by: Balazs Varga <balazs.varga.extern@allotropia.de>
2022-08-11unique_ptr->optional in SwUndoSaveSectionNoel Grandin
Change-Id: I5fb07b35dbe3da55b6ca71537ac57dec9a5d0183 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138056 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-11no need to allocate SwCallLink on the heapNoel Grandin
Change-Id: Id1300d6eba82c7aaee41fc937e07a8f9a74bd076 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138088 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10Removed duplicated included & move to pragma onceAndrea Gelmini
Change-Id: If936a1b105f68f234a6537a4a9e9ab9661714a78 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138071 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2022-08-10unique_ptr->optional in SwInsertField_DataNoel Grandin
Change-Id: Ifcf9cf2b3f731737e12c5316e4fa584cc47fce36 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138076 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10update creditsChristian Lohmaier
Change-Id: I70c537db5dbf921de0c8b3bebf7d241f9173b705
2022-08-10jsdialog: dump IconView::GetActivateOnSingleClickMike Kaganski
Change-Id: I426c3148ee9ba92f10411ff88fc6a6fad8f0da53 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138064 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2022-08-10Update git submodulesChristian Lohmaier
* Update translations from branch 'master' to f808bec4d777ad59ba0a993408723c34e2fa9989 - update translations for 7.4.0 rc3/master and force-fix errors using pocheck Change-Id: I6c070b2c1cad40730d6a8ead60d4edd9b23c9c38
2022-08-10Better cast to sal_[u]IntPtr when passing pointer to O[U]String::numberStephan Bergmann
Change-Id: I5b7a0fa060c1e0ae4aa194e0c1862f303dd8a2d7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138062 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-08-10mnemonic-widget of showlocationCaolán McNamara
Change-Id: Ie0955c2c8efcec5d1f43c86fe12b3a2b964c4c0a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138080 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2022-08-10tdf#145226: sw_odfexport: Add unittestXisco Fauli
Change-Id: Ie9baaca378c8962326d69ad0164cf9899a1ce98f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138054 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2022-08-10vcl: remove unused GLYPH_FONT_HEIGHTChris Sherlock
GLYPH_FONT_HEIGHT not used since: Commit: d538d3d84172a74dfe97d59a6d3daf9a45459cab Short title: This fallback code makes no sense any more Change-Id: I9c87e2fb2eb33abbc2a7e4d82435704f1a895c75 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137631 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
2022-08-10tdf#150269 sw: add unit testMichael Stahl
This was fixed by commit 3afe4f66f7266ede9922ce0682db38c9369349b7 "sw clearing breaks: add RTF filter", which enabled sending run properties for \line. Change-Id: I7d8f8860bdbead0ec68ca5ad99bb28ddaa51f323 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138053 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-08-10sw: fix infinite recursion in SwEditWin::GetSurroundingTextSelection()Michael Stahl
The unexpected problem of calling SwCursorShell::Pop() from there ending up calling the function itself again, with gtk3 UI, on loading forum-mso-en-4034.docx and clicking somewhere or scrolling: 466 SwEditWin::GetSurroundingTextSelection() const at sw/source/uibase/docvw/edtwin.cxx:6656 467 ImplHandleSurroundingTextRequest(vcl::Window*, rtl::OUString&, Selection&) at vcl/source/window/winproc.cxx:2487 468 ImplHandleSalSurroundingTextRequest(vcl::Window*, SalSurroundingTextRequestEvent*) at vcl/source/window/winproc.cxx:2497 469 ImplWindowFrameProc(vcl::Window*, SalEvent, void const*) at vcl/source/window/winproc.cxx:2826 470 SalFrame::CallCallback(SalEvent, void const*) const at vcl/inc/salframe.hxx:306 471 GtkSalFrame::IMHandler::signalIMRetrieveSurrounding(_GtkIMContext*, void*) at vcl/unx/gtk3/gtkframe.cxx:5707 472 _gtk_marshal_BOOLEAN__VOIDv () at /lib64/libgtk-3.so.0 473 g_signal_emit_valist () at /lib64/libgobject-2.0.so.0 474 g_signal_emit_by_name () at /lib64/libgobject-2.0.so.0 475 gtk_im_multicontext_retrieve_surrounding_cb () at /lib64/libgtk-3.so.0 476 _gtk_marshal_BOOLEAN__VOIDv () at /lib64/libgtk-3.so.0 477 g_signal_emit_valist () at /lib64/libgobject-2.0.so.0 478 g_signal_emit_by_name () at /lib64/libgobject-2.0.so.0 479 enable () at /lib64/libgtk-3.so.0 480 GtkSalFrame::IMHandler::createIMContext() at vcl/unx/gtk3/gtkframe.cxx:5187 481 GtkSalFrame::IMHandler::IMHandler(GtkSalFrame*) at vcl/unx/gtk3/gtkframe.cxx:5153 482 GtkSalFrame::SetInputContext(SalInputContext*) at vcl/unx/gtk3/gtkframe.cxx:2711 483 vcl::Window::ImplNewInputContext() () at vcl/source/window/window.cxx:1781 484 vcl::Window::SetInputContext(InputContext const&) at vcl/source/window/window.cxx:2083 485 SwView::CheckReadonlySelection() at sw/source/uibase/uiview/view.cxx:699 486 SwView::AttrChangedNotify(LinkParamNone*) at sw/source/uibase/uiview/view.cxx:510 487 SwView::LinkStubAttrChangedNotify(void*, LinkParamNone*) at sw/source/uibase/uiview/view.cxx:499 488 Link<LinkParamNone*, void>::Call(LinkParamNone*) const at include/tools/link.hxx:111 489 SwCursorShell::CallChgLnk() at sw/source/core/crsr/crsrsh.cxx:2544 490 SwCallLink::~SwCallLink() at sw/source/core/crsr/callnk.cxx:149 491 SwCursorShell::Pop(SwCursorShell::PopMode) at sw/source/core/crsr/crsrsh.cxx:2327 492 SwWrtShell::Pop(SwCursorShell::PopMode) at sw/source/uibase/wrtsh/wrtsh1.cxx:2016 493 SwEditWin::GetSurroundingTextSelection() const at sw/source/uibase/docvw/edtwin.cxx:6656 This SwCallLink looks unnecessary here, but it's triggered because it compares the state before Pop() to the state after Pop(), instead of the state before Push() to the state after Pop(). This problem could probably benefit from being solved more generally, but with 2 functions involved it gets rather ugly as it can't easily be encapsulated in SwCursorShell. (probably regression from aac9bd235e65b27faf63e64bba3ecd94837381d6) Change-Id: Ief176b54daf96da378d2e5d57f3dd5b4a0817299 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137987 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-08-10sw_fieldmarkhide: fix crash on exporting forum-mso-en-4034.docx to ODTMichael Stahl
The problem is that there's a field in a preceding paragraph that ends immediately before another field starts, and so the backwards iteration erroneously picks it up in ModelToViewHelper ctor. Change-Id: I6e65c04e0372377b3af48f1d80de287b6113e1c3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137986 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2022-08-10unique_ptr->optional in SwFormatContentNoel Grandin
Change-Id: I815fa0f2dcdc1512958d95703b56449010fd2f6e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138075 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10unique_ptr->optional in SwUndoInsertNoel Grandin
Change-Id: Id351826427ef1ab6a292d7af96d3fa5bcf6ebb9b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137999 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10unique_ptr->optional in SwUndoDeleteNoel Grandin
Change-Id: I29cc59bb7283e86d4045cd854d7e9a4f056c3361 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138000 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10Missing colon in toolbar help idsMaxim Monastirsky
Regression of 5200a73627d13e2997f81b53f61e143e77e328ee ("use more string_view in various"). Change-Id: I402eb6c03dcfa661c79c5469cfca3c86ac528f60 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138066 Tested-by: Jenkins Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2022-08-10Make ToolBox::InsertItem take the command nameMaxim Monastirsky
For the next patch for tdf#149956 I need the command to be already set when the VclEventId::ToolboxItemAdded event is emitted. Change-Id: I3d8ce44b426a3ed5704d4520d6e62bc4efbf8e44 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138038 Tested-by: Jenkins Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2022-08-10Unnecessary ToolBox::SetItemText callMaxim Monastirsky
Change-Id: I8d15e9657b3a6d01de9d07130ae3aa8284fbd178 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138037 Tested-by: Jenkins Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2022-08-10unique_ptr->optional in SwUndoInsertsNoel Grandin
Change-Id: I838be443a9521db23ca903ce3d5804cdf8bbf674 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138055 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10unique_ptr->optional in SwTextFootnoteNoel Grandin
Change-Id: Icc08fde3d385403d59fde8555f4b1d160209f3a1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138057 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10unique_ptr->optional in MoveNodeRangeNoel Grandin
Change-Id: Ibc75ffd2ec5bad7eb3ef99fae526dd49b2f4e8c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138001 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10loplugin:passstuffbyrefNoel Grandin
Change-Id: Ib2b2650da7abc9260897f9b5aad619a0ea6ae941 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138052 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-08-10vcl: AnimationRenderer::getOutPos() -> GetOriginPosition()Chris Sherlock
Change-Id: I23275aa9915ea47cb91a8511b219869a4d62b96a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137352 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-08-10Remove code duplication in GraphicDescriptor for GIFofftkp
GraphicFormatDetector and GraphicDescriptor have duplicate format detection code so now GraphicDescriptor uses GraphicFormatDetector functions instead to detect the format for GIF files Change-Id: Ieabacb302c9c712fc6f3da85eaccc07dca035eba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137934 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-08-10Prepare GraphicDescriptor and GraphicFormatDetector for mergingofftkp
Make GraphicFormatDetector return GraphicFileFormat instead of a string and various variable changes so that the two can be combined in future patches. Change-Id: I6e184b3ba52289db02e0d4eebeeadde0ce0433b4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137627 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-08-09uitest: sw: add test for add and remove in customize dialogXisco Fauli
intended to be a test for tdf#149966 but it's not reproducible with gen. Anyway, it's worth it to have it Change-Id: I2323bdec1f1c2b17ddd310257edec5156862b176 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138036 Tested-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2022-08-09Mark external/boost/constexpr.patch.0 as upstreamedStephan Bergmann
Change-Id: I23898f6aebd5a1fd28a2de9da6a89503b25eb6ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138035 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-08-09crashreporting: frequent crash seen in PackedFile::flushCaolán McNamara
at: if (osl::File::E_None == osl::FileBase::createTempFile(nullptr, &aHandle, &aTempURL)) { .... if (osl_File_E_None == osl_writeFile(aHandle, ... createTempFile is returning osl::File::E_None but presumably we are missing setting a possible error state here https: //crashreport.libreoffice.org/stats/crash_details/ea4b4050-dd0f-42b1-b30f-b67612806371 Change-Id: Ib2d0c3c91e40fe985571e79822b91f2faf401471 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138013 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Jenkins
2022-08-09uitest: sw: remove duplicated testXisco Fauli
Besides, remove empty lines and simplify code a bit Change-Id: I0e756a0209b3f126f4384e1485fcbc3d8075a372 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138034 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2022-08-09tdf#149916: sw: Add UItestXisco Fauli
Change-Id: I79b75c35023c1f508a0e4e48739ca7ee99c19d62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138012 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2022-08-09tools: json writer test does not need to use test::BootstrapFixtureChris Sherlock
Change-Id: Iea7fa63ca7a3208d065ac2960998041672fc8d7c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136231 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-08-09crashreportScraper: replace quation marks from codeXisco Fauli
otherwise, the csv is imported incorrectly Change-Id: I5451516b2fdc80a96a4fde83a2c72d701bfd995a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138009 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>