[Libreoffice-commits] core.git: Branch 'feature/cib_contract138c' - xmlsecurity/qa

2021-11-08 Thread Gabor Kelemen (via logerrit)
 xmlsecurity/qa/unit/signing/signing.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 2eba6e2f3878f71302ae17ee3a3fa5fac04cbc95
Author: Gabor Kelemen 
AuthorDate: Tue Nov 9 08:51:14 2021 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Nov 9 08:51:14 2021 +0100

Temporarily comment out failing unit test

Change-Id: I8de05b8ada12c8c9b80f33836823d0626e9b33e5

diff --git a/xmlsecurity/qa/unit/signing/signing.cxx 
b/xmlsecurity/qa/unit/signing/signing.cxx
index 1853b5eead8c..6d894471cfeb 100644
--- a/xmlsecurity/qa/unit/signing/signing.cxx
+++ b/xmlsecurity/qa/unit/signing/signing.cxx
@@ -79,7 +79,7 @@ public:
 
 void testDescription();
 void testECDSA();
-void testECDSAOOXML();
+//void testECDSAOOXML();
 void testECDSAPDF();
 /// Test a typical ODF where all streams are signed.
 void testODFGood();
@@ -139,7 +139,7 @@ public:
 CPPUNIT_TEST_SUITE(SigningTest);
 CPPUNIT_TEST(testDescription);
 CPPUNIT_TEST(testECDSA);
-CPPUNIT_TEST(testECDSAOOXML);
+//CPPUNIT_TEST(testECDSAOOXML);
 CPPUNIT_TEST(testECDSAPDF);
 CPPUNIT_TEST(testODFGood);
 CPPUNIT_TEST(testODFBroken);
@@ -377,7 +377,7 @@ void SigningTest::testECDSA()
  rInformations[0].nStatus);
 }
 
-void SigningTest::testECDSAOOXML()
+/*void SigningTest::testECDSAOOXML()
 {
 // Create an empty document and store it to a tempfile, finally load it as 
a storage.
 createDoc("");
@@ -406,17 +406,17 @@ void SigningTest::testECDSAOOXML()
 OUString aDescription;
 sal_Int32 nSecurityId;
 aManager.add(xCertificate, mxSecurityContext, aDescription, nSecurityId,
- /*bAdESCompliant=*/false);
+ /*bAdESCompliant=false);
 
 // Read back the signature and make sure that it's valid.
-aManager.read(/*bUseTempStream=*/true);
+aManager.read(/*bUseTempStream=true);
 std::vector& rInformations = 
aManager.maCurrentSignatureInformations;
 CPPUNIT_ASSERT_EQUAL(static_cast(1), rInformations.size());
 // This was SecurityOperationStatus_UNKNOWN, signing with an ECDSA key was
 // broken.
 
CPPUNIT_ASSERT_EQUAL(css::xml::crypto::SecurityOperationStatus_OPERATION_SUCCEEDED,
  rInformations[0].nStatus);
-}
+}*/
 
 void SigningTest::testECDSAPDF()
 {


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

2021-11-08 Thread Mike Kaganski (via logerrit)
 svtools/source/misc/unitconv.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d55b2631342bc7babf3709f2f83e0e502ebe4014
Author: Mike Kaganski 
AuthorDate: Tue Nov 9 09:22:43 2021 +0300
Commit: Mike Kaganski 
CommitDate: Tue Nov 9 08:43:03 2021 +0100

tdf#145158: pre-multiply the value by factor before conversion

Otherwise it is rounded before multiplying. Prior to the regressing
commit cfff893b9c82843a90aac4ecdb3a3936721b74a0, it was calculating
in twips, and was only converted to points by dividing by 20 in the
end, which allowed to keep some precision.

Change-Id: I142371dc630584f3fe64b5bfd5b592d46226ce32
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124895
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/svtools/source/misc/unitconv.cxx b/svtools/source/misc/unitconv.cxx
index bdff583182b5..5e316c5adf46 100644
--- a/svtools/source/misc/unitconv.cxx
+++ b/svtools/source/misc/unitconv.cxx
@@ -186,8 +186,8 @@ tools::Long CalcToPoint( tools::Long nIn, MapUnit eUnit, 
sal_uInt16 nFactor )
 eUnit == MapUnit::MapMM ||
 eUnit == MapUnit::MapCM, "this unit is not implemented" );
 
-if (const auto eTo = MapToO3tlLength(eUnit); eTo != o3tl::Length::invalid)
-return o3tl::convert(nIn, eTo, o3tl::Length::pt) * nFactor;
+if (const auto eFrom = MapToO3tlLength(eUnit); eFrom != 
o3tl::Length::invalid)
+return o3tl::convert(nIn * static_cast(nFactor), eFrom, 
o3tl::Length::pt);
 return 0;
 }
 


[Libreoffice-bugs] [Bug 145597] New: Receiving ###

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145597

Bug ID: 145597
   Summary: Receiving ###
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sleepyj...@yahoo.com

I was creating a spreadsheet with Calc. In one cell, I put together a formula
using the simple SUM function and I received ###. In another cell, I was using
the AVERAGE function and received the same result. In both Calc and other
spreadsheets, when I received ###, it meant that there was not enough room in
the cell for the all the digits of the number. In previous experiences, when
the cell size was widened, the numbers were displayed. In this case, when I
widened the cell, it put the formula on display, but didn't calculate the
formula. I had a few other spreadsheets that I created with an earlier version
of Calc. When opening them in 7.2.2.2, I no longer received the the result of
the formula. I did receive the ### and when I widen the cell, the formula was
being displayed.

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

[Libreoffice-bugs] [Bug 145596] New: [FORMATTING] word count in addition to line count

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145596

Bug ID: 145596
   Summary: [FORMATTING] word count in addition to line count
   Product: LibreOffice
   Version: 7.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oluoluolu+lobugzi...@gmail.com

Description:
Let's say a user (I don't know which one??) wants to print a draft document
that is intended to solicit feedback in ink (not electronic notes or comments),
and will modify the document afterwards.

This user will print the document in multiple sizes and wants to be able to
find his/her position quickly using both sizes, therefore line count is
unreliable as a marker of where in the document a piece of text is.

I think a word count instead of line count is perfect for this.

Maybe this would be a good time to solicit my second idea, which is multiple
"style sheets", where draft would be double spaced in a bigger font and final
would be single spaced in a smaller font

Steps to Reproduce:
1. Enter content
2. Change (paragraph?) formatting option to word count
3. Magic!

Actual Results:
Only line count is available at this time

Expected Results:
It would be nice to have


Reproducible: Always


User Profile Reset: No



Additional Info:
None.

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

[Libreoffice-commits] core.git: basic/source chart2/source comphelper/source cppu/source

2021-11-08 Thread Noel Grandin (via logerrit)
 basic/source/classes/codecompletecache.cxx|   31 +++---
 basic/source/classes/sbunoobj.cxx |1 
 basic/source/runtime/runtime.cxx  |1 
 chart2/source/controller/main/ConfigurationAccess.cxx |   11 --
 chart2/source/model/main/Diagram.cxx  |   86 ++
 chart2/source/view/charttypes/ConfigAccess.cxx|   13 --
 comphelper/source/misc/namedvaluecollection.cxx   |1 
 cppu/source/typelib/static_types.cxx  |   27 +++--
 cppu/source/typelib/typelib.cxx   |   49 +-
 cppu/source/uno/lbenv.cxx |   13 +-
 10 files changed, 103 insertions(+), 130 deletions(-)

New commits:
commit b3c6b3a274b4c89d3572010794897c65b26571aa
Author: Noel Grandin 
AuthorDate: Mon Nov 8 21:01:19 2021 +0200
Commit: Noel Grandin 
CommitDate: Tue Nov 9 08:28:56 2021 +0100

rtl::Static to thread-safe static

Change-Id: I35e2a252708228bdbeaee557ef35763c64608653
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124884
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/basic/source/classes/codecompletecache.cxx 
b/basic/source/classes/codecompletecache.cxx
index e2993c28581a..8f03797c32dd 100644
--- a/basic/source/classes/codecompletecache.cxx
+++ b/basic/source/classes/codecompletecache.cxx
@@ -19,13 +19,16 @@
 
 #include 
 #include 
-#include 
 #include 
 #include 
 
 namespace
 {
-class theCodeCompleteOptions: public ::rtl::Static< CodeCompleteOptions, 
theCodeCompleteOptions >{};
+CodeCompleteOptions& theCodeCompleteOptions()
+{
+static CodeCompleteOptions SINGLETON;
+return SINGLETON;
+}
 }
 
 CodeCompleteOptions::CodeCompleteOptions()
@@ -40,62 +43,62 @@ CodeCompleteOptions::CodeCompleteOptions()
 
 bool CodeCompleteOptions::IsCodeCompleteOn()
 {
-return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions::get().bIsCodeCompleteOn;
+return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions().bIsCodeCompleteOn;
 }
 
 void CodeCompleteOptions::SetCodeCompleteOn( bool b )
 {
-theCodeCompleteOptions::get().bIsCodeCompleteOn = b;
+theCodeCompleteOptions().bIsCodeCompleteOn = b;
 }
 
 bool CodeCompleteOptions::IsExtendedTypeDeclaration()
 {
-return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions::get().bExtendedTypeDeclarationOn;
+return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions().bExtendedTypeDeclarationOn;
 }
 
 void CodeCompleteOptions::SetExtendedTypeDeclaration( bool b )
 {
-theCodeCompleteOptions::get().bExtendedTypeDeclarationOn = b;
+theCodeCompleteOptions().bExtendedTypeDeclarationOn = b;
 }
 
 bool CodeCompleteOptions::IsProcedureAutoCompleteOn()
 {
-return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions::get().bIsProcedureAutoCompleteOn;
+return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions().bIsProcedureAutoCompleteOn;
 }
 
 void CodeCompleteOptions::SetProcedureAutoCompleteOn( bool b )
 {
-theCodeCompleteOptions::get().bIsProcedureAutoCompleteOn = b;
+theCodeCompleteOptions().bIsProcedureAutoCompleteOn = b;
 }
 
 bool CodeCompleteOptions::IsAutoCloseQuotesOn()
 {
-return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions::get().bIsAutoCloseQuotesOn;
+return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions().bIsAutoCloseQuotesOn;
 }
 
 void CodeCompleteOptions::SetAutoCloseQuotesOn( bool b )
 {
-theCodeCompleteOptions::get().bIsAutoCloseQuotesOn = b;
+theCodeCompleteOptions().bIsAutoCloseQuotesOn = b;
 }
 
 bool CodeCompleteOptions::IsAutoCloseParenthesisOn()
 {
-return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions::get().bIsAutoCloseParenthesisOn;
+return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions().bIsAutoCloseParenthesisOn;
 }
 
 void CodeCompleteOptions::SetAutoCloseParenthesisOn( bool b )
 {
-theCodeCompleteOptions::get().bIsAutoCloseParenthesisOn = b;
+theCodeCompleteOptions().bIsAutoCloseParenthesisOn = b;
 }
 
 bool CodeCompleteOptions::IsAutoCorrectOn()
 {
-return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions::get().bIsAutoCorrectOn;
+return officecfg::Office::Common::Misc::ExperimentalMode::get() && 
theCodeCompleteOptions().bIsAutoCorrectOn;
 }
 
 void CodeCompleteOptions::SetAutoCorrectOn( bool b )
 {
-theCodeCompleteOptions::get().bIsAutoCorrectOn = b;
+theCodeCompleteOptions().bIsAutoCorrectOn = b;
 }
 
 std::ostream& operator<< (std::ostream& aStream, const CodeCompleteDataCache& 
aCache)
diff --git a/basic/source/classes/sbunoobj.cxx 
b/basic/source/classes/sbunoobj.cxx
index f9d378ea8865..9e1d31fb4ac1 

[Libreoffice-commits] core.git: writerfilter/CppunitTest_writerfilter_rtftok.mk writerfilter/qa writerfilter/source

2021-11-08 Thread Miklos Vajna (via logerrit)
 writerfilter/CppunitTest_writerfilter_rtftok.mk   |1 
 writerfilter/qa/cppunittests/rtftok/data/follow-style.rtf |7 +
 writerfilter/qa/cppunittests/rtftok/rtfdispatchvalue.cxx  |   77 ++
 writerfilter/source/rtftok/rtfdispatchvalue.cxx   |4 
 4 files changed, 89 insertions(+)

New commits:
commit 926ac3c5e4b8eb425bc2db0366594acc0cf2c1ed
Author: Miklos Vajna 
AuthorDate: Mon Nov 8 19:56:36 2021 +0100
Commit: Miklos Vajna 
CommitDate: Tue Nov 9 08:22:41 2021 +0100

RTF import: handle \snext

I.e. pressing enter at the end of a heading 1 paragraph should switch to
body text.

Change-Id: Idde9da3e2c058869a2ae4a9c61b3b43165121f5e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124883
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/writerfilter/CppunitTest_writerfilter_rtftok.mk 
b/writerfilter/CppunitTest_writerfilter_rtftok.mk
index 6cad1e4c7b8d..0fe9083c6560 100644
--- a/writerfilter/CppunitTest_writerfilter_rtftok.mk
+++ b/writerfilter/CppunitTest_writerfilter_rtftok.mk
@@ -16,6 +16,7 @@ $(eval $(call 
gb_CppunitTest_use_externals,writerfilter_rtftok,\
 ))
 
 $(eval $(call gb_CppunitTest_add_exception_objects,writerfilter_rtftok, \
+writerfilter/qa/cppunittests/rtftok/rtfdispatchvalue \
 writerfilter/qa/cppunittests/rtftok/rtfdocumentimpl \
 writerfilter/qa/cppunittests/rtftok/rtfsdrimport \
 writerfilter/qa/cppunittests/rtftok/rtfsprm \
diff --git a/writerfilter/qa/cppunittests/rtftok/data/follow-style.rtf 
b/writerfilter/qa/cppunittests/rtftok/data/follow-style.rtf
new file mode 100644
index ..6e627c784e6b
--- /dev/null
+++ b/writerfilter/qa/cppunittests/rtftok/data/follow-style.rtf
@@ -0,0 +1,7 @@
+{\rtf1
+{\stylesheet
+{\s0\ql Normal;}
+{\s1\snext0 Heading 1;}
+}
+\pard\plain\s1 x\par
+}
diff --git a/writerfilter/qa/cppunittests/rtftok/rtfdispatchvalue.cxx 
b/writerfilter/qa/cppunittests/rtftok/rtfdispatchvalue.cxx
new file mode 100644
index ..662e65d75166
--- /dev/null
+++ b/writerfilter/qa/cppunittests/rtftok/rtfdispatchvalue.cxx
@@ -0,0 +1,77 @@
+/* -*- 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 
+#include 
+
+using namespace ::com::sun::star;
+
+namespace
+{
+/// Tests for writerfilter/source/rtftok/rtfdispatchvalue.cxx.
+class Test : public test::BootstrapFixture, public unotest::MacrosTest
+{
+private:
+uno::Reference mxComponent;
+
+public:
+void setUp() override;
+void tearDown() override;
+uno::Reference& getComponent() { return mxComponent; }
+};
+
+void Test::setUp()
+{
+test::BootstrapFixture::setUp();
+
+mxDesktop.set(frame::Desktop::create(mxComponentContext));
+}
+
+void Test::tearDown()
+{
+if (mxComponent.is())
+mxComponent->dispose();
+
+test::BootstrapFixture::tearDown();
+}
+
+constexpr OUStringLiteral DATA_DIRECTORY = 
u"/writerfilter/qa/cppunittests/rtftok/data/";
+
+CPPUNIT_TEST_FIXTURE(Test, testFollowStyle)
+{
+// Given a file with \snext:
+OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + 
"follow-style.rtf";
+
+// When loading that file:
+getComponent() = loadFromDesktop(aURL);
+
+// Then make sure we set the follow of the para style correctly:
+uno::Reference 
xStyleFamiliesSupplier(getComponent(),
+ 
uno::UNO_QUERY);
+uno::Reference xStyleFamilies
+= xStyleFamiliesSupplier->getStyleFamilies();
+uno::Reference xStyleFamily(
+xStyleFamilies->getByName("ParagraphStyles"), uno::UNO_QUERY);
+uno::Reference 
xStyle(xStyleFamily->getByName("Heading 1"),
+   uno::UNO_QUERY);
+OUString aFollowStyle;
+xStyle->getPropertyValue("FollowStyle") >>= aFollowStyle;
+// Without the accompanying fix in place, this test would have failed with:
+// - Expected: Standard
+// - Actual  : Heading 1
+// i.e. \snext was ignored.
+CPPUNIT_ASSERT_EQUAL(OUString("Standard"), aFollowStyle);
+}
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/rtftok/rtfdispatchvalue.cxx 
b/writerfilter/source/rtftok/rtfdispatchvalue.cxx
index 135e2395f34c..14d0b3993a54 100644
--- a/writerfilter/source/rtftok/rtfdispatchvalue.cxx
+++ b/writerfilter/source/rtftok/rtfdispatchvalue.cxx
@@ -131,6 +131,10 @@ bool RTFDocumentImpl::dispatchTableSprmValue(RTFKeyword 
nKeyword, int nParam)
 nSprm = NS_ooxml::LN_CT_Style_basedOn;
 pIntValue = new RTFValue(getStyleName(nParam));
 break;
+case RTFKeyword::SNEXT:
+nSprm 

[Libreoffice-bugs] [Bug 123041] Autocorrect: Abbreviations with spaces are not considered within text

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123041

Dieter  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org

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

Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

Problem is, that you actually can't type a protected space within the
abbreviations field.

@Heiko: Do you know, if this is possible in principle? (would also solve the
problem here I guess)

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

[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Dieter  changed:

   What|Removed |Added

 Depends on||145262


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145262
[Bug 145262] UI: Context menu for table content with Index / Bibliography entry
is missing commands
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145262] UI: Context menu for table content with Index / Bibliography entry is missing commands

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145262

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
 Blocks||86349
   Severity|trivial |minor
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
As far as I can see, there are two different context menus

a) Cursor inside the word: context menu has entry "Index Entry..."
b) Highlighted word: context menu without entry "Index Entry..."

Expected result
"Index Entry..." also in context menu of a highlighted word (either greyed out
like "Cut" and "Copy" in context menu of case a) or - of course the better
solution - as selectable entry

cc: Design-Team for further input and decision


Referenced Bugs:

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

[Libreoffice-ux-advise] [Bug 145262] UI: Context menu for table content with Index / Bibliography entry is missing commands

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145262

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
 Blocks||86349
   Severity|trivial |minor
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
As far as I can see, there are two different context menus

a) Cursor inside the word: context menu has entry "Index Entry..."
b) Highlighted word: context menu without entry "Index Entry..."

Expected result
"Index Entry..." also in context menu of a highlighted word (either greyed out
like "Cut" and "Copy" in context menu of case a) or - of course the better
solution - as selectable entry

cc: Design-Team for further input and decision


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 145595] New: Slow start

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145595

Bug ID: 145595
   Summary: Slow start
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: salci...@gmail.com

Description:
The new version starts very slow, it may take more than 30 seconds to start
Writer, Calc or Draw.

Steps to Reproduce:
1. Open some Writer file from the Download folder of Ubuntu 20.04.3 LTS Genome
version 3.36.8 (Laptop HP Probook, 7.7 GiB, ntel® Core™ i7-5500U CPU @ 2.40GHz
× 4. Mesa Intel® HD Graphics 5500 (BDW GT2). 64 bits).
2. Wait for the file to load, it can be around 30 seconds.
3. :( Any other file I try to open the same thing happens.

Actual Results:
The application opens very slow. In one of the occasions I have noticed that
some buttons of the Writer menu do not load, instead another figure appears.
Activating or deactivating OpenGL and restarting happens the same, slow loading
Writer.

Expected Results:
Charge in a couple of seconds.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
[Information automatically included from LibreOffice]
Locale: es
Module: TextDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

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

[Libreoffice-bugs] [Bug 145158] character format dialog doesn't show the current character size any more

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145158

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #10 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/124895

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

[Libreoffice-bugs] [Bug 145259] Printing on 'DL' paper (110 x 220mm)

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145259

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
  Component|Writer  |Printing and PDF export
 Whiteboard| QA:needsComment|

--- Comment #1 from Dieter  ---
RS, thank you for reporting the bug. Please provide some more informations
aboutyour settings in print dialog, so that we can try to reproduce the bug.
Pease add also informations about the printer you use. Thank you.
=> NEEDINFO

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

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

2021-11-08 Thread Hossein (via logerrit)
 emfio/source/reader/emfreader.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 2f590d0b66eddc53abe775ab344a195489d0a031
Author: Hossein 
AuthorDate: Mon Nov 8 22:24:51 2021 +0100
Commit: Mike Kaganski 
CommitDate: Tue Nov 9 07:14:30 2021 +0100

Simplify conditions for EMR_STRETCHDIBITS (EMF)

The variables xSrc, ySrc (x/y positions) and cxSrc, cySrc (x/y size)
come from [MS-EMF] documentation, "EMR_STRETCHDIBITS Record" section.

By calculating the difference between Bitmap x size and cxSrc (called
nWidthDiff), and also Bitmap y size and cySrc (called nHeightDiff),
the conditions used to test if it is OK to crop are simplified, and
are better readable.

Redundant checks (nWidthDiff >= 0) and (nHeightDiff >= 0) are removed
because it is now obvious that when they are bigger than non-negative
xSrc and ySrc, thus they themselves can not be negative.

Change-Id: I8e82c3d469377f21d34b57f3d50f977cf71004ce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124096
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/emfio/source/reader/emfreader.cxx 
b/emfio/source/reader/emfreader.cxx
index 7a29571d4773..a75c0a49e57f 100644
--- a/emfio/source/reader/emfreader.cxx
+++ b/emfio/source/reader/emfreader.cxx
@@ -1794,13 +1794,13 @@ namespace emfio
 aTmp.Seek( 0 );
 ReadDIB(aBitmap, aTmp, true);
 
+const tools::Long nWidthDiff = 
aBitmap.GetSizePixel().Width() - cxSrc;
+const tools::Long nHeightDiff = 
aBitmap.GetSizePixel().Height() - cySrc;
+
 // test if it is sensible to crop
 if ( (cxSrc > 0) && (cySrc > 0) &&
  (xSrc >= 0) && (ySrc >= 0) &&
- (aBitmap.GetSizePixel().Width() >= cxSrc) 
&&
- (xSrc <= aBitmap.GetSizePixel().Width() - 
cxSrc) &&
- (aBitmap.GetSizePixel().Height() >= 
cySrc) &&
- (ySrc <= aBitmap.GetSizePixel().Height() 
- cySrc) )
+ (xSrc <= nWidthDiff) && (ySrc <= 
nHeightDiff) )
 {
 tools::Rectangle aCropRect( Point( xSrc, 
ySrc ), Size( cxSrc, cySrc ) );
 aBitmap.Crop( aCropRect );


[Libreoffice-commits] core.git: odk/CustomTarget_build-examples.mk odk/examples odk/Package_examples.mk

2021-11-08 Thread Hossein (via logerrit)
 odk/CustomTarget_build-examples.mk   |1 
 odk/Package_examples.mk  |2 
 odk/examples/cpp/Convertor/Convertor.cxx |  126 +++
 odk/examples/cpp/Convertor/Makefile  |   90 ++
 odk/examples/cpp/Convertor/test.odt  |binary
 5 files changed, 219 insertions(+)

New commits:
commit 83b529d88388c7c8e0563242a030063bd95c4bed
Author: Hossein 
AuthorDate: Sun Oct 24 15:36:31 2021 +0200
Commit: Mike Kaganski 
CommitDate: Tue Nov 9 07:11:33 2021 +0100

Add Convertor C++ example

* Add Convertor.cxx
* Used Makefile from DocumentLoader with some changes
* Updated odk make files
* output.pdf is generated from the input odt file

Change-Id: I3e46f2895443f75b2f3815280b0f793bca5138e7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123736
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/odk/CustomTarget_build-examples.mk 
b/odk/CustomTarget_build-examples.mk
index 7861517b76b3..38ed74bf9262 100644
--- a/odk/CustomTarget_build-examples.mk
+++ b/odk/CustomTarget_build-examples.mk
@@ -20,6 +20,7 @@ my_example_dirs = \
 DevelopersGuide/ProfUNO/SimpleBootstrap_cpp \
 OLE/activex \
 cpp/Draw \
+cpp/Convertor \
 cpp/DocumentLoader \
 cpp/complextoolbarcontrols \
 cpp/counter \
diff --git a/odk/Package_examples.mk b/odk/Package_examples.mk
index 9b752f2387ed..b172b988284e 100644
--- a/odk/Package_examples.mk
+++ b/odk/Package_examples.mk
@@ -392,6 +392,8 @@ $(eval $(call 
gb_Package_add_files_with_dir,odk_examples,$(SDKDIRNAME)/examples,
 basic/text/modifying_text_automatically/inserting_bookmarks.odt \
 basic/text/modifying_text_automatically/replacing_text.odt \
 basic/text/modifying_text_automatically/using_regular_expressions.odt \
+cpp/Convertor/Convertor.cxx \
+cpp/Convertor/Makefile \
 cpp/Draw/Draw.cxx \
 cpp/Draw/Makefile \
 cpp/DocumentLoader/DocumentLoader.cxx \
diff --git a/odk/examples/cpp/Convertor/Convertor.cxx 
b/odk/examples/cpp/Convertor/Convertor.cxx
new file mode 100644
index ..7297c0eaeec5
--- /dev/null
+++ b/odk/examples/cpp/Convertor/Convertor.cxx
@@ -0,0 +1,126 @@
+/* -*- 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/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+using namespace cppu;
+using namespace rtl;
+using namespace css::uno;
+using namespace css::beans;
+using namespace css::bridge;
+using namespace css::frame;
+using namespace css::lang;
+using namespace css::text;
+
+SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
+{
+OUString sInputFileName, sOutputFileName;
+OUString 
sConnectionString("uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager");
+
+sal_Int32 nCount = rtl_getAppCommandArgCount();
+
+if (nCount < 1)
+{
+std::cout
+<< "using: Convertor -env:URE_MORE_TYPES= 
 "
+   "[]"
+<< std::endl
+<< std::endl
+<< "example: Convertor 
-env:URE_MORE_TYPES=\"file:///.../program/offapi.rdb\" test.odt"
+   
"\"uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager\""
+<< std::endl;
+exit(1);
+}
+
+auto xComponentContext(defaultBootstrap_InitialComponentContext());
+auto xMultiComponentFactoryClient(xComponentContext->getServiceManager());
+auto xInterface = xMultiComponentFactoryClient->createInstanceWithContext(
+"com.sun.star.bridge.UnoUrlResolver", xComponentContext);
+auto resolver = Reference(xInterface, UNO_QUERY);
+try
+{
+xInterface = 
Reference(resolver->resolve(sConnectionString), UNO_QUERY_THROW);
+}
+catch (Exception& e)
+{
+std::cout << "Error: cannot establish a connection using '" << 
sConnectionString << "'"
+  << std::endl
+  << e.Message << std::endl;
+std::exit(1);
+}
+
+auto xPropSet = Reference(xInterface, UNO_QUERY);
+

[Libreoffice-bugs] [Bug 145594] Inserting Footnotes in Writer Tables Breaks Formulas

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145594

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145540] Problem with standard filter when try filtering displayed data in the column. I see a lot of data but when use filtering column is "empty". Conditions are not working p

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145540

Rainer Bielefeld Retired  changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #2 from Rainer Bielefeld Retired  
---
@reporter
Please attach a sample document

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

[Libreoffice-bugs] [Bug 83670] color gradient (cell background) not displayed correctly

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83670

--- Comment #15 from Mandi Wood  ---
Have you ever played basketball legends to have a great and fun filled day,
this game is quite a popular game, you also love the challenge.
https://basketballlegends.fun

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

[Libreoffice-bugs] [Bug 145594] New: Inserting Footnotes in Writer Tables Breaks Formulas

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145594

Bug ID: 145594
   Summary: Inserting Footnotes in Writer Tables Breaks Formulas
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: will.fried...@gmail.com

Description:
If I have a table with numbers in Writer, and insert footnotes in any of the
cells, it breaks any formulas that try to use the data in the cell with the
footnote.

Steps to Reproduce:
1. Create a simple table with one row and three columns.
2. Put numbers in the first two cells.
3. Put the formula =SUM() in the third cell.
4. Insert a footnote after the number in the first cell.

Actual Results:
The formula in the third cell no longer adds the number in the first cell.

Expected Results:
The formula in the third cell should still add the number in the first cell,
disregarding the footnote.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.5.2 (x64) / LibreOffice Community
Build ID: 85f04e9f809797b8199d13c421bd8a2b025d52b5
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 136472] Same content on left/right pages/ Same content on first page checked on file open DOCX

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136472

Justin L  changed:

   What|Removed |Added

 Whiteboard|target:7.3.0|

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

[Libreoffice-bugs] [Bug 145582] Query → Edit in SQL-View treats file as changed when no changes have occurred

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145582

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 145308] chapter numbering: separator when higher level has no numbering

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145308

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 145307] Frame position different after open and close

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145307

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 145302] Leaving mouse in titlebar makes tooltip continually appear and disappear elsewhere

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145302

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 145303] EDITING: Short delay when typing characters in Writer with AltGr (or Ctrl+Alt) (like @ € µ ² ³ { [ ] } \ ~) using German keyboard

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145303

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 145240] Can't save drawing if I'm adding a short freeform line with no fill.

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145240

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 145237] custom shape uses wrong curve for fill in extrusion in most cases

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145237

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 141620] Crash in: libc-2.27.so

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141620

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 141620] Crash in: libc-2.27.so

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141620

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

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 141604] Crash in: mergedlo.dll

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141604

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 141604] Crash in: mergedlo.dll

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141604

--- Comment #4 from QA Administrators  ---
Dear midgley.tom,

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 141595] libreoffice crashed

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141595

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 141595] libreoffice crashed

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141595

--- Comment #3 from QA Administrators  ---
Dear w scott,

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 87351] [META] Conditional formatting bugs and enhancements

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351
Bug 87351 depends on bug 133219, which changed state.

Bug 133219 Summary: Calc Conditional formatting breaks/not saved correct
https://bugs.documentfoundation.org/show_bug.cgi?id=133219

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 133219] Calc Conditional formatting breaks/not saved correct

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133219

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 133219] Calc Conditional formatting breaks/not saved correct

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133219

--- Comment #13 from QA Administrators  ---
Dear e688497,

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 142199] Fails to open older .odt files with LibreOffice 7.0.5.2. Linux version 6.4.7.2 works.

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142199

--- Comment #6 from QA Administrators  ---
Dear Alex S.,

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-bugs] [Bug 142177] Heading style - Update to Match Selection works incorrectly

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142177

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

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-bugs] [Bug 141950] bad cropped pictures in Impress

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141950

--- Comment #13 from QA Administrators  ---
Dear Hamel,

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-bugs] [Bug 129595] Insert current date only inserts month and day

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129595

--- Comment #20 from QA Administrators  ---
Dear gyrlgith,

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-bugs] [Bug 96371] Tab stop in text box not supported

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96371

--- Comment #19 from QA Administrators  ---
Dear Dominik Kopp,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 95743] Horizontal page does not rotate when printing two pages on one sheet

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95743

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

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 95072] The font Trench renders too thick, looks ok in PDF export

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95072

--- Comment #12 from QA Administrators  ---
Dear jlbraga,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 92959] PDF exported text boxes have weird border spacing

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92959

--- Comment #23 from QA Administrators  ---
Dear Florian Wicke,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 72039] TABLE: Differences between English and German Number Recognition

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72039

--- Comment #11 from QA Administrators  ---
Dear Harald Koester,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 45097] misplaced bullets table after .odt to .pdf export

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45097

--- Comment #13 from QA Administrators  ---
Dear Carsten Niehaus,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 145585] EDITING linked and gruped images

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145585

Gustav Wall  changed:

   What|Removed |Added

 OS|Linux (All) |Windows (All)
Version|6.0.7.3 release |7.1.4.2 release
   Hardware|ARM |Other

--- Comment #1 from Gustav Wall  ---
I just saw that on Windows, with Libre Office version 7.1.4.2, I can
right-click to ungroup and edit individual images.

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

[Libreoffice-bugs] [Bug 42442] PRINTING and PDFEXPORT of particular business cards shows unwanted horizontal and vertical line artifacts for frame borders

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42442

--- Comment #28 from QA Administrators  ---
Dear Istvan Varga,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 128678] EDITING Unable to unselect merged cells using arrows keys when selecting from bottom or right

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128678

--- Comment #2 from QA Administrators  ---
Dear nilskemail+bugzilla,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 115755] Printing with Calc: Blank box on top of page

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115755

--- Comment #19 from QA Administrators  ---
Dear ds,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 105404] Draw very slow dividing vector graphic (only Linux problem)

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105404

--- Comment #14 from QA Administrators  ---
Dear Lucio Marinelli,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

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

2021-11-08 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/utlui/navipi.cxx |   36 +++-
 1 file changed, 19 insertions(+), 17 deletions(-)

New commits:
commit d4c56284813c1e38a2fb46e9a52c5350d1ba3cef
Author: Jim Raykowski 
AuthorDate: Sat Nov 6 23:27:04 2021 -0800
Commit: Jim Raykowski 
CommitDate: Tue Nov 9 03:34:35 2021 +0100

SwNavigator: Restore content tree settings before showing

Content tracking by the Navigator content tree and outline levels
displayed currently do not use the stored Navigator settings when the
tree is initially shown. This can cause content to be tracked and
outline levels to be shown that are different from the stored settings
when the tree is initially shown.

This patch fixes these possibilities by changing when the stored
content tree settings are applied to before the tree is initially
filled and shown.

Change-Id: I5443788c3fbacb36695cfc56163f217408254fd6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124831
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/utlui/navipi.cxx 
b/sw/source/uibase/utlui/navipi.cxx
index 36c697da9d37..feee92814c34 100644
--- a/sw/source/uibase/utlui/navipi.cxx
+++ b/sw/source/uibase/utlui/navipi.cxx
@@ -519,6 +519,25 @@ SwNavigationPI::SwNavigationPI(weld::Widget* pParent,
 {
 m_xContainer->connect_container_focus_changed(LINK(this, SwNavigationPI, 
SetFocusChildHdl));
 
+// Restore content tree settings before calling UpdateInitShow. 
UpdateInitShow calls Fillbox,
+// which calls Display and UpdateTracking. Incorrect outline levels could 
be displayed and
+// unexpected content tracking could occur if these content tree settings 
are not done before.
+
m_xContentTree->SetOutlineLevel(static_cast(m_pConfig->GetOutlineLevel()));
+
m_xContentTree->SetOutlineTracking(static_cast(m_pConfig->GetOutlineTracking()));
+m_xContentTree->SetTableTracking(m_pConfig->IsTableTracking());
+m_xContentTree->SetSectionTracking(m_pConfig->IsSectionTracking());
+m_xContentTree->SetFrameTracking(m_pConfig->IsFrameTracking());
+m_xContentTree->SetImageTracking(m_pConfig->IsImageTracking());
+m_xContentTree->SetOLEobjectTracking(m_pConfig->IsOLEobjectTracking());
+m_xContentTree->SetBookmarkTracking(m_pConfig->IsBookmarkTracking());
+m_xContentTree->SetHyperlinkTracking(m_pConfig->IsHyperlinkTracking());
+m_xContentTree->SetReferenceTracking(m_pConfig->IsReferenceTracking());
+m_xContentTree->SetIndexTracking(m_pConfig->IsIndexTracking());
+m_xContentTree->SetCommentTracking(m_pConfig->IsCommentTracking());
+
m_xContentTree->SetDrawingObjectTracking(m_pConfig->IsDrawingObjectTracking());
+m_xContentTree->SetFieldTracking(m_pConfig->IsFieldTracking());
+m_xContentTree->SetFootnoteTracking(m_pConfig->IsFootnoteTracking());
+
 UpdateInitShow();
 
 GetCreateView();
@@ -573,23 +592,6 @@ SwNavigationPI::SwNavigationPI(weld::Widget* pParent,
 
 SetRegionDropMode(m_pConfig->GetRegionMode());
 
-
m_xContentTree->SetOutlineLevel(static_cast(m_pConfig->GetOutlineLevel()));
-
-
m_xContentTree->SetOutlineTracking(static_cast(m_pConfig->GetOutlineTracking()));
-m_xContentTree->SetTableTracking(m_pConfig->IsTableTracking());
-m_xContentTree->SetSectionTracking(m_pConfig->IsSectionTracking());
-m_xContentTree->SetFrameTracking(m_pConfig->IsFrameTracking());
-m_xContentTree->SetImageTracking(m_pConfig->IsImageTracking());
-m_xContentTree->SetOLEobjectTracking(m_pConfig->IsOLEobjectTracking());
-m_xContentTree->SetBookmarkTracking(m_pConfig->IsBookmarkTracking());
-m_xContentTree->SetHyperlinkTracking(m_pConfig->IsHyperlinkTracking());
-m_xContentTree->SetReferenceTracking(m_pConfig->IsReferenceTracking());
-m_xContentTree->SetIndexTracking(m_pConfig->IsIndexTracking());
-m_xContentTree->SetCommentTracking(m_pConfig->IsCommentTracking());
-
m_xContentTree->SetDrawingObjectTracking(m_pConfig->IsDrawingObjectTracking());
-m_xContentTree->SetFieldTracking(m_pConfig->IsFieldTracking());
-m_xContentTree->SetFootnoteTracking(m_pConfig->IsFootnoteTracking());
-
 m_xContentTree->set_selection_mode(SelectionMode::Single);
 m_xContentTree->ShowTree();
 m_xContent6ToolBox->set_item_active("listbox", true);


[Libreoffice-bugs] [Bug 143216] Hyperlinks with Basic Auth (https://user:passw...@example.com/) get lost in PDF export

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143216

--- Comment #5 from Dave Gilbert  ---
I can reproduce this on current git head;
it's kind of fun - It almost feels like there's two links in the output - one
that's a broken file link , and the 2nd that's a mailto.

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

[Libreoffice-bugs] [Bug 130744] [META] Screenshot Issues Meta Bug

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130744
Bug 130744 depends on bug 140395, which changed state.

Bug 140395 Summary: "Font effects" screenshot has to be updated so that it does 
not show "blinking" control
https://bugs.documentfoundation.org/show_bug.cgi?id=140395

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: helpcontent2

2021-11-08 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ccf3d9140a24d767003c08cd0247e6ee6fd12fe0
Author: Olivier Hallot 
AuthorDate: Mon Nov 8 20:48:42 2021 -0300
Commit: Gerrit Code Review 
CommitDate: Tue Nov 9 00:48:42 2021 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 02f148c4a8486dcb0ceb2d2d4891a19e132821a0
  - tdf#140395 Update font effect screenshot in Help page

Change-Id: I1ee93b072ccdf750147bb44dac27e9233edaae49
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124893
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 3b8dedffddfa..02f148c4a848 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 3b8dedffddfa520de8801845a360727da3b4c698
+Subproject commit 02f148c4a8486dcb0ceb2d2d4891a19e132821a0


[Libreoffice-commits] help.git: source/media

2021-11-08 Thread Olivier Hallot (via logerrit)
 source/media/screenshots/cui/ui/effectspage/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/af/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/am/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ar/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/as/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ast/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/be/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/bg/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/bn-IN/EffectsPage.png   |binary
 source/media/screenshots/cui/ui/effectspage/bn/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/bo/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/br/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/brx/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/bs/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ca-valencia/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/ca/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ckb/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/cs/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/cy/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/da/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/de/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/dgo/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/dsb/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/dz/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/el/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/en-GB/EffectsPage.png   |binary
 source/media/screenshots/cui/ui/effectspage/en-ZA/EffectsPage.png   |binary
 source/media/screenshots/cui/ui/effectspage/eo/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/es/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/et/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/eu/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/fa/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/fi/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/fr/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/fur/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/fy/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ga/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/gd/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/gl/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/gu/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/gug/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/he/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/hi/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/hr/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/hsb/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/hu/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/id/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/is/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/it/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ja/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ka/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/kab/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/kk/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/km/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/kmr-Latn/EffectsPage.png|binary
 source/media/screenshots/cui/ui/effectspage/kn/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/ko/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/kok/EffectsPage.png |binary
 source/media/screenshots/cui/ui/effectspage/ks/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/lb/EffectsPage.png  |binary
 source/media/screenshots/cui/ui/effectspage/lo/EffectsPage.png  |binary
 

[Libreoffice-bugs] [Bug 140395] "Font effects" screenshot has to be updated so that it does not show "blinking" control

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140395

Olivier Hallot  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olivier.hallot@libreoffice.
   |desktop.org |org

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

[Libreoffice-bugs] [Bug 35092] Inking functionality: Ink drawings / annotations with Stylus, Pen or Finger on Touchscreen or Tablet

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35092

V Stuart Foote  changed:

   What|Removed |Added

 CC||puigp...@gmail.com

--- Comment #132 from V Stuart Foote  ---
*** Bug 145588 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 145588] Feature request: to be able to anotate anImpress document handwriting with a digital table

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145588

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---
This is a duplicate of the long suffering spam magnet...

*** This bug has been marked as a duplicate of bug 35092 ***

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

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

2021-11-08 Thread Julien Nabet (via logerrit)
 dbaccess/source/core/api/RowSet.cxx  |   49 ---
 dbaccess/source/core/api/RowSetCache.cxx |   13 +--
 dbaccess/source/core/dataaccess/dataaccessdescriptor.cxx |   37 +--
 dbaccess/source/core/dataaccess/documentdefinition.cxx   |   16 ++--
 dbaccess/source/filter/xml/xmlHelper.cxx |   21 +++---
 5 files changed, 70 insertions(+), 66 deletions(-)

New commits:
commit e21ebb0a98e81a9591918f3794ece75fb1df7ab1
Author: Julien Nabet 
AuthorDate: Mon Nov 8 21:59:31 2021 +0100
Commit: Julien Nabet 
CommitDate: Mon Nov 8 23:35:03 2021 +0100

Replace some macros in dbaccess part 1

Remove NOTIFY_LISTENERS_CHECK + CHECK_MATRIX_POS + REGISTER_PROPERTY_BV + 
REGISTER_PROPERTY
+ MAP_END + MAP_CONST_COLUMN + MAP_CONST_CELL

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

diff --git a/dbaccess/source/core/api/RowSet.cxx 
b/dbaccess/source/core/api/RowSet.cxx
index 4e66304cd367..4630bee25e94 100644
--- a/dbaccess/source/core/api/RowSet.cxx
+++ b/dbaccess/source/core/api/RowSet.cxx
@@ -95,24 +95,6 @@ 
com_sun_star_comp_dba_ORowSet_get_implementation(css::uno::XComponentContext* co
 return cppu::acquire(new ORowSet(context));
 }
 
-#define NOTIFY_LISTENERS_CHECK(_rListeners,T,method)   
  \
-std::vector< Reference< XInterface > > aListenerSeq = 
_rListeners.getElements(); \
-   
   \
-_rGuard.clear();   
   \
-bool bCheck = std::all_of(aListenerSeq.rbegin(), aListenerSeq.rend(),  
   \
-[](Reference& rxItem) {   
   \
-try
   \
-{  
   \
-return 
static_cast(static_cast(rxItem.get())->method(aEvt)); \
-}  
   \
-catch( RuntimeException& ) 
   \
-{  
   \
-return true;   
   \
-}  
   \
-});
   \
-_rGuard.reset();
-
-
 namespace dbaccess
 {
 ORowSet::ORowSet( const Reference< css::uno::XComponentContext >& _rxContext )
@@ -1109,13 +1091,40 @@ void 
ORowSet::notifyAllListenersRowChanged(::osl::ResettableMutexGuard& _rGuard,
 bool ORowSet::notifyAllListenersCursorBeforeMove(::osl::ResettableMutexGuard& 
_rGuard)
 {
 EventObject aEvt(*m_pMySelf);
-
NOTIFY_LISTENERS_CHECK(m_aApproveListeners,XRowSetApproveListener,approveCursorMove);
+std::vector< Reference< XInterface > > aListenerSeq = 
m_aApproveListeners.getElements();
+_rGuard.clear();
+bool bCheck = std::all_of(aListenerSeq.rbegin(), aListenerSeq.rend(),
+[](Reference& rxItem) {
+try
+{
+return 
static_cast(static_cast(rxItem.get())->approveCursorMove(aEvt));
+}
+catch( RuntimeException& )
+{
+return true;
+}
+});
+_rGuard.reset();
 return bCheck;
 }
 
 void ORowSet::notifyAllListenersRowBeforeChange(::osl::ResettableMutexGuard& 
_rGuard,const RowChangeEvent )
 {
-
NOTIFY_LISTENERS_CHECK(m_aApproveListeners,XRowSetApproveListener,approveRowChange);
+std::vector< Reference< XInterface > > aListenerSeq = 
m_aApproveListeners.getElements();
+_rGuard.clear();
+bool bCheck = std::all_of(aListenerSeq.rbegin(), aListenerSeq.rend(),
+[](Reference& rxItem) {
+try
+{
+return 
static_cast(static_cast(rxItem.get())->approveRowChange(aEvt));
+}
+catch( RuntimeException& )
+{
+return true;
+}
+});
+_rGuard.reset();
+
 if ( !bCheck )
 m_aErrors.raiseTypedException( 
sdb::ErrorCondition::ROW_SET_OPERATION_VETOED, *this, ::cppu::UnoType< 
RowSetVetoException >::get() );
 }
diff --git a/dbaccess/source/core/api/RowSetCache.cxx 
b/dbaccess/source/core/api/RowSetCache.cxx
index a939cc1e48a4..b588cc0320e6 100644
--- a/dbaccess/source/core/api/RowSetCache.cxx
+++ b/dbaccess/source/core/api/RowSetCache.cxx
@@ -64,8 +64,6 @@ using namespace ::com::sun::star::lang;
 using namespace ::cppu;
 using namespace ::osl;
 
-#define CHECK_MATRIX_POS(M) OSL_ENSURE(((M) >= 
static_cast(0)) && ((M) < 
static_cast(m_pMatrix->size())),"Position is invalid!")
-
 // This class calls 

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

2021-11-08 Thread Andreas Heinisch (via logerrit)
 sc/source/ui/unoobj/cellsuno.cxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit b9e2c5d2a36fbd189c20448cadf4212edf02914d
Author: Andreas Heinisch 
AuthorDate: Thu Nov 4 11:50:51 2021 +0100
Commit: Eike Rathke 
CommitDate: Mon Nov 8 23:04:54 2021 +0100

tdf#142033 - Handle embedded newline set via SetDataArray

Change-Id: I798f9a2a2ce599ba8ca3ef1f5ae91801d8f1b138
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124681
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index d599e8ea38ba..b7f51d6e0ac7 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -1082,6 +1082,7 @@ static bool lcl_PutDataArray( ScDocShell& rDocShell, 
const ScRange& rRange,
 const uno::Sequence< uno::Sequence >& aData )
 {
 ScDocument& rDoc = rDocShell.GetDocument();
+ScDocFunc& rDocFunc = rDocShell.GetDocFunc();
 SCTAB nTab = rRange.aStart.Tab();
 SCCOL nStartCol = rRange.aStart.Col();
 SCROW nStartRow = rRange.aStart.Row();
@@ -1158,9 +1159,7 @@ static bool lcl_PutDataArray( ScDocShell& rDocShell, 
const ScRange& rRange,
 rElement >>= aUStr;
 if ( !aUStr.isEmpty() )
 {
-ScSetStringParam aParam;
-aParam.setTextInput();
-rDoc.SetString(aPos, aUStr, );
+rDocFunc.SetStringOrEditCell(aPos, aUStr, false);
 }
 }
 break;


[Libreoffice-commits] core.git: svx/source ucb/source

2021-11-08 Thread Andrea Gelmini (via logerrit)
 svx/source/customshapes/EnhancedCustomShape3d.cxx |2 +-
 ucb/source/ucp/tdoc/tdoc_stgelems.hxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 140b90d30b30bddfda44b81e26284807807ab518
Author: Andrea Gelmini 
AuthorDate: Mon Nov 8 13:06:22 2021 +0100
Commit: Julien Nabet 
CommitDate: Mon Nov 8 22:53:33 2021 +0100

Fix typos

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

diff --git a/svx/source/customshapes/EnhancedCustomShape3d.cxx 
b/svx/source/customshapes/EnhancedCustomShape3d.cxx
index 7b847c381835..4d3cb9de7cb1 100644
--- a/svx/source/customshapes/EnhancedCustomShape3d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape3d.cxx
@@ -684,7 +684,7 @@ SdrObject* EnhancedCustomShape3d::Create3DObject(
 double fAmbientIntensity = GetDouble( rGeometryItem, "Brightness", 
22178.0 / 655.36 ) / 100.0;
 bool bMetal = GetBool( rGeometryItem, "Metal", false );
 
-// Currently needed for import from binar MS Office.
+// Currently needed for import from binary MS Office.
 // ToDo: Create a solution in the filters.
 // MS Office adds black to diffuse and ambient color in case of 
metal. Use an
 // approximating ersatz.
diff --git a/ucb/source/ucp/tdoc/tdoc_stgelems.hxx 
b/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
index 3927f2819063..ba311953dd47 100644
--- a/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
+++ b/ucb/source/ucp/tdoc/tdoc_stgelems.hxx
@@ -87,7 +87,7 @@ public:
 virtual void SAL_CALL release()
 noexcept override;
 
-// XTypeProvider (implemnented by base, but needs to be overridden for
+// XTypeProvider (implemented by base, but needs to be overridden for
 //delegating to aggregate)
 virtual css::uno::Sequence< css::uno::Type > SAL_CALL
 getTypes() override;


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - sc/inc sc/source

2021-11-08 Thread Kevin Suo (via logerrit)
 sc/inc/stylehelper.hxx   |4 +++-
 sc/source/filter/orcus/interface.cxx |5 -
 2 files changed, 7 insertions(+), 2 deletions(-)

New commits:
commit c274eeaa46206a42b3356d18f7a0d6dc5fb92cda
Author: Kevin Suo 
AuthorDate: Wed Nov 3 14:16:52 2021 +0800
Commit: Andras Timar 
CommitDate: Mon Nov 8 22:13:05 2021 +0100

tdf#139205: Keep hierarchical structure of localized default styles in Calc

The default cell styles (when creating a new Calc document), as returned by 
orcus
parsing, are built-in English names, as defined in sc/res/xml/styles.xml. 
These
names can be localized. On non-English UI, all these (localized) styles 
names
will be forced to use the localized "Default" as their parent because there 
is
no such non-localized parents in the localized style tree on UI.

In this patch, I added SC_DLLPUBLIC to 
ScStyleNameConversion::ProgrammaticToDisplayName,
then used this function to convert the parent style name to the (localized) 
UI name.

Change-Id: I3689211a10c60a5e7b2b273b6c15a4da92f0d633
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124556
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
Reviewed-by: Eike Rathke 

diff --git a/sc/inc/stylehelper.hxx b/sc/inc/stylehelper.hxx
index 68e6d252b03c..c847df28e9f8 100644
--- a/sc/inc/stylehelper.hxx
+++ b/sc/inc/stylehelper.hxx
@@ -21,6 +21,7 @@
 #define INCLUDED_SC_INC_STYLEHELPER_HXX
 
 #include 
+#include "scdllapi.h"
 
 enum class SfxStyleFamily;
 
@@ -28,7 +29,8 @@ class ScStyleNameConversion
 {
 public:
 static OUString DisplayToProgrammaticName(const OUString& rDispName, 
SfxStyleFamily nType);
-static OUString ProgrammaticToDisplayName(const OUString& rProgName, 
SfxStyleFamily nType);
+static SC_DLLPUBLIC OUString ProgrammaticToDisplayName(const OUString& 
rProgName,
+   SfxStyleFamily 
nType);
 };
 
 #endif
diff --git a/sc/source/filter/orcus/interface.cxx 
b/sc/source/filter/orcus/interface.cxx
index 7bf9bd059def..a42b71f46ee6 100644
--- a/sc/source/filter/orcus/interface.cxx
+++ b/sc/source/filter/orcus/interface.cxx
@@ -47,6 +47,7 @@
 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -2179,7 +2180,9 @@ size_t ScOrcusStyles::commit_cell_style()
 
 ScStyleSheetPool* pPool = mrFactory.getDoc().getDoc().GetStyleSheetPool();
 SfxStyleSheetBase& rBase = pPool->Make(maCurrentCellStyle.maName, 
SfxStyleFamily::Para);
-rBase.SetParent(maCurrentCellStyle.maParentName);
+// Need to convert the parent name to localized UI name, see tdf#139205.
+
rBase.SetParent(ScStyleNameConversion::ProgrammaticToDisplayName(maCurrentCellStyle.maParentName,
+ 
SfxStyleFamily::Para));
 SfxItemSet& rSet = rBase.GetItemSet();
 
 xf& rXf = maCellStyleXfs[maCurrentCellStyle.mnXFId];


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

2021-11-08 Thread Kevin Suo (via logerrit)
 sc/inc/stylehelper.hxx   |4 +++-
 sc/source/filter/orcus/interface.cxx |5 -
 2 files changed, 7 insertions(+), 2 deletions(-)

New commits:
commit 4024673d69475191ba221fd0db2e595bf796d4fd
Author: Kevin Suo 
AuthorDate: Wed Nov 3 14:16:52 2021 +0800
Commit: Eike Rathke 
CommitDate: Mon Nov 8 21:40:35 2021 +0100

tdf#139205: Keep hierarchical structure of localized default styles in Calc

The default cell styles (when creating a new Calc document), as returned by 
orcus
parsing, are built-in English names, as defined in sc/res/xml/styles.xml. 
These
names can be localized. On non-English UI, all these (localized) styles 
names
will be forced to use the localized "Default" as their parent because there 
is
no such non-localized parents in the localized style tree on UI.

In this patch, I added SC_DLLPUBLIC to 
ScStyleNameConversion::ProgrammaticToDisplayName,
then used this function to convert the parent style name to the (localized) 
UI name.

Change-Id: I3689211a10c60a5e7b2b273b6c15a4da92f0d633
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124556
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
Reviewed-by: Eike Rathke 

diff --git a/sc/inc/stylehelper.hxx b/sc/inc/stylehelper.hxx
index 63189ccd6c77..e11fcef97c8e 100644
--- a/sc/inc/stylehelper.hxx
+++ b/sc/inc/stylehelper.hxx
@@ -20,6 +20,7 @@
 #pragma once
 
 #include 
+#include "scdllapi.h"
 
 //  conversion programmatic <-> display (visible) name
 //  currently, the core always has the visible names
@@ -46,7 +47,8 @@ class ScStyleNameConversion
 {
 public:
 static OUString DisplayToProgrammaticName(const OUString& rDispName, 
SfxStyleFamily nType);
-static OUString ProgrammaticToDisplayName(const OUString& rProgName, 
SfxStyleFamily nType);
+static SC_DLLPUBLIC OUString ProgrammaticToDisplayName(const OUString& 
rProgName,
+   SfxStyleFamily 
nType);
 };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/filter/orcus/interface.cxx 
b/sc/source/filter/orcus/interface.cxx
index 63926a72fc59..1bcc914a0ada 100644
--- a/sc/source/filter/orcus/interface.cxx
+++ b/sc/source/filter/orcus/interface.cxx
@@ -49,6 +49,7 @@
 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -2176,7 +2177,9 @@ size_t ScOrcusStyles::commit_cell_style()
 
 ScStyleSheetPool* pPool = mrFactory.getDoc().getDoc().GetStyleSheetPool();
 SfxStyleSheetBase& rBase = pPool->Make(maCurrentCellStyle.maName, 
SfxStyleFamily::Para);
-rBase.SetParent(maCurrentCellStyle.maParentName);
+// Need to convert the parent name to localized UI name, see tdf#139205.
+
rBase.SetParent(ScStyleNameConversion::ProgrammaticToDisplayName(maCurrentCellStyle.maParentName,
+ 
SfxStyleFamily::Para));
 SfxItemSet& rSet = rBase.GetItemSet();
 
 xf& rXf = maCellStyleXfs[maCurrentCellStyle.mnXFId];


[Libreoffice-bugs] [Bug 139444] VLOOKUP function very slow on Large Tables in Calc

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139444

--- Comment #10 from Commit Notification 
 ---
Luboš Luňák committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/5e9c2677e8fcd19b289d947b94ceba52b138728b

improve performance of cell equality comparisons (tdf#139444)

It will be available in 7.3.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

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

2021-11-08 Thread Luboš Luňák (via logerrit)
 sc/source/core/data/table3.cxx |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 5e9c2677e8fcd19b289d947b94ceba52b138728b
Author: Luboš Luňák 
AuthorDate: Mon Nov 8 17:45:14 2021 +0100
Commit: Luboš Luňák 
CommitDate: Mon Nov 8 21:39:08 2021 +0100

improve performance of cell equality comparisons (tdf#139444)

When comparing cell and a string for (in)equality, that means
comparing the whole cell, even when not explicitly asked for.
Whole cell comparison is simpler and faster.

Change-Id: Ic7a79b20f710f2a5d84f62c714d67c088a22d449
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124881
Tested-by: Jenkins
Reviewed-by: Luboš Luňák 

diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index 9c7417278658..02c2619624b5 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -2705,6 +2705,12 @@ public:
 // Simple string matching i.e. no regexp match.
 if (isTextMatchOp(rEntry))
 {
+bool matchWholeCell = bMatchWholeCell;
+// When comparing for (in)equality, we can simply compare the 
whole cell
+// even when not explicitly asked, and that code is faster 
(it's simpler,
+// no SharedString temporary, etc.).
+if( rEntry.eOp == SC_EQUAL || rEntry.eOp == SC_NOT_EQUAL )
+matchWholeCell = true;
 if (rItem.meType != ScQueryEntry::ByString && 
rItem.maString.isEmpty())
 {
 // #i18374# When used from functions (match, countif, 
sumif, vlookup, hlookup, lookup),
@@ -2714,7 +2720,7 @@ public:
 if ( rEntry.eOp == SC_NOT_EQUAL )
 bOk = !bOk;
 }
-else if ( bMatchWholeCell )
+else if ( matchWholeCell )
 {
 if (pValueSource1)
 {
@@ -2752,7 +2758,7 @@ public:
 sal_Int32 nStrPos;
 
 if (!mbCaseSensitive)
-{ // Common case for vlookup etc.
+{
 const svl::SharedString rSource(pValueSource1? 
*pValueSource1 : mrStrPool.intern(*pValueSource2));
 
 const rtl_uString *pQuer = 
rItem.maString.getDataIgnoreCase();


[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-4+backports' - download.lst external/libodfgen solenv/flatpak-manifest.in

2021-11-08 Thread David Tardon (via logerrit)
 download.lst   
  |6 -
 
external/libodfgen/0001-tdf-101077-make-double-string-conversion-locale-agno.patch.1
 |   58 --
 external/libodfgen/ExternalProject_libodfgen.mk
  |4 
 external/libodfgen/Library_odfgen.mk   
  |3 
 external/libodfgen/UnpackedTarball_libodfgen.mk
  |8 -
 external/libodfgen/c++11.patch 
  |   44 ---
 external/libodfgen/libodfgen-bundled-soname.patch.0
  |5 
 solenv/flatpak-manifest.in 
  |6 -
 8 files changed, 13 insertions(+), 121 deletions(-)

New commits:
commit 928d07ce11d58706ca4d3bd9d1311506b12faaf3
Author: David Tardon 
AuthorDate: Sun Jan 17 16:27:55 2021 +0100
Commit: Michael Stahl 
CommitDate: Mon Nov 8 21:35:28 2021 +0100

upload libodfgen 0.1.8

Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109840
Tested-by: Jenkins
Reviewed-by: David Tardon 
(cherry picked from commit f341a9da2eb63ea40ccc5a17d7c9dc557682469f)

Change-Id: Ibc59469b74d54a2b307ea708ea5c4a752532f0b0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124879
Tested-by: Michael Stahl 
Reviewed-by: Michael Stahl 

diff --git a/download.lst b/download.lst
index f85f8089e958..481559e229a3 100644
--- a/download.lst
+++ b/download.lst
@@ -185,9 +185,9 @@ export NEON_SHA256SUM := 
db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d
 export NEON_TARBALL := neon-0.30.2.tar.gz
 export NSS_SHA256SUM := 
ec6032d78663c6ef90b4b83eb552dedf721d2bce208cec3bf527b8f637db7e45
 export NSS_TARBALL := nss-3.55-with-nspr-4.27.tar.gz
-export ODFGEN_SHA256SUM := 
2c7b21892f84a4c67546f84611eccdad6259875c971e98ddb027da66ea0ac9c2
-export ODFGEN_VERSION_MICRO := 6
-export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.bz2
+export ODFGEN_SHA256SUM := 
55200027fd46623b9b38d275e7452d1b0ff8aeddcad6f9ae6dc25f610625
+export ODFGEN_VERSION_MICRO := 8
+export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.xz
 export ODFVALIDATOR_SHA256SUM := 
984f2a479df79e27e7b01a5815ac53ae64e07746b882262d8a64566494515504
 export ODFVALIDATOR_JAR := 
odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar
 export OFFICEOTRON_SHA256SUM := 
f2443f27561af52324eee03a1892d9f569adc8db9e7bca55614898bc2a13a770
diff --git 
a/external/libodfgen/0001-tdf-101077-make-double-string-conversion-locale-agno.patch.1
 
b/external/libodfgen/0001-tdf-101077-make-double-string-conversion-locale-agno.patch.1
deleted file mode 100644
index 1fc4e6b9d261..
--- 
a/external/libodfgen/0001-tdf-101077-make-double-string-conversion-locale-agno.patch.1
+++ /dev/null
@@ -1,58 +0,0 @@
-From 68e0c8e4c834df57bc9a0e8da72151f69ff5e7a6 Mon Sep 17 00:00:00 2001
-From: David Tardon 
-Date: Fri, 12 Aug 2016 12:50:39 +0200
-Subject: [PATCH] tdf#101077 make double->string conversion locale-agnostic
-

- src/OdsGenerator.cxx | 19 +--
- 1 file changed, 17 insertions(+), 2 deletions(-)
-
-diff --git a/src/OdsGenerator.cxx b/src/OdsGenerator.cxx
-index 52e135e..8cb7203 100644
 a/src/OdsGenerator.cxx
-+++ b/src/OdsGenerator.cxx
-@@ -26,6 +26,8 @@
- 
- #include 
- 
-+#include 
-+#include 
- #include 
- #include 
- #include 
-@@ -46,6 +48,19 @@
- #include "OdcGenerator.hxx"
- #include "OdfGenerator.hxx"
- 
-+namespace
-+{
-+
-+librevenge::RVNGString makePreciseStr(const double value)
-+{
-+  std::ostringstream os;
-+  os.imbue(std::locale::classic());
-+  os << std::fixed << std::setprecision(8) << value;
-+  return os.str().c_str();
-+}
-+
-+}
-+
- class OdsGeneratorPrivate : public OdfGenerator
- {
- public:
-@@ -968,10 +983,10 @@ void OdsGenerator::openSheetCell(const 
librevenge::RVNGPropertyList )
-   // we need the maximum precision here, 
so we must avoid getStr() when possible
-   librevenge::RVNGString value;
-   if 
(propList["librevenge:value"]->getUnit()==librevenge::RVNG_GENERIC)
--  value.sprintf("%.8f", 
propList["librevenge:value"]->getDouble());
-+  value = 
makePreciseStr(propList["librevenge:value"]->getDouble());
-   else if 
(propList["librevenge:value"]->getUnit()==librevenge::RVNG_PERCENT)
-   {
--  value.sprintf("%.8f", 
propList["librevenge:value"]->getDouble()*100.);
-+  value = 
makePreciseStr(propList["librevenge:value"]->getDouble()*100.);
-  

[Libreoffice-commits] core.git: download.lst

2021-11-08 Thread Caolán McNamara (via logerrit)
 download.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4a355b6683977053ce9eb65ff29768e2ccd622c2
Author: Caolán McNamara 
AuthorDate: Mon Nov 8 19:46:54 2021 +
Commit: Caolán McNamara 
CommitDate: Mon Nov 8 21:34:12 2021 +0100

fix sha256sum

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

diff --git a/download.lst b/download.lst
index 4a9c2a84b351..fa411c8814d0 100644
--- a/download.lst
+++ b/download.lst
@@ -154,7 +154,7 @@ export LIBEOT_SHA256SUM := 
cf5091fa8e7dcdbe667335eb90a2cfdd0a3fe8f8c7c8d1ece44d9
 export LIBEOT_TARBALL := libeot-0.01.tar.bz2
 export LIBEXTTEXTCAT_SHA256SUM := 
6d77eace20e9ea106c1330e268ede70c9a4a89744ddc25715682754eca3368df
 export LIBEXTTEXTCAT_TARBALL := libexttextcat-3.4.6.tar.xz
-export LIBFFI_SHA256SUM := 
6d77eace20e9ea106c1330e268ede70c9a4a89744ddc25715682754eca3368df
+export LIBFFI_SHA256SUM := 
72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056
 export LIBFFI_TARBALL := libffi-3.3.tar.gz
 export LIBGPGERROR_SHA256SUM := 
b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763
 export LIBGPGERROR_TARBALL := libgpg-error-1.37.tar.bz2


Re: Tests for improvement in rendering

2021-11-08 Thread Regina Henschel

Hi Tomaž,

thank you for adding that part and providing an example.

Tomaž Vajngerl schrieb am 08.11.2021 um 16:33:

Hi Regina,

On Fri, Nov 5, 2021 at 10:01 AM Tomaž Vajngerl > wrote:


Hi Regina,

I guess rendering the shape to primitives and then dumping the
primitives to an xml and asserting the values should do it, however
the Primitive2dXmlDump will probably need to be extended for 3D
primitives. I'll try to make a test that will cover some of the
rendering aspects for fontworks.


I have extended the Primitive2dXmlDump [1] so it also should be able to 
dump 3D primitives (and introduced Primitive3dXmlDump for that). The key 
here is the ScenePrimitive2D, which is the 2D "surface" on which the 3D 
scene is rendered to.


With this you should be able to write tests for fontwork objects and 
also other 3D objects. As an example I've added testFontWorks 
(svx/qa/unit/svdraw.cxx). Tell me if there is something missing.


  [1]: https://gerrit.libreoffice.org/c/core/+/124804


First I need to update my build. Then I will try it. I had never before 
made a test with Primitive2dXmlDump.


Kind regards,
Regina


[Libreoffice-bugs] [Bug 145550] LibreOffice download site is full of pain/animation

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145550

--- Comment #4 from Buovjaga  ---
Yeah, I don't want to have animations on the new site. I am building it with
accessibility & hypersensitivity concerns in mind.

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

Re: How to get started with contribution

2021-11-08 Thread Ilmari Lauhakangas

On 8.11.2021 19.55, s bhakuni wrote:

Respected sir/madam,
I am Sagar Bhakuni, a computer science undergrad, I'm in my second year. 
I am new to open source contributions but I am well aware of Java, 
Python and cpp. I would love to contribute to your Organization but 
could you please tell me how to get started ?


I have invited you to an interview.

Ilmari


[Libreoffice-bugs] [Bug 144923] Version 7.2 Impress, Slide advance not working in full screen

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144923

--- Comment #16 from Buovjaga  ---
(In reply to abalsam from comment #14)
> Created attachment 176141 [details]
> Attached file as requested.
> 
> Here you go.

Thanks, I added it to the denylist, so Vulkan will not be used with the driver:
https://git.libreoffice.org/core/commit/7db51fdbd8c06192941666ad8f444079c334fdef

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - sd/uiconfig

2021-11-08 Thread Szymon Kłos (via logerrit)
 sd/uiconfig/simpress/ui/sidebarslidebackground.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1b890af64de6312ef0576735c51fd803674b1c63
Author: Szymon Kłos 
AuthorDate: Mon Nov 8 15:22:00 2021 +0100
Commit: Andras Timar 
CommitDate: Mon Nov 8 21:00:10 2021 +0100

Fix background pattern/bitmap listbox placement in sidebar

In draw in sidebar page panel there is "background" option.
When pattern or bitmap was selected, listbox with variants was
shown behing first fields - blocking input.
This patch moves it under background setting.

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

diff --git a/sd/uiconfig/simpress/ui/sidebarslidebackground.ui 
b/sd/uiconfig/simpress/ui/sidebarslidebackground.ui
index 2c4e4202a6e6..e484f57d1527 100644
--- a/sd/uiconfig/simpress/ui/sidebarslidebackground.ui
+++ b/sd/uiconfig/simpress/ui/sidebarslidebackground.ui
@@ -146,7 +146,7 @@
   
   
 1
-4
+3
   
 
 


[Libreoffice-bugs] [Bug 130795] FILEOPEN: Spreadsheet takes long to open

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130795

--- Comment #30 from Luboš Luňák  ---
Changes for bug #139444 now avoid use of SharedStringPool::intern() here
altogether, and it's reasonably fast.

I don't know if we still need libcuckoo after this, keeping this open in case
Noel wants to examine that.

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

[Libreoffice-commits] core.git: vcl/unx

2021-11-08 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk4/surfacepaintable.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 136aca03c7bf33e2fd7b72e1af1d16432804635d
Author: Caolán McNamara 
AuthorDate: Mon Nov 8 17:28:02 2021 +
Commit: Caolán McNamara 
CommitDate: Mon Nov 8 20:45:29 2021 +0100

gtk4: implement GtkPaintable::get_flags

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

diff --git a/vcl/unx/gtk4/surfacepaintable.cxx 
b/vcl/unx/gtk4/surfacepaintable.cxx
index 052b2fbacdef..2e8aa98b26a0 100644
--- a/vcl/unx/gtk4/surfacepaintable.cxx
+++ b/vcl/unx/gtk4/surfacepaintable.cxx
@@ -36,6 +36,12 @@ static void surface_paintable_snapshot(GdkPaintable* 
paintable, GdkSnapshot* sna
 cairo_destroy(cr);
 }
 
+static GdkPaintableFlags surface_paintable_get_flags(GdkPaintable* 
/*paintable*/)
+{
+return static_cast(GDK_PAINTABLE_STATIC_SIZE
+  | GDK_PAINTABLE_STATIC_CONTENTS);
+}
+
 static int surface_paintable_get_intrinsic_width(GdkPaintable* paintable)
 {
 SurfacePaintable* self = SURFACE_PAINTABLE(paintable);
@@ -51,6 +57,7 @@ static int 
surface_paintable_get_intrinsic_height(GdkPaintable* paintable)
 static void surface_paintable_init_interface(GdkPaintableInterface* iface)
 {
 iface->snapshot = surface_paintable_snapshot;
+iface->get_flags = surface_paintable_get_flags;
 iface->get_intrinsic_width = surface_paintable_get_intrinsic_width;
 iface->get_intrinsic_height = surface_paintable_get_intrinsic_height;
 }


[Libreoffice-bugs] [Bug 109329] [META] VLookup function bugs and enhancements

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109329
Bug 109329 depends on bug 92456, which changed state.

Bug 92456 Summary: Vertical lookup freeze with large row
https://bugs.documentfoundation.org/show_bug.cgi?id=92456

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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

[Libreoffice-bugs] [Bug 139444] VLOOKUP function very slow on Large Tables in Calc

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139444

Luboš Luňák  changed:

   What|Removed |Added

 CC||lma...@bwlab.it

--- Comment #9 from Luboš Luňák  ---
*** Bug 92456 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 92456] Vertical lookup freeze with large row

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92456

Luboš Luňák  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #18 from Luboš Luňák  ---
This now finishes in ~15s on my Ryzen 2500U.

*** This bug has been marked as a duplicate of bug 139444 ***

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

[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 140779, which changed state.

Bug 140779 Summary: Add help page for CSV filter options
https://bugs.documentfoundation.org/show_bug.cgi?id=140779

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140779] Add help page for CSV filter options

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140779

Olivier Hallot  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: vcl/skia

2021-11-08 Thread Ilmari Lauhakangas (via logerrit)
 vcl/skia/skia_denylist_vulkan.xml |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 7db51fdbd8c06192941666ad8f444079c334fdef
Author: Ilmari Lauhakangas 
AuthorDate: Mon Nov 8 14:48:23 2021 +0200
Commit: Ilmari Lauhakangas 
CommitDate: Mon Nov 8 20:42:13 2021 +0100

Add an Intel Iris driver to Skia/Vulkan denylist

From off-topic comments in tdf#144923

Change-Id: I1f91622c29d2f8e1b0acd88b6e6fe1c2d5429466
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124845
Tested-by: Jenkins
Reviewed-by: Luboš Luňák 

diff --git a/vcl/skia/skia_denylist_vulkan.xml 
b/vcl/skia/skia_denylist_vulkan.xml
index 9ae2fce70c6f..e2cd9e3aa6ab 100644
--- a/vcl/skia/skia_denylist_vulkan.xml
+++ b/vcl/skia/skia_denylist_vulkan.xml
@@ -27,6 +27,9 @@
  

 
 
+ 
+
+
 
 
 


[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 140781, which changed state.

Bug 140781 Summary: Add help page for Text (encoded) filter options
https://bugs.documentfoundation.org/show_bug.cgi?id=140781

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140781] Add help page for Text (encoded) filter options

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140781

Olivier Hallot  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 105537] [META] Assertion failed crashes

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105537

Aron Budea  changed:

   What|Removed |Added

 Depends on||143640


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143640
[Bug 143640] UNO Object Inspector: Crash while clicking on the "Object" tree
(debug)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139444] VLOOKUP function very slow on Large Tables in Calc

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139444

--- Comment #8 from Commit Notification 
 ---
Luboš Luňák committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/ec0edb0969c23b25576f4d1b3b2ee5d3f21990ad

optimize VLOOKUP by returning SharedString if possible (tdf#139444)

It will be available in 7.3.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Libreoffice-bugs] [Bug 139444] VLOOKUP function very slow on Large Tables in Calc

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139444

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

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

2021-11-08 Thread Luboš Luňák (via logerrit)
 sc/inc/cellform.hxx|   19 +
 sc/inc/chgtrack.hxx|   49 +---
 sc/inc/column.hxx  |   26 +-
 sc/inc/document.hxx|   14 -
 sc/inc/formulacell.hxx |9 
 sc/inc/rangenam.hxx|4 
 sc/inc/table.hxx   |   10 
 sc/qa/extras/macros-test.cxx   |3 
 sc/qa/unit/datacache.cxx   |3 
 sc/qa/unit/filters-test.cxx|   23 --
 sc/qa/unit/helper/csv_handler.hxx  |3 
 sc/qa/unit/helper/qahelper.cxx |9 
 sc/qa/unit/parallelism.cxx |2 
 sc/qa/unit/subsequent_export_test.cxx  |8 
 sc/qa/unit/subsequent_export_test2.cxx |   18 -
 sc/qa/unit/subsequent_filters_test.cxx |   43 +--
 sc/qa/unit/subsequent_filters_test2.cxx|   31 +-
 sc/qa/unit/ucalc.cxx   |   91 +++-
 sc/qa/unit/ucalc_copypaste.cxx |   40 +--
 sc/qa/unit/ucalc_formula.cxx   |  132 +--
 sc/qa/unit/ucalc_sharedformula.cxx |3 
 sc/qa/unit/uicalc/uicalc.cxx   |   92 +++-
 sc/source/core/data/colorscale.cxx |5 
 sc/source/core/data/column2.cxx|   19 -
 sc/source/core/data/column3.cxx|   26 --
 sc/source/core/data/column4.cxx|6 
 sc/source/core/data/dociter.cxx|9 
 sc/source/core/data/documen2.cxx   |2 
 sc/source/core/data/documen3.cxx   |6 
 sc/source/core/data/documen4.cxx   |5 
 sc/source/core/data/documen6.cxx   |2 
 sc/source/core/data/document.cxx   |   55 +---
 sc/source/core/data/formulacell.cxx|   31 --
 sc/source/core/data/table2.cxx |   23 --
 sc/source/core/data/table3.cxx |   48 ++--
 sc/source/core/data/table4.cxx |   17 -
 sc/source/core/data/table6.cxx |   10 
 sc/source/core/data/validat.cxx|4 
 sc/source/core/tool/cellform.cxx   |  102 +
 sc/source/core/tool/chgtrack.cxx   |  191 +++--
 sc/source/core/tool/consoli.cxx|3 
 sc/source/core/tool/doubleref.cxx  |4 
 sc/source/core/tool/interpr1.cxx   |4 
 sc/source/core/tool/rangenam.cxx   |   10 
 sc/source/core/tool/rangeutl.cxx   |4 
 sc/source/filter/dif/difexp.cxx|4 
 sc/source/filter/excel/xename.cxx  |4 
 sc/source/filter/excel/xicontent.cxx   |3 
 sc/source/filter/html/htmlexp.cxx  |2 
 sc/source/filter/xcl97/xcl97rec.cxx|2 
 sc/source/filter/xml/XMLChangeTrackingExportHelper.cxx |   12 -
 sc/source/filter/xml/XMLChangeTrackingImportHelper.cxx |3 
 sc/source/filter/xml/XMLConverter.cxx  |   35 +--
 sc/source/filter/xml/XMLConverter.hxx  |   15 -
 sc/source/filter/xml/XMLExportDataPilot.cxx|9 
 sc/source/filter/xml/XMLExportDatabaseRanges.cxx   |3 
 sc/source/filter/xml/xmlcelli.cxx  |4 
 sc/source/filter/xml/xmlexprt.cxx  |   16 -
 sc/source/ui/app/transobj.cxx  |3 
 sc/source/ui/dataprovider/datatransformation.cxx   |  129 +++
 sc/source/ui/dbgui/sfiltdlg.cxx|3 
 sc/source/ui/docshell/docfunc.cxx  |6 
 sc/source/ui/docshell/docsh.cxx|   17 -
 sc/source/ui/docshell/docsh3.cxx   |   11 
 sc/source/ui/docshell/docsh4.cxx   |2 
 sc/source/ui/docshell/docsh8.cxx   |   12 -
 sc/source/ui/docshell/externalrefmgr.cxx   |3 
 sc/source/ui/docshell/impex.cxx|   16 -
 sc/source/ui/formdlg/formula.cxx   |3 
 sc/source/ui/miscdlgs/acredlin.cxx |   29 +-
 sc/source/ui/miscdlgs/conflictsdlg.cxx |3 
 sc/source/ui/miscdlgs/redcom.cxx   |3 
 sc/source/ui/miscdlgs/solvrdlg.cxx |8 
 sc/source/ui/namedlg/namemgrtable.cxx  |3 
 sc/source/ui/pagedlg/areasdlg.cxx  |3 
 sc/source/ui/unoobj/cellsuno.cxx   |   11 
 

[Libreoffice-bugs] [Bug 145542] When saving a .ODT file as a Word .DOCX file, image sizes are not preserved

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145542

--- Comment #5 from Rainer Bielefeld Retired  
---
(In reply to theoriginalpaladin from comment #4)
> Because if you try it with version 6.x

As I told in comment 3 I tested your and my own sample document with 7.2.1.2.

But you wrote in your report that you tested with 6.4.7.2, but you set the
version picker to 7.0.0.3 release.  Which of both tells the truth?

BTW my result with Server Installation of Version7.3.0.0.alpha1+ (x64)  |  
Build ID b8d17d754830ab57099dcdfa72a96bfad404ab1a  |  CPU threads: 12; OS:
Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win  |  Locale: de-DE
(de_DE); UI: de-DE  |  Calc: CL  |  Special devUserProfile: 
Effect also is reproducible for reporter's sample document, but not with my own
ones.

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

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-1+backports' - configure.ac download.lst external/libmwaw solenv/flatpak-manifest.in

2021-11-08 Thread David Tardon (via logerrit)
 configure.ac |2 +-
 download.lst |4 ++--
 external/libmwaw/Library_mwaw.mk |4 
 solenv/flatpak-manifest.in   |6 +++---
 4 files changed, 10 insertions(+), 6 deletions(-)

New commits:
commit 71c36bcb7fb64c4b0d542444f63ef174884a075b
Author: David Tardon 
AuthorDate: Sat Apr 18 13:54:18 2020 +0200
Commit: Michael Stahl 
CommitDate: Mon Nov 8 20:18:48 2021 +0100

upload libmwaw 0.3.16

Change-Id: Idc7ed6bbcd3298138fb92c81ddf7dd6278d201dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92472
Tested-by: Jenkins
Reviewed-by: David Tardon 
(cherry picked from commit 56c638c0ebb21711b02d1ff235a3ffd3f232)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124875
Tested-by: Michael Stahl 
Reviewed-by: Michael Stahl 

diff --git a/configure.ac b/configure.ac
index 31f1868e47d9..a5ff058240e0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7908,7 +7908,7 @@ libo_CHECK_SYSTEM_MODULE([libcdr],[CDR],[libcdr-0.1])
 libo_CHECK_SYSTEM_MODULE([libmspub],[MSPUB],[libmspub-0.1])
 
 libo_CHECK_SYSTEM_MODULE([libmwaw],[MWAW],[libmwaw-0.3 >= 0.3.1])
-libo_PKG_VERSION([MWAW], [libmwaw-0.3], [0.3.15])
+libo_PKG_VERSION([MWAW], [libmwaw-0.3], [0.3.16])
 
 libo_CHECK_SYSTEM_MODULE([libetonyek],[ETONYEK],[libetonyek-0.1])
 libo_PKG_VERSION([ETONYEK], [libetonyek-0.1], [0.1.8])
diff --git a/download.lst b/download.lst
index c0cf41682685..0dcb91c97f77 100644
--- a/download.lst
+++ b/download.lst
@@ -172,8 +172,8 @@ export MDNSRESPONDER_SHA256SUM := 
e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e39
 export MDNSRESPONDER_TARBALL := mDNSResponder-878.200.35.tar.gz
 export MSPUB_SHA256SUM := 
ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba
 export MSPUB_TARBALL := libmspub-0.1.4.tar.xz
-export MWAW_SHA256SUM := 
0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1
-export MWAW_VERSION_MICRO := 15
+export MWAW_SHA256SUM := 
0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868
+export MWAW_VERSION_MICRO := 16
 export MWAW_TARBALL := libmwaw-0.3.$(MWAW_VERSION_MICRO).tar.xz
 export MYSQL_CONNECTOR_CPP_SHA256SUM := 
a25f14dad39e93a2f9cdf09166ee53981f7212dce829e4208e07a522963a8585
 export MYSQL_CONNECTOR_CPP_TARBALL := 
7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz
diff --git a/external/libmwaw/Library_mwaw.mk b/external/libmwaw/Library_mwaw.mk
index 4c9a8b43c56f..2e7d1e2246fa 100644
--- a/external/libmwaw/Library_mwaw.mk
+++ b/external/libmwaw/Library_mwaw.mk
@@ -119,6 +119,7 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,mwaw,\
UnpackedTarball/libmwaw/src/lib/MWAWSpreadsheetDecoder \
UnpackedTarball/libmwaw/src/lib/MWAWSpreadsheetEncoder \
UnpackedTarball/libmwaw/src/lib/MWAWSpreadsheetListener \
+   UnpackedTarball/libmwaw/src/lib/MWAWStream \
UnpackedTarball/libmwaw/src/lib/MWAWStringStream \
UnpackedTarball/libmwaw/src/lib/MWAWSubDocument \
UnpackedTarball/libmwaw/src/lib/MWAWTable \
@@ -172,10 +173,13 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,mwaw,\
UnpackedTarball/libmwaw/src/lib/PowerPoint7Text \
UnpackedTarball/libmwaw/src/lib/RagTime5Chart \
UnpackedTarball/libmwaw/src/lib/RagTime5ClusterManager \
+   UnpackedTarball/libmwaw/src/lib/RagTime5Document \
+   UnpackedTarball/libmwaw/src/lib/RagTime5Formula \
UnpackedTarball/libmwaw/src/lib/RagTime5Graph \
UnpackedTarball/libmwaw/src/lib/RagTime5Layout \
UnpackedTarball/libmwaw/src/lib/RagTime5Parser \
UnpackedTarball/libmwaw/src/lib/RagTime5Pipeline \
+   UnpackedTarball/libmwaw/src/lib/RagTime5SSParser \
UnpackedTarball/libmwaw/src/lib/RagTime5Spreadsheet \
UnpackedTarball/libmwaw/src/lib/RagTime5StructManager \
UnpackedTarball/libmwaw/src/lib/RagTime5StyleManager \
diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index e0bc79e80a38..fca238659291 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -297,10 +297,10 @@
 "dest-filename": "external/tarballs/libmspub-0.1.4.tar.xz"
 },
 {
-"url": 
"https://dev-www.libreoffice.org/src/libmwaw-0.3.15.tar.xz;,
-"sha256": 
"0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1",
+"url": 
"https://dev-www.libreoffice.org/src/libmwaw-0.3.16.tar.xz;,
+"sha256": 
"0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868",
 "type": "file",
-"dest-filename": "external/tarballs/libmwaw-0.3.15.tar.xz"
+"dest-filename": "external/tarballs/libmwaw-0.3.16.tar.xz"
 },
 {
 "url": 
"https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2;,


[Libreoffice-bugs] [Bug 145542] When saving a .ODT file as a Word .DOCX file, image sizes are not preserved

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145542

--- Comment #4 from theoriginalpala...@gmail.com ---
Because if you try it with version 6.x, there is no issue.  It works fine.

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

[Libreoffice-bugs] [Bug 133835] Calc autofilter freeze after deselecting an item (in a column containing many unique string values) and pressing OK

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133835

Luboš Luňák  changed:

   What|Removed |Added

 CC||noelgran...@gmail.com

--- Comment #6 from Luboš Luňák  ---
Most of the time spent repeatedly inserting items into SfxPoolItemArray_Impl's
sorted_vector containing a million of items.

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

[Libreoffice-bugs] [Bug 145581] Writer - Change in font effect (UPPERCASE) in Heading Style does not get reflected in the Index-TOC

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145581

Paco  changed:

   What|Removed |Added

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

--- Comment #3 from Paco  ---
(In reply to phv from comment #2)
> "Table of Contents" has its own style that can be set via the "Styles" tab
> of the "Table of Content, Index, or Bibliography" menu.
> 
> I find no logic in the suggestion that the ToC should keep by default the
> character or paragraph style of the entries (font, font effects, etc.).
> These are different and independent elements on a document.
> 
> Moreover, you can write the titles in upper case and the letter case will be
> applied directly in the table of contents.

Hi phv, and thank you for your promptly reply. :-)

Yes, I do know that the TOC has its own style but, as a user, I do not see the
"logic" behind this particular case (no pun intended) :-)

As you say, if one type the entry "by hand", the TOC keeps/respect the exact
case of the entry (be it lower, upper, camel case, small caps). But (and this
is a big BUT) if the user wants to automate this process, using the heading
style, the TOC ceases to respect the desired case. 

A thing/change that should be done "just in one place, and applied everywhere"
(the very purpose of a style existence), ends in a change in the heading style,
and/or the TOC style.

I am aware that this is a special corner case, and I wasn't advocating to keep
"the whole paragraph style for the entry", only de font effect to ease this use
case, so I am going to close this bug.

Thank you (all) very much for the great work in Libreoffice!

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

[Libreoffice-bugs] [Bug 79787] Normal cell borders are showing dashed/dotted when export to xlsx/xls and reopen in MSO

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79787

Rafael Lima  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-1+backports' - configure.ac download.lst external/libmwaw solenv/flatpak-manifest.in writerperfect/qa

2021-11-08 Thread David Tardon (via logerrit)
 configure.ac|2 
 download.lst|4 -
 external/libmwaw/0001-ssize_t-is-not-std-type.patch.1   |   27 
--
 external/libmwaw/Library_mwaw.mk|1 
 external/libmwaw/UnpackedTarball_libmwaw.mk |4 -
 external/libmwaw/libmwaw-bundled-soname.patch.0 |6 +-
 solenv/flatpak-manifest.in  |6 +-
 writerperfect/qa/unit/WpftDrawFilterTest.cxx|2 
 writerperfect/qa/unit/data/draw/libmwaw/pass/CorelPainter_10|binary
 writerperfect/qa/unit/data/draw/libmwaw/pass/CorelPainter_3_win.rif |binary
 10 files changed, 12 insertions(+), 40 deletions(-)

New commits:
commit 4a9013dacf084b6f6cc147956de7bd620840e4d8
Author: David Tardon 
AuthorDate: Thu Apr 18 20:04:51 2019 +0200
Commit: Michael Stahl 
CommitDate: Mon Nov 8 19:13:13 2021 +0100

upload libmwaw 0.3.15

Change-Id: I496204ead6c495c4fee2cee18a5b9d0fd22eb8c0
Reviewed-on: https://gerrit.libreoffice.org/70951
Tested-by: Jenkins
Reviewed-by: David Tardon 
(cherry picked from commit d077b19a3f617f5ef3d65fc20a136a9107c47199)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124874
Tested-by: Michael Stahl 
Reviewed-by: Michael Stahl 

diff --git a/configure.ac b/configure.ac
index da7e24c30b47..31f1868e47d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7908,7 +7908,7 @@ libo_CHECK_SYSTEM_MODULE([libcdr],[CDR],[libcdr-0.1])
 libo_CHECK_SYSTEM_MODULE([libmspub],[MSPUB],[libmspub-0.1])
 
 libo_CHECK_SYSTEM_MODULE([libmwaw],[MWAW],[libmwaw-0.3 >= 0.3.1])
-libo_PKG_VERSION([MWAW], [libmwaw-0.3], [0.3.14])
+libo_PKG_VERSION([MWAW], [libmwaw-0.3], [0.3.15])
 
 libo_CHECK_SYSTEM_MODULE([libetonyek],[ETONYEK],[libetonyek-0.1])
 libo_PKG_VERSION([ETONYEK], [libetonyek-0.1], [0.1.8])
diff --git a/download.lst b/download.lst
index 64c45aaadbd0..c0cf41682685 100644
--- a/download.lst
+++ b/download.lst
@@ -172,8 +172,8 @@ export MDNSRESPONDER_SHA256SUM := 
e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e39
 export MDNSRESPONDER_TARBALL := mDNSResponder-878.200.35.tar.gz
 export MSPUB_SHA256SUM := 
ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba
 export MSPUB_TARBALL := libmspub-0.1.4.tar.xz
-export MWAW_SHA256SUM := 
aca8bf1ce55ed83adbea82c70d4c8bebe8139f334b3481bf5a6e407f91f33ce9
-export MWAW_VERSION_MICRO := 14
+export MWAW_SHA256SUM := 
0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1
+export MWAW_VERSION_MICRO := 15
 export MWAW_TARBALL := libmwaw-0.3.$(MWAW_VERSION_MICRO).tar.xz
 export MYSQL_CONNECTOR_CPP_SHA256SUM := 
a25f14dad39e93a2f9cdf09166ee53981f7212dce829e4208e07a522963a8585
 export MYSQL_CONNECTOR_CPP_TARBALL := 
7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz
diff --git a/external/libmwaw/0001-ssize_t-is-not-std-type.patch.1 
b/external/libmwaw/0001-ssize_t-is-not-std-type.patch.1
deleted file mode 100644
index e33f2a19d560..
--- a/external/libmwaw/0001-ssize_t-is-not-std-type.patch.1
+++ /dev/null
@@ -1,27 +0,0 @@
-From 4458a5e93736a324251a356362f0e80e7c42d5be Mon Sep 17 00:00:00 2001
-From: David Tardon 
-Date: Wed, 25 Apr 2018 12:53:37 +0200
-Subject: [PATCH] ssize_t is not std type
-

- src/lib/WriterPlsParser.cxx | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/lib/WriterPlsParser.cxx b/src/lib/WriterPlsParser.cxx
-index 00dc969b..33b1fa49 100644
 a/src/lib/WriterPlsParser.cxx
-+++ b/src/lib/WriterPlsParser.cxx
-@@ -316,8 +316,8 @@ bool WindowsInfo::getColumnLimitsFor(int line, 
std::vector )
- if (m_columns[i].m_firstLine == line+2) {
-   numCols=m_columns[i].m_numCol;
-   firstColumn = i;
--  if (numCols > ssize_t(numColumns - firstColumn))
--numCols = int(ssize_t(numColumns - firstColumn));
-+  if (numCols > int(unsigned(numColumns - firstColumn)))
-+numCols = int(unsigned(numColumns - firstColumn));
-   if (numCols <= 1 || m_columns[i].m_col != 1) return false;
-   break;
- }
--- 
-2.14.3
-
diff --git a/external/libmwaw/Library_mwaw.mk b/external/libmwaw/Library_mwaw.mk
index 0b28836cdb80..4c9a8b43c56f 100644
--- a/external/libmwaw/Library_mwaw.mk
+++ b/external/libmwaw/Library_mwaw.mk
@@ -58,6 +58,7 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,mwaw,\
UnpackedTarball/libmwaw/src/lib/ClarisWksStyleManager \
UnpackedTarball/libmwaw/src/lib/ClarisWksTable \
UnpackedTarball/libmwaw/src/lib/ClarisWksText \
+   UnpackedTarball/libmwaw/src/lib/CorelPainterParser \
UnpackedTarball/libmwaw/src/lib/CricketDrawParser \
UnpackedTarball/libmwaw/src/lib/DocMkrParser \
UnpackedTarball/libmwaw/src/lib/DocMkrText \
diff --git a/external/libmwaw/UnpackedTarball_libmwaw.mk 
b/external/libmwaw/UnpackedTarball_libmwaw.mk

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-4+backports' - configure.ac download.lst external/libmwaw solenv/flatpak-manifest.in

2021-11-08 Thread David Tardon (via logerrit)
 configure.ac |2 +-
 download.lst |4 ++--
 external/libmwaw/Library_mwaw.mk |4 
 solenv/flatpak-manifest.in   |6 +++---
 4 files changed, 10 insertions(+), 6 deletions(-)

New commits:
commit fde5f09c1eb4b69d7756c2ebfa65a4dbb9610996
Author: David Tardon 
AuthorDate: Sat Apr 18 13:54:18 2020 +0200
Commit: Michael Stahl 
CommitDate: Mon Nov 8 19:12:01 2021 +0100

upload libmwaw 0.3.16

Change-Id: Idc7ed6bbcd3298138fb92c81ddf7dd6278d201dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92472
Tested-by: Jenkins
Reviewed-by: David Tardon 
(cherry picked from commit 56c638c0ebb21711b02d1ff235a3ffd3f232)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124873
Tested-by: Michael Stahl 
Reviewed-by: Michael Stahl 

diff --git a/configure.ac b/configure.ac
index a8056fdeaa6f..91f129ef76a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8390,7 +8390,7 @@ libo_CHECK_SYSTEM_MODULE([libcdr],[CDR],[libcdr-0.1])
 libo_CHECK_SYSTEM_MODULE([libmspub],[MSPUB],[libmspub-0.1])
 
 libo_CHECK_SYSTEM_MODULE([libmwaw],[MWAW],[libmwaw-0.3 >= 0.3.1])
-libo_PKG_VERSION([MWAW], [libmwaw-0.3], [0.3.15])
+libo_PKG_VERSION([MWAW], [libmwaw-0.3], [0.3.16])
 
 libo_CHECK_SYSTEM_MODULE([libetonyek],[ETONYEK],[libetonyek-0.1])
 libo_PKG_VERSION([ETONYEK], [libetonyek-0.1], [0.1.8])
diff --git a/download.lst b/download.lst
index 25c5083ec2f1..f85f8089e958 100644
--- a/download.lst
+++ b/download.lst
@@ -176,8 +176,8 @@ export MDNSRESPONDER_SHA256SUM := 
e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e39
 export MDNSRESPONDER_TARBALL := mDNSResponder-878.200.35.tar.gz
 export MSPUB_SHA256SUM := 
ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba
 export MSPUB_TARBALL := libmspub-0.1.4.tar.xz
-export MWAW_SHA256SUM := 
0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1
-export MWAW_VERSION_MICRO := 15
+export MWAW_SHA256SUM := 
0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868
+export MWAW_VERSION_MICRO := 16
 export MWAW_TARBALL := libmwaw-0.3.$(MWAW_VERSION_MICRO).tar.xz
 export MYTHES_SHA256SUM := 
1e81f395d8c851c3e4e75b568e20fa2fa549354e75ab397f9de4b0e0790a305f
 export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz
diff --git a/external/libmwaw/Library_mwaw.mk b/external/libmwaw/Library_mwaw.mk
index fc874fcb5e45..880a70861e24 100644
--- a/external/libmwaw/Library_mwaw.mk
+++ b/external/libmwaw/Library_mwaw.mk
@@ -120,6 +120,7 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,mwaw,\
UnpackedTarball/libmwaw/src/lib/MWAWSpreadsheetDecoder \
UnpackedTarball/libmwaw/src/lib/MWAWSpreadsheetEncoder \
UnpackedTarball/libmwaw/src/lib/MWAWSpreadsheetListener \
+   UnpackedTarball/libmwaw/src/lib/MWAWStream \
UnpackedTarball/libmwaw/src/lib/MWAWStringStream \
UnpackedTarball/libmwaw/src/lib/MWAWSubDocument \
UnpackedTarball/libmwaw/src/lib/MWAWTable \
@@ -173,10 +174,13 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,mwaw,\
UnpackedTarball/libmwaw/src/lib/PowerPoint7Text \
UnpackedTarball/libmwaw/src/lib/RagTime5Chart \
UnpackedTarball/libmwaw/src/lib/RagTime5ClusterManager \
+   UnpackedTarball/libmwaw/src/lib/RagTime5Document \
+   UnpackedTarball/libmwaw/src/lib/RagTime5Formula \
UnpackedTarball/libmwaw/src/lib/RagTime5Graph \
UnpackedTarball/libmwaw/src/lib/RagTime5Layout \
UnpackedTarball/libmwaw/src/lib/RagTime5Parser \
UnpackedTarball/libmwaw/src/lib/RagTime5Pipeline \
+   UnpackedTarball/libmwaw/src/lib/RagTime5SSParser \
UnpackedTarball/libmwaw/src/lib/RagTime5Spreadsheet \
UnpackedTarball/libmwaw/src/lib/RagTime5StructManager \
UnpackedTarball/libmwaw/src/lib/RagTime5StyleManager \
diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index c5f7d8f4ae16..547d680a7a42 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -267,10 +267,10 @@
 "dest-filename": "external/tarballs/libmspub-0.1.4.tar.xz"
 },
 {
-"url": 
"https://dev-www.libreoffice.org/src/libmwaw-0.3.15.tar.xz;,
-"sha256": 
"0440bb09f05e3419423d8dfa36ee847056ebfd837f9cbc091fdb5b057daab0b1",
+"url": 
"https://dev-www.libreoffice.org/src/libmwaw-0.3.16.tar.xz;,
+"sha256": 
"0c639edba5297bde5575193bf5b5f2f469956beaff5c0206d91ce9df6bde1868",
 "type": "file",
-"dest-filename": "external/tarballs/libmwaw-0.3.15.tar.xz"
+"dest-filename": "external/tarballs/libmwaw-0.3.16.tar.xz"
 },
 {
 "url": 
"https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2;,


How to get started with contribution

2021-11-08 Thread s bhakuni
Respected sir/madam,
I am Sagar Bhakuni, a computer science undergrad, I'm in my second year. I
am new to open source contributions but I am well aware of Java, Python and
cpp. I would love to contribute to your Organization but could you please
tell me how to get started ?

Hoping to hear from you soon
Regards
Sagar


[Libreoffice-bugs] [Bug 145574] Crash in: SwViewShell::GetViewOptions()

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145574

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Julien Nabet  ---
It works on 7.2 branch and
https://bugs.documentfoundation.org/show_bug.cgi?id=145574#c5 indicated the pb
has been reproduced on 7.1.7

According to https://wiki.documentfoundation.org/ReleasePlan/7.1, there won't
be any new official LO version after 7.1.7 so no need to try to find what fixed
the pb on 7.2.

Let's put this one to WFM then.

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

[Libreoffice-bugs] [Bug 145589] Crash in: SalInstanceTreeView::get_drag_source()

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145589

Julien Nabet  changed:

   What|Removed |Added

Version|unspecified |7.1.3.2 release
 CC||serval2...@yahoo.fr
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Julien Nabet  ---
Could you give a try to 7.1.7 or brand new 7.2.2 ?

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

[Libreoffice-bugs] [Bug 143396] nVidia GPU Skia Vulkan -- Quadro K2000 -- resizing floating Sidebar and dragging deck wider while crossing onto main LO window frame.

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143396

--- Comment #8 from V Stuart Foote  ---
STR cause crash & immediate document recovery also with

Version: 7.2.3.1 (x64) / LibreOffice Community
Build ID: 1d5dee817bde88d78dbcc0d00f88492568e131d5
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

and on the 2021-11-08 TB77 nightly of trunk

Version: 7.3.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 73334560b2dd2d60ac58d2cc2b1a5295490b03e1
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

RenderMethod: vulkan
Vendor: 0x10de
Device: 0xffe
API: 1.2.175
Driver: 471.272.0
DeviceType: discrete
DeviceName: Quadro K2000
Denylisted: no

All cases following the crash crossing the left edge of the app frame with
Vulkan, the LO build will open having fallen back to Skia/raster mode.

So issue is something in the way the app frame is referenced for this nVidia
Vulkan driver instance for this GPU.  Don't think we'd want to blacklist Vulkan
generically for this nVidia driver.

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

[Libreoffice-bugs] [Bug 145593] [META] Exit LibreOffice

2021-11-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145593

Michael Warner  changed:

   What|Removed |Added

 Depends on||122871


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122871
[Bug 122871] soffice process hanging on exit (mutex related)
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >