[Libreoffice-commits] core.git: sc/source

2022-03-30 Thread Dennis Francis (via logerrit)
 sc/source/ui/undo/undoblk.cxx |   14 ++
 1 file changed, 14 insertions(+)

New commits:
commit 6ade0f41805261c9c8c7ac784f5bddb2ad47efda
Author: Dennis Francis 
AuthorDate: Thu Mar 24 10:21:11 2022 +0530
Commit: Dennis Francis 
CommitDate: Thu Mar 31 07:42:25 2022 +0200

lok: paste-undo: invalidate sheetgeometry

In case of copy/pasting of whole column(row) and its undo/redo may
result in column(row) width(height) changes. Hence a corresponding
sheet-geometry invalidation message needs to be sent to the lok
client(s).

Change-Id: I7aa471d9770fc21c567a3c6f5d5926df0fd5dacb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132174
Tested-by: Jenkins
Reviewed-by: Dennis Francis 

diff --git a/sc/source/ui/undo/undoblk.cxx b/sc/source/ui/undo/undoblk.cxx
index 77a7bc096860..e3b10f78bca8 100644
--- a/sc/source/ui/undo/undoblk.cxx
+++ b/sc/source/ui/undo/undoblk.cxx
@@ -1094,6 +1094,11 @@ void ScUndoPaste::DoChange(bool bUndo)
 
 ScRangeList aDrawRanges(maBlockRanges);
 PaintPartFlags nPaint = PaintPartFlags::Grid;
+
+// For sheet geometry invalidation.
+bool bColsAffected = false;
+bool bRowsAffected = false;
+
 for (size_t i = 0, n = aDrawRanges.size(); i < n; ++i)
 {
 ScRange& rDrawRange = aDrawRanges[i];
@@ -1116,11 +1121,13 @@ void ScUndoPaste::DoChange(bool bUndo)
 {
 nPaint |= PaintPartFlags::Top;
 rDrawRange.aEnd.SetCol(rDoc.MaxCol());
+bColsAffected = true;
 }
 if (maBlockRanges[i].aStart.Col() == 0 && 
maBlockRanges[i].aEnd.Col() == rDoc.MaxCol()) // whole row
 {
 nPaint |= PaintPartFlags::Left;
 rDrawRange.aEnd.SetRow(rDoc.MaxRow());
+bRowsAffected = true;
 }
 if (pViewShell && pViewShell->AdjustBlockHeight(false, ))
 {
@@ -1142,6 +1149,13 @@ void ScUndoPaste::DoChange(bool bUndo)
 pDocShell->PostDataChanged();
 if (pViewShell)
 pViewShell->CellContentChanged();
+
+if (bColsAffected || bRowsAffected)
+ScTabViewShell::notifyAllViewsSheetGeomInvalidation(
+pViewShell,
+bColsAffected, bRowsAffected,
+true /* bSizes*/, true /* bHidden */, true /* bFiltered */,
+true /* bGroups */, aDrawRanges[0].aStart.Tab());
 }
 
 void ScUndoPaste::Undo()


[Libreoffice-commits] core.git: sc/qa

2022-03-30 Thread Dennis Francis (via logerrit)
 sc/qa/unit/tiledrendering/tiledrendering.cxx |  102 +++
 1 file changed, 102 insertions(+)

New commits:
commit a8aad2c761ccc18cd24ff2a87e6bd1b5c2b8cfe1
Author: Dennis Francis 
AuthorDate: Fri Mar 18 12:48:30 2022 +0530
Commit: Dennis Francis 
CommitDate: Thu Mar 31 07:40:49 2022 +0200

lok: unit-test: add comment unique id checks

Change-Id: I588484955ad3ad4c5ec3bfa9f5a844096c768ff2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131725
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 9bafce808b6d301b17ee60da452a41cd4b7cf02c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132173
Tested-by: Jenkins
Reviewed-by: Dennis Francis 

diff --git a/sc/qa/unit/tiledrendering/tiledrendering.cxx 
b/sc/qa/unit/tiledrendering/tiledrendering.cxx
index 04c22438f74b..249cd2420e4a 100644
--- a/sc/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include 
@@ -122,6 +123,7 @@ public:
 void testTextSelectionBounds();
 void testSheetViewDataCrash();
 void testTextBoxInsert();
+void testCommentCellCopyPaste();
 
 CPPUNIT_TEST_SUITE(ScTiledRenderingTest);
 CPPUNIT_TEST(testRowColumnHeaders);
@@ -177,6 +179,7 @@ public:
 CPPUNIT_TEST(testTextSelectionBounds);
 CPPUNIT_TEST(testSheetViewDataCrash);
 CPPUNIT_TEST(testTextBoxInsert);
+CPPUNIT_TEST(testCommentCellCopyPaste);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -2812,6 +2815,105 @@ void ScTiledRenderingTest::testTextBoxInsert()
 Scheduler::ProcessEventsToIdle();
 }
 
+void ScTiledRenderingTest::testCommentCellCopyPaste()
+{
+// Load a document
+comphelper::LibreOfficeKit::setActive();
+// Comments callback are emitted only if tiled annotations are off
+comphelper::LibreOfficeKit::setTiledAnnotations(false);
+
+// FIXME: Hack because previous tests do not destroy ScDocument(with 
annotations) on exit (?).
+ScPostIt::mnLastPostItId = 1;
+
+{
+ScModelObj* pModelObj = createDoc("empty.ods");
+ViewCallback aView;
+int nView = SfxLokHelper::getView();
+
+SfxLokHelper::setView(nView);
+
+ScTabViewShell* pTabViewShell = 
dynamic_cast(SfxViewShell::Current());
+CPPUNIT_ASSERT(pTabViewShell);
+
+lcl_typeCharsInCell("ABC", 0, 0, pTabViewShell, pModelObj); // Type 
"ABC" in A1
+
+pTabViewShell->SetCursor(1, 1);
+
+// Add a new comment
+uno::Sequence 
aArgs(comphelper::InitPropertySequence(
+{
+{"Text", uno::makeAny(OUString("LOK Comment Cell B2"))},
+{"Author", uno::makeAny(OUString("LOK Client"))},
+}));
+comphelper::dispatchCommand(".uno:InsertAnnotation", aArgs);
+Scheduler::ProcessEventsToIdle();
+
+// We received a LOK_CALLBACK_COMMENT callback with comment 'Add' 
action
+CPPUNIT_ASSERT_EQUAL(std::string("Add"), 
aView.m_aCommentCallbackResult.get("action"));
+CPPUNIT_ASSERT_EQUAL(std::string("1"), 
aView.m_aCommentCallbackResult.get("id"));
+CPPUNIT_ASSERT_EQUAL(std::string("0"), 
aView.m_aCommentCallbackResult.get("tab"));
+CPPUNIT_ASSERT_EQUAL(std::string("LOK Client"), 
aView.m_aCommentCallbackResult.get("author"));
+CPPUNIT_ASSERT_EQUAL(std::string("LOK Comment Cell B2"), 
aView.m_aCommentCallbackResult.get("text"));
+
+uno::Sequence aCopyPasteArgs;
+
+// We need separate tests for single cell copy-paste and cell-range 
copy-paste
+// since they hit different code paths in ScColumn methods.
+
+// Single cell(with comment) copy paste test
+{
+comphelper::dispatchCommand(".uno:Copy", aCopyPasteArgs);
+Scheduler::ProcessEventsToIdle();
+
+pTabViewShell->SetCursor(1, 49);
+Scheduler::ProcessEventsToIdle();
+comphelper::dispatchCommand(".uno:Paste", aCopyPasteArgs); // 
Paste to cell B50
+Scheduler::ProcessEventsToIdle();
+
+// We received a LOK_CALLBACK_COMMENT callback with comment 'Add' 
action
+CPPUNIT_ASSERT_EQUAL(std::string("Add"), 
aView.m_aCommentCallbackResult.get("action"));
+// Without the fix the id will be "1".
+CPPUNIT_ASSERT_EQUAL(std::string("2"), 
aView.m_aCommentCallbackResult.get("id"));
+CPPUNIT_ASSERT_EQUAL(std::string("0"), 
aView.m_aCommentCallbackResult.get("tab"));
+CPPUNIT_ASSERT_EQUAL(std::string("LOK Client"), 
aView.m_aCommentCallbackResult.get("author"));
+CPPUNIT_ASSERT_EQUAL(std::string("LOK Comment Cell B2"), 
aView.m_aCommentCallbackResult.get("text"));
+}
+
+// Cell range (with a comment) copy paste test
+{
+// Select range A1:C3
+pModelObj->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, KEY_HOME | 
KEY_MOD1);
+

[Libreoffice-commits] core.git: sc/source

2022-03-30 Thread Dennis Francis (via logerrit)
 sc/source/core/data/column4.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 48d0a9423f21b6380c3ca819e090947d3a25e23c
Author: Dennis Francis 
AuthorDate: Wed Mar 16 11:27:48 2022 +0530
Commit: Dennis Francis 
CommitDate: Thu Mar 31 07:40:04 2022 +0200

lok-comments: CopyOneCellFromClip: notify lok clients

Change-Id: I4b433c8f7123fe33f1b106cbf45216d2b0c73dba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131691
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 3902718e6daed24e4fe3653b4241f94e802c4e56)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132172
Tested-by: Jenkins
Reviewed-by: Dennis Francis 

diff --git a/sc/source/core/data/column4.cxx b/sc/source/core/data/column4.cxx
index 8bf1e0af8321..e109448c4fce 100644
--- a/sc/source/core/data/column4.cxx
+++ b/sc/source/core/data/column4.cxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -341,6 +342,14 @@ void ScColumn::CopyOneCellFromClip( 
sc::CopyFromClipContext& rCxt, SCROW nRow1,
 pBlockPos->miCellNotePos =
 maCellNotes.set(
 pBlockPos->miCellNotePos, nRow1, aNotes.begin(), aNotes.end());
+
+// Notify our LOK clients.
+aDestPos.SetRow(nRow1);
+for (size_t i = 0; i < nDestSize; ++i)
+{
+ScDocShell::LOKCommentNotify(LOKCommentNotificationType::Add, 
, aDestPos, aNotes[i]);
+aDestPos.IncRow();
+}
 }
 
 void ScColumn::SetValues( const SCROW nRow, const std::vector& rVals )


[Libreoffice-commits] core.git: sc/source

2022-03-30 Thread Dennis Francis (via logerrit)
 sc/source/core/data/column2.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 52fb77b4145e1206d164c36f045b367c684c266c
Author: Dennis Francis 
AuthorDate: Wed Mar 16 11:29:34 2022 +0530
Commit: Dennis Francis 
CommitDate: Thu Mar 31 07:39:30 2022 +0200

lok: CopyCellNotesHandler: use the cloned object

to get correct id for the new cell-note.

Change-Id: I4df492ad91faad5797ba513f9a3aa9abd2baf88f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131690
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit acafc2823f917b6f6299fa0b65a0d7461531c8a5)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132171
Tested-by: Jenkins
Reviewed-by: Dennis Francis 

diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index f1a803750002..1f0ca6aad9d2 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -1903,9 +1903,10 @@ public:
 SCROW nDestRow = nRow + mnDestOffset;
 ScAddress aSrcPos(mnSrcCol, nRow, mnSrcTab);
 ScAddress aDestPos(mnDestCol, nDestRow, mnDestTab);
-miPos = mrDestNotes.set(miPos, nDestRow, p->Clone(aSrcPos, 
mrDestCol.GetDoc(), aDestPos, mbCloneCaption).release());
+ScPostIt* pNew = p->Clone(aSrcPos, mrDestCol.GetDoc(), aDestPos, 
mbCloneCaption).release();
+miPos = mrDestNotes.set(miPos, nDestRow, pNew);
 // Notify our LOK clients also
-ScDocShell::LOKCommentNotify(LOKCommentNotificationType::Add, 
(), aDestPos, p);
+ScDocShell::LOKCommentNotify(LOKCommentNotificationType::Add, 
(), aDestPos, pNew);
 }
 };
 


[Libreoffice-commits] core.git: sc/source

2022-03-30 Thread Dennis Francis (via logerrit)
 sc/source/core/data/postit.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit d0221fb6c35ecceb53e347d2790ac66b8a021044
Author: Dennis Francis 
AuthorDate: Tue Mar 15 13:00:35 2022 +0530
Commit: Dennis Francis 
CommitDate: Thu Mar 31 07:38:27 2022 +0200

lok: ensure unique id for annotations

Problem:
When a cell containing comment is copied and pasted to another cell, the
cloned comment/annotation in the target cell has the same id as the
original one. The lok clients depend upon the id of each comment to
identify them and update coordinates when updates are requested through
.uno:ViewAnnotationsPosition. So the client does not have enough
information to distinguish between comments of same id.

Conflicts:
sc/source/core/data/postit.cxx

Change-Id: Iebd7281113e0830826aff1bbdaae234bd5d5cd4e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131689
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit dd229e4cd9a0211c9a80031da1d2f7fb71b6683e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132170
Tested-by: Jenkins
Reviewed-by: Dennis Francis 

diff --git a/sc/source/core/data/postit.cxx b/sc/source/core/data/postit.cxx
index ef7ff3bc4725..cd8acfdceec4 100644
--- a/sc/source/core/data/postit.cxx
+++ b/sc/source/core/data/postit.cxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -877,7 +878,8 @@ ScPostIt::~ScPostIt()
 std::unique_ptr ScPostIt::Clone( const ScAddress& rOwnPos, 
ScDocument& rDestDoc, const ScAddress& rDestPos, bool bCloneCaption ) const
 {
 CreateCaptionFromInitData( rOwnPos );
-return bCloneCaption ? std::make_unique( rDestDoc, rDestPos, 
*this, mnPostItId ) : std::make_unique( rDestDoc, rDestPos, 
maNoteData, false, mnPostItId );
+sal_uInt32 nPostItId = comphelper::LibreOfficeKit::isActive() ? 0 : 
mnPostItId;
+return bCloneCaption ? std::make_unique( rDestDoc, rDestPos, 
*this, nPostItId ) : std::make_unique( rDestDoc, rDestPos, 
maNoteData, false, mnPostItId );
 }
 
 void ScPostIt::SetDate( const OUString& rDate )


[Libreoffice-bugs] [Bug 129911] INDEX ENTRY DIALOG: Footnote text does not appear in "Insert Index Entry" dialog when selected with Find

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129911

--- Comment #4 from Dieter  ---
Still present in

Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: zh-CN (de_DE); UI: en-GB
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148270] FILEOPEN DOCX: TOC is not correctly interpreted

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148270

--- Comment #3 from Rainer Bielefeld Retired  
---
a) No obvious DUP found with query


-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148270] FILEOPEN DOCX: TOC is not correctly interpreted

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148270

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de
 Status|UNCONFIRMED |NEW
   Keywords||regression
 Ever confirmed|0   |1

--- Comment #2 from Rainer Bielefeld Retired  
---
Still REPRODUCIBLE with Server Installation of Version: 7.4.0.0.alpha0+ (x64) 
Build ID b000d964fcc8849d10576bf3539bde7729db2eb1
CPU threads: 12; OS: Windows 10.0 Build 19044; UI render: default; VCL: win
Locale: de-DE (de_DE); UI: en-US  |  Calc: CL  |  Auto Colibre Theme  | 
Special devUserProfile

Was still ok with Server Installation of Version: 6.0.7.3 (x64) 
Build-ID dc89aa7a9eabfd848af146d5086077aeed2ae4a5; CPU-Threads: 12; BS: Windows
10.0; UI-Render: GL; Gebietsschema: de-DE (de_DE); Calc: CL, Special
devUserProfile

and 

Server Installation of Version:  4.0.0.3 WIN10
Build-ID  7545bee9c2a0782548772a21bc84a9dcc583b89;  Special devUserProfile

So REGRESSION

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131603] FILESAVE RTF: wrong style names with german Umlaute when opening in MS Word

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131603

Dieter  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #3 from Dieter  ---
Seems to be fixed in

Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: zh-CN (de_DE); UI: en-GB
Calc: CL

=> RESOLVED WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 112751] [META] RTF (text) style bugs and enhancements

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112751
Bug 112751 depends on bug 131603, which changed state.

Bug 131603 Summary: FILESAVE RTF: wrong style names with german Umlaute when 
opening in MS Word
https://bugs.documentfoundation.org/show_bug.cgi?id=131603

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148049] FILESAVE DOCX Numbering continues

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148049

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEW

--- Comment #1 from Dieter  ---
I confirm it with

Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: zh-CN (de_DE); UI: en-GB
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148047] UI: Disappearring color chooser of area fill

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148047

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
Dmitry, thank you for reporting the bug. But it's not clear to me about which
window and which area settings it is about. Could you please specify and add
some steps to reproduce:

1. Open a document in writer
2. Format -> ...
...

=> NEEDINFO

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147811] Specific DOC document prints to PDF virtual printer as raster

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147811

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter  ---
(In reply to Mike Kaganski from comment #0)
> When printing to a
> virtual PDF printer (tested on Windows using Microsoft Print to PDF, and
> Foxit PDF Editor Printer) using default profile, it outputs the text as a
> raster image inside the PDF.

I confirm it with

Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: zh-CN (de_DE); UI: en-GB
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_dark icon-themes/colibre_dark_svg icon-themes/colibre_svg

2022-03-30 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/res/base128.png |binary
 icon-themes/colibre/res/calc128.png |binary
 icon-themes/colibre/res/draw128.png |binary
 icon-themes/colibre/res/impress128.png  |binary
 icon-themes/colibre/res/main128.png |binary
 icon-themes/colibre/res/math128.png |binary
 icon-themes/colibre/res/otp_48_8.png|binary
 icon-themes/colibre/res/writer128.png   |binary
 icon-themes/colibre/sfx2/res/128x128_calc_doc-p.png |binary
 icon-themes/colibre/sfx2/res/128x128_draw_doc-p.png |binary
 icon-themes/colibre/sfx2/res/128x128_impress_doc-p.png  |binary
 icon-themes/colibre/sfx2/res/128x128_math_doc-p.png |binary
 icon-themes/colibre/sfx2/res/128x128_writer_doc-p.png   |binary
 icon-themes/colibre_dark/res/base128.png|binary
 icon-themes/colibre_dark/res/calc128.png|binary
 icon-themes/colibre_dark/res/draw128.png|binary
 icon-themes/colibre_dark/res/impress128.png |binary
 icon-themes/colibre_dark/res/main128.png|binary
 icon-themes/colibre_dark/res/mainapp_48_8.png   |binary
 icon-themes/colibre_dark/res/math128.png|binary
 icon-themes/colibre_dark/res/odb_48_8.png   |binary
 icon-themes/colibre_dark/res/odf_48_8.png   |binary
 icon-themes/colibre_dark/res/odg_48_8.png   |binary
 icon-themes/colibre_dark/res/odm_48_8.png   |binary
 icon-themes/colibre_dark/res/odp_48_8.png   |binary
 icon-themes/colibre_dark/res/ods_48_8.png   |binary
 icon-themes/colibre_dark/res/odt_48_8.png   |binary
 icon-themes/colibre_dark/res/otf_48_8.png   |binary
 icon-themes/colibre_dark/res/otg_48_8.png   |binary
 icon-themes/colibre_dark/res/otp_48_8.png   |binary
 icon-themes/colibre_dark/res/ots_48_8.png   |binary
 icon-themes/colibre_dark/res/ott_48_8.png   |binary
 icon-themes/colibre_dark/res/writer128.png  |binary
 icon-themes/colibre_dark/sfx2/res/128x128_calc_doc-p.png|binary
 icon-themes/colibre_dark/sfx2/res/128x128_draw_doc-p.png|binary
 icon-themes/colibre_dark/sfx2/res/128x128_impress_doc-p.png |binary
 icon-themes/colibre_dark/sfx2/res/128x128_math_doc-p.png|binary
 icon-themes/colibre_dark/sfx2/res/128x128_writer_doc-p.png  |binary
 icon-themes/colibre_dark_svg/res/base128.svg|2 
 icon-themes/colibre_dark_svg/res/calc128.svg|2 
 icon-themes/colibre_dark_svg/res/draw128.svg|2 
 icon-themes/colibre_dark_svg/res/impress128.svg |2 
 icon-themes/colibre_dark_svg/res/main128.svg|2 
 icon-themes/colibre_dark_svg/res/mainapp_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/math128.svg|2 
 icon-themes/colibre_dark_svg/res/odb_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/odf_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/odg_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/odm_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/odp_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/ods_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/odt_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/otf_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/otg_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/otp_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/ots_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/ott_48_8.svg   |2 
 icon-themes/colibre_dark_svg/res/writer128.svg  |2 
 icon-themes/colibre_dark_svg/sfx2/res/128x128_calc_doc-p.svg|2 
 icon-themes/colibre_dark_svg/sfx2/res/128x128_draw_doc-p.svg|2 
 icon-themes/colibre_dark_svg/sfx2/res/128x128_impress_doc-p.svg |2 
 icon-themes/colibre_dark_svg/sfx2/res/128x128_math_doc-p.svg|2 
 icon-themes/colibre_dark_svg/sfx2/res/128x128_writer_doc-p.svg  |2 
 icon-themes/colibre_svg/res/base128.svg |2 
 icon-themes/colibre_svg/res/calc128.svg |2 
 icon-themes/colibre_svg/res/draw128.svg |2 
 icon-themes/colibre_svg/res/impress128.svg  |2 
 icon-themes/colibre_svg/res/main128.svg |2 
 

[Libreoffice-bugs] [Bug 148284] New: The Background Area in LibreOffice Dark Color Scheme (Application Background) Should Use Different Color Than Document Background

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148284

Bug ID: 148284
   Summary: The Background Area in LibreOffice Dark Color Scheme
(Application Background) Should Use Different Color
Than Document Background
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

Created attachment 179225
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179225=edit
Document area has the same color with application area

See https://bugs.documentfoundation.org/show_bug.cgi?id=142172#c4

Using LibreOffice Dark color scheme in Tools > Options > Application Colors >
Color Scheme make the background of application and background of the document
have same color

Expected Result:

App Background has darker color than doc background

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: a3988b2d147a2442b348d58b79dbd6e71472b7af
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147967] Libreoffice Writer crashes after trying to insert a formula via the formula editor (macOS)

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147967

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com

--- Comment #8 from Aron Budea  ---
No crash here with LO 7.4.0.0.alpha0+ (4015b22d) / macOS.

In the screencast in comment 1, I can see a strange placement of the selection,
I wonder if the crash somehow depends on that.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148037] LibreOffice 7.2.5.2 (x64) will not open on Windows 11 home

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148037

Timur  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148283] New: Calc unrecoverable crash

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148283

Bug ID: 148283
   Summary: Calc unrecoverable crash
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@iafrica.com

Description:
I just lost a whole day of work creating formatting and inputing data. Then I
moved the mouse to select two columns with a view to centreing the text and
calc crashed. There was no interim save. 

Steps to Reproduce:
1.I cannot other than the info above, a crash report was sent
2.I worked on it yesterday then suspended the laptop overnight
3.Obviously did not save before doing so. Stupid me

Actual Results:
Had five workbooks open two had major changes made
everything lost
in config backup there are a bunch of empty untitled ods files, from before
lunch yesterday, but not one which I was working on

Expected Results:
I cannot blame anyone. I should not be using an alpha version for production
work, but how else does one find the time to assist as tester meaningfully.
I have been up since 03h30 to get this completed

I do not understand why no interim saves done


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-GB
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 28de720bc088a4afd3b2f28c5136a3478af5d22a
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-GB (en_GB.UTF-8); UI: en-GB
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_dark icon-themes/colibre_dark_svg icon-themes/colibre_svg

2022-03-30 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/cmd/32/drawcaption.png  |binary
 icon-themes/colibre/cmd/32/verticalcaption.png  |binary
 icon-themes/colibre/cmd/lc_drawcaption.png  |binary
 icon-themes/colibre/cmd/lc_verticalcaption.png  |binary
 icon-themes/colibre/cmd/sc_drawcaption.png  |binary
 icon-themes/colibre/cmd/sc_verticalcaption.png  |binary
 icon-themes/colibre_dark/cmd/32/drawcaption.png |binary
 icon-themes/colibre_dark/cmd/32/verticalcaption.png |binary
 icon-themes/colibre_dark/cmd/lc_drawcaption.png |binary
 icon-themes/colibre_dark/cmd/lc_verticalcaption.png |binary
 icon-themes/colibre_dark/cmd/sc_drawcaption.png |binary
 icon-themes/colibre_dark/cmd/sc_verticalcaption.png |binary
 icon-themes/colibre_dark_svg/cmd/32/drawcaption.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/32/verticalcaption.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/lc_drawcaption.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/lc_verticalcaption.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/sc_drawcaption.svg |2 +-
 icon-themes/colibre_dark_svg/cmd/sc_verticalcaption.svg |2 +-
 icon-themes/colibre_svg/cmd/32/drawcaption.svg  |2 +-
 icon-themes/colibre_svg/cmd/32/verticalcaption.svg  |2 +-
 icon-themes/colibre_svg/cmd/lc_drawcaption.svg  |2 +-
 icon-themes/colibre_svg/cmd/lc_verticalcaption.svg  |2 +-
 icon-themes/colibre_svg/cmd/sc_drawcaption.svg  |2 +-
 icon-themes/colibre_svg/cmd/sc_verticalcaption.svg  |2 +-
 24 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit aca4b5708207962935ca34adc70fed3a9ffb6074
Author: Rizal Muttaqin 
AuthorDate: Thu Mar 31 06:56:41 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Thu Mar 31 05:50:35 2022 +0200

Colibre: tdf#148029 Change line only shapes with real intersected shapes

(Callouts and Vertical Callouts)
Change-Id: I5531550a21536351bd56e1da365d0bc640bc9f32
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132341
Tested-by: Rizal Muttaqin 
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/colibre/cmd/32/drawcaption.png 
b/icon-themes/colibre/cmd/32/drawcaption.png
index 1995da1fe794..71d8aa30013b 100644
Binary files a/icon-themes/colibre/cmd/32/drawcaption.png and 
b/icon-themes/colibre/cmd/32/drawcaption.png differ
diff --git a/icon-themes/colibre/cmd/32/verticalcaption.png 
b/icon-themes/colibre/cmd/32/verticalcaption.png
index 377d1e29fee2..01a77221387f 100644
Binary files a/icon-themes/colibre/cmd/32/verticalcaption.png and 
b/icon-themes/colibre/cmd/32/verticalcaption.png differ
diff --git a/icon-themes/colibre/cmd/lc_drawcaption.png 
b/icon-themes/colibre/cmd/lc_drawcaption.png
index 2fcfba1f196e..b4e9a7e099d6 100644
Binary files a/icon-themes/colibre/cmd/lc_drawcaption.png and 
b/icon-themes/colibre/cmd/lc_drawcaption.png differ
diff --git a/icon-themes/colibre/cmd/lc_verticalcaption.png 
b/icon-themes/colibre/cmd/lc_verticalcaption.png
index a250bc77b47f..4678d85ffcc2 100644
Binary files a/icon-themes/colibre/cmd/lc_verticalcaption.png and 
b/icon-themes/colibre/cmd/lc_verticalcaption.png differ
diff --git a/icon-themes/colibre/cmd/sc_drawcaption.png 
b/icon-themes/colibre/cmd/sc_drawcaption.png
index 809d21a1a1cd..692b03e1968d 100644
Binary files a/icon-themes/colibre/cmd/sc_drawcaption.png and 
b/icon-themes/colibre/cmd/sc_drawcaption.png differ
diff --git a/icon-themes/colibre/cmd/sc_verticalcaption.png 
b/icon-themes/colibre/cmd/sc_verticalcaption.png
index 78a54d060b48..7128967b8fe3 100644
Binary files a/icon-themes/colibre/cmd/sc_verticalcaption.png and 
b/icon-themes/colibre/cmd/sc_verticalcaption.png differ
diff --git a/icon-themes/colibre_dark/cmd/32/drawcaption.png 
b/icon-themes/colibre_dark/cmd/32/drawcaption.png
index cb4366d4e1c9..07be0091fddb 100644
Binary files a/icon-themes/colibre_dark/cmd/32/drawcaption.png and 
b/icon-themes/colibre_dark/cmd/32/drawcaption.png differ
diff --git a/icon-themes/colibre_dark/cmd/32/verticalcaption.png 
b/icon-themes/colibre_dark/cmd/32/verticalcaption.png
index c3a4cae6f509..c0ded4366363 100644
Binary files a/icon-themes/colibre_dark/cmd/32/verticalcaption.png and 
b/icon-themes/colibre_dark/cmd/32/verticalcaption.png differ
diff --git a/icon-themes/colibre_dark/cmd/lc_drawcaption.png 
b/icon-themes/colibre_dark/cmd/lc_drawcaption.png
index 6d5565792e28..6a3a702c1ab6 100644
Binary files a/icon-themes/colibre_dark/cmd/lc_drawcaption.png and 
b/icon-themes/colibre_dark/cmd/lc_drawcaption.png differ
diff --git a/icon-themes/colibre_dark/cmd/lc_verticalcaption.png 
b/icon-themes/colibre_dark/cmd/lc_verticalcaption.png
index 10faaceaeb47..4bb9f259a799 100644
Binary files a/icon-themes/colibre_dark/cmd/lc_verticalcaption.png and 
b/icon-themes/colibre_dark/cmd/lc_verticalcaption.png differ
diff --git a/icon-themes/colibre_dark/cmd/sc_drawcaption.png 
b/icon-themes/colibre_dark/cmd/sc_drawcaption.png
index 

[Libreoffice-bugs] [Bug 148043] Non-functioning 'check updates' panel displays immediately after LibreOffice is updated

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148043

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148041] Clicking text will make line spacing change for no reason in Impress

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148041

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148030] LibreOffice Calc randomly locks up when opening or editing file

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148030

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147811] Specific DOC document prints to PDF virtual printer as raster

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147811

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148017] harmonize .ui file widget construction for sidebar

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148017

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144186] Crash in: vcl::unohelper::DragAndDropWrapper::dragGestureRecognized(com::sun::star::datatransfer::dnd::DragGestureEvent const &)

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144186

--- Comment #4 from QA Administrators  ---
Dear southisup,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144186] Crash in: vcl::unohelper::DragAndDropWrapper::dragGestureRecognized(com::sun::star::datatransfer::dnd::DragGestureEvent const &)

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144186

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143897] Empty image frame at bottom of page after image movement; undo doesn't restore

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143897

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143897] Empty image frame at bottom of page after image movement; undo doesn't restore

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143897

--- Comment #3 from QA Administrators  ---
Dear Telesto,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102998] [META] Mail merge bugs and enhancements

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102998
Bug 102998 depends on bug 143820, which changed state.

Bug 143820 Summary: Mail merge creates pages of the same label. ie one page of 
duplicates for each individual label
https://bugs.documentfoundation.org/show_bug.cgi?id=143820

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143820] Mail merge creates pages of the same label. ie one page of duplicates for each individual label

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143820

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143820] Mail merge creates pages of the same label. ie one page of duplicates for each individual label

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143820

--- Comment #4 from QA Administrators  ---
Dear Derek,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138747] Inadequate working scrollbar

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138747

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138747] Inadequate working scrollbar

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138747

--- Comment #5 from QA Administrators  ---
Dear seven,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113194] [META] Simplified Chinese (zh_CN) language-specific CJK issues

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113194
Bug 113194 depends on bug 134518, which changed state.

Bug 134518 Summary: Inputing unit of measurement doesn't work in Chinese user 
interface.
https://bugs.documentfoundation.org/show_bug.cgi?id=134518

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134518] Inputing unit of measurement doesn't work in Chinese user interface.

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134518

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134518] Inputing unit of measurement doesn't work in Chinese user interface.

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134518

--- Comment #7 from QA Administrators  ---
Dear 3334132516,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 133276] Wrong characters formatting (kerning) after odt file opened in LO Writer > 5.3 release (harfbuzz)

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133276

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 133276, which changed state.

Bug 133276 Summary: Wrong characters formatting (kerning) after odt file opened 
in LO Writer > 5.3 release (harfbuzz)
https://bugs.documentfoundation.org/show_bug.cgi?id=133276

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 133276] Wrong characters formatting (kerning) after odt file opened in LO Writer > 5.3 release (harfbuzz)

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133276

--- Comment #21 from QA Administrators  ---
Dear Piotr,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142994] Animated Gif's Slow During Slideshow Playback on Libreoffice Portable

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142994

--- Comment #4 from QA Administrators  ---
Dear rickpress,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

--- Comment #3 from Rizal Muttaqin  ---
(In reply to V Stuart Foote from comment #2)
> The "thumbnail" previews are simply not re-created / re-generated on
> application color "mode" change (which really is just a static application
> of a different set of fixed colors from the "default" theme).

So, if it's the method why Draw and Impress ignore those static set of fixed
colors? Here I'm assuming the two modules instead take values ​​from the
Application Colors' color scheme arbitrarily. Or am I wrong? 


> That seems kind of a waste of dev effort...  I'd rather we expend the effort
> on extending the slate of UI widgets that can be controlled by the
> Application Color theme.

Wasting time is a very relative thing. LibreOffice development puts forward the
model of who wants to change something, then he contributes.

But I fully support this approach. Application Color must be able to force UI
widgets whether to follow the operating system's default UI theming (Let's say
this color value will be defined as "default") or custom color.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

--- Comment #3 from Rizal Muttaqin  ---
(In reply to V Stuart Foote from comment #2)
> The "thumbnail" previews are simply not re-created / re-generated on
> application color "mode" change (which really is just a static application
> of a different set of fixed colors from the "default" theme).

So, if it's the method why Draw and Impress ignore those static set of fixed
colors? Here I'm assuming the two modules instead take values ​​from the
Application Colors' color scheme arbitrarily. Or am I wrong? 


> That seems kind of a waste of dev effort...  I'd rather we expend the effort
> on extending the slate of UI widgets that can be controlled by the
> Application Color theme.

Wasting time is a very relative thing. LibreOffice development puts forward the
model of who wants to change something, then he contributes.

But I fully support this approach. Application Color must be able to force UI
widgets whether to follow the operating system's default UI theming (Let's say
this color value will be defined as "default") or custom color.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
The "thumbnail" previews are simply not re-created / re-generated on
application color "mode" change (which really is just a static application of a
different set of fixed colors from the "default" theme).

But the thumbnail preview mechanisim probably should be adjusted to produce a
"dark mode" preview, at least for when that was the mode the document was
opened in.

Otherwise while it should be inexpensive to rebuild the previews--responding to
light/dark mode change would require refactoring to handle all the thumbnail
views held in a users MRU, essentially reopening each document held in history
to rebuild its thumbnail view (1st page of document) and record it back to
per-user profile registrymodification.xcu in response to a mode change.

That seems kind of a waste of dev effort...  I'd rather we expend the effort on
extending the slate of UI widgets that can be controlled by the Application
Color theme.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
The "thumbnail" previews are simply not re-created / re-generated on
application color "mode" change (which really is just a static application of a
different set of fixed colors from the "default" theme).

But the thumbnail preview mechanisim probably should be adjusted to produce a
"dark mode" preview, at least for when that was the mode the document was
opened in.

Otherwise while it should be inexpensive to rebuild the previews--responding to
light/dark mode change would require refactoring to handle all the thumbnail
views held in a users MRU, essentially reopening each document held in history
to rebuild its thumbnail view (1st page of document) and record it back to
per-user profile registrymodification.xcu in response to a mode change.

That seems kind of a waste of dev effort...  I'd rather we expend the effort on
extending the slate of UI widgets that can be controlled by the Application
Color theme.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 61914] [META] Start Center bugs and enhancements

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||148282


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148282
[Bug 148282] Page Area in Start Center Does Not Respect Application Colors
Scheme
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

Rizal Muttaqin  changed:

   What|Removed |Added

 Blocks||61914


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=61914
[Bug 61914] [META] Start Center bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

--- Comment #1 from Rizal Muttaqin  ---
"Writer and Calc files still show dark areas of the page, while Draw and
Impress documents look dark."

I mean Writer and Calc files show white/light area of the page, while Draw and
Impress look dark.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148282] Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

Rizal Muttaqin  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=51
   ||535

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148282] New: Page Area in Start Center Does Not Respect Application Colors Scheme

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148282

Bug ID: 148282
   Summary: Page Area in Start Center Does Not Respect Application
Colors Scheme
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

Created attachment 179224
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179224=edit
Inconsistent page background colors between modules.

Using a dark content color scheme (Tools > Options > Applications Color. In the
color scheme section, select LibreOffice Dark) does not darken the page preview
in the Start Center. There is even an inconsistency there. Writer and Calc
files still show dark areas of the page, while Draw and Impress documents look
dark.

The document preview in Start Center should respect the color scheme we've
chosen. There is tdf#51535 which was fixed but don't know the difference as the
option mentioned there is different with current master/fresh/still LibO
version

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148037] LibreOffice 7.2.5.2 (x64) will not open on Windows 11 home

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148037

m50wal...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from m50wal...@gmail.com ---
The problem was fixed by installing the latest version of LibreOffice, version
7.2.6.2 (x64).  When I installed this version, then LibreOffice opened with no
problem.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 112538] Cropped image created by MAC Impress cannot display correctly in the Windows Impress

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112538

--- Comment #33 from Knot Davies  ---
I'm using 7.3.1.3 on Windows 10 / Ubuntu 18.04 and can still reproduce this bug
with the given test files: the crops are not identical in with these two OSes.

I noticed with more agressive assymetric crops the images will get distorted
even more.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 87012] REPORT-BUILDER: Charts without content if chart contain date or time

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87012

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #17 from Julien Nabet  ---
With master sources updated today (so including fix for tdf#117162), I could
reproduce this.

I noticed these logs:
warn:xmloff:249169:249169:xmloff/source/chart/SchXMLTableContext.cxx:594:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:date-value value=2013-01-10T00:00:00.0Z
warn:xmloff:249169:249169:xmloff/source/chart/SchXMLTableContext.cxx:594:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:date-value value=2013-03-10T00:00:00.0Z
warn:xmloff:249169:249169:xmloff/source/chart/SchXMLTableContext.cxx:594:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:date-value value=2013-06-10T00:00:00.0Z
warn:xmloff:249169:249169:xmloff/source/chart/SchXMLTableContext.cxx:594:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:date-value value=2013-07-10T00:00:00.0Z
warn:xmloff:249169:249169:xmloff/source/chart/SchXMLTableContext.cxx:594:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:date-value value=2013-08-10T00:00:00.0Z
warn:xmloff:249169:249169:xmloff/source/chart/SchXMLTableContext.cxx:594:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:date-value value=2013-12-10T00:00:00.0Z


warn:xmloff:249793:249793:xmloff/source/chart/SchXMLTableContext.cxx:599:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:time-value value=PT07H00M00S
warn:xmloff:249793:249793:xmloff/source/chart/SchXMLTableContext.cxx:599:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:time-value value=PT08H00M00S
warn:xmloff:249793:249793:xmloff/source/chart/SchXMLTableContext.cxx:599:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:time-value value=PT11H30M00S
warn:xmloff:249793:249793:xmloff/source/chart/SchXMLTableContext.cxx:599:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:time-value value=PT15H00M00S
warn:xmloff:249793:249793:xmloff/source/chart/SchXMLTableContext.cxx:599:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:time-value value=PT18H00M00S
warn:xmloff:249793:249793:xmloff/source/chart/SchXMLTableContext.cxx:599:
unknown attribute urn:oasis:names:tc:opendocument:xmlns:office:1.0
office:time-value value=PT22H00M00S

code pointer:
xmloff/source/chart/SchXMLTableContext.cxx

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148279] Calc, Autofill not working with Date = YY/MM/DD

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148279

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148279] Calc, Autofill not working with Date = YY/MM/DD

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148279

Eike Rathke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #1 from Eike Rathke  ---
Your "dates" aren't numeric dates but text that looks like date and the
rightmost numeric part of the text is incremented.
Convert to numeric, see this FAQ
https://wiki.documentfoundation.org/Faq/Calc/How_to_convert_number_text_to_numeric_data

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148281] New: macOS Preferences Dialog needs a Searcher

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148281

Bug ID: 148281
   Summary: macOS Preferences Dialog needs a Searcher
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: obhip...@cox.net

Description:
The Preferences has A LOT of items.  Often, it's hard to know where to find
what i want.  For example, i want to see if OpenGL is enabled: i can't find it.

So please add a search function to Preferences.

Actual Results:
Can't find my item.

Expected Results:
Find my item.


Reproducible: Always


User Profile Reset: No



Additional Info:
Sorry, i could not find an appropriate keyword for the summary.  Can you
suggest one?

Sorry, i could not copy the 'About LibreOffice' dialog.  In OSX, it's under the
Apple menu, and cannot be copied.

Sorry, i could not reset my UserProfile; there is no Tools>Options menu for me
to find it.

Sorry, i could not find if OpenGL was enabled: there is no Tools>Options menu
for me to find it.  I also checked in Preferences and couldn't find it.  There
are SO many Preferences, how about adding a searcher there.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sw/layoutwriter_setup.mk

2022-03-30 Thread Stephan Bergmann (via logerrit)
 sw/layoutwriter_setup.mk |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 0a05b1f46263a16c6d40c841a317c3ba9f4d31d6
Author: Stephan Bergmann 
AuthorDate: Wed Mar 30 18:35:18 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Mar 30 22:28:14 2022 +0200

Missing test dependencies

> warn:vcl.builder:2475462:2475462:vcl/source/window/builder.cxx:479: 
DBG_UNHANDLED_EXCEPTION in VclBuilder
> when: Unable to read .ui file exception: 
com.sun.star.container.NoSuchElementException message: 
"file:///.../instdir/share/config/soffice.cfg/svt/ui/editcontrol.ui at 
xmlreader/source/xmlreader.cxx:66"

and

> warn:vcl.builder:2507015:2507015:vcl/source/window/builder.cxx:479: 
DBG_UNHANDLED_EXCEPTION in VclBuilder
> when: Unable to read .ui file exception: 
com.sun.star.container.NoSuchElementException message: 
"file:///.../instdir/share/config/soffice.cfg/sfx/ui/tabbar.ui at 
xmlreader/source/xmlreader.cxx:66"

when building CppunitTest_sw_layoutwriter from scratch

Change-Id: I043db8e1b25a8b990bcad542dcbe533a57654c05
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132323
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sw/layoutwriter_setup.mk b/sw/layoutwriter_setup.mk
index 0fb848f106de..cd0d86b7f98c 100644
--- a/sw/layoutwriter_setup.mk
+++ b/sw/layoutwriter_setup.mk
@@ -75,6 +75,8 @@ $(eval $(call 
gb_CppunitTest_use_configuration,sw_layoutwriter$(1)))
 
 $(eval $(call gb_CppunitTest_use_uiconfigs,sw_layoutwriter$(1), \
 modules/swriter \
+sfx \
+svt \
 ))
 
 $(call gb_CppunitTest_get_target,sw_layoutwriter$(1)): \


[Libreoffice-bugs] [Bug 148280] New: Calc, Autofill erases existing data when aborted

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148280

Bug ID: 148280
   Summary: Calc, Autofill erases existing data when aborted
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: obhip...@cox.net

Description:
I have a column of items.  I select 3.  I drag the 'handle' in the lower-right
corner of the selection UP to a new 4th cell, but don't release the mouse
button.  If i don't like the resulting autofill, and drag the handle back down
so that only 3 cells remain selected, then release the mouse button, the
original 3 cells become blank.

Steps to Reproduce:
1. Enter a set of data in 3 cells of a column.
2. Select all 3 cells.
3. Drag the handle on the bottom-right, up to a new 4th cell, but do not
release the mouse button.
4. Decide i don't like/want the autofill result.
5. Drag the mouse back down to the original 3 cells and release the mouse
button.

Actual Results:
Original 3 cells become blank.

Expected Results:
Original 3 cells remain unchanged.


Reproducible: Always


User Profile Reset: No



Additional Info:
Additional Info:
The file can be a .ods, or a .xlsx.

Sorry, i could not find an appropriate keyword for the summary.  Can you
suggest one?

Sorry, i could not copy the 'About LibreOffice' dialog.  In OSX, it's under the
Apple menu, and cannot be copied.

Sorry, i could not reset my UserProfile; there is no Tools>Options menu for me
to find it.

Sorry, i could not find if OpenGL was enabled: there is no Tools>Options menu
for me to find it.  I also checked in Preferences and couldn't find it.  There
are SO many Preferences, how about adding a searcher there.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'feature/cib_contract891c' - 26 commits - external/libxmlsec include/sfx2 include/xmloff offapi/com RepositoryExternal.mk sfx2/source xmloff/source xmlsecurity/C

2022-03-30 Thread Caolán McNamara (via logerrit)
 RepositoryExternal.mk  
  |   26 
 dev/null   
  |binary
 
external/libxmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 |   68 
 external/libxmlsec/UnpackedTarball_xmlsec.mk   
  |2 
 include/sfx2/objsh.hxx 
  |2 
 include/xmloff/xmlimp.hxx  
  |6 
 include/xmloff/xmlnmspe.hxx
  |   10 
 include/xmloff/xmltoken.hxx
  |   13 
 offapi/com/sun/star/security/DocumentSignatureInformation.idl  
  |1 
 sfx2/source/dialog/dinfdlg.cxx 
  |2 
 xmloff/source/core/xmlimp.cxx  
  |   26 
 xmloff/source/core/xmltoken.cxx
  |   13 
 xmloff/source/token/tokens.txt 
  |   10 
 xmlsecurity/CppunitTest_xmlsecurity_pdfsigning.mk  
  |8 
 xmlsecurity/CppunitTest_xmlsecurity_signing.mk 
  |9 
 xmlsecurity/inc/biginteger.hxx 
  |   12 
 xmlsecurity/inc/sigstruct.hxx  
  |   41 
 xmlsecurity/inc/xmlsec-wrapper.h   
  |4 
 xmlsecurity/inc/xmlsignaturehelper.hxx 
  |   12 
 xmlsecurity/inc/xsecctl.hxx
  |   31 
 xmlsecurity/qa/create-certs/create-certs.sh
  |6 
 xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx  
  |   32 
 
xmlsecurity/qa/unit/signing/data/02_doc_macros_signed_by_attacker_manipulated.odt
|binary
 xmlsecurity/qa/unit/signing/data/02_doc_signed_by_attacker_manipulated.odt 
  |binary
 xmlsecurity/qa/unit/signing/data/02_doc_signed_by_attacker_manipulated2.odt
  |binary
 
xmlsecurity/qa/unit/signing/data/02_doc_signed_by_attacker_manipulated_triple.odt
|binary
 
xmlsecurity/qa/unit/signing/data/02_doc_signed_by_trusted_person_manipulated.odt
 |binary
 xmlsecurity/qa/unit/signing/data/cert9.db  
  |binary
 xmlsecurity/qa/unit/signing/data/key4.db   
  |binary
 xmlsecurity/qa/unit/signing/data/notype-xades.odt  
  |binary
 xmlsecurity/qa/unit/signing/data/pkcs11.txt
  |5 
 xmlsecurity/qa/unit/signing/data/signed_with_x509certificate_chain.odt 
  |binary
 xmlsecurity/qa/unit/signing/data/test.p7b  
  |  249 +
 xmlsecurity/qa/unit/signing/signing.cxx
  |  261 +
 xmlsecurity/source/component/documentdigitalsignatures.cxx 
  |   61 
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx 
  |   15 
 xmlsecurity/source/helper/documentsignaturehelper.cxx  
  |   63 
 xmlsecurity/source/helper/documentsignaturemanager.cxx 
  |   12 
 xmlsecurity/source/helper/ooxmlsecexporter.cxx 
  |  234 -
 xmlsecurity/source/helper/ooxmlsecparser.cxx   
  | 1404 +++-
 xmlsecurity/source/helper/ooxmlsecparser.hxx   
  |   69 
 xmlsecurity/source/helper/pdfsignaturehelper.cxx   
  |8 
 xmlsecurity/source/helper/xmlsignaturehelper.cxx   
  |  164 
 xmlsecurity/source/helper/xsecctl.cxx  
  |   92 
 xmlsecurity/source/helper/xsecparser.cxx   
  | 1720 --
 xmlsecurity/source/helper/xsecparser.hxx   
  |  104 
 xmlsecurity/source/helper/xsecsign.cxx 
  |   50 
 xmlsecurity/source/helper/xsecverify.cxx   
  |  194 -
 xmlsecurity/source/pdfio/pdfdocument.cxx   
  |   14 
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx  
  |   63 
 xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx  
  |  125 
 xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.cxx 
  |6 
 

[Libreoffice-commits] core.git: sw/source

2022-03-30 Thread Caolán McNamara (via logerrit)
 sw/source/core/layout/pagechg.cxx |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit e10888cbb3bba4e0dff954566fd0f3721be3e5ab
Author: Caolán McNamara 
AuthorDate: Wed Mar 30 19:55:20 2022 +0100
Commit: Caolán McNamara 
CommitDate: Wed Mar 30 22:18:04 2022 +0200

unroll this typical writer-style multi condition if statement

no logic change intended

Change-Id: Iebb8df604aa69829536e3cab10b33056e4cdf78e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132331
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/sw/source/core/layout/pagechg.cxx 
b/sw/source/core/layout/pagechg.cxx
index 73a003223495..e09c1a265e2c 100644
--- a/sw/source/core/layout/pagechg.cxx
+++ b/sw/source/core/layout/pagechg.cxx
@@ -1339,13 +1339,19 @@ namespace
 
 pPage->PreparePage( bFootnote );
 // If the sibling has no body text, destroy it as long as it is no 
footnote page.
-if ( pSibling && !pSibling->IsFootnotePage() &&
- !pSibling->FindFirstBodyContent() &&
- (!pRefPage || !isDeleteForbidden(pSibling)) )
+if (!pSibling)
+return true;
+if (pSibling->IsFootnotePage())
+return true;
+if (pSibling->FindFirstBodyContent())
+return true;
+
+if (!pRefPage || !isDeleteForbidden(pSibling))
 {
 pRoot->RemovePage( pRefSibling, SwRemoveResult::Next ) ;
 return false;
 }
+
 return true;
 }
 }


[Libreoffice-bugs] [Bug 148193] Reading .ods file created by LibreOffice 7.0.4.2 or newer breaks jOpenDocument

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148193

l...@heess.me changed:

   What|Removed |Added

 Resolution|--- |NOTOURBUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #9 from l...@heess.me ---
Yes, seems like it

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148279] New: Calc, Autofill not working with Date = YY/MM/DD

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148279

Bug ID: 148279
   Summary: Calc, Autofill not working with Date = YY/MM/DD
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: obhip...@cox.net

Description:
I have a column with dates formatted as YY/MM/DD.  This is an already-included
date-format in the Format Cells dialog window.  When i try and autofill in the
UP-direction to newer/later dates, it fails at the new month.
Example:
22/03/32 - autofill error (should be 22/04/01)
22/03/31 - existing entry
22/03/30 - existing entry
22/03/29 - existing entry

It also fails when autofilling-down, when the existing dates are
reverse-ordered.

Steps to Reproduce:
1. Enter in 3 cells of a column:
22/03/31
22/03/30
22/03/29

2. Select all 3 cells.

3. In the bottom-right corner of the selected area, drag the 'handle' up to a
new 4th cell.

Actual Results:
22/03/32

Expected Results:
22/04/01


Reproducible: Always


User Profile Reset: No



Additional Info:
The file can be a .ods, or a .xlsx.

Sorry, i could not find an appropriate keyword for the summary.  Can you
suggest one?

Sorry, i could not copy the 'About LibreOffice' dialog.  In OSX, it's under the
Apple menu, and cannot be copied.

Sorry, i could not reset my UserProfile; there is no Tools>Options menu for me
to find it.

Sorry, i could not find if OpenGL was enabled: there is no Tools>Options menu
for me to find it.  I also checked in Preferences and couldn't find it.  There
are SO many Preferences, how about adding a searcher there.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148193] Reading .ods file created by LibreOffice 7.0.4.2 or newer breaks jOpenDocument

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148193

--- Comment #8 from Julien Nabet  ---
odfvalidator is ok with 1.3, so it rather seems JOpenDocument pb.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139446] using jOpenDocument-1.3.jar read ods created by LibreOffice 7.0.4.2 has error

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139446

--- Comment #9 from l...@heess.me ---
Created attachment 179223
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179223=edit
example-valid-1.3.ods

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139446] using jOpenDocument-1.3.jar read ods created by LibreOffice 7.0.4.2 has error

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139446

--- Comment #8 from l...@heess.me ---
Nevermind. I uploaded a new attachment which passes the 1.3 (not extended)
validator but still produces the error with jOpenDocument.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148193] Reading .ods file created by LibreOffice 7.0.4.2 or newer breaks jOpenDocument

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148193

--- Comment #7 from l...@heess.me ---
Created attachment 179222
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179222=edit
example-2.ods

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148193] Reading .ods file created by LibreOffice 7.0.4.2 or newer breaks jOpenDocument

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148193

--- Comment #6 from l...@heess.me ---
I changed the version in Calc by going to Tools -> Options -> Load/Save ->
General, adjusting the version from "1.3 extended" to "1.3" and saving anew.
However, the issue persists. I uploaded a the file. It passes the validator but
doesn't work with jOpenDocument.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148193] Reading .ods file created by LibreOffice 7.0.4.2 or newer breaks jOpenDocument

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148193

--- Comment #5 from Julien Nabet  ---
(In reply to Michael Stahl (allotropia) from comment #4)
> as usual, with the default LO setting of ODF Format version: "1.3 Extended
> (recommended)" use this validator flag:
> -e: Check extended conformance (ODF 1.2 and 1.3 documents only)
> 
> or change the LO setting to "1.3" to omit extension attributes.

Thank you for the hint, I changed the LO setting to 1.3 to omit extension
attributes.

I would have thought that "1.3 Extended (recommended)" would indicate something
in the ods file so https://odfvalidator.org/ doesn't complain about extension
attributes.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139446] using jOpenDocument-1.3.jar read ods created by LibreOffice 7.0.4.2 has error

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139446

--- Comment #7 from l...@heess.me ---
I think the issues root cause is probably that jOpenDocument does not support
OASIS ODF 1.3 extended - could that be the case?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139446] using jOpenDocument-1.3.jar read ods created by LibreOffice 7.0.4.2 has error

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139446

Julien Nabet  changed:

   What|Removed |Added

 CC|serval2...@yahoo.fr |

--- Comment #6 from Julien Nabet  ---
I don't understand, because you don't know how to submit a bugtracker for
jOpenDocument you submitted a bug on LO?
Anyway, can't help here=>uncc myself.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: officecfg/registry

2022-03-30 Thread Julien Nabet (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |4 
++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6fee8f6da0c25ab3c5c7a84da45f1f79a19d4951
Author: Julien Nabet 
AuthorDate: Wed Mar 30 19:18:59 2022 +0200
Commit: Julien Nabet 
CommitDate: Wed Mar 30 21:47:56 2022 +0200

tdf#148263: Calc: "Sheet" -> "Rows" is not very clear that it's about 
deleting

Idem for "Columns"

Regression from:
commit 763e5d233d18a26f64dd8c4db67ce62ee289832e
Author: Julien Nabet 
Date:   Wed Mar 16 20:35:33 2022 +0100

Related tdf#114286: put duplicates commands in GenericCommands 
(DeleteColumns)

Change-Id: Iecfa09729ea1b237fb6994be4b3ceaaa3ad126df
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131680
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

commit 52a695d2ceb4231a9fcc419959e29023ecef037b
Author: Julien Nabet 
Date:   Thu Mar 17 11:01:47 2022 +0100

Related tdf#114286: put duplicates commands in GenericCommands 
(DeleteRows)

Change-Id: I100297d10b2643c5ddad7753a7c1032526ce06cd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131699
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

Change-Id: I790f2b686e27195b137db3b2d6385787e1829e04
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132325
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index d89a8a59f912..8fdf279a72eb 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -7053,7 +7053,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   Delete Columns
 
 
-  ~Columns
+  Delete ~Columns
 
 
   Delete selected columns
@@ -7067,7 +7067,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   Delete Rows
 
 
-  ~Rows
+  Delete ~Rows
 
 
   Delete selected rows


[Libreoffice-bugs] [Bug 143893] wiki publisher gives server connection error

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143893

Julien Nabet  changed:

   What|Removed |Added

 CC|serval2...@yahoo.fr |

--- Comment #6 from Julien Nabet  ---
I gave a new try with https://wiki.documentfoundation.org/, url, username and
passsword are ok but it still fails.
At least for this website, I think it's because SSO connection hasn't been
implemented in LO.
No idea how to do this=>uncc myself.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sc/qa

2022-03-30 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests7/tdf45020.py |   36 ---
 sc/qa/unit/uicalc/uicalc.cxx |   28 +++
 2 files changed, 28 insertions(+), 36 deletions(-)

New commits:
commit 551141c90f969421be77d9dc90a8feac791267ab
Author: Xisco Fauli 
AuthorDate: Wed Mar 30 20:04:42 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Mar 30 21:39:30 2022 +0200

tdf#45020: sc: move UItest to CppUnittest

Change-Id: I14e8fec80e06403868a80cabfe5231420bdd6f2c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132328
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/uitest/calc_tests7/tdf45020.py 
b/sc/qa/uitest/calc_tests7/tdf45020.py
deleted file mode 100644
index c09b68fcd3ea..
--- a/sc/qa/uitest/calc_tests7/tdf45020.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-from uitest.framework import UITestCase
-from uitest.uihelper.common import get_state_as_dict
-from uitest.uihelper.calc import enter_text_to_cell
-from libreoffice.uno.propertyvalue import mkPropertyValues
-
-class tdf45020(UITestCase):
-def test_tdf45020_hide_rows_select(self):
-with self.ui_test.create_doc_in_start_center("calc"):
-xCalcDoc = self.xUITest.getTopFocusWindow()
-gridwin = xCalcDoc.getChild("grid_window")
-#in cell A1-A4: apple pear melon mango
-enter_text_to_cell(gridwin, "A1", "apple")
-enter_text_to_cell(gridwin, "A1", "pear")
-enter_text_to_cell(gridwin, "A1", "melon")
-enter_text_to_cell(gridwin, "A1", "mango")
-#select A2 and A3
-gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A2:A3"}))
-#format > Row > Hide
-self.ui_test._xUITest.executeCommand(".uno:HideRow")
-#select A1
-gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
-#press Shift+down
-gridwin.executeAction("TYPE", 
mkPropertyValues({"KEYCODE":"SHIFT+DOWN"}))
-#verify A1:A4 selected
-gridWinState = get_state_as_dict(gridwin)
-self.assertEqual(gridWinState["MarkedArea"], "Sheet1.A1:Sheet1.A4")
-
-# vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sc/qa/unit/uicalc/uicalc.cxx b/sc/qa/unit/uicalc/uicalc.cxx
index 917ef6b2d9b9..ceaa63bab1f3 100644
--- a/sc/qa/unit/uicalc/uicalc.cxx
+++ b/sc/qa/unit/uicalc/uicalc.cxx
@@ -1334,6 +1334,34 @@ CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf146994)
 CPPUNIT_ASSERT_EQUAL(OUString("Sheet1.D3:Sheet1.D4"), aMarkedAreaString);
 }
 
+CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf45020)
+{
+mxComponent = loadFromDesktop("private:factory/scalc");
+ScModelObj* pModelObj = dynamic_cast(mxComponent.get());
+CPPUNIT_ASSERT(pModelObj);
+ScDocument* pDoc = pModelObj->GetDocument();
+CPPUNIT_ASSERT(pDoc);
+
+goToCell("A2:A3");
+
+dispatchCommand(mxComponent, ".uno:HideRow", {});
+
+goToCell("A1");
+
+pModelObj->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, KEY_SHIFT | KEY_DOWN);
+Scheduler::ProcessEventsToIdle();
+
+ScRangeList aMarkedArea = 
ScDocShell::GetViewData()->GetMarkData().GetMarkedRanges();
+OUString aMarkedAreaString;
+ScRangeStringConverter::GetStringFromRangeList(aMarkedAreaString, 
, pDoc,
+   
formula::FormulaGrammar::CONV_OOO);
+
+// Without the fix in place, this test would have failed with
+// - Expected: Sheet1.A1:Sheet1.A4
+// - Actual  : Sheet1.A1:Sheet1.A2
+CPPUNIT_ASSERT_EQUAL(OUString("Sheet1.A1:Sheet1.A4"), aMarkedAreaString);
+}
+
 CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf117706)
 {
 mxComponent = loadFromDesktop("private:factory/scalc");


[Libreoffice-bugs] [Bug 101016] REPORT BUILDER: Charts aren't shown when using grouped data from same datasource the report uses

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101016
Bug 101016 depends on bug 117162, which changed state.

Bug 117162 Summary: REPORTBUILDER - Chart isn't shown in report
https://bugs.documentfoundation.org/show_bug.cgi?id=117162

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107536] REPORTBUILDER: Pie chart colours revert to defaults in generated report

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107536
Bug 107536 depends on bug 117162, which changed state.

Bug 117162 Summary: REPORTBUILDER - Chart isn't shown in report
https://bugs.documentfoundation.org/show_bug.cgi?id=117162

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108745] [META] Report Builder bugs and enhancements

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108745
Bug 108745 depends on bug 117162, which changed state.

Bug 117162 Summary: REPORTBUILDER - Chart isn't shown in report
https://bugs.documentfoundation.org/show_bug.cgi?id=117162

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 87012] REPORT-BUILDER: Charts without content if chart contain date or time

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87012
Bug 87012 depends on bug 117162, which changed state.

Bug 117162 Summary: REPORTBUILDER - Chart isn't shown in report
https://bugs.documentfoundation.org/show_bug.cgi?id=117162

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 117162] REPORTBUILDER - Chart isn't shown in report

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117162

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |
 Resolution|--- |FIXED

--- Comment #24 from Caolán McNamara  ---
Let's call this fixed then, backport to 7-3 in gerrit (I don't do 7-2 as there
is only one release left there and no space to do another if there are
sideeffects). Put any remaining problems in new bugs. And this needs some sort
of test added to it can't happen again.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148253] LibreOffice 7.3 conversion can no longer convert .pptx to .html unless with filter or .htm

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148253

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sc/qa

2022-03-30 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests4/trackedChanges.py |   22 ++
 sc/qa/uitest/data/tdf85353.ods |binary
 2 files changed, 22 insertions(+)

New commits:
commit ecdb3826e852a6270e3106d30dac44793ad56e1a
Author: Xisco Fauli 
AuthorDate: Wed Mar 30 19:34:42 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Mar 30 21:19:51 2022 +0200

tdf#85353: sc: Add UItest

Change-Id: Idc2fc8157a84b010be4855d8aa7c111d4594b4f1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132326
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sc/qa/uitest/calc_tests4/trackedChanges.py 
b/sc/qa/uitest/calc_tests4/trackedChanges.py
index 58700b99ed7c..f0bab2aa2678 100644
--- a/sc/qa/uitest/calc_tests4/trackedChanges.py
+++ b/sc/qa/uitest/calc_tests4/trackedChanges.py
@@ -288,5 +288,27 @@ class CalcTrackedChanges(UITestCase):
 self.assertEqual('A~ccept All', 
get_state_as_dict(xAcceptAllBtn)['Text'])
 self.assertEqual('~Accept', 
get_state_as_dict(xAcceptBtn)['Text'])
 
+def test_tdf85353(self):
+with self.ui_test.create_doc_in_start_center("calc"):
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+
+enter_text_to_cell(gridwin, "A1", "15")
+enter_text_to_cell(gridwin, "D1", "0")
+enter_text_to_cell(gridwin, "E1", "0")
+
+with 
self.ui_test.execute_dialog_through_command(".uno:CompareDocuments", 
close_button="") as xOpenDialog:
+xFileName = xOpenDialog.getChild("file_name")
+xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": 
get_url_for_data_file("tdf85353.ods")}))
+xOpenBtn = xOpenDialog.getChild("open")
+
+with self.ui_test.execute_dialog_through_action(xOpenBtn, 
'CLICK', close_button="close") as xTrackDlg:
+changesList = xTrackDlg.getChild("calcchanges")
+
+# Without the fix in place, this test would have failed 
with
+# AssertionError: 1 != 0
+self.assertEqual(1, len(changesList.getChildren()))
+
self.assertTrue(get_state_as_dict(changesList.getChild('0'))['Text'].startswith("Changed
 contents\tSheet1.E1"))
+
self.assertTrue(get_state_as_dict(changesList.getChild('0'))['Text'].endswith("(Cell
 E1 changed from '5' to '0')"))
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sc/qa/uitest/data/tdf85353.ods b/sc/qa/uitest/data/tdf85353.ods
new file mode 100644
index ..001523e36f96
Binary files /dev/null and b/sc/qa/uitest/data/tdf85353.ods differ


[Libreoffice-ux-advise] [Bug 144561] UI: add quick sort links to the right click menu for the column headers to sort a sheet based on that column.

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144561

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
   Keywords||needsUXEval

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
I don't think we need it

We have icons for sorting on the toolbar

-1 from me

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 144561] UI: add quick sort links to the right click menu for the column headers to sort a sheet based on that column.

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144561

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
   Keywords||needsUXEval

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
I don't think we need it

We have icons for sorting on the toolbar

-1 from me

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142498] UI: Highlight the found search text in cell

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142498

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
   Keywords||needsUXEval
 Blocks||108019, 113731

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
+1 

but I'm not sure it's possible


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108019
[Bug 108019] [META] Calc UX bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=113731
[Bug 113731] [META] Highlight bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113731] [META] Highlight bugs and enhancements

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113731

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||142498


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142498
[Bug 142498] UI: Highlight the found search text in cell
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108019] [META] Calc UX bugs and enhancements

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108019

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||142498


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142498
[Bug 142498] UI: Highlight the found search text in cell
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 142498] UI: Highlight the found search text in cell

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142498

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
   Keywords||needsUXEval
 Blocks||108019, 113731

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
+1 

but I'm not sure it's possible


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108019
[Bug 108019] [META] Calc UX bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=113731
[Bug 113731] [META] Highlight bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 148244] Wrong Paper Size on Export

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148244

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru
 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
But 8,27 x 11,69 inches is 20,98 x 29,7 cm. It's the A4 format

Letter format has 8.5 × 11 inches size

Closed as NOTABUG

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148256] Deadlocks while typing (macOS only?)

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148256

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

Summary|Deadlocks while typing  |Deadlocks while typing
   |(macOS) |(macOS only?)
 CC||79045_79...@mail.ru

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
No repro in

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 51fb84829afbc1c0957fd1a489085613ad199f1a
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL Jumbo

macOS only?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: static/README.wasm.md

2022-03-30 Thread Andrea Gelmini (via logerrit)
 static/README.wasm.md |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3bfea3cdb8723bb82840e6e0282bfd4a48fd8f79
Author: Andrea Gelmini 
AuthorDate: Wed Mar 30 20:13:29 2022 +0200
Commit: Julien Nabet 
CommitDate: Wed Mar 30 20:47:23 2022 +0200

Fix typo

Change-Id: Ie50eeb9bcf1670b014ec600b62ef83a4fb27ee59
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132330
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/static/README.wasm.md b/static/README.wasm.md
index 4624e87605b7..7bca790acf7a 100644
--- a/static/README.wasm.md
+++ b/static/README.wasm.md
@@ -114,7 +114,7 @@ You can build LO with WASM exceptions, which should be 
"much" faster then the JS
 based Emscripten EH handling. For setjmp / longjmp (SjLj) used by the PNG and 
JPEG
 libraries error handling, this needs Emscripten 3.1.3+. That builds, but 
execution
 still fails early with a signature mismatch call to Task::UpdateMinPeriod in 
LO's
-job scheduler code. Unfortunatly the build also needs a Qt build with
+job scheduler code. Unfortunately the build also needs a Qt build with
 "-s SUPPORT_LONGJMP=wasm", which is incompatible with the JS EH + SjLj.
 
 The LO configure flag is simply an additional --enable-wasm-exceptions. Qt5 can


[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - sd/qa

2022-03-30 Thread Tünde Tóth (via logerrit)
 sd/qa/unit/export-tests-ooxml2.cxx |   15 +++
 1 file changed, 15 insertions(+)

New commits:
commit a45cfefc284b2e468ca2847e47102964c67d12c4
Author: Tünde Tóth 
AuthorDate: Wed Mar 30 09:52:57 2022 +0200
Commit: Xisco Fauli 
CommitDate: Wed Mar 30 20:47:25 2022 +0200

tdf#53970 PPTX: add unittest

Change-Id: I1bcf8f79213245fdf135d6d3b2aafea6ed99f5b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132296
Tested-by: Jenkins
Tested-by: László Németh 
Reviewed-by: Xisco Fauli 
Reviewed-by: László Németh 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132320

diff --git a/sd/qa/unit/export-tests-ooxml2.cxx 
b/sd/qa/unit/export-tests-ooxml2.cxx
index 78f43f2160eb..6afe97292ea8 100644
--- a/sd/qa/unit/export-tests-ooxml2.cxx
+++ b/sd/qa/unit/export-tests-ooxml2.cxx
@@ -152,6 +152,7 @@ public:
 void testTextColumns_tdf140852();
 void testTextColumns_3columns();
 void testTdf59323_slideFooters();
+void testTdf53970();
 
 CPPUNIT_TEST_SUITE(SdOOXMLExportTest2);
 
@@ -218,6 +219,7 @@ public:
 CPPUNIT_TEST(testTextColumns_tdf140852);
 CPPUNIT_TEST(testTextColumns_3columns);
 CPPUNIT_TEST(testTdf59323_slideFooters);
+CPPUNIT_TEST(testTdf53970);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -1810,6 +1812,19 @@ void SdOOXMLExportTest2::testTdf59323_slideFooters()
 xDocShRef->DoClose();
 }
 
+void SdOOXMLExportTest2::testTdf53970()
+{
+::sd::DrawDocShellRef xDocShRef
+= 
loadURL(m_directories.getURLFromSrc(u"/sd/qa/unit/data/odp/tdf53970.odp"), ODP);
+xDocShRef = saveAndReload(xDocShRef.get(), PPTX);
+
+
+// Without fix in place, the media shape was lost on export.
+CPPUNIT_ASSERT(getPage(0, xDocShRef)->hasElements());
+
+xDocShRef->DoClose();
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SdOOXMLExportTest2);
 
 CPPUNIT_PLUGIN_IMPLEMENT();


[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - oox/source sd/qa

2022-03-30 Thread Tünde Tóth (via logerrit)
 oox/source/export/drawingml.cxx  |5 +
 oox/source/export/shapes.cxx |1 +
 sd/qa/unit/data/odp/tdf53970.odp |binary
 3 files changed, 6 insertions(+)

New commits:
commit b64c55169d72bfde6aee00673a56d5c25acfd4d4
Author: Tünde Tóth 
AuthorDate: Thu Mar 24 16:54:01 2022 +0100
Commit: Xisco Fauli 
CommitDate: Wed Mar 30 20:47:06 2022 +0200

tdf#53970 PPTX: fix export of embedded media files

Embedded media files lost in documents created
with Impress after PPTX export.

Change-Id: I453b58f9cfa6a33653e9216fb82b66970a9ec31b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132095
Tested-by: Jenkins
Tested-by: László Németh 
Reviewed-by: László Németh 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132319

diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 708aea6fb29a..4d0317be921d 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1343,6 +1343,11 @@ void DrawingML::WriteMediaNonVisualProperties(const 
css::uno::Reference

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - sw/CppunitTest_sw_core_attr.mk sw/Module_sw.mk sw/qa sw/source

2022-03-30 Thread Miklos Vajna (via logerrit)
 sw/CppunitTest_sw_core_attr.mk |   75 +
 sw/Module_sw.mk|1 
 sw/qa/core/attr/attr.cxx   |   53 ++
 sw/qa/core/attr/data/attr-set.docx |binary
 sw/source/core/attr/swatrset.cxx   |3 -
 5 files changed, 131 insertions(+), 1 deletion(-)

New commits:
commit 7fdedf8a93caf292bdb643bfc9861ebc624b1929
Author: Miklos Vajna 
AuthorDate: Wed Mar 30 11:20:12 2022 +0200
Commit: Andras Timar 
CommitDate: Wed Mar 30 20:46:32 2022 +0200

sw: fix crash in SwAttrSet::CopyToModify()

Regression from commit 938a4d6624a78f3e272b3c4c07f314cb0c6db723
(tdf#128375 sw: fix copying RES_PARATR_LIST_AUTOFMT to different SwDoc,
2019-11-01), the problem is that we may get an autofmt pool item which
is set, but its style handle is empty. Assume that this is the same case
as having no autofmt at all.

(cherry picked from commit ddfafd9b67e6e61c144b29ac73bbafb413ddf03b)

Conflicts:
sw/Module_sw.mk
sw/source/core/attr/swatrset.cxx

Change-Id: I87494fd04687d31201b4ec712cb0fb1ec7362b46
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132312
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/sw/CppunitTest_sw_core_attr.mk b/sw/CppunitTest_sw_core_attr.mk
new file mode 100644
index ..7ca0060290e3
--- /dev/null
+++ b/sw/CppunitTest_sw_core_attr.mk
@@ -0,0 +1,75 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sw_core_attr))
+
+$(eval $(call gb_CppunitTest_use_common_precompiled_header,sw_core_attr))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sw_core_attr, \
+sw/qa/core/attr/attr \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sw_core_attr, \
+comphelper \
+cppu \
+cppuhelper \
+editeng \
+sal \
+sfx \
+svl \
+svx \
+svxcore \
+sw \
+   swqahelper \
+test \
+unotest \
+utl \
+vcl \
+tl \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sw_core_attr,\
+boost_headers \
+libxml2 \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sw_core_attr,\
+-I$(SRCDIR)/sw/inc \
+-I$(SRCDIR)/sw/source/core/inc \
+-I$(SRCDIR)/sw/source/uibase/inc \
+-I$(SRCDIR)/sw/qa/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sw_core_attr,\
+   udkapi \
+   offapi \
+   oovbaapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sw_core_attr))
+$(eval $(call gb_CppunitTest_use_vcl,sw_core_attr))
+
+$(eval $(call gb_CppunitTest_use_rdb,sw_core_attr,services))
+
+$(eval $(call gb_CppunitTest_use_custom_headers,sw_core_attr,\
+officecfg/registry \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sw_core_attr))
+
+$(eval $(call gb_CppunitTest_use_uiconfigs,sw_core_attr, \
+modules/swriter \
+))
+
+$(eval $(call gb_CppunitTest_use_more_fonts,sw_core_attr))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 05a07c427841..e883a47cf59b 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -140,6 +140,7 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 CppunitTest_sw_core_draw \
 CppunitTest_sw_core_edit \
 CppunitTest_sw_uibase_fldui \
+CppunitTest_sw_core_attr \
 ))
 
 ifneq ($(DISABLE_GUI),TRUE)
diff --git a/sw/qa/core/attr/attr.cxx b/sw/qa/core/attr/attr.cxx
new file mode 100644
index ..0df9d9ef0451
--- /dev/null
+++ b/sw/qa/core/attr/attr.cxx
@@ -0,0 +1,53 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+
+#include 
+#include 
+#include 
+
+namespace
+{
+constexpr OUStringLiteral DATA_DIRECTORY = u"/sw/qa/core/attr/data/";
+
+/// Covers sw/source/core/attr/ fixes.
+class Test : public SwModelTestBase
+{
+};
+
+CPPUNIT_TEST_FIXTURE(Test, testSwAttrSet)
+{
+// Given a document with track changes and the whole document is selected:
+SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "attr-set.docx");
+SwDocShell* pDocShell = pDoc->GetDocShell();
+SwWrtShell* pWrtShell = pDocShell->GetWrtShell();
+dispatchCommand(mxComponent, ".uno:SelectAll", {});
+dispatchCommand(mxComponent, ".uno:Cut", {});
+dispatchCommand(mxComponent, ".uno:SelectAll", 

[Libreoffice-bugs] [Bug 148255] LibreOffice Writer: Text "disappears" while writing between two formulas that are next to each other

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148255

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||l.lu...@collabora.com
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #5 from Roman Kuznetsov <79045_79...@mail.ru> ---
I bisected this one in win64-7.3 bisect repo and got the SHA

71429b93ec0687bbbedcbb776b38c981f4017177

https://git.libreoffice.org/core/commit/71429b93ec0687bbbedcbb776b38c981f4017177

https://gerrit.libreoffice.org/c/core/+/123077

Added to CC:  Luboš Luňák

Could you please look at it. Thanks.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 125264] Fonts with ligature (e.g. tt, ti) break URL when printing to virtual PDF printer

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125264

--- Comment #4 from wroot  ---
Just tested again, this time printed PDF using Microsoft Print to PDF (Windows
10, originally it was reported when using Windows 7 and i used PDFCreator and
Nitro virtual PDF printers). The issue is still present.

Version: 7.3.1.3 (x64) / LibreOffice Community
Build ID: a69ca51ded25f3eefd52d7bf9a5fad8c90b87951
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: lt-LT (lt_LT); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148206] Calc Macro file Module 1 of Standard My Macros is unavailable after upgrade of LibreOffice

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148206

Timur  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sw/source

2022-03-30 Thread Stephan Bergmann (via logerrit)
 sw/source/filter/html/svxcss1.cxx |   14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

New commits:
commit ea2184d3dcd018e41e4448727b674976e116d1ef
Author: Stephan Bergmann 
AuthorDate: Wed Mar 30 18:04:36 2022 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Mar 30 20:25:31 2022 +0200

Avoid float-cast-overflow

> sw/source/filter/html/parcss1.hxx:163:35: runtime error: -1.0458e+22 is 
outside the range of representable values of type 'int'
>  #0 in CSS1Expression::GetSLength() const at 
sw/source/filter/html/parcss1.hxx:163:35
>  #1 in ParseCSS1_text_indent(CSS1Expression const*, SfxItemSet&, 
SvxCSS1PropertyInfo&, SvxCSS1Parser const&) at 
sw/source/filter/html/svxcss1.cxx:1955:45

during recently introduced testForcepoint94::TestBody in
CppunitTest_sw_layoutwriter, where 
sw/qa/extras/layout/data/forcepoint94.html
contains "text-indent: -18446744073709551616.0cm"

Change-Id: I1070f07ea0304a3813ab9a58441c9d7e45f79ffd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132322
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sw/source/filter/html/svxcss1.cxx 
b/sw/source/filter/html/svxcss1.cxx
index ee46ff297821..7edbfbb7bf10 100644
--- a/sw/source/filter/html/svxcss1.cxx
+++ b/sw/source/filter/html/svxcss1.cxx
@@ -21,6 +21,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -1952,8 +1953,17 @@ static void ParseCSS1_text_indent( const CSS1Expression 
*pExpr,
 switch( pExpr->GetType() )
 {
 case CSS1_LENGTH:
-nIndent = static_cast(pExpr->GetSLength());
-bSet = true;
+{
+double n = std::round(pExpr->GetNumber());
+SAL_WARN_IF(
+n < std::numeric_limits::min() || n > 
std::numeric_limits::max(),
+"sw.html", "clamping length " << n << " to short range");
+nIndent = static_cast(
+std::clamp(
+n, double(std::numeric_limits::min()),
+double(std::numeric_limits::max(;
+bSet = true;
+}
 break;
 case CSS1_PIXLENGTH:
 {


[Libreoffice-bugs] [Bug 148278] New: LibreOffice Writer does not retain IgnoreAllList beween editing sessions/

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148278

Bug ID: 148278
   Summary: LibreOffice Writer does not retain IgnoreAllList
beween editing sessions/
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hla...@pacbell.net

Description:
I'm new to LibreOffice Writer.  I'm working on a lingthy English Language
document that contains hundreds of Polish proper names (places, people,
institutions, etc.) sprinkled throughout the document. I'd like to see the
IgnoreAllList saved with the document.  I've seen the online discussions of
this topic.  Many users say that this feature is unnecessary.  I'd simply like
to add my appeal for this feature to the discussion.  Thank you.

Steps to Reproduce:
1.Spell check a Writer document with a few misspellings and click "ignore all"
for each.  The red underlining disappears for the ignored words.
2.Close the document.
3.Reopen the document. The words are shown as misspelled.

Actual Results:
The "ignore all" instructions were not maintained.

Expected Results:
It should have retained the IgnoreAllList with the saved document.


Reproducible: Always


User Profile Reset: No



Additional Info:
Running LibreOffice on a Mac REtina 5K, 27-inch, 3.3 GHz Quad-Cpore Intel Core
i5.

LibreOffice 7.2.5.2.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148206] Calc Macro file Module 1 of Standard My Macros is unavailable after upgrade of LibreOffice

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148206

--- Comment #5 from Gary LaPinsky  ---
I opened the Calc user manual and read through creating macros. Apparently, I
wasn't doing it properly as the user guide instructed making the module and
macro name using the "spread sheet name" when the tools-Macro dialog is opened.
I was using the "My Macros" entry which was causing the problem. I made a new
download of the LibreOffice software and created the macros according to the
user manual and all seems to be ok now. It is unclear what exactly the "My
Macros" library is used for, and there seems to be a lack of explanation. I
surmised it was for writing Java based scrip macros, but that is a guess.
Thanks for all the effort on my reported bug. I am glad it wasn't a bug but
regret I caused you to spend time for nothing.

Regards
Gary LaPinsky

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148266] Firebird: entering several SQL commands directly with delimiter impossible

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148266

--- Comment #4 from Robert Großkopf  ---
Seems Firebird needs a special EXECUTE BLOCK for this:

execute block as
begin
  INSERT INTO "table" ("ID") VALUES(4);
  INSERT INTO "table" ("ID") VALUES(5);
  INSERT INTO "table" ("ID") VALUES(6); 
end

will work here.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 117162] REPORTBUILDER - Chart isn't shown in report

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117162

--- Comment #23 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today
(c434041f9abfc6fb3c9a2570f742a4c79885f2b4) so also including
fc6d597a933f9ca71b479864b31682dac17724c3 (Related: tdf#117162 use a marginally
tidier but riskier fix for trunk), I confirm reports appear!

Great job Caolán (as always)!!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148266] Firebird: entering several SQL commands directly with delimiter impossible

2022-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148266

--- Comment #3 from Robert Großkopf  ---
I have also searched for it. Seems it is a little bit confused:
https://www.firebirdsql.org/pdfmanual/html/isql-terminator.html

The terminator seems to be a ';' by default. But it won't run from Base …

-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >