[Libreoffice-bugs] [Bug 143948] Clone formatting tool doesn't work

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

Evgenija Chumachenko  changed:

   What|Removed |Added

 CC||evgenija...@gmail.com

--- Comment #1 from Evgenija Chumachenko  ---
No repo in
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 3c0c1b79b689775f09b3bff75bb01118b380f41f
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: en-US (ru_RU); UI: en-US
Calc: threaded

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

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

2021-08-18 Thread Samuel Mehrbrodt (via logerrit)
 xmloff/source/text/XMLTextFrameContext.cxx |   11 +++
 1 file changed, 11 insertions(+)

New commits:
commit da006fbe2d4c5891933390d72f6e6026b28d39fc
Author: Samuel Mehrbrodt 
AuthorDate: Wed Aug 18 16:48:43 2021 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Thu Aug 19 07:27:36 2021 +0200

tdf#143736 Fix loading hyperlink from textbox

Change-Id: I56f5aec153d9544a6c345e0cbb5857cf5d0074b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120673
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/xmloff/source/text/XMLTextFrameContext.cxx 
b/xmloff/source/text/XMLTextFrameContext.cxx
index a4f8cb636ca1..fbe537dd424b 100644
--- a/xmloff/source/text/XMLTextFrameContext.cxx
+++ b/xmloff/source/text/XMLTextFrameContext.cxx
@@ -1375,6 +1375,17 @@ void XMLTextFrameContext::endFastElement(sal_Int32 )
 (pMultiContext.is()) ? pMultiContext.get() : m_xImplContext.get();
 XMLTextFrameContext_Impl *pImpl = 
const_cast(dynamic_cast< const 
XMLTextFrameContext_Impl*>( pContext ));
 assert(!pMultiContext.is() || pImpl);
+
+// When we are dealing with a textbox, pImpl will be null;
+// we need to set the hyperlink to the shape instead
+Reference xShape = GetShape();
+if (xShape.is() && m_pHyperlink)
+{
+Reference xProps(xShape, UNO_QUERY);
+if (xProps.is())
+xProps->setPropertyValue("Hyperlink", 
Any(m_pHyperlink->GetHRef()));
+}
+
 if( !pImpl )
 return;
 


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

2021-08-18 Thread Mike Kaganski (via logerrit)
 sc/qa/unit/data/ods/many_charts.ods|binary
 sc/qa/unit/subsequent_export-test2.cxx |   90 -
 sc/source/filter/excel/xeescher.cxx|   16 +++--
 sc/source/filter/inc/xeescher.hxx  |3 -
 4 files changed, 99 insertions(+), 10 deletions(-)

New commits:
commit 420e834007ca654db9803030726edb32c3ba5710
Author: Mike Kaganski 
AuthorDate: Wed Aug 18 23:13:05 2021 +0300
Commit: Mike Kaganski 
CommitDate: Thu Aug 19 06:41:04 2021 +0200

tdf#142264: make sure to load potentially unloaded objects when saving

Commit 574eec9036c5f185b3572ba1e0ca9d111eb361dc happened to reveal
a pre-existing problem that XLSX export only saved those OLE objects
that were kept loaded in the OLE object cache, subject to thevalue of
org.openoffice.Office.Common/Cache/DrawingEngine/OLE_Objects.

Before that change, the imported charts were marked modified on load,
and that prevented them from unloading in OLEObjCache::UnloadCheckHdl,
because SdrOle2Obj::CanUnloadRunningObj returned false.

After the mentioned change, the charts started to load without the
wrong "modified" state, which allowed them to be properly managed by
the cache, and the export filter implementation error surfaced. It's
likely that commit 692878e3bb83c0fc104c5cca946c25ccf2d84ab2 tried to
workaround the same underlying problem for charts that for some reason
/ at some point in time didn't get marked modified on load, and that
commit converted an error shown in Excel into silently missing charts.

This change makes sure that whenever a reference to chart document
is requested from XclExpChartObj, it is actually loaded and ready
for reading data.

Possibly something could be done on the level of old reference that
becomes non-functional (although valid) as the result of unloading,
so that it would automatically reload on following use. That would
make operating on the references robust. I didn't find an obvious
way to do that.

It is interesting to investigate, it the heizenbug related to images
disappearing from documents, as users keep reporting without robust
reproducers, might possibly be caused by a similar problem.

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

diff --git a/sc/qa/unit/data/ods/many_charts.ods 
b/sc/qa/unit/data/ods/many_charts.ods
new file mode 100644
index ..31acdf66e1ed
Binary files /dev/null and b/sc/qa/unit/data/ods/many_charts.ods differ
diff --git a/sc/qa/unit/subsequent_export-test2.cxx 
b/sc/qa/unit/subsequent_export-test2.cxx
index 05f102cd1f38..7b8d294b8ca3 100644
--- a/sc/qa/unit/subsequent_export-test2.cxx
+++ b/sc/qa/unit/subsequent_export-test2.cxx
@@ -73,7 +73,12 @@
 #include 
 
 #include 
-#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -196,6 +201,7 @@ public:
 void testTdf142929_filterLessThanXLSX();
 void testInvalidNamedRange();
 void testTdf143220XLSX();
+void testTdf142264ManyChartsToXLSX();
 
 CPPUNIT_TEST_SUITE(ScExportTest2);
 
@@ -299,6 +305,7 @@ public:
 CPPUNIT_TEST(testTdf142929_filterLessThanXLSX);
 CPPUNIT_TEST(testInvalidNamedRange);
 CPPUNIT_TEST(testTdf143220XLSX);
+CPPUNIT_TEST(testTdf142264ManyChartsToXLSX);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -2476,6 +2483,87 @@ void ScExportTest2::testTdf143220XLSX()
 xDocSh->DoClose();
 }
 
+void ScExportTest2::testTdf142264ManyChartsToXLSX()
+{
+// The cache size for the test should be small enough, to make sure that 
some charts get
+// unloaded in the process, and then loaded on demand properly (default is 
currently 20)
+CPPUNIT_ASSERT_LESS(sal_Int32(40),
+
officecfg::Office::Common::Cache::DrawingEngine::OLE_Objects::get());
+
+ScDocShellRef xDocSh = loadDoc(u"many_charts.", FORMAT_ODS);
+CPPUNIT_ASSERT(xDocSh.is());
+xDocSh = saveAndReload(xDocSh.get(), FORMAT_XLSX);
+CPPUNIT_ASSERT(xDocSh.is());
+
+auto xModel = xDocSh->GetModel();
+css::uno::Reference xSupplier(xModel,
+
css::uno::UNO_QUERY_THROW);
+auto xDrawPages = xSupplier->getDrawPages();
+
+// No charts (or other objects) on the first sheet, and resp. first draw 
page
+css::uno::Reference 
xPage(xDrawPages->getByIndex(0),
+   
css::uno::UNO_QUERY_THROW);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), xPage->getCount());
+
+// 20 charts on the second sheet, and resp. second draw page
+xPage.set(xDrawPages->getByIndex(1), css::uno::UNO_QUERY_THROW);
+// Without the fix in place, this test would have failed with
+// - Expected: 20
+// - Actual : 0
+// Because only the last 20 charts 

[Libreoffice-bugs] [Bug 96852] Calc: Add option in "Move/Copy Sheet..." to another workbook for copying page format

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

Timur  changed:

   What|Removed |Added

   Severity|normal  |enhancement
Summary|FORMATTING: "Move/Copy  |Calc:  Add option in
   |Sheet..." not copying page  |"Move/Copy Sheet..." to
   |format  |another workbook for
   ||copying page format

--- Comment #9 from Timur  ---
This can only be an enhancement to have an option, not the change that would
force it. So I retitle, in accordance with comment 1.

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

[Libreoffice-bugs] [Bug 37511] copy-paste from Draw to Writer results appearing unexpected styles

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

--- Comment #18 from Rainer Bielefeld Retired  
---


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

[Libreoffice-bugs] [Bug 53961] OLE attachment of .doc file doesn't appear in Writer

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

--- Comment #12 from vga...@gmail.com ---
The problem still present.
Version: 7.2.0.3 (x64) / LibreOffice Community
Build ID: 2a7ea282da28d665a7dc086360567b4aea27bf08
CPU threads: 12; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: hu-HU (hu_HU); UI: hu-HU
Calc: CL

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

[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

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

Bug 142264 Summary: charts lost by calc export to xlsx
https://bugs.documentfoundation.org/show_bug.cgi?id=142264

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 143947] Function DATE yields wrong year if input is only "year"

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

--- Comment #2 from Henrik Palomäki  ---
It seems a value in DATE function defaults to 0 if no number is given. It seems
MS Excel acts in the same way.

Should the default value be 1 instead of 0? In that case the expected result
for the all given examples should be 2006-01-01.

Currently, the value 0 in DATE function gives the previous value of 1 that is
12 for the case of month and in the case of day it is the last day of previous
month.

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

[Libreoffice-bugs] [Bug 143940] FILESAVE: add a new line in a large spreadsheet and save causes crash

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

--- Comment #10 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 143599] Help Buttons for Save Remote Screens are confusing for non technical users

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

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 143725] Unable to register/login to ask.libreoffice

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

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 141810] Impress table doesn't adapt in size after redo (under circumstances)

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

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 143927] : Auto filter - Quick filter does not work

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

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 143927] : Auto filter - Quick filter does not work

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 143940] FILESAVE: add a new line in a large spreadsheet and save causes crash

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

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 142633] UI: Disabled Textfield flickers

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

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 143730] Spell Checker giving wrong spelling

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

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 141909] Calc: Switching to Read only leaves the lock files in place

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

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 142634] Animation-Object gets unselected upon change.

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

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 135698] Existing user data gets ignored at install

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

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 71414] take NUM_PREC_RADIX into account

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

--- Comment #8 from QA Administrators  ---
Dear Lionel Elie Mamane,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 135698] Existing user data gets ignored at install

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 91330] MSO2013 Template - Fitness Tracker - Incorrect data points type in chart (filled instead of no-fill)

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

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

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://kiwiirc.com/nextclient/irc.freenode.net/#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 140530] Upon updating to 7.0.4.2 (64) I loaded up one of my previous documents in Draw and half the pictures had been changed to other pictures in the documents, and the format

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

--- Comment #2 from QA Administrators  ---
Dear hadeslorster,

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 60217] error message limited to a dot when mysql native connector is used

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

--- Comment #16 from QA Administrators  ---
Dear t.bazin,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 71452] Print area for bottom margin can not be resized as other margins

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

--- Comment #6 from QA Administrators  ---
Dear gorbot,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 96852] FORMATTING: "Move/Copy Sheet..." not copying page format

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

--- Comment #8 from QA Administrators  ---
Dear baril_mathieu,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 140536] Crash in: mergedlo.dll

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

--- Comment #2 from QA Administrators  ---
Dear Matthias Ronge,

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 53961] OLE attachment of .doc file doesn't appear in Writer

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

--- Comment #11 from QA Administrators  ---
Dear vgango,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 143947] Function DATE yields wrong year if input is only "year"

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

Henrik Palomäki  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Henrik Palomäki  ---
Reproduced on version 7.3+.

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

[Libreoffice-bugs] [Bug 96124] Chart's Text Flow:break doesn't work with Date or Time formatted Cell

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

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

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://kiwiirc.com/nextclient/irc.freenode.net/#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 143599] Help Buttons for Save Remote Screens are confusing for non technical users

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

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 37511] copy-paste from Draw to Writer results appearing unexpected styles

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

--- Comment #17 from QA Administrators  ---
Dear sasha.libreoffice,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 126332] "sujet." does not find synonyms because of period

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

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

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://kiwiirc.com/nextclient/irc.freenode.net/#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 115733] "Open with" dialog menu items have no icons next the name "Libreoffice"

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

--- Comment #7 from QA Administrators  ---
Dear Al M.,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 114498] EDITING: Slow down when editing text in document with content.xml text styles non-existent in styles.xml

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

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

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://kiwiirc.com/nextclient/irc.freenode.net/#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 127007] Editable field "Data range:" associated with the context menu of any Chart wall treats its list separator badly: Confusion.

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

--- Comment #5 from QA Administrators  ---
Dear Wolfgang Jäger,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 126941] Date format with frontslashes (15/08/2019) will be changed to format with points (15.08.2019) when input data in a date-field of a tablecontrol of a form.

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

--- Comment #2 from QA Administrators  ---
Dear Dmitry Mikhailov,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 115292] FILEOPEN open PDF - picture shifted

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

--- Comment #6 from QA Administrators  ---
Dear solar020,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 111746] Rotation applied on title shape is not removed by resetting the layout

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

--- Comment #10 from QA Administrators  ---
Dear Tamás Zolnai,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 111403] Text and various lines are shown inconsistently in different scales

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

--- Comment #6 from QA Administrators  ---
Dear Ruslan Kabatsayev,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 125924] Exporting xls/rhbz499466-2.xls to PDF triggers undefined conversion from NaN to int

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

--- Comment #2 from QA Administrators  ---
Dear Stephan Bergmann,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 118476] Korean Hanja to Hangul Conversion can't show multiple Korean Hangul Characters

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

--- Comment #11 from QA Administrators  ---
Dear DaeHyun Sung,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 111796] Tableview doesn't save when scrolled down more than 46rows without saving directly

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

--- Comment #12 from QA Administrators  ---
Dear Robert Großkopf,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 111508] Text to number conversion on concatenation with direct references ends with number as text.

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

--- Comment #6 from QA Administrators  ---
Dear m.a.riosv,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 110443] View settings not preserved saving a calc file loaded in hidden mode.

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

--- Comment #6 from QA Administrators  ---
Dear Luis,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 108756] Alignment and spacing in format options for search and replace does not recognise non incremental numbers

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

--- Comment #11 from QA Administrators  ---
Dear Antonio CASADO,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 107879] Draw should not prepend a decimal , xx value with zero without leaving the input field

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

--- Comment #9 from QA Administrators  ---
Dear Roland Illig,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 107614] Chinese characters are wrongly aligned if 'vpal' feature enabled

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

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

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://kiwiirc.com/nextclient/irc.freenode.net/#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 143599] Help Buttons for Save Remote Screens are confusing for non technical users

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

--- Comment #2 from Colin  ---
(In reply to Eleonora Govallo from comment #1)
> Hello!
> As i understand, if you want to save remote you need to open remote file,
> could you clarify did you open the file that you want to save remote, from
> the remote server?
> First advice in the instruction is how to open remote file that you will
> save remote.

Remote file save to Google drive isn't working yet - at present, it's just in
the testing phase and release to later versions. Therefore, no I didn't open
anything as it's not currently possible.

This report is merely to define that the help definitions seem to create a
circular path and in general, are not easy for a new user - that would be the
type of user who most needs clear concise help functions.

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

[Libreoffice-bugs] [Bug 143599] Help Buttons for Save Remote Screens are confusing for non technical users

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

Colin  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 143930] Amend Help for Remove personal information

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

Rafael Lima  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   Assignee|libreoffice-b...@lists.free |rafael.palma.l...@gmail.com
   |desktop.org |

--- Comment #1 from Rafael Lima  ---
Hi Timur, thanks for reporting.

Relevant file is: text/shared/optionen/securityoptionsdialog.xhp

I'm taking this.

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

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

2021-08-18 Thread Eike Rathke (via logerrit)
 sc/source/ui/inc/gridwin.hxx   |8 ++--
 sc/source/ui/view/gridwin4.cxx |   73 -
 sc/source/ui/view/tabview5.cxx |5 ++
 3 files changed, 52 insertions(+), 34 deletions(-)

New commits:
commit f58f35b2c8ca1efbacec642a8f3de5b0c499bc6b
Author: Eike Rathke 
AuthorDate: Wed Aug 18 23:42:45 2021 +0200
Commit: Eike Rathke 
CommitDate: Thu Aug 19 01:19:32 2021 +0200

Do not count pages for initial page breaks, tdf#124983 follow-up

Use a loaded page size or leave it. Otherwise the previous
implementation could had lead to tremendous waiting time blocking
everything on large data without. See source code comment.

Also trigger updating page breaks only for one grid window, not
multiple repeating everything all over.

Remove bSetup parameter that does nothing but either doing something or
nothing, check in caller instead.

Move member variables to where they belong.

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

diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index 10d9fc68557a..50109106aa5d 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -200,6 +200,8 @@ class SAL_DLLPUBLIC_RTTI ScGridWindow : public vcl::Window, 
public DropTargetHel
 
 RfCorneraRFSelectedCorned;
 
+Timer   maShowPageBreaksTimer;
+
 boolbEEMouse:1;   // Edit Engine has mouse
 boolbDPMouse:1;   // DataPilot D (new 
Pivot table)
 boolbRFMouse:1;   // RangeFinder drag
@@ -210,6 +212,7 @@ class SAL_DLLPUBLIC_RTTI ScGridWindow : public vcl::Window, 
public DropTargetHel
 boolbNeedsRepaint:1;
 boolbAutoMarkVisible:1;
 boolbListValButton:1;
+boolbInitialPageBreaks:1;
 
 DECL_LINK( PopupModeEndHdl, weld::Popover&, void );
 DECL_LINK( PopupSpellingHdl, SpellCallbackInfo&, void );
@@ -309,10 +312,9 @@ class SAL_DLLPUBLIC_RTTI ScGridWindow : public 
vcl::Window, public DropTargetHel
 voidInvalidateLOKViewCursor(const tools::Rectangle& 
rCursorRect,
 const Fraction aScaleX, const 
Fraction aScaleY);
 
-Timer   maShowPageBreaksTimer;
-boolbInitialPageBreaks;
-voidSetupInitialPageBreaks(const ScDocument& rDoc, SCTAB nTab, 
bool bSetup);
+voidSetupInitialPageBreaks(const ScDocument& rDoc, SCTAB nTab);
 DECL_LINK(InitiatePageBreaksTimer, Timer*, void);
+
 protected:
 virtual voidPrePaint(vcl::RenderContext& rRenderContext) override;
 virtual voidPaint(vcl::RenderContext& rRenderContext, const 
tools::Rectangle& rRect) override;
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index eecf6a4d814b..f810efbb8c19 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -1271,29 +1271,27 @@ void ScGridWindow::DrawContent(OutputDevice , 
const ScTableInfo& rTableI
 if (mpNoteMarker)
 mpNoteMarker->Draw(); // Above the cursor, in drawing map mode
 
-SetupInitialPageBreaks(rDoc, nTab, bPage&& bInitialPageBreaks);
+if (bPage && bInitialPageBreaks)
+SetupInitialPageBreaks(rDoc, nTab);
 }
 
 
-void ScGridWindow::SetupInitialPageBreaks(const ScDocument& rDoc, SCTAB nTab, 
bool bSetup)
+void ScGridWindow::SetupInitialPageBreaks(const ScDocument& rDoc, SCTAB nTab)
 {
 // tdf#124983, if option LibreOfficeDev Calc/View/Visual Aids/Page breaks
 // is enabled, breaks should be visible. If the document is opened the 
first
 // time, the breaks are not calculated yet, so for this initialization
 // a timer will be triggered here.
-if (bSetup)
-{
-std::set aColBreaks;
-std::set aRowBreaks;
-rDoc.GetAllColBreaks(aColBreaks, nTab, true, false);
-rDoc.GetAllRowBreaks(aRowBreaks, nTab, true, false);
-if (aColBreaks.size() == 0 || aRowBreaks.size() == 0)
-{
-maShowPageBreaksTimer.SetPriority(TaskPriority::DEFAULT_IDLE);
-maShowPageBreaksTimer.Start();
-bInitialPageBreaks = false;
-}
+std::set aColBreaks;
+std::set aRowBreaks;
+rDoc.GetAllColBreaks(aColBreaks, nTab, true, false);
+rDoc.GetAllRowBreaks(aRowBreaks, nTab, true, false);
+if (aColBreaks.size() == 0 || aRowBreaks.size() == 0)
+{
+maShowPageBreaksTimer.SetPriority(TaskPriority::DEFAULT_IDLE);
+maShowPageBreaksTimer.Start();
 }
+bInitialPageBreaks = false;
 }
 
 namespace
@@ -2353,27 +2351,42 @@ IMPL_LINK(ScGridWindow, InitiatePageBreaksTimer, 
Timer*, pTimer, void)
 {
 if (pTimer == )
 {
-

[Libreoffice-bugs] [Bug 143949] New: Crash in: cppu::OInterfaceContainerHelper::disposeAndClear(com::sun::star::lang::EventObject const &)

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

Bug ID: 143949
   Summary: Crash in:
cppu::OInterfaceContainerHelper::disposeAndClear(com::
sun::star::lang::EventObject const &)
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sushee...@gmail.com

This bug was filed from the crash reporting server and is
br-9cf96505-08af-4291-bbb4-ae4cd2af1a40.
=

Software crashed while trying to open a print preview

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

[Libreoffice-bugs] [Bug 143948] New: Clone formatting tool doesn't work

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

Bug ID: 143948
   Summary: Clone formatting tool doesn't work
   Product: LibreOffice
   Version: 7.1.1.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@bobswriting.com

Description:
I downloaded Libre Office for Mac yesterday. Clone formatting tool doesn't work
at all. I have checked all instructions and nothing works.

Steps to Reproduce:
1. click on paintbrush icon or select format clone from format menu
2.click in paragraph to be changed
3.or use command, or command+shift keys

Actual Results:
no change in target location

Expected Results:
change format in target location to that of source location


Reproducible: Always


User Profile Reset: No



Additional Info:
I think I have said it all

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

[Libreoffice-bugs] [Bug 141810] Impress table doesn't adapt in size after redo (under circumstances)

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

Eleonora Govallo  changed:

   What|Removed |Added

 CC||elya.gova...@gmail.com

--- Comment #2 from Eleonora Govallo  ---
No repro in Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: adf65471e889676a600a9c6d0454c75cbd549ad3
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-08-13_04:44:18
Calc: threaded

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

[Libreoffice-bugs] [Bug 141909] Calc: Switching to Read only leaves the lock files in place

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

Eleonora Govallo  changed:

   What|Removed |Added

 CC||elya.gova...@gmail.com
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Eleonora Govallo  ---
Repro in Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: adf65471e889676a600a9c6d0454c75cbd549ad3
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-08-13_04:44:18
Calc: threaded

Calc offered me to save changes before closing, but i could editr file.

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

[Libreoffice-bugs] [Bug 142264] charts lost by calc export to xlsx

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

This is not actually a true regression, just a pre-existing bug that was only
masked by a side effect of charts being incorrectly marked modified on open.

This is all about export filter not loading properly the OLE objects that may
get unloaded by the memory management in LO. The export reused the obsoleted
references to unloaded objects, which couldn't be exported correctly; and I
even suspect that existing "IsValidObject" testing chart objects validity in
sc/source/filter/xcl97/xcl97rec.cxx might be a hack to "workaround" this actual
filter bug.

I am thankful to paulystefan for this bug and the nice reproducers, that
eventually allowed me to notice the fixed number of object kept in the result.

I am suspecting now that there might be a similar problem elsewhere in our
code, that could be responsible for many "I lost images in a document"
complaints that were impossible to investigate, because there were never a
reliable reproducer. Now I suppose that adding a substantial number of
different images, while reducing GraphicMemoryLimit (or TotalCacheSize) might
allow to find a good reproducing scenario.

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

[Libreoffice-bugs] [Bug 142634] Animation-Object gets unselected upon change.

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

Eleonora Govallo  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Eleonora Govallo  ---


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

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

[Libreoffice-bugs] [Bug 142633] UI: Disabled Textfield flickers

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

--- Comment #3 from Eleonora Govallo  ---
*** Bug 142634 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 142633] UI: Disabled Textfield flickers

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

--- Comment #2 from Eleonora Govallo  ---
No repro in Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: adf65471e889676a600a9c6d0454c75cbd549ad3
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-08-13_04:44:18
Calc: threaded

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

[Libreoffice-bugs] [Bug 143947] New: Function DATE yields wrong year if input is only "year"

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

Bug ID: 143947
   Summary: Function DATE yields wrong year if input is only
"year"
   Product: LibreOffice
   Version: 7.1.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: flavius.chir...@gmail.com

When using the DATE function which requires inputs (Year;Month;Day), omitting
one or two inputs (i.e. Month/Day or both) yields incorrect output.

Is this by design? 
Explanation would help, otherwise it's a bug, no?

Examples:
=DATE(2006;;) -> 2005-11-30 incorrect / bug?!
=DATE(2006;1;) -> 2005-12-31 incorrect / bug?!
=DATE(2006;;1) -> 2005-12-01 incorrect / bug?!
=DATE(2006;1;1) -> 2006-01-01 correct

Reproducable: new document

As usual, please link to duplicates or solutions etc., online search did
however not easily find something.

Thanks, Greets

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

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

2021-08-18 Thread Stephan Bergmann (via logerrit)
 sal/qa/rtl/strings/test_ostring_concat.cxx  |   18 ++
 sal/qa/rtl/strings/test_oustring_concat.cxx |9 +++--
 2 files changed, 21 insertions(+), 6 deletions(-)

New commits:
commit 8c717ea3854130067919658e9ec7433e0b5e2ba0
Author: Stephan Bergmann 
AuthorDate: Wed Aug 18 12:35:21 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Aug 18 23:01:22 2021 +0200

GCC bug 96878 is fixed in upcoming GCC 12

However, restricting the workaround to GCC <= 11 then revealed that some old
versions of Clang apparently had a similar issue, causing "error: use of 
class
template 'OStringLiteral' requires template arguments; argument deduction 
not
allowed here", and thus also need the workaround.  I saw the non-workaround 
code
fail with a build of Clang 6.0.0 and succeed with a build of Clang 7.0.0.

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

diff --git a/sal/qa/rtl/strings/test_ostring_concat.cxx 
b/sal/qa/rtl/strings/test_ostring_concat.cxx
index f797a15660b5..af1f31dcf162 100644
--- a/sal/qa/rtl/strings/test_ostring_concat.cxx
+++ b/sal/qa/rtl/strings/test_ostring_concat.cxx
@@ -68,15 +68,25 @@ void test::ostring::StringConcat::checkConcat()
 CPPUNIT_ASSERT_EQUAL( OString( "foobar" ), OString( OStringBuffer( "foo" ) 
+ "bar" ));
 CPPUNIT_ASSERT_EQUAL(( typeid( OStringConcat< OStringBuffer, const char[ 4 
] > )), typeid( OStringBuffer( "foo" ) + "bar" ));
 CPPUNIT_ASSERT_EQUAL( OString( "foobar" ), OString( OStringLiteral( "foo" 
) + "bar" ));
+#if (defined __GNUC__ && __GNUC__ <= 11 && !defined __clang__) || (defined 
__clang__ && __clang_major__ <= 6)
 CPPUNIT_ASSERT_EQUAL(( typeid( OStringConcat< OStringLiteral<4>, const 
char[ 4 ] > )), typeid( OStringLiteral<4>( "foo" ) + "bar" ));
-//TODO: the explicit OStringLiteral<4> template argument in the 
unevaluated typeid context
+// the explicit OStringLiteral<4> template argument in the unevaluated 
typeid context
 // is needed by some GCC versions, see 

-// "Failed class template argument deduction in unevaluated, 
parenthesized context"
+// "Failed class template argument deduction in unevaluated, 
parenthesized context", and by
+// some old Clang versions
+#else
+CPPUNIT_ASSERT_EQUAL(( typeid( OStringConcat< OStringLiteral<4>, const 
char[ 4 ] > )), typeid( OStringLiteral( "foo" ) + "bar" ));
+#endif
 CPPUNIT_ASSERT_EQUAL( OString( "foobar" ), OString( OStringLiteral( "foo" 
) + static_cast("bar") ));
+#if (defined __GNUC__ && __GNUC__ <= 11 && !defined __clang__) || (defined 
__clang__ && __clang_major__ <= 6)
 CPPUNIT_ASSERT_EQUAL(( typeid( OStringConcat< OStringLiteral<4>, const 
char* > )), typeid( OStringLiteral<4>( "foo" ) + static_cast("bar") ));
-//TODO: the explicit OStringLiteral<4> template argument in the 
unevaluated typeid context
+// the explicit OStringLiteral<4> template argument in the unevaluated 
typeid context
 // is needed by some GCC versions, see 

-// "Failed class template argument deduction in unevaluated, 
parenthesized context"
+// "Failed class template argument deduction in unevaluated, 
parenthesized context", and by
+// some old Clang versions
+#else
+CPPUNIT_ASSERT_EQUAL(( typeid( OStringConcat< OStringLiteral<4>, const 
char* > )), typeid( OStringLiteral( "foo" ) + static_cast("bar") 
));
+#endif
 const char d1[] = "xyz";
 char d2[] = "abc";
 const char* d3 = d1;
diff --git a/sal/qa/rtl/strings/test_oustring_concat.cxx 
b/sal/qa/rtl/strings/test_oustring_concat.cxx
index 3a282a95c014..8e67817e1367 100644
--- a/sal/qa/rtl/strings/test_oustring_concat.cxx
+++ b/sal/qa/rtl/strings/test_oustring_concat.cxx
@@ -69,10 +69,15 @@ void test::oustring::StringConcat::checkConcat()
 CPPUNIT_ASSERT_EQUAL( OUString( "foobar" ), OUString( OUStringBuffer( 
"foo" ) + "bar" ));
 CPPUNIT_ASSERT_EQUAL(( typeid( OUStringConcat< OUStringBuffer, const char[ 
4 ] > )), typeid( OUStringBuffer( "foo" ) + "bar" ));
 CPPUNIT_ASSERT_EQUAL( OUString( "foobar" ), OUString( OUStringLiteral( 
u"foo" ) + "bar" ));
+#if (defined __GNUC__ && __GNUC__ <= 11 && !defined __clang__) || (defined 
__clang__ && __clang_major__ <= 6)
 CPPUNIT_ASSERT_EQUAL(( typeid( OUStringConcat< OUStringLiteral<4>, const 
char[ 4 ] > )), typeid( OUStringLiteral<4>( u"foo" ) + "bar" ));
-//TODO: the explicit OUStringLiteral<4> template argument in the 
unevaluated typeid context
+// the explicit OUStringLiteral<4> template argument in the 
unevaluated typeid context
 // is needed by some GCC versions, see 

-// "Failed class template argument deduction 

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

2021-08-18 Thread Stephan Bergmann (via logerrit)
 desktop/source/pkgchk/unopkg/unopkg_shared.h |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 5d224d9141a07814f1e93c147de3ba03d643de34
Author: Stephan Bergmann 
AuthorDate: Wed Aug 18 16:15:46 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Aug 18 23:00:37 2021 +0200

Avoid LIBO_USE_SOURCE_LOCATION feature on user-facing LockFileException

(see 1d0bc2139759f087d50432f8a2116060676f34e1 "use
std::experimental::source_location in uno::Exception"), causing the unopkg
executable to print something like

> ERROR: unopkg cannot be started. The lock file indicates it is already 
running. If this does not apply, delete the lock file at:
> ~/.config/libreoffice/4/.lock 
desktop/source/pkgchk/unopkg/unopkg_shared.h:44

mentioning an unhelpful source location

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

diff --git a/desktop/source/pkgchk/unopkg/unopkg_shared.h 
b/desktop/source/pkgchk/unopkg/unopkg_shared.h
index f86b3248c0d5..df03f594331e 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_shared.h
+++ b/desktop/source/pkgchk/unopkg/unopkg_shared.h
@@ -38,10 +38,12 @@ struct OptionInfo
 bool m_has_argument;
 };
 
-struct LockFileException : public css::uno::Exception
+struct LockFileException
 {
 explicit LockFileException(OUString const & sMessage) :
-css::uno::Exception(sMessage, css::uno::Reference< 
css::uno::XInterface > ()) {}
+Message(sMessage) {}
+
+OUString Message;
 };
 
 


[Libreoffice-bugs] [Bug 143946] New: Add klingon as a supported language

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

Bug ID: 143946
   Summary: Add klingon as a supported language
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ferg...@kaivos.org

Description:
Klingon is one of the most popular constructed languages. I'm currently working
on a spell checker for it and would like to make a LibreOffice extension. For
this, Klingon needs to be added as a supported language.

The ISO 639-3 language code of Klingon is "tlh". It is written from left to
right with latin alphabet or its own alphabet.

Steps to Reproduce:
Change the language of the document.

Actual Results:
Klingon is not available in the language drop-down menu when choosing the
document's language.

Expected Results:
Klingon is available as a language.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.3.2
Build ID: 10(Build:2)
CPU threads: 4; OS: Linux 5.12; UI render: default; VCL: gtk3
Locale: fi-FI (fi_FI.UTF-8); UI: fi-FI
Calc: threaded

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

[Libreoffice-bugs] [Bug 143268] Slow response in document with many tables

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

--- Comment #23 from David  ---
Created attachment 174399
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174399=edit
perf data

Perf data has been attached.  Is this the information needed?  The data has
been recorded while pressing a key twice while within a table.

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

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

2021-08-18 Thread Caolán McNamara (via logerrit)
 include/svx/svdetc.hxx   |2 +-
 svx/source/svdraw/svdetc.cxx |8 
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 7bba0f12e4bb726ef29a9b7c2f862128abcaf0d7
Author: Caolán McNamara 
AuthorDate: Wed Aug 18 16:32:00 2021 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 18 22:54:25 2021 +0200

UnloadObj always dereferences its SdrOle2Obj* arg

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

diff --git a/include/svx/svdetc.hxx b/include/svx/svdetc.hxx
index f594550a5aa2..8bd6b744ec46 100644
--- a/include/svx/svdetc.hxx
+++ b/include/svx/svdetc.hxx
@@ -164,7 +164,7 @@ class OLEObjCache
 size_t nSize;
 std::unique_ptr  pTimer;
 
-static bool UnloadObj( SdrOle2Obj* pObj );
+static bool UnloadObj(SdrOle2Obj& rObj);
 DECL_LINK( UnloadCheckHdl, Timer*, void );
 
 public:
diff --git a/svx/source/svdraw/svdetc.cxx b/svx/source/svdraw/svdetc.cxx
index 04219e7a8477..e97593ca0319 100644
--- a/svx/source/svdraw/svdetc.cxx
+++ b/svx/source/svdraw/svdetc.cxx
@@ -151,7 +151,7 @@ IMPL_LINK_NOARG(OLEObjCache, UnloadCheckHdl, Timer*, void)
 }
 }
 
-if ( bUnload && UnloadObj(pUnloadObj) )
+if (bUnload && UnloadObj(*pUnloadObj))
 {
 // object was successfully unloaded
 RemoveObj(pUnloadObj);
@@ -216,7 +216,7 @@ const SdrOle2Obj* OLEObjCache::operator[](size_t nPos) const
 return maObjs[nPos];
 }
 
-bool OLEObjCache::UnloadObj(SdrOle2Obj* pObj)
+bool OLEObjCache::UnloadObj(SdrOle2Obj& rObj)
 {
 bool bUnloaded = false;
 
@@ -227,12 +227,12 @@ bool OLEObjCache::UnloadObj(SdrOle2Obj* pObj)
 // A much better (and working) criteria would be the VOC contact count.
 // The question is what will happen when i make it work now suddenly? I
 // will try it for 2.4.
-const sdr::contact::ViewContact& rViewContact = pObj->GetViewContact();
+const sdr::contact::ViewContact& rViewContact = rObj.GetViewContact();
 const bool bVisible(rViewContact.HasViewObjectContacts());
 
 if(!bVisible)
 {
-bUnloaded = pObj->Unload();
+bUnloaded = rObj.Unload();
 }
 
 return bUnloaded;


[Libreoffice-bugs] [Bug 143945] New: A spreadsheet wants to open up to its maximum size

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

Bug ID: 143945
   Summary: A spreadsheet wants to open up to its maximum size
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahovi@gmail.com

Description:
A spreadsheet I have used before now wants to open up all the columns and rows!

Actual Results:
When I open the spreadsheet, I expect it to display about 10 columns and 20
rows, but the rows and columns just keep growing!
Incidentally, the dropdown menus are not working. I see the list but when I
move my mouse to make a selection, the list disappears!

Expected Results:
a display of a few columns and rows


Reproducible: Always


User Profile Reset: No



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

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

[Libreoffice-bugs] [Bug 143944] New: A spreadsheet wants to open up to its maximum size

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

Bug ID: 143944
   Summary: A spreadsheet wants to open up to its maximum size
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahovi@gmail.com

Description:
A spreadsheet I have used before now wants to open up all the columns and rows!

Actual Results:
When I open the spreadsheet, I expect it to display about 10 columns and 20
rows, but the rows and columns just keep growing!
Incidentally, the dropdown menus are not working. I see the list but when I
move my mouse to make a selection, the list disappears!

Expected Results:
a display of a few columns and rows


Reproducible: Always


User Profile Reset: No



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

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

[Libreoffice-bugs] [Bug 143567] Area Style/Filling from Image toolbar doesn't match with sidebar info for Area

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

Katarina Behrens  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |bu...@bubli.org
   |desktop.org |
 Status|NEW |ASSIGNED

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

[Libreoffice-commits] core.git: bin/symstore.sh

2021-08-18 Thread Thorsten Behrens (via logerrit)
 bin/symstore.sh |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 133352645a8c10fc0d13795480a3c2f93c36a61f
Author: Thorsten Behrens 
AuthorDate: Wed Aug 18 22:48:46 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Aug 18 22:51:15 2021 +0200

Teach symstore more duplicated DLLs

Amending commit b4dfba947768834ffecc09056992019878711c8b with
adding the copied DLLs here, too (symstore complains otherwise)

Change-Id: If5cc155cf2fe11b0f97cd152993609fd2c835316
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120686
Tested-by: Thorsten Behrens 
Reviewed-by: Thorsten Behrens 

diff --git a/bin/symstore.sh b/bin/symstore.sh
index c4e9870c9aa5..2734f1b22a58 100755
--- a/bin/symstore.sh
+++ b/bin/symstore.sh
@@ -16,6 +16,8 @@ EXCLUDE_LIST="python.exe"
 #
 # Same format as for EXCLUDE_LIST above
 MOREPDBS_OKLIST="libcurl.dll
+libcrypto-1_1.dll
+libssl-1_1.dll
 freebl3.dll
 libeay32.dll
 nspr4.dll


[Libreoffice-bugs] [Bug 143927] : Auto filter - Quick filter does not work

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

--- Comment #2 from wolf seiboth  ---
Linux Distro: KUBUNTU 18.04
LO About Dialog:

Version: 7.0.5.2
Build ID: 64390860c6cd0aca4beafafcfd84613dd9dfb63a
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kf5
Locale: de-DE (en_US.UTF-8); UI: en-US
Calc: threaded

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

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

2021-08-18 Thread Caolán McNamara (via logerrit)
 unotools/source/config/securityoptions.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 2da60bb46a93a8d68111e1f18b31e8e6ddc6cc2c
Author: Caolán McNamara 
AuthorDate: Wed Aug 18 10:26:08 2021 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 18 22:32:18 2021 +0200

ofz#36713 Indirect-leak

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

diff --git a/unotools/source/config/securityoptions.cxx 
b/unotools/source/config/securityoptions.cxx
index cec3642fa37a..cd41f92a0eac 100644
--- a/unotools/source/config/securityoptions.cxx
+++ b/unotools/source/config/securityoptions.cxx
@@ -263,6 +263,8 @@ void SetTrustedAuthors( const std::vector< Certificate >& 
rAuthors )
 
 bool IsOptionSet( EOption eOption )
 {
+if (utl::ConfigManager::IsFuzzing())
+return false;
 boolbSet = false;
 switch(eOption)
 {


GSoC Week #10 Progress Report .

2021-08-18 Thread Tushar Kumar Rai
Hello everyone.

This week I fixed the issue of Delete Row Transformation and added Swap
Rows Transformations in Internal Data Providers which swaps the entries of
input rows.
Patch link https://gerrit.libreoffice.org/c/core/+/120556 .

Next task -
Add Help button in Data Providers for information about Data Providers.
Writing my final blog.

Thank You.
Regards
Tushar Kumar Rai


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

2021-08-18 Thread Mike Kaganski (via logerrit)
 svx/source/svdraw/svdoole2.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 95f1e32a3300364a250b097b357345cfafe76d2a
Author: Mike Kaganski 
AuthorDate: Wed Aug 18 19:28:40 2021 +0200
Commit: Mike Kaganski 
CommitDate: Wed Aug 18 21:51:32 2021 +0200

GetObjRef already returns the needed reference

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

diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 750f458ad97a..77e65b30330f 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -1797,8 +1797,7 @@ uno::Reference < embed::XEmbeddedObject > const & 
SdrOle2Obj::GetObjRef_NoInit()
 
 uno::Reference< frame::XModel > SdrOle2Obj::getXModel() const
 {
-GetObjRef();
-if ( svt::EmbeddedObjectRef::TryRunningState(mpImpl->mxObjRef.GetObject()) 
)
+if (svt::EmbeddedObjectRef::TryRunningState(GetObjRef()))
 return uno::Reference< frame::XModel >( 
mpImpl->mxObjRef->getComponent(), uno::UNO_QUERY );
 else
 return uno::Reference< frame::XModel >();


[Libreoffice-bugs] [Bug 143599] Help Buttons for Save Remote Screens are confusing for non technical users

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

Eleonora Govallo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Eleonora Govallo  ---
Hello!
As i understand, if you want to save remote you need to open remote file, could
you clarify did you open the file that you want to save remote, from the remote
server?
First advice in the instruction is how to open remote file that you will save
remote.

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

[Libreoffice-bugs] [Bug 143940] FILESAVE: add a new line in a large spreadsheet and save causes crash

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

--- Comment #9 from Heather Ellsworth  ---
I did not test with Windows and unfortunately I don't have a Windows
environment for testing, but the issue is present in Ubuntu 20.04 and newer.

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

New Defects reported by Coverity Scan for LibreOffice

2021-08-18 Thread scan-admin
Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

5 new defect(s) introduced to LibreOffice found with Coverity Scan.


New defect(s) Reported-by: Coverity Scan
Showing 5 of 5 defect(s)


** CID 1490358:  Null pointer dereferences  (FORWARD_NULL)



*** CID 1490358:  Null pointer dereferences  (FORWARD_NULL)
/vcl/source/outdev/bitmap.cxx: 177 in OutputDevice::DrawBitmap(const Point &, 
const Size &, const Point &, const Size &, const Bitmap &, MetaActionType)()
171 aBmp.Scale(nScaleX, nScaleY);
172 aPosAry.mnSrcWidth = aPosAry.mnDestWidth;
173 aPosAry.mnSrcHeight = aPosAry.mnDestHeight;
174 }
175 }
176 
>>> CID 1490358:  Null pointer dereferences  (FORWARD_NULL)
>>> Passing null pointer "this->mpGraphics" to "DrawBitmap", which 
>>> dereferences it.
177 mpGraphics->DrawBitmap( aPosAry, 
*aBmp.ImplGetSalBitmap(), *this );
178 }
179 }
180 }
181 
182 if( mpAlphaVDev )

** CID 1490357:  Null pointer dereferences  (FORWARD_NULL)



*** CID 1490357:  Null pointer dereferences  (FORWARD_NULL)
/starmath/source/mathml/import.cxx: 708 in 
::SmMLImportContext::inheritStyle()()
702 aAttribute.setMlForm();
703 m_pElement->setAttribute(aAttribute);
704 }
705 }
706 
707 // Inherit mathvariant
>>> CID 1490357:  Null pointer dereferences  (FORWARD_NULL)
>>> Passing null pointer "this->m_pStyle" to "isAttributeSet", which 
>>> dereferences it.
708 if (m_pStyle->isAttributeSet(SmMlAttributeValueType::MlMathvariant))
709 
m_pElement->setAttribute(m_pStyle->getAttribute(SmMlAttributeValueType::MlMathvariant));
710 }
711 
712 void SmMLImportContext::inheritStyleEnd()
713 {

** CID 1490356:  Resource leaks  (RESOURCE_LEAK)
/sc/source/filter/excel/xiescher.cxx: 1860 in 
XclImpNoteObj::DoPreProcessSdrObj(XclImpDffConverter &, SdrObject &) const()



*** CID 1490356:  Resource leaks  (RESOURCE_LEAK)
/sc/source/filter/excel/xiescher.cxx: 1860 in 
XclImpNoteObj::DoPreProcessSdrObj(XclImpDffConverter &, SdrObject &) const()
1854 // create formatted text
1855 XclImpTextObj::DoPreProcessSdrObj( rDffConv, rSdrObj );
1856 OutlinerParaObject* pOutlinerObj = rSdrObj.GetOutlinerParaObject();
1857 if( maScPos.IsValid() && pOutlinerObj )
1858 {
1859 // create cell note with all data from drawing object
>>> CID 1490356:  Resource leaks  (RESOURCE_LEAK)
>>> Failing to save or free storage allocated by "new 
>>> OutlinerParaObject(pOutlinerObj)" leaks it.
1860 ScNoteUtil::CreateNoteFromObjectData(
1861 GetDoc(), maScPos,
1862 rSdrObj.GetMergedItemSet().Clone(), // new 
object on heap expected
1863 new OutlinerParaObject( *pOutlinerObj ),// new 
object on heap expected
1864 rSdrObj.GetLogicRect(),
1865 ::get_flag( mnNoteFlags, EXC_NOTE_VISIBLE ) );

** CID 1490355:  Control flow issues  (DEADCODE)
/starmath/source/mathml/import.cxx: 114 in SmMLImportWrapper::Import(SfxMedium 
&)()



*** CID 1490355:  Control flow issues  (DEADCODE)
/starmath/source/mathml/import.cxx: 114 in SmMLImportWrapper::Import(SfxMedium 
&)()
108 {
109 SAL_WARN("starmath", "Failed to fetch sm model while file 
input");
110 return ERRCODE_SFX_DOLOADFAILED;
111 }
112 
113 // Get doc shell
>>> CID 1490355:  Control flow issues  (DEADCODE)
>>> Execution cannot reach the expression "NULL" inside this statement: 
>>> "this->m_pDocShell = (pModel...".
114 m_pDocShell = pModel ? 
static_cast(pModel->GetObjectShell()) : nullptr;
115 if (m_pDocShell == nullptr)
116 {
117 SAL_WARN("starmath", "Failed to fetch smdoc shell while file 
input");
118 return ERRCODE_SFX_DOLOADFAILED;
119 }

** CID 1490354:  Control flow issues  (DEADCODE)
/starmath/source/mathml/import.cxx: 317 in 
SmMLImportWrapper::Import(std::basic_string_view>)()



*** CID 1490354:  Control flow issues  (DEADCODE)
/starmath/source/mathml/import.cxx: 317 in 
SmMLImportWrapper::Import(std::basic_string_view>)()
311 {
312 SAL_WARN("starmath", 

[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-7.1.6.1'

2021-08-18 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.1.6.1' created by Christian Lohmaier 
 at 2021-08-18 19:28 +

Tag libreoffice-7.1.6.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmEdX3QACgkQ9DSh76/u
rqOUOxAAnFffZGmzMslAGx2cquPW7xg6T1jvRXLSSoMmQoLXdQHq5iTptixikbBW
T/6GZKRUFEB6g7UrHdZr4uWqbuqU1YieNqFN6cUpteVgUR3UR9ngVZzN9mh1lSMo
9TEcdBai2xGAmRUx8Y65p+dM62gHPTwFZ3pBSdO8XUCnYaTxpr5vedMutEIxeprk
atVYw9Km/R8AMw5dd8JpAiBWmrM/SQcY+NltWaYoFlT+z7uDebSVrrUwy82Df3hl
X9K28zUYuTiv9l/j0hZ+vtgo6CiOEHT4aI6yyr/sRzvNkFM1HW7e4NQHSTfYrGfQ
aJi/YJGHP8HONQiKM4vHtdxgTp//iM6KuinAvQn4rXXuvN91JvaxP8WJ8Hz/UBlX
/qZAmXJRdo5BpfXXfSsb4supnNnjHIlpVZ14aj18NrB4DYmW+UDO/vdyAzK2Reql
vYDWYS0NmYqZ8gmNQryRYER4F5McFoX7QxRP7IrwBKoOSq+3WuW5i3zEExlasROa
iiQNkD1FxwpCgABF9eP0C+r7iIg7zCFQzEMUM0cPBLXX4dftAj8qlZQmQELDeK7w
qFztND4XyV6gypGWlGc8YuIVVo47QZDOZ+7ErjWzmixN4yjJXotKMrbmU0iYZ7pF
LuowgaTVtLn1vMjQ/t4wdAFhpcNnmXJcXsO9Bi+FWhn7c90y9KM=
=IXXe
-END PGP SIGNATURE-

Changes since co-2021-branch-point-363:
---
 0 files changed
---


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-7.1.6.1'

2021-08-18 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.1.6.1' created by Christian Lohmaier 
 at 2021-08-18 19:28 +

Tag libreoffice-7.1.6.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmEdX3MACgkQ9DSh76/u
rqOUdg/9Gx9fhn2msRERBt47PnJ+ioWe1C9L4X993xaV5C9EEpR8AvFCAote9QDF
8e+uqYn6r+XbjEkul1t+9+lRfjzkvAN8O3JBAv/4qAguiv2PzTFQ82LkE/kLBuZZ
sfBF3DMuh8ZGxMws46UFwJYyHj+e3CiaWNywM7CIeUJAO9uCmZ+HEZkFJrHgBPzs
D1PEbX/+tVhTKBGYpbFnvTdzAvua9DT4qvltN5rOfhn0HjbtSmoJyS/MYi0P2lg6
i8bZG79a9LgGXivnYrz0Dwei8gH34rAKtnZ8PbZYJ4XOapV3FgFCKsWTRsUnjIEr
QkF4V9V7wPWF3ax4e8wy8JTb2TBmCBXLDBsg0g7b4We57DXznAY8f5+6x2NlA2DP
NprtBZqiYXgPbS1b74p759PlDd72fkcR0hglMILA7l5orOIZANJtwRboysh7DVtl
BBFO0pqhBYUyCgVbtBb5D6/f02oy5hm4dX3LQnljR/yyYXp9Gcn6w3fwK6Y0ryb9
sjrI1DTXYErustsRZR0ycIiunH2yLs2cnSZgDHCBdewHPlJyQJjuJrHR2NNiAhSM
3XUE7lgk9CyZoaJ+IMV8mFgeO0slxapj09LFiEdM9EQux+bYGps5bsHJYLmeuIim
ZnisH6wFXPsNFZ5kD+0dTDsYsmdezZl2eW7aqzZJSs4eQ4cykt4=
=g/eD
-END PGP SIGNATURE-

Changes since co-21.06.3-1-4:
---
 0 files changed
---


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1-6' - configure.ac

2021-08-18 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 88359d7f81a248f41131a0ce4abccb8adfd025f9
Author: Christian Lohmaier 
AuthorDate: Wed Aug 18 21:32:16 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Aug 18 21:32:16 2021 +0200

bump product version to 7.1.6.1.0+

Change-Id: Ia5586af263265950ffcc42d9cac5804d980d27dc

diff --git a/configure.ac b/configure.ac
index a1dbaaa483fd..2fc6a1ebca86 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[7.1.6.0.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[7.1.6.1.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-7.1.6.1'

2021-08-18 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.1.6.1' created by Christian Lohmaier 
 at 2021-08-18 19:28 +

Tag libreoffice-7.1.6.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmEdX3MACgkQ9DSh76/u
rqNVUw//d6R4nXmDIQM0PWFWL7uw8zkNO0d+JTUUVjnMu8GBRBO8oOBMu+S//JAE
MSpBK8MZLgb9C2fyGw1uJmNJrKK8nviQLM5ro0IQD3xokvDaIMjJxUFa74jS/BUF
UQ0thB1SJvopRjZ5Zq/CHmBrXClD9DIyT/WzGK5DTFyjIb/tD3KzBM4Dn96Fws24
yCzZ6NcYC3CU3ZZN7YlaR+vTV/i3zvuKiMw0tKy3TNrMav1CPQ0SMIfuKFQFrIOV
ztQWqy02nL+qFfZnVqbnO4nd0DFx3V4qQxVwPJhLWJ9xuzdsh+aEAdO5Q2XTFbKE
FTf30UictbDJtZUR02wyYUG0fB9WydMhD1WYRjXi9llw1Jc42OyDDT7M09tXnhij
V+K2k5xGq05Wo3pzGWOWJ3O/zXHZj4PvgEGY0bLIydPSJeqGXdMlfhHqU0lSHbqS
RWVAq+VAhXguXi2byRDNvbpvKpRxK/ExC/O4kD21rZrp/EdVEEqP+T89MbT8NW4K
Mo6mTr29ZRR0djF0yp7X1IBOEXPd6WuTK8RJRo6iTp4g3l+oCEeN+la0/zrLsGF0
2RVQ5F9SnM0Z8eP3gvZ7dTiaKzX4X8pTB06MU+dl3M2/+XIym+UICYUmtQaA/qky
8PVCYqcFf506wdZkzruHqdqO388v1J3QecrT41dfa2SVj3Hq1AQ=
=CDpv
-END PGP SIGNATURE-

Changes since co-2021-branch-point-3:
---
 0 files changed
---


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-7.1.6.1'

2021-08-18 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.1.6.1' created by Christian Lohmaier 
 at 2021-08-18 19:28 +

Tag libreoffice-7.1.6.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmEdX28ACgkQ9DSh76/u
rqMs1BAAxbXfCZHwXZ5+D+5jXcSZbDhfOJWxC0wYVHyWsqsh+BH+UCE1Q++RRFev
qbsiR/mfyhb6ftblFxhpdoCfTloekcKFn/YOfraV4nxx+4fbOQ44Te3HnLu32LTT
exF0bARdhAgXHEFCK6jIL78ZSYXJG0Oej8KJAZbf3irRB9of+aF3uiZ3OaTEi1EX
UDOFkE/AxKbpQ2YRaC3Z5wq2gRC9XBHgyVVAGD5kiOukaIk95YkXgWRX6CXn3S4m
fHudOHS4j6GCXT1TG/HiV97pSD0vCkkrzHQXWyl0rw8aL1y7GaPzy2Q+bCW6Wsmi
dfAXYQw8w38W8XY+waw5X5xvaZrC+nu9j611ZtvtwgIz9n5fPwJUH7Xeem6NIWm7
OUJ1l1ECoqtgYGJcWw0VSvD2+ESwgXAF6iIC1x5XBX+e/OEfZJuVd/bsd4USfbzp
0iVdXVgDFTqXqttRJyrpsI2u0tbs7S1Vd1N+GySyLm/czuKac3mRJfmmGCeS9aID
aHahVprgD33+uDN0WkzLnx9j7HshNEMoP98/FYdIO/uS/I9XTyj8vdMn/A99tHMj
5Rfrg/YCaw2viH9iXw2E/w5DYPXSAAfwdLQeYhiLkOIzw6MWG/FiF+ebrXAejcyX
iD5I5r76WU9xD6Lz4E8ChxHXzrwAT6FCpzd9pviUVMfvxfG+D3Y=
=d2ER
-END PGP SIGNATURE-

Changes since co-21.06.3-1-2:
---
 0 files changed
---


[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

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

Bug 143353 Summary: [GTK3] Tip of the Day dialogue is focused but does not 
respond to clicks until Template dialogue is closed
https://bugs.documentfoundation.org/show_bug.cgi?id=143353

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - configure.ac

2021-08-18 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9e65ef7e98c574a20b0180027bcaa7fd34dc8456
Author: Christian Lohmaier 
AuthorDate: Wed Aug 18 21:25:33 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Aug 18 21:25:33 2021 +0200

bump product version to 7.1.7.0.0+

Change-Id: Icf9b68055439f39b77a83bff0baaf17ee43f3219

diff --git a/configure.ac b/configure.ac
index a1dbaaa483fd..a9241848fdd0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[7.1.6.0.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[7.1.7.0.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


[Libreoffice-commits] core.git: include/sfx2 sd/source sfx2/source

2021-08-18 Thread Caolán McNamara (via logerrit)
 include/sfx2/app.hxx |6 
 sd/source/ui/app/sdmod1.cxx  |9 ++
 sfx2/source/view/viewfrm.cxx |   62 +--
 3 files changed, 57 insertions(+), 20 deletions(-)

New commits:
commit 1f42157e2457e30a7f18fdf9d7bb5bddfb819f04
Author: Caolán McNamara 
AuthorDate: Wed Aug 18 14:03:47 2021 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 18 21:22:35 2021 +0200

tdf#143353 defer tip of the day until impress template dialog is gone

wait until that dialog is dismissed before showing the tip dialog

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

diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx
index d15d0645a40a..5e86df8a019b 100644
--- a/include/sfx2/app.hxx
+++ b/include/sfx2/app.hxx
@@ -218,6 +218,12 @@ public:
 /** loads the application logo as used in the impress slideshow pause 
screen */
 static BitmapEx GetApplicationLogo(tools::Long nWidth);
 
+/** if true then dialog/infobar notifications like the tip of the day or
+version change infobar should be suppressed */
+static bool IsHeadlessOrUITest();
+
+static bool IsTipOfTheDayDue();
+
 /** this Theme contains Images so must be deleted before DeInitVCL */
 sfx2::sidebar::Theme & GetSidebarTheme();
 };
diff --git a/sd/source/ui/app/sdmod1.cxx b/sd/source/ui/app/sdmod1.cxx
index 64a149a1334d..8ac21d2258d9 100644
--- a/sd/source/ui/app/sdmod1.cxx
+++ b/sd/source/ui/app/sdmod1.cxx
@@ -489,6 +489,15 @@ SfxFrame* SdModule::ExecuteNewDocument( SfxRequest const & 
rReq )
 //pFrame is loaded with the desired template
 if (!aTemplDlg.getTemplatePath().isEmpty())
 pFrame = CreateFromTemplate(aTemplDlg.getTemplatePath(), 
xTargetFrame, false);
+
+// show tip-of-the-day dialog if it was deferred because 
SfxTemplateSelectionDlg
+// was open
+if (pFrame && SfxApplication::IsTipOfTheDayDue() && 
!SfxApplication::IsHeadlessOrUITest())
+{
+// tdf#127946 pass in argument for dialog parent
+SfxUnoFrameItem aDocFrame(SID_FILLFRAME, 
pFrame->GetFrameInterface());
+GetDispatcher()->ExecuteList(SID_TIPOFTHEDAY, 
SfxCallMode::SLOT, {}, {  });
+}
 }
 }
 
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 628b436dc81e..2881bbd4208f 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -1328,6 +1328,37 @@ css::uno::Reference 
getLayoutManager(const SfxFrame&
 }
 }
 
+bool SfxApplication::IsHeadlessOrUITest()
+{
+if (Application::IsHeadlessModeEnabled())
+return true;
+
+bool bIsUITest = false; //uitest.uicheck fails when the dialog is open
+for (sal_uInt16 i = 0, nCount = Application::GetCommandLineParamCount(); i 
< nCount; ++i)
+{
+if (Application::GetCommandLineParam(i) == "--nologo")
+{
+bIsUITest = true;
+break;
+}
+}
+return bIsUITest;
+}
+
+bool SfxApplication::IsTipOfTheDayDue()
+{
+const bool bShowTipOfTheDay = 
officecfg::Office::Common::Misc::ShowTipOfTheDay::get();
+if (!bShowTipOfTheDay)
+return false;
+
+const auto t0 = std::chrono::system_clock::now().time_since_epoch();
+
+// show tip-of-the-day dialog ?
+const sal_Int32 nLastTipOfTheDay = 
officecfg::Office::Common::Misc::LastTipOfTheDayShown::get();
+const sal_Int32 nDay = 
std::chrono::duration_cast(t0).count()/24; // days since 
1970-01-01
+return nDay - nLastTipOfTheDay > 0; //only once per day
+}
+
 void SfxViewFrame::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint )
 {
 if(m_pImpl->bIsDowning)
@@ -1360,17 +1391,10 @@ void SfxViewFrame::Notify( SfxBroadcaster& /*rBC*/, 
const SfxHint& rHint )
 rBind.Invalidate( SID_RELOAD );
 rBind.Invalidate( SID_EDITDOC );
 
-const auto t0 = 
std::chrono::system_clock::now().time_since_epoch();
-
-bool bIsUITest = false; //uitest.uicheck fails when the dialog 
is open
-for( sal_uInt16 i = 0; i < 
Application::GetCommandLineParamCount(); i++ )
-{
-if( Application::GetCommandLineParam(i) == "--nologo" )
-bIsUITest = true;
-}
+bool bIsHeadlessOrUITest = 
SfxApplication::IsHeadlessOrUITest(); //uitest.uicheck fails when the dialog is 
open
 
 //what's new infobar
-if ((utl::isProductVersionUpgraded(true)) && 
!Application::IsHeadlessModeEnabled() && !bIsUITest)
+if (utl::isProductVersionUpgraded(true) && 
!bIsHeadlessOrUITest)
 {
 VclPtr pInfoBar = 
AppendInfoBar("whatsnew", "", SfxResId(STR_WHATSNEW_TEXT), InfobarType::INFO);
   

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

2021-08-18 Thread Caolán McNamara (via logerrit)
 sw/qa/core/data/ww5/pass/ooo37322-1-WW2.doc |binary
 sw/source/filter/ww8/ww8par.cxx |9 +
 2 files changed, 9 insertions(+)

New commits:
commit c1cd505c67a53a0a27589889b34641612d10946d
Author: Caolán McNamara 
AuthorDate: Wed Aug 18 16:57:18 2021 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 18 21:21:26 2021 +0200

ofz#37322 Bad-cast

use a SwUnoCursor for the LastAnchorPos around here, this is similar to
ofz#9858 Bad-cast

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

diff --git a/sw/qa/core/data/ww5/pass/ooo37322-1-WW2.doc 
b/sw/qa/core/data/ww5/pass/ooo37322-1-WW2.doc
new file mode 100644
index ..fd64eeed2963
Binary files /dev/null and b/sw/qa/core/data/ww5/pass/ooo37322-1-WW2.doc differ
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 9c0862f5a9c6..09065cc441c3 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -2067,8 +2067,17 @@ void WW8ReaderSave::Restore( SwWW8ImplReader* pRdr )
 pRdr->m_xCtrlStck = std::move(mxOldStck);
 
 pRdr->m_xRedlineStack->closeall(*pRdr->m_pPaM->GetPoint());
+
+// ofz#37322 drop m_pLastAnchorPos during RedlineStack dtor and restore it 
afterwards to the same
+// place, or somewhere close if that place got destroyed
+std::shared_ptr xLastAnchorCursor(pRdr->m_pLastAnchorPos ? 
pRdr->m_rDoc.CreateUnoCursor(*pRdr->m_pLastAnchorPos) : nullptr);
+pRdr->m_pLastAnchorPos.reset();
+
 pRdr->m_xRedlineStack = std::move(mxOldRedlines);
 
+if (xLastAnchorCursor)
+pRdr->m_pLastAnchorPos.reset(new 
SwPosition(*xLastAnchorCursor->GetPoint()));
+
 pRdr->DeleteAnchorStack();
 pRdr->m_xAnchorStck = std::move(mxOldAnchorStck);
 


[Libreoffice-bugs] [Bug 70668] FILEOPEN: Display does not fit to a page format from a Calligra Words document.

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

Markus Elfring  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #18 from Markus Elfring  ---
(In reply to Jean-Baptiste Faure from comment #17)
> With my LO 7.2.1.0+ the file opens in portrait Letter format.

Is this software behaviour questionable?


> In order to decide if the problem is on the LibreOffice side or on the
> Calligra side, it would be interesting to test this file in the latest
> version of Calligra.

I find that my test document is displayed in the expected way (including page
orientation and size) also by the software version “Calligra Words 3.2.1-9”.

Under which circumstances will the desired clarification be achieved for
further applications finally?

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

[Libreoffice-commits] core.git: connectivity/source emfio/inc emfio/source extensions/source include/sfx2 include/svx include/vcl oox/source opencl/source sc/inc sc/source sdext/source sd/source sfx2/

2021-08-18 Thread Noel Grandin (via logerrit)
 connectivity/source/drivers/postgresql/pq_statement.cxx |2 
 emfio/inc/mtftools.hxx  |2 
 emfio/source/reader/mtftools.cxx|2 
 extensions/source/bibliography/general.cxx  |8 
 include/sfx2/LokControlHandler.hxx  |   13 -
 include/sfx2/childwin.hxx   |2 
 include/sfx2/devtools/ObjectInspectorWidgets.hxx|2 
 include/sfx2/sidebar/SidebarController.hxx  |2 
 include/svx/MediaShellHelpers.hxx   |5 
 include/svx/fmshell.hxx |2 
 include/svx/fontworkbar.hxx |2 
 include/svx/svdpntv.hxx |4 
 include/vcl/filter/SvmReader.hxx|8 
 include/vcl/filter/SvmWriter.hxx|  110 +--
 include/vcl/metaact.hxx |  148 
 include/vcl/toolkit/spinfld.hxx |2 
 include/vcl/wall.hxx|2 
 oox/source/export/drawingml.cxx |2 
 oox/source/vml/vmlshape.cxx |4 
 opencl/source/opencl_device.cxx |2 
 sc/inc/postit.hxx   |2 
 sc/source/core/data/column3.cxx |2 
 sc/source/core/data/drwlayer.cxx|6 
 sc/source/core/data/postit.cxx  |2 
 sc/source/core/data/table3.cxx  |2 
 sc/source/filter/excel/xestyle.cxx  |4 
 sc/source/filter/inc/xestyle.hxx|4 
 sc/source/ui/cctrl/checklistmenu.cxx|2 
 sc/source/ui/docshell/docsh4.cxx|2 
 sc/source/ui/drawfunc/chartsh.cxx   |2 
 sc/source/ui/drawfunc/drawsh2.cxx   |2 
 sc/source/ui/inc/checklistmenu.hxx  |2 
 sc/source/ui/inc/docsh.hxx  |2 
 sc/source/ui/inc/gridwin.hxx|2 
 sc/source/ui/inc/viewutil.hxx   |2 
 sc/source/ui/view/cellsh1.cxx   |2 
 sc/source/ui/view/gridwin4.cxx  |2 
 sc/source/ui/view/tabvwsh4.cxx  |2 
 sc/source/ui/view/viewutil.cxx  |2 
 sd/source/filter/eppt/pptx-epptooxml.cxx|4 
 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx |2 
 sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx   |2 
 sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx   |2 
 sfx2/inc/commandpopup/CommandPopup.hxx  |2 
 sfx2/inc/sidebar/DeckLayouter.hxx   |2 
 sfx2/source/appl/childwin.cxx   |4 
 sfx2/source/commandpopup/CommandPopup.cxx   |6 
 sfx2/source/devtools/DocumentModelTreeHandler.cxx   |6 
 sfx2/source/devtools/ObjectInspectorTreeHandler.cxx |   16 -
 sfx2/source/dialog/templdlg.cxx |2 
 sfx2/source/inc/templdgi.hxx|2 
 sfx2/source/sidebar/DeckLayouter.cxx|8 
 sfx2/source/sidebar/SidebarController.cxx   |2 
 svx/source/form/fmshell.cxx |2 
 svx/source/inc/StylesPreviewWindow.hxx  |4 
 svx/source/svdraw/MediaShellHelpers.cxx |4 
 svx/source/svdraw/svdpntv.cxx   |4 
 svx/source/tbxctrls/StylesPreviewWindow.cxx |4 
 svx/source/toolbars/fontworkbar.cxx |2 
 sw/inc/charformats.hxx  |2 
 sw/inc/textboxhelper.hxx|4 
 sw/source/core/crsr/bookmrk.cxx |4 
 sw/source/core/doc/DocumentContentOperationsManager.cxx |4 
 sw/source/core/doc/DocumentRedlineManager.cxx   |2 
 sw/source/core/doc/docbm.cxx|2 
 sw/source/core/doc/textboxhelper.cxx|4 
 sw/source/core/inc/MarkManager.hxx  |2 
 sw/source/core/inc/bookmrk.hxx  |4 
 sw/source/core/txtnode/chrfmt.cxx   |2 
 sw/source/filter/indexing/IndexingExport.cxx|6 
 sw/source/ui/dbui/dbtablepreviewdialog.cxx  |2 
 sw/source/uibase/shells/textsh1.cxx |2 
 toolkit/source/controls/animatedimages.cxx  |2 
 vcl/backendtest/GraphicsRenderTests.cxx |2 
 vcl/backendtest/outputdevice/common.cxx |2 
 vcl/inc/filter/BmpWriter.hxx|2 
 vcl/inc/filter/EpsWriter.hxx 

[Libreoffice-commits] core.git: Changes to 'libreoffice-7-1-6'

2021-08-18 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-1-6' available with the following commits:
commit 4303ebec5fb6de9a1edda71f39544fc06fda9256
Author: Christian Lohmaier 
Date:   Wed Aug 18 21:17:39 2021 +0200

Branch libreoffice-7-1-6

This is 'libreoffice-7-1-6' - the stable branch for the 7.1.6 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.1.x release,
please use the 'libreoffice-7-1' branch.

If you want to build something cool, unstable, and risky, use master.



[Libreoffice-commits] translations.git: Changes to 'libreoffice-7-1-6'

2021-08-18 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-1-6' available with the following commits:
commit 88c1181cd24698de77d44f46c9338b9f23baafdc
Author: Christian Lohmaier 
Date:   Wed Aug 18 21:17:18 2021 +0200

Branch libreoffice-7-1-6

This is 'libreoffice-7-1-6' - the stable branch for the 7.1.6 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.1.x release,
please use the 'libreoffice-7-1' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I9e70acc5f3ac6fbd24c246e8cea0766dc0edc07e



[Libreoffice-commits] help.git: Changes to 'libreoffice-7-1-6'

2021-08-18 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-1-6' available with the following commits:
commit c57884ff6c55fd1ceba6246d1b73274100341733
Author: Christian Lohmaier 
Date:   Wed Aug 18 21:17:17 2021 +0200

Branch libreoffice-7-1-6

This is 'libreoffice-7-1-6' - the stable branch for the 7.1.6 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.1.x release,
please use the 'libreoffice-7-1' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I43715c9eff8ee1e7daa8dd900b095ad67ec63d83



[Libreoffice-commits] dictionaries.git: Changes to 'libreoffice-7-1-6'

2021-08-18 Thread Christian Lohmaier (via logerrit)
New branch 'libreoffice-7-1-6' available with the following commits:
commit b28711b2b70bd9a3010e60e4cbe749d1dba2a15f
Author: Christian Lohmaier 
Date:   Wed Aug 18 21:17:17 2021 +0200

Branch libreoffice-7-1-6

This is 'libreoffice-7-1-6' - the stable branch for the 7.1.6 release.
Only very safe changes, reviewed by three people are allowed.

If you want to commit more complicated fix for the next 7.1.x release,
please use the 'libreoffice-7-1' branch.

If you want to build something cool, unstable, and risky, use master.

Change-Id: I134aada10623b2d6508934b541d6b11870c7f6a1



[Libreoffice-commits] core.git: drawinglayer/source include/drawinglayer

2021-08-18 Thread Noel Grandin (via logerrit)
 drawinglayer/source/processor2d/baseprocessor2d.cxx  |   36 ++-
 include/drawinglayer/processor2d/baseprocessor2d.hxx |7 +++
 2 files changed, 26 insertions(+), 17 deletions(-)

New commits:
commit 2e74c1107bc8422ee7a819722f3f0a366127330f
Author: Noel Grandin 
AuthorDate: Tue Aug 17 16:04:56 2021 +0200
Commit: Noel Grandin 
CommitDate: Wed Aug 18 21:17:19 2021 +0200

use visitor callback to avoid container construction (tdf#105575)

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

diff --git a/drawinglayer/source/processor2d/baseprocessor2d.cxx 
b/drawinglayer/source/processor2d/baseprocessor2d.cxx
index 00d71151e887..a078fe882e9e 100644
--- a/drawinglayer/source/processor2d/baseprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/baseprocessor2d.cxx
@@ -41,28 +41,32 @@ namespace drawinglayer::processor2d
 
 void BaseProcessor2D::process(const primitive2d::BasePrimitive2D& 
rCandidate)
 {
-primitive2d::Primitive2DContainer aContainer;
-rCandidate.get2DDecomposition(aContainer, getViewInformation2D());
-process(aContainer);
+// use the visitor API to avoid the cost of constructing 
Primitive2DContainers
+rCandidate.get2DDecomposition(*this, getViewInformation2D());
 }
 
-void BaseProcessor2D::process(const primitive2d::Primitive2DContainer& 
rSource)
+// Primitive2DDecompositionVisitor
+void BaseProcessor2D::append(const primitive2d::Primitive2DReference& 
rCandidate)
 {
-if(rSource.empty())
-return;
-
-const sal_Int32 nCount(rSource.size());
+const primitive2d::BasePrimitive2D* pBasePrimitive = static_cast< 
const primitive2d::BasePrimitive2D* >(rCandidate.get());
+processBasePrimitive2D(*pBasePrimitive);
+}
+void BaseProcessor2D::append(const primitive2d::Primitive2DContainer& 
rContainer)
+{
+process(rContainer);
+}
+void BaseProcessor2D::append(primitive2d::Primitive2DContainer&& 
rCandidate)
+{
+process(rCandidate);
+}
 
-for(sal_Int32 a(0); a < nCount; a++)
+void BaseProcessor2D::process(const primitive2d::Primitive2DContainer& 
rSource)
+{
+for (const primitive2d::Primitive2DReference& rCandidate : rSource)
 {
-// get reference
-const primitive2d::Primitive2DReference xReference(rSource[a]);
-
-if(xReference.is())
-{
-const primitive2d::BasePrimitive2D* pBasePrimitive = 
static_cast< const primitive2d::BasePrimitive2D* >(xReference.get());
+const primitive2d::BasePrimitive2D* pBasePrimitive = 
static_cast< const primitive2d::BasePrimitive2D* >(rCandidate.get());
+if (pBasePrimitive)
 processBasePrimitive2D(*pBasePrimitive);
-}
 }
 }
 
diff --git a/include/drawinglayer/processor2d/baseprocessor2d.hxx 
b/include/drawinglayer/processor2d/baseprocessor2d.hxx
index 1f0bd46efb62..4f1515109a77 100644
--- a/include/drawinglayer/processor2d/baseprocessor2d.hxx
+++ b/include/drawinglayer/processor2d/baseprocessor2d.hxx
@@ -22,6 +22,7 @@
 
 #include 
 
+#include 
 #include 
 #include 
 
@@ -150,7 +151,7 @@ namespace drawinglayer::processor2d
 be helpful to add many for the purpose not interesting higher 
level primitives
 to not force their decomposition to be created and/or parsed.
  */
-class DRAWINGLAYER_DLLPUBLIC BaseProcessor2D
+class DRAWINGLAYER_DLLPUBLIC BaseProcessor2D : public  
drawinglayer::primitive2d::Primitive2DDecompositionVisitor
 {
 private:
 /// The ViewInformation2D itself. It's private to isolate accesses 
to it
@@ -174,6 +175,10 @@ namespace drawinglayer::processor2d
 
 void process(const primitive2d::BasePrimitive2D& rCandidate);
 
+// Primitive2DDecompositionVisitor
+virtual void append(const primitive2d::Primitive2DReference&) 
override final;
+virtual void append(const primitive2d::Primitive2DContainer&) 
override final;
+virtual void append(primitive2d::Primitive2DContainer&&) override 
final;
 
 public:
 /// constructor/destructor


[Libreoffice-bugs] [Bug 105575] Slow rendering when using a Logo command

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

--- Comment #27 from Commit Notification 
 ---
Noel Grandin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/2e74c1107bc8422ee7a819722f3f0a366127330f

use visitor callback to avoid container construction (tdf#105575)

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 143943] New: [FILEOPEN] XLSB booleans interpreted as numeric formulae

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

Bug ID: 143943
   Summary: [FILEOPEN] XLSB booleans interpreted as numeric
formulae
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@sheetjs.com

Description:
LibreOffice translates both `BrtCellBool` (record type 4) as well as
`BrtShortBool` (record type 15) to numeric expressions.

Steps to Reproduce:
download and open
https://github.com/SheetJS/notes/raw/main/xlsb_short_records/brt_sst.xlsb

Actual Results:
cell A4 is 1 (formula expression `=TRUE()`)
cell B4 is 0 (formula expression `=FALSE()`)

Expected Results:
Cell A4 is `TRUE` (the value TRUE)
Cell A4 is `FALSE` (the value FALSE)


Reproducible: Always


User Profile Reset: Yes



Additional Info:
XLSB differentiates the literal true (record type 4 `BrtCellBool`) from the
formula =TRUE() (record type 10 `BrtFmlaBool`)

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

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

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

Julien Nabet  changed:

   What|Removed |Added

 CC||michael.st...@allotropia.de
   ||, serval2...@yahoo.fr

--- Comment #3 from Julien Nabet  ---
Just for the record, I could save a website for Mediawiki when I put no
login/password.

Michael: do you succeed in declaring a website for mediawiki with a user
account?
I took a look at swext/mediawiki/src/com/sun/star/wiki/Helper.java and don't
know what's wrong.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - config_host/config_oauth2.h.in external/libcmis officecfg/registry Repository.mk ucb/source

2021-08-18 Thread Christian Lohmaier (via logerrit)
 Repository.mk |2 
 config_host/config_oauth2.h.in|8 
 external/libcmis/UnpackedTarball_libcmis.mk   |2 
 external/libcmis/libcmis_gdrive.patch.1   |  702 ++
 external/libcmis/libcmis_oauth_pw_as_refreshtoken.patch.1 |  185 +++
 officecfg/registry/data/org/openoffice/Office/Common.xcu  |2 
 ucb/source/ucp/cmis/auth_provider.cxx |  130 +-
 ucb/source/ucp/cmis/auth_provider.hxx |8 
 ucb/source/ucp/cmis/cmis_content.cxx  |   21 
 ucb/source/ucp/cmis/cmis_repo_content.cxx |4 
 10 files changed, 1008 insertions(+), 56 deletions(-)

New commits:
commit 854c03ebc94aae205b85d0c9d342048baf93e9a9
Author: Christian Lohmaier 
AuthorDate: Tue Feb 16 14:07:34 2021 +0100
Commit: Christian Lohmaier 
CommitDate: Wed Aug 18 21:10:30 2021 +0200

tdf#101630 - gdrive support w/oAuth and Drive API v3

LibreOffice is only using drive.file scope, so can only see files it
owns/that were created by LibreOffice.

In addition, also store the refresh token in LO's password-store if the
user enabled persistent storage, removing the need to to the
copy'n'paste dance to grant access each time LO is launched.

related tdf#115643 also store the refresh token for onedrive
consolidate the fallback-auth provides for onedrive/gdrive into one,
they are all the same login in browser, then copy code method that
ultimately should be changed to having LO listen on local port for the
code

Change-Id: I97e3843682c302d2884e35ece6e72bc3a07e2539
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119572
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 
(cherry picked from commit 73041de9563c9a973d1b5394c6e5520a7d799980)

fix install with  --disable-cmis

Change-Id: I51430a860a0b5047b566ed8184f0f563ec54f288
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119661
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 
(cherry picked from commit 299b72e4c9ad239d747e47eaf004400f5a590695)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120544

diff --git a/Repository.mk b/Repository.mk
index c887d9b4297d..23c268775fcf 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -432,7 +432,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
ucpexpand1 \
ucpext \
ucpimage \
-   ucpcmis1 \
+   $(if $(ENABLE_LIBCMIS),ucpcmis1) \
ucptdoc1 \
unordf \
unoxml \
diff --git a/config_host/config_oauth2.h.in b/config_host/config_oauth2.h.in
index a95015b41f3e..9945dda3dda5 100644
--- a/config_host/config_oauth2.h.in
+++ b/config_host/config_oauth2.h.in
@@ -15,13 +15,13 @@
 
 
 /* Google Drive settings */
-#define GDRIVE_BASE_URL "https://www.googleapis.com/drive/v2;
+#define GDRIVE_BASE_URL "https://www.googleapis.com/drive/v3;
 #define GDRIVE_CLIENT_ID ""
 #define GDRIVE_CLIENT_SECRET ""
-#define GDRIVE_AUTH_URL "https://accounts.google.com/o/oauth2/auth;
-#define GDRIVE_TOKEN_URL "https://accounts.google.com/o/oauth2/token;
+#define GDRIVE_AUTH_URL "https://accounts.google.com/o/oauth2/v2/auth;
+#define GDRIVE_TOKEN_URL "https://oauth2.googleapis.com/token;
 #define GDRIVE_REDIRECT_URI "urn:ietf:wg:oauth:2.0:oob"
-#define GDRIVE_SCOPE "https://www.googleapis.com/auth/drive;
+#define GDRIVE_SCOPE "https://www.googleapis.com/auth/drive.file;
 
 
 /* Alfresco Cloud */
diff --git a/external/libcmis/UnpackedTarball_libcmis.mk 
b/external/libcmis/UnpackedTarball_libcmis.mk
index a5be3078c95a..8398853e4511 100644
--- a/external/libcmis/UnpackedTarball_libcmis.mk
+++ b/external/libcmis/UnpackedTarball_libcmis.mk
@@ -17,6 +17,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,libcmis, \
external/libcmis/libcmis-libxml2_compatibility.patch \

external/libcmis/0001-rename-class-GetObject-to-avoid-name-clash-on-Window.patch
 \
external/libcmis/libcmis_onedrive.patch \
+   external/libcmis/libcmis_oauth_pw_as_refreshtoken.patch.1 \
+   external/libcmis/libcmis_gdrive.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/libcmis/libcmis_gdrive.patch.1 
b/external/libcmis/libcmis_gdrive.patch.1
new file mode 100644
index ..24ff65d1ef15
--- /dev/null
+++ b/external/libcmis/libcmis_gdrive.patch.1
@@ -0,0 +1,702 @@
+diff -ur libcmis.org/src/libcmis/gdrive-document.cxx 
libcmis/src/libcmis/gdrive-document.cxx
+--- libcmis.org/src/libcmis/gdrive-document.cxx2021-07-27 
19:11:02.679247008 +0200
 libcmis/src/libcmis/gdrive-document.cxx2021-07-27 19:11:18.873246420 
+0200
+@@ -145,23 +145,17 @@
+ {
+ if ( !os.get( ) )
+ throw libcmis::Exception( "Missing stream" );
+-if ( !isImmutable( ) )
+-throw libcmis::Exception( string ( "Document " + getId( )+ 
+-" 

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

2021-08-18 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport16.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit e0dcf1a55547b124be227b6326173aa62bc2dcf8
Author: Xisco Fauli 
AuthorDate: Wed Aug 18 18:57:59 2021 +0200
Commit: Xisco Fauli 
CommitDate: Wed Aug 18 21:06:28 2021 +0200

remove incorrect comment

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

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
index 81a8912a9b6c..a8685d8c14a3 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx
@@ -258,7 +258,6 @@ DECLARE_OOXMLEXPORT_TEST(testTdf137742, "tdf137742.docx")
 {
 lang::Locale locale(
 getProperty(getParagraph(1), "CharLocale"));
-// the \lang inside the group was applied to CJK not Western
 CPPUNIT_ASSERT_EQUAL(OUString("en"), locale.Language);
 
 // Without the fix in place, this test would have failed with


[Libreoffice-bugs] [Bug 134569] FILEOPEN DOCX Paragraph after nested table gets unexpected spacing

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #8 from BogdanB  ---
Justin, please mark this as resolved.

I just verified and it is ok in
Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 5b025285b3528910a4360899abb2bbbaadc72c97
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

  1   2   3   4   >