[Libreoffice-bugs] [Bug 144214] enabling skia on macOS results in 75% of window painted in red on macOS

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144214

--- Comment #9 from Stephan Bergmann  ---
(In reply to Luboš Luňák from comment #5)
> Created attachment 174703 [details]
> LO patch
[...]
> Can somebody test this patch if it improves the situation in Raster and/or
> Metal mode? If it's still broken, please provide me with the debug output
> from it.

That patch works fine here.  (And just for the record, the debug output is

> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:648x200:1296x400:2
> debug:45526:491929: CREATE:648x200:1296x400
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:220x46:440x92:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:181x256:362x512:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:178x256:356x512:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: CREATE:1536x818:3072x1636
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2
> debug:45526:491929: SETVIRDEVGRAPHICS:1x1:2x2:2

for me.)

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

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

2021-09-02 Thread Chris Sherlock (via logerrit)
 vcl/qa/cppunit/outdev.cxx |   73 ++
 vcl/source/outdev/font.cxx|   73 +++---
 vcl/source/outdev/outdevstate.cxx |   46 ---
 3 files changed, 133 insertions(+), 59 deletions(-)

New commits:
commit a01c60927c3cedf775d3ba66d3602988c274fb09
Author: Chris Sherlock 
AuthorDate: Wed Aug 25 16:13:57 2021 +1000
Commit: Mike Kaganski 
CommitDate: Fri Sep 3 07:20:41 2021 +0200

vcl: Migrate OutputDevice font functions to font.cxx

Add unit tests for SetFont() and GetFont()

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

diff --git a/vcl/qa/cppunit/outdev.cxx b/vcl/qa/cppunit/outdev.cxx
index 0f2039d27943..adbf72751b4c 100644
--- a/vcl/qa/cppunit/outdev.cxx
+++ b/vcl/qa/cppunit/outdev.cxx
@@ -52,6 +52,8 @@ public:
 void testDefaultLineColor();
 void testTransparentLineColor();
 void testLineColor();
+void testFont();
+void testTransparentFont();
 void testSystemTextColor();
 void testShouldDrawWavePixelAsRect();
 void testGetWaveLineSize();
@@ -80,6 +82,8 @@ public:
 CPPUNIT_TEST(testDefaultLineColor);
 CPPUNIT_TEST(testTransparentLineColor);
 CPPUNIT_TEST(testLineColor);
+CPPUNIT_TEST(testFont);
+CPPUNIT_TEST(testTransparentFont);
 CPPUNIT_TEST(testSystemTextColor);
 CPPUNIT_TEST(testShouldDrawWavePixelAsRect);
 CPPUNIT_TEST(testGetWaveLineSize);
@@ -652,6 +656,75 @@ void VclOutdevTest::testLineColor()
 CPPUNIT_ASSERT_EQUAL(COL_RED, rColor);
 }
 
+void VclOutdevTest::testFont()
+{
+ScopedVclPtrInstance pVDev;
+
+// Use Dejavu fonts, they are shipped with LO, so they should be ~always 
available.
+// Use Sans variant for simpler glyph shapes (no serifs).
+vcl::Font font("DejaVu Sans", "Book", Size(0, 36));
+font.SetColor(COL_BLACK);
+font.SetFillColor(COL_RED);
+
+GDIMetaFile aMtf;
+aMtf.Record(pVDev.get());
+
+pVDev->SetFont(font);
+bool bSameFont(font == pVDev->GetFont());
+CPPUNIT_ASSERT_MESSAGE("Font is not the same", bSameFont);
+
+// four actions:
+// 1. Font action
+// 2. Text alignment action
+// 3. Text fill color action
+// 4. As not COL_TRANSPARENT (means use system font color), font color 
action
+size_t nActionsExpected = 4;
+CPPUNIT_ASSERT_EQUAL(nActionsExpected, aMtf.GetActionSize());
+
+MetaAction* pAction = aMtf.GetAction(0);
+CPPUNIT_ASSERT_EQUAL(MetaActionType::FONT, pAction->GetType());
+auto pFontAction = static_cast(pAction);
+bool bSameMetaFont = (font == pFontAction->GetFont());
+CPPUNIT_ASSERT_MESSAGE("Metafile font is not the same", bSameMetaFont);
+
+pAction = aMtf.GetAction(1);
+CPPUNIT_ASSERT_EQUAL(MetaActionType::TEXTALIGN, pAction->GetType());
+auto pTextAlignAction = static_cast(pAction);
+CPPUNIT_ASSERT_EQUAL(font.GetAlignment(), 
pTextAlignAction->GetTextAlign());
+
+pAction = aMtf.GetAction(2);
+CPPUNIT_ASSERT_EQUAL(MetaActionType::TEXTFILLCOLOR, pAction->GetType());
+auto pTextFillColorAction = static_cast(pAction);
+CPPUNIT_ASSERT_EQUAL(COL_RED, pTextFillColorAction->GetColor());
+
+pAction = aMtf.GetAction(3);
+CPPUNIT_ASSERT_EQUAL(MetaActionType::TEXTCOLOR, pAction->GetType());
+auto pTextColorAction = static_cast(pAction);
+CPPUNIT_ASSERT_EQUAL(COL_BLACK, pTextColorAction->GetColor());
+}
+
+void VclOutdevTest::testTransparentFont()
+{
+ScopedVclPtrInstance pVDev;
+
+// Use Dejavu fonts, they are shipped with LO, so they should be ~always 
available.
+// Use Sans variant for simpler glyph shapes (no serifs).
+vcl::Font font("DejaVu Sans", "Book", Size(0, 36));
+font.SetColor(COL_TRANSPARENT);
+
+GDIMetaFile aMtf;
+aMtf.Record(pVDev.get());
+
+pVDev->SetFont(font);
+
+// three actions as it sets the colour to the default system color (and 
doesn't add a text color action):
+// 1. Font action
+// 2. Text alignment action
+// 3. Text fill color action
+size_t nActionsExpected = 3;
+CPPUNIT_ASSERT_EQUAL(nActionsExpected, aMtf.GetActionSize());
+}
+
 void VclOutdevTest::testSystemTextColor()
 {
 {
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx
index bfaa0226b1ce..3f84afb2c3bf 100644
--- a/vcl/source/outdev/font.cxx
+++ b/vcl/source/outdev/font.cxx
@@ -17,33 +17,80 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include 
+#include 
+#include 
 #include 
 #include 
-
 #include 
+
+#include 
+#include 
+#include 
 #include 
-#include 
 #include 
 #include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include 
-#include 
-#include 
-#include 
+#include 
 
 #include 
 #include 
 
 #include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
 
 #include 
 
+void 

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

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

   What|Removed |Added

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

--- Comment #12 from Roman Kuznetsov <79045_79...@mail.ru> ---
Closed as WFM

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

[Libreoffice-bugs] [Bug 144151] Preview or changing font on sheet causes 'adapt row height' messages and cursor movement delay lags (editing, ui, formatting)

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144151

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 143963] UNO Object Inspector: Cannot inspect selected object (e.g. paragraph)

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143963

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 143953] Last line of file is being dropped in e-mail attachments

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143953

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 143941] LibreCalc freezes machine when shutting down [1]

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143941

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 144259] Macro fails working properly after upgrading to 7.2

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144259

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 144259] Macro fails working properly after upgrading to 7.2

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144259

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

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

[Libreoffice-bugs] [Bug 142147] Password protection on Writer malfunctioning

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142147

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 142147] Password protection on Writer malfunctioning

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142147

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

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

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

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

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

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

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 140825] some .odg files dont load fonts that are used upon open

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140825

--- Comment #2 from QA Administrators  ---
Dear Brad Turnbough,

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 135798] Empty page when anchor attached to previous page, which doesn't disappear at undo

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135798

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

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 135785] Opening a doc keeps re-rendering the page content

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135785

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

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 135744] Anchor outside document with doc export. double click the anchor and it will move

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135744

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

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 135694] FILEOPEN DOC: Dragging an image around in a table is unpredictable (not with ODT or DOCX)

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135694

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

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 135671] Table expanded cells expand when dragging fontwork through a table cells, but don't shrink until click in to cells one by one or file reload

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135671

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

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 82599] Insert and overwrite mode reversed in cell while editing on the Calc Formula bar

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82599

--- Comment #8 from QA Administrators  ---
Dear domenik.hein,

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 67282] EDITING Page style is reset when automatic hyphenation is applied to a paragraph in a table, when the table is at the top of the page/document

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67282

--- Comment #14 from QA Administrators  ---
Dear Mike Kaganski,

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 46953] EDITING: Impossible to drag and drop element to invisible layer

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46953

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

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 39418] .doc graphic content moved, seems larger after import FORMATTING VIEWING GRAPHICS

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39418

--- Comment #24 from QA Administrators  ---
Dear Phillip,

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 126962] Shrinking the selection using the "fill cells" handle deletes content

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126962

--- Comment #3 from QA Administrators  ---
Dear Nicolas Christener,

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 119174] Lines in paragraph appear squashed in Web Layout

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119174

--- Comment #6 from QA Administrators  ---
Dear vic.orgos+bugslibreoffice,

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 111728] Useless Arrow Style settings for shape objects

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111728

--- Comment #8 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 108499] "Secondary selection" clipboard is not functioning

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108499

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

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 103829] FILESAVE: Tab characters lost in cell

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103829

--- Comment #17 from QA Administrators  ---
Dear michael.letzgus,

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 100497] The information dr3d:vpn is not evaluated in case of parallel projection

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100497

--- Comment #8 from QA Administrators  ---
Dear Regina Henschel,

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-commits] core.git: external/firebird

2021-09-02 Thread Mike Kaganski (via logerrit)
 external/firebird/ExternalProject_firebird.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 872b77f6e8997b663fd01c9df655cd35a31ce39e
Author: Mike Kaganski 
AuthorDate: Thu Sep 2 18:48:06 2021 +0200
Commit: Mike Kaganski 
CommitDate: Fri Sep 3 05:35:06 2021 +0200

Make sure to use debug options for firebird in debug mode

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

diff --git a/external/firebird/ExternalProject_firebird.mk 
b/external/firebird/ExternalProject_firebird.mk
index 94a62e418124..edb3ed9eabea 100644
--- a/external/firebird/ExternalProject_firebird.mk
+++ b/external/firebird/ExternalProject_firebird.mk
@@ -52,6 +52,7 @@ $(call gb_ExternalProject_get_state_target,firebird,build):
$(CXXFLAGS_CXX11) \
$(if $(filter TRUE,$(COM_IS_CLANG)), 
-Wno-c++11-narrowing) \
$(if $(call 
gb_Module__symbols_enabled,firebird),$(gb_DEBUGINFO_FLAGS)) \
+   $(if $(ENABLE_DEBUG)$(ENABLE_DBGUTIL),$(if $(filter 
MSC,$(COM)),-Od -Z7,-Wno-error)) \
" \
&& export LDFLAGS=" \
$(if $(SYSTEM_LIBATOMIC_OPS),$(LIBATOMIC_OPS_LIBS), \
@@ -82,7 +83,7 @@ $(call gb_ExternalProject_get_state_target,firebird,build):
'<' 101200)), \
ac_cv_func_clock_gettime=no)) \
&& LC_ALL=C $(MAKE) \
-   $(if $(ENABLE_DEBUG),Debug) SHELL='$(SHELL)' $(if 
$(filter LINUX,$(OS)),CXXFLAGS="$$CXXFLAGS -std=gnu++11") \
+   $(if $(ENABLE_DEBUG)$(ENABLE_DBGUTIL),Debug) 
SHELL='$(SHELL)' $(if $(filter LINUX,$(OS)),CXXFLAGS="$$CXXFLAGS -std=gnu++11") 
\
MATHLIB="$(if 
$(SYSTEM_LIBTOMMATH),$(LIBTOMMATH_LIBS),-L$(call 
gb_UnpackedTarball_get_dir,libtommath) -ltommath)" \
LIBO_TUNNEL_LIBRARY_PATH='$(subst ','\'',$(subst 
$$,,$(call gb_Helper_extend_ld_path,$(call 
gb_UnpackedTarball_get_dir,icu)/source/lib)))' \
$(if $(filter MACOSX,$(OS)), \


[Libreoffice-bugs] [Bug 144259] Macro fails working properly after upgrading to 7.2

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144259

--- Comment #3 from CSLam  ---
Sorry that it is felt insufficient data has been provided.

What's Experienced and Expected:
I believe such has been described.

It is true that no reproducible steps have been provided, and in this situation
only a sample file will illustrate the point.

The file is not provided because, as I see the situation:
macro behavior only changes when transiting from ver 7.1.5.2 ver 7.2.0.4,
and this is clear enough a general issue with ver 7.2.0.4 - same macro working
in older versions but not the new one, implying a very high possibility of
something happening with the new version application.

I therefore think that the first step is to verify if indeed there are changes
introduced ending in affecting macro behaviour, whether intentional or
unintentional.  For example in a previous version change, the use of "#" in
hyperlink is amended (or rectified), thus once said everybody knows why the new
behaviour of hyperlinks in the then new version LibreOffice (ENDCODEURL needed
as a fix).


If at this point the situation cannot be followed up, just let it be, and be
aware of a potential issue with macros, as chance is there that other issues
will surface, affecting some other users.

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

[Libreoffice-bugs] [Bug 138655] Hide Tips Of The Day when showing Impress templates manager dialog

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138655

--- Comment #2 from skierpage  ---
This happened to me with the LO Flatpak on KDE Wayland, and I can't dismiss the
Tip of the Day! KDE's (X) close button, [Next Tip], and [ OK ] are all
inoperative. I had to choose a template, at which point I got a second Tip of
the Day window, then I could dismiss both of them.

I filed bug 144278. I don't mind seeing two stacked dialogs.

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

[Libreoffice-bugs] [Bug 144278] New: can't dismiss Impress Tip of the Day on top of Choose a Template

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144278

Bug ID: 144278
   Summary: can't dismiss Impress Tip of the Day on top of Choose
a Template
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: i...@skierpage.com

Description:
I ran into bug 138655, where after choosing Impress I get a blank template and
Select a Template and on top of that a Tip of the Day dialog. I don't mind the
stacking, but I can't dismiss the Tip of the Day!

Steps to reproduce: 

1. Make sure you enable "Show Tips on startup"
2. Start LibreOffice
3. Choose Impress from the starting window.

Actual Results:
Tip of the Day dialog appears in front of Template Manager dialog, but it is
not dismissable. In fact none of its buttons work. KDE's (X) close button, [x]
Show tips on startup, [Next Tip], and [ OK ] are all inoperative and I can't
select text. KDE's start panel shows the dialog, but right-click Close from
there doesn't work either.

In order to make the window go away I had to choose a template, at which point
I got a second Tip of the Day window, then I could dismiss both of them.

Expected Results:
The Tip of the Day window should remain operable.

Reproducible: It happened twice. To make Tip of the Day appear again I guessed
and removed the line 
  18873
from
~/.var/app/org.libreoffice.LibreOffice/config/libreoffice/4/user/registrymodifications.xcu

Additional Info:
This is running the LibreOffice flatpak in Fedora KDE Wayland
I tried to take a screenshot and KDE's Spectacle said it couldn't, so maybe my
Wayland session is messed up.

While the two Tip of the Day windows were up I brought up Help > About
LibreOffice to get the LO version, and again the TotD windows went inoperative.

Version: 7.2.0.4 / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 4; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Flatpak
Calc: threaded

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

[Libreoffice-bugs] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144277] New: setting a hyperlink changes the character size

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144277

Bug ID: 144277
   Summary: setting a hyperlink changes the character size
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tor...@yahoo.com

Created attachment 174752
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174752=edit
file with 2 paragraphs

In BMa.odt, aa has size 24pt. Select it, insert hyperlink to xa (bookmark ma).
aa size changes to 12. Why?
Now, ^click aa to go to xa; original size of aa is restored! Except that the
End-of-paragraph symbol has a wrong size.

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

[Libreoffice-bugs] [Bug 144238] External content disabled for WEBSERVICE call

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144238

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #1 from Aron Budea  ---
For me the WEBSERVICE function doesn't work after entering it the first time,
either (I removed the REGEX part to make sure that doesn't meddle with
anything), it gives #VALUE! error instead of the expected JSON output. Since
this bug report seems to be about something else, I opened bug 144276 on that.

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

[Libreoffice-bugs] [Bug 104742] [META] Network-involved bugs

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104742

Aron Budea  changed:

   What|Removed |Added

 Depends on||144276


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144276
[Bug 144276] WEBSERVICE function to certain external URL results in #VALUE!
error
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 112071] [META] Linked external data issues

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112071

Aron Budea  changed:

   What|Removed |Added

 Depends on|144276  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144276
[Bug 144276] WEBSERVICE function to certain external URL results in #VALUE!
error
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144276] WEBSERVICE function to certain external URL results in #VALUE! error

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144276

Aron Budea  changed:

   What|Removed |Added

 Blocks|112071  |104742


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104742
[Bug 104742] [META] Network-involved bugs
https://bugs.documentfoundation.org/show_bug.cgi?id=112071
[Bug 112071] [META] Linked external data issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144276] WEBSERVICE function to certain external URL results in #VALUE! error

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144276

--- Comment #1 from Aron Budea  ---
Created attachment 174751
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174751=edit
Session log

Console logs from a debug build.

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

[Libreoffice-bugs] [Bug 108141] Link to external data sometimes results in HTTP 503

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108141

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144276] New: WEBSERVICE function to certain external URL results in #VALUE! error

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144276

Bug ID: 144276
   Summary: WEBSERVICE function to certain external URL results in
#VALUE! error
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: er...@redhat.com, giuseppe.casta...@acca-esse.eu
Blocks: 112071

Taking the sample function from bug 144238:
=WEBSERVICE("http://data.fixer.io/api/latest?access_key=74ba35e56db252bd4737c215d4b0bf62==PLN;)

This results in a #VALUE! error when entered in a cell in Calc, while opening
the link itself gives correct JSON:
http://data.fixer.io/api/latest?access_key=74ba35e56db252bd4737c215d4b0bf62==PLN

Sample result:
{"success":true,"timestamp":1630625596,"base":"EUR","date":"2021-09-02","rates":{"PLN":4.51215}}

This is a regression from the following commit, bibisected using
ibisect-linux-64-5.3. It also looks like a reproducible case of bug 108141.
Adding CC: to Giuseppe Castagno.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=16df731a30917a426df81d751a0bfd0ae5fcdd45
author  Giuseppe Castagno  
2016-09-12 20:59:09 +0200
committer   Giuseppe Castagno  
2016-10-11 06:06:12 +

"tdf#102499 (5): Deal with HTTP unofficial response status codes"

Eike, I see you commented on bug 108141, let me CC you here as well.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112071
[Bug 112071] [META] Linked external data issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 112071] [META] Linked external data issues

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112071

Aron Budea  changed:

   What|Removed |Added

 Depends on||144276


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144276
[Bug 144276] WEBSERVICE function to certain external URL results in #VALUE!
error
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144275] New: Updated to 7.2.0.4 and now cannot perform either a "Save As…" or "Save a Copy…"

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144275

Bug ID: 144275
   Summary: Updated to 7.2.0.4 and now cannot perform either a
"Save As…" or "Save a Copy…"
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kwb...@morrisbb.net

Description:
I just updated a previously created text document and wanted to save it with a
new name, preserving the original version. I found that trying to use either
"Save As…" or "Save a Copy…" produced a spinnig "pizza wheel" for five seconds
and then just displayed my modified docuemnt without any save whatsoever.
Configuration: Mac OS 10.15.7 with a Mac Mini (late-2012). I ended up
performing a plain "Save" and then renamed the saved document. Of course, I've
now lost my previous version. 

Steps to Reproduce:
1.Modify an exiting text document
2.Select File/Save As…/Return
3.Observe a colored Spinning wheel which then quits without a Save As or Save

Actual Results:
Displays original document and no new document is saved.

Expected Results:
Should create a new document with a new chosen name.


Reproducible: Always


User Profile Reset: No



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

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

[Libreoffice-bugs] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

--- Comment #9 from tor...@yahoo.com ---
(In reply to Gerhard Weydt from comment #4)
> Also for WF. Another trick to see where the cursor is would be to switch on
> the background colour.

● What does ‘switch on the background colour’ mean?

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

[Libreoffice-ux-advise] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

--- Comment #9 from tor...@yahoo.com ---
(In reply to Gerhard Weydt from comment #4)
> Also for WF. Another trick to see where the cursor is would be to switch on
> the background colour.

● What does ‘switch on the background colour’ mean?

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

[Libreoffice-bugs] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

--- Comment #8 from tor...@yahoo.com ---
(In reply to Heiko Tietze from comment #6)
> We discussed this topic in the design meeting and recommend to not
> implement. Writer is meant to be WYSIWYG.
● ‘What you see is what you get’ does not apply at the editing stage: you ‘see’
the cursor when you edit, but you don't ‘get’ it in the document; you ‘see’ the
blue background of your edit window, but you don't ‘get’ it in the document;
you ‘see’ a string highlight (eg, in a search), but you don't ‘get’ it in the
document. Same for the currentLine: you will ‘see’ it (easily, thank-you very
much!), but you won't ‘get’ it in the document.
So, ‘changing the line color’ during editing does not ‘contradicts this
effort’.

> Text editors provide this functionality very well.
● Right. So, you are telling LO users to go and use their favorite text editors
if they want to enjoy this functionality…

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

[Libreoffice-ux-advise] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

--- Comment #8 from tor...@yahoo.com ---
(In reply to Heiko Tietze from comment #6)
> We discussed this topic in the design meeting and recommend to not
> implement. Writer is meant to be WYSIWYG.
● ‘What you see is what you get’ does not apply at the editing stage: you ‘see’
the cursor when you edit, but you don't ‘get’ it in the document; you ‘see’ the
blue background of your edit window, but you don't ‘get’ it in the document;
you ‘see’ a string highlight (eg, in a search), but you don't ‘get’ it in the
document. Same for the currentLine: you will ‘see’ it (easily, thank-you very
much!), but you won't ‘get’ it in the document.
So, ‘changing the line color’ during editing does not ‘contradicts this
effort’.

> Text editors provide this functionality very well.
● Right. So, you are telling LO users to go and use their favorite text editors
if they want to enjoy this functionality…

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

[Libreoffice-bugs] [Bug 103202] [META] About dialog bugs and enhancements

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103202

Ming Hua  changed:

   What|Removed |Added

 Depends on||143994


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143994
[Bug 143994] "Copy version information" button in About dialog should have
description label
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143994] "Copy version information" button in About dialog should have description label

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143994

Ming Hua  changed:

   What|Removed |Added

   Severity|trivial |enhancement
   Hardware|x86-64 (AMD64)  |All
Summary|help - about text cannot be |"Copy version information"
   |copied  |button in About dialog
   ||should have description
   ||label
 Blocks||103202
 OS|Linux (All) |All

--- Comment #3 from Ming Hua  ---
(In reply to Paolo Benvenuto from comment #2)
> Then, the bug would be that the button, with only an icon, isn't so much
> understandable.
It's not "only an icon", there is a tooltip that explains what it does if you
hover your mouse cursor over the button.

But sure, let's change summary accordingly and see what the developers say.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

--- Comment #7 from tor...@yahoo.com ---
(In reply to Heiko Tietze from comment #2)
> (In reply to TorrAB from comment #0)
> > Because it's not just another ‘plain-text editor’?
> 
> This would be my argument. It overwrites the paragraph/character formatting
● No, it does not. Heading 3 remains Heading 3, FirstLineIndent remains
FirstLineIndent, Italic remains Italic, Arial remains Arial, etc. Only the
fore|background colours would be changed — without affecting the document,
obviously.

> and can be quite distracting
● The colour combination would be customizable, from ‘loud’ to soft, or
indistinguishable currentLine.

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

[Libreoffice-ux-advise] [Bug 144165] Highlight the current line in Writer?

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144165

--- Comment #7 from tor...@yahoo.com ---
(In reply to Heiko Tietze from comment #2)
> (In reply to TorrAB from comment #0)
> > Because it's not just another ‘plain-text editor’?
> 
> This would be my argument. It overwrites the paragraph/character formatting
● No, it does not. Heading 3 remains Heading 3, FirstLineIndent remains
FirstLineIndent, Italic remains Italic, Arial remains Arial, etc. Only the
fore|background colours would be changed — without affecting the document,
obviously.

> and can be quite distracting
● The colour combination would be customizable, from ‘loud’ to soft, or
indistinguishable currentLine.

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

[Libreoffice-bugs] [Bug 143994] help - about text cannot be copied

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143994

Paolo Benvenuto  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
   Severity|normal  |trivial
 Ever confirmed|1   |0

--- Comment #2 from Paolo Benvenuto  ---
yes, I see the copy button.

Then, the bug would be that the button, with only an icon, isn't so much
understandable.

A "copy to clipboard" text would be better

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

[Libreoffice-bugs] [Bug 144151] Preview or changing font on sheet causes 'adapt row height' messages and cursor movement delay lags (editing, ui, formatting)

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144151

--- Comment #6 from casa  ---
Remember this issue does NOT involve the changing of a spreadsheet.  All that
is necessary is to select sheet, highlight another font on dropdown (which
causes Calc to preview the font on screen/sheet).   But instead of changing
font (do not press enter or click), just press ESC and make *no* spreadsheet
change.  
UNDO will be grey; font stays same; but lag/adapt bug starts.
The problem is in program not spreadsheet data changes.

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

[Libreoffice-bugs] [Bug 144151] Preview or changing font on sheet causes 'adapt row height' messages and cursor movement delay lags (editing, ui, formatting)

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144151

--- Comment #5 from casa  ---
1) Mike, thank you. Yes, easy reproduction can be just spreadsheet with
a1:a100 containing number 1.  (Increment isn't even necessary, just make
spreadsheet with data).  My upload spreadsheet is not necessary.

2) I believe you are saying this problem exists 4.2.0.4, but NOT 4.1.0.4?
I can confirm this problem has been in many versions of Calc for months or
years.  I noticed it, but never took time to create official bug.

3)"V Stuart Foote" I do not understand (comment 2).  You describe editing ODS
file and then opening to see if still a problem.  NOTE that I mentioned that
the bug is not present in the file data stream.  If 'lag'/"adapt row height"
situation is created on a spreadsheet and then that spreadsheet is saved, then
upon reopen the lag problem is gone (until font change is attempted again). 
The problem does not seem to be within ODS file data if that is your
suggestion.

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

[Libreoffice-bugs] [Bug 144195] UI: PNG export dialog has radio button doesn't allow 'dimensions' or 'DPI' to be set both

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144195

--- Comment #10 from Regina Henschel  ---
Telesto, I agree with you, that the current UI is not good, because it provides
unexpected results. But the previous UI wasn't better.
Unfortunately it is too late for LO7.2 to change the UI.

But for LO 7.3 there is time enough to find a better solution.

Idea for example: Add a toggle button with connecting bracket between connected
settings with the meaning "automatic adapt connected setting" vs "do not
connect settings but keep value in the other setting". Such connection exists
between "width" and "height" and it exists between "resolution" and
"dimension".

I support setting the bugreport to "new".

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

[Libreoffice-ux-advise] [Bug 144195] UI: PNG export dialog has radio button doesn't allow 'dimensions' or 'DPI' to be set both

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144195

--- Comment #10 from Regina Henschel  ---
Telesto, I agree with you, that the current UI is not good, because it provides
unexpected results. But the previous UI wasn't better.
Unfortunately it is too late for LO7.2 to change the UI.

But for LO 7.3 there is time enough to find a better solution.

Idea for example: Add a toggle button with connecting bracket between connected
settings with the meaning "automatic adapt connected setting" vs "do not
connect settings but keep value in the other setting". Such connection exists
between "width" and "height" and it exists between "resolution" and
"dimension".

I support setting the bugreport to "new".

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

[Libreoffice-bugs] [Bug 144250] Freeze when scrolling after changing column width

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144250

--- Comment #2 from Telesto  ---
Created attachment 174750
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174750=edit
Bibisect log

Bisected to:
author  Dennis Francis2019-01-15 21:34:46
+0530
committer   Dennis Francis2019-02-05
13:56:22 +0100
commit  3346947b7e102384dfc6cd98dbf7da81936f8fd6 (patch)
tree01db16dcb48779866e2f611a57e6836c4e9111c7
parent  ba1e745b3d022856080c25167226e8a9eeadc911 (diff)
Allow computing spans of formula-groups
Includes unit tests for correctness of the new functionality.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=3346947b7e102384dfc6cd98dbf7da81936f8fd6

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

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

--- Comment #10 from markster  ---
Oooh... yes this is working if I only select the word as you said.
Thanks.

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

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

--- Comment #9 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to markster from comment #8)
> Created attachment 174748 [details]
> Speeling correction fails to show correct list
> 
> Yes, I am pretty sure. To test it agin I just upgraded to new 7.1.5.2 and
> verified that the language is set to English as per your comments.
> ​I misspelled "culture" word in a document. Double click the word "culure"
> and right clicked the word. I expected to see drop down list with proper
> suggested words. Instead I get the following.

Why did you do double click on the word? Just right click on the wrong word

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144075

--- Comment #8 from MarjaE  ---
(In reply to Roman Kuznetsov from comment #6)
> Could you attach some screenshot or even a photo of your display with opened
> LibreOffice?
> 
> I don't see the problem in
> 
> Version: 7.3.0.0.alpha0+ / LibreOffice Community
> Build ID: 368e21fbc34fa4104f16498a54ab77704f39e6b4
> CPU threads: 4; OS: Mac OS X 10.16; UI render: Skia/Metal; VCL: osx
> Locale: ru-RU (ru_RU.UTF-8); UI: en-US
> Calc: threaded

What size is the text on your screen?

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144075

--- Comment #7 from MarjaE  ---
Created attachment 174749
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174749=edit
LibreOffice Prefs on a 21.5" screen.

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

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

--- Comment #8 from markster  ---
Created attachment 174748
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174748=edit
Speeling correction fails to show correct list

Yes, I am pretty sure. To test it agin I just upgraded to new 7.1.5.2 and
verified that the language is set to English as per your comments.
​I misspelled "culture" word in a document. Double click the word "culure" and
right clicked the word. I expected to see drop down list with proper suggested
words. Instead I get the following.

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

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

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

--- Comment #113 from Ricahrd Joseph  ---
I really liked the functionality of this and I do work on it for y clients. I
am a freelancer and I have so many clients at TaskShift for whom I have to use
this software. By the way, if you are also looking forward to get some
freelance work to utilize your skills, you can browse to the platform.
https://taskshift.com/marketplace/graphics-design/logo-design

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

[Libreoffice-bugs] [Bug 144249] Deleting a column in a spreadsheet: 15 seconds with 4.0| 45 second with 4.4.7.2| 90 seconds with 7.3

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144249

Telesto  changed:

   What|Removed |Added

 CC||dlynch1...@googlemail.com

--- Comment #2 from Telesto  ---
@David
You're spreadsheet pretty good at unmasking perf issues ;-)

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

[Libreoffice-bugs] [Bug 94380] Searching target in a PDF document to do a hyperlink is very slow

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94380

Buovjaga  changed:

   What|Removed |Added

   Severity|major   |normal
   Keywords||haveBacktrace

--- Comment #12 from Buovjaga  ---
The perf trace was taken with the original steps of starting to create a
hyperlink

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

[Libreoffice-bugs] [Bug 94380] Searching target in a PDF document to do a hyperlink is very slow

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94380

--- Comment #11 from Buovjaga  ---
Created attachment 174747
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174747=edit
Perf flamegraph

Lots of time spent in SfxBroadcaster at least

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: eae0636311d3a1b3a1af58a3e4df686b55afa3fa
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 94380] Searching target in a PDF document to do a hyperlink is very slow

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94380

--- Comment #10 from Buovjaga  ---
Created attachment 174746
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174746=edit
PDF file for link target

Let's attach it so it doesn't get lost

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

[Libreoffice-bugs] [Bug 103459] [META] Sidebar UI and UX bugs and enhancements

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459
Bug 103459 depends on bug 143646, which changed state.

Bug 143646 Summary: UI: Minimum size of the Chart sidebar creates a horizontal 
scrollbar
https://bugs.documentfoundation.org/show_bug.cgi?id=143646

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144250] Freeze when scrolling after changing column width

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144250

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 124098] LibreCalc6.2: Opening a Calc with some formulas: It writes "adapt Row Height" which is taking ages to load!

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124098

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144257] Recalculating after deleting cell content increased from 2 seconds (6.0) to 10 seconds with (7.3)

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144257

Telesto  changed:

   What|Removed |Added

 CC||dlynch1...@googlemail.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||4098,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||4250

--- Comment #4 from Telesto  ---
@David,
FYI: I recycled a part of you're spreadsheet at bug 144205. The file opening
here is slowish because of bug 124098. And recalculating after deleting cell
content is slow because of the commit at comment 2. It's possible that both are
entangled (so slow recalculation & row height madness. At least that's how I
read: bug 124098 comment 39. And there is also bug 144250 (which also appears
to be connected to the row height recalculation; it's likely a twist in the
expression of the same flaw)

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

[Libreoffice-bugs] [Bug 144205] The same command sometimes executes 100 times slower in 7.1.4 and 7.1.5

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144205

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144155] CALC Row operations over 100 times slower in 7.2 compared to 7.1

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144155

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141461] Auto Correct not activating

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141461

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

   What|Removed |Added

 Ever confirmed|0   |1
 CC||79045_79...@mail.ru
 Status|UNCONFIRMED |NEEDINFO

--- Comment #7 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to markster from comment #3)
> I use version 7.1.2.2 for MacOS. English dictionary.

And are you sure your text is English? I mean:

1. Select your text
2. Select menu Tools-Language-For all text-English 

I have no problem in

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 368e21fbc34fa4104f16498a54ab77704f39e6b4
CPU threads: 4; OS: Mac OS X 10.16; UI render: Skia/Metal; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 141603] Calc crashes with "Invalid child index" error on different operations, but only on certain ODS documents

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141603

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

   What|Removed |Added

 CC||79045_79...@mail.ru
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
Emil, can you update your LibreOffice to 7.1.5 version and try repeat your
problem there?

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

[Libreoffice-bugs] [Bug 105601] CALC menu for DATA: discrepancies between scalc menu and help guides

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105601

--- Comment #4 from Rafael Lima  ---
As an update to this bug, I checked the Data menu in LO Calc 7.2 and compared
against the help page:

https://help.libreoffice.org/latest/en-US/text/scalc/main0112.html?DbPAR=CALC

There are a few things to consider:
- "Filters" is actually named "More Filters" in the menu
- "Live Data Stream" is actually named "Streams" in the menu
- Data Provider for Spreadsheets is listed in the page but is not in the menu
(should we add it to the menu? or remove it from the help page?)

The only issue here is the "Data Provider" feature which I could not find in
any of the menus. However, this feature is accessible through the Tabbed
interface in the "Data" tab.

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

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

2021-09-02 Thread Caolán McNamara (via logerrit)
 sw/qa/core/data/ww8/pass/ofz38011-1.doc |binary
 sw/source/filter/ww8/ww8par2.cxx|9 +
 2 files changed, 9 insertions(+)

New commits:
commit bc7baa18435000f47f90e47d3300710bcb4cf56b
Author: Caolán McNamara 
AuthorDate: Thu Sep 2 13:35:34 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Sep 2 21:32:03 2021 +0200

ofz#38011 save and restore m_pLastAnchorPos via UnoCursor

when we do some operations that may delete paragraphs

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

diff --git a/sw/qa/core/data/ww8/pass/ofz38011-1.doc 
b/sw/qa/core/data/ww8/pass/ofz38011-1.doc
new file mode 100644
index ..8ef58ca5395d
Binary files /dev/null and b/sw/qa/core/data/ww8/pass/ofz38011-1.doc differ
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index 074b908d213c..a431040a20c7 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -2755,8 +2755,17 @@ void WW8TabDesc::MoveOutsideTable()
 void WW8TabDesc::FinishSwTable()
 {
 m_pIo->m_xRedlineStack->closeall(*m_pIo->m_pPaM->GetPoint());
+
+// ofz#38011 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(m_pIo->m_pLastAnchorPos ? 
m_pIo->m_rDoc.CreateUnoCursor(*m_pIo->m_pLastAnchorPos) : nullptr);
+m_pIo->m_pLastAnchorPos.reset();
+
 m_pIo->m_xRedlineStack = std::move(mxOldRedlineStack);
 
+if (xLastAnchorCursor)
+m_pIo->m_pLastAnchorPos.reset(new 
SwPosition(*xLastAnchorCursor->GetPoint()));
+
 WW8DupProperties aDup(m_pIo->m_rDoc,m_pIo->m_xCtrlStck.get());
 m_pIo->m_xCtrlStck->SetAttr( *m_pIo->m_pPaM->GetPoint(), 0, false);
 


[Libreoffice-bugs] [Bug 36549] [META] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36549
Bug 36549 depends on bug 35129, which changed state.

Bug 35129 Summary: Form spin button doesn't expose ROLE_SPIN_BUTTON to AT-SPI
https://bugs.documentfoundation.org/show_bug.cgi?id=35129

   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: vcl/source

2021-09-02 Thread Michael Weghorn (via logerrit)
 vcl/source/window/accessibility.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 45e7e31f328ac572d4278ea94557d92cd99a1bd2
Author: Michael Weghorn 
AuthorDate: Thu Sep 2 17:43:16 2021 +0200
Commit: Michael Weghorn 
CommitDate: Thu Sep 2 21:28:34 2021 +0200

tdf#35129 a11y: Let SPINBUTTON have role SPIN_BOX, not PUSH_BUTTON

Change-Id: I3aaac19890a356e930203ecdb003edfbfed1b52b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121516
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/vcl/source/window/accessibility.cxx 
b/vcl/source/window/accessibility.cxx
index 732415572dee..238eacc0518e 100644
--- a/vcl/source/window/accessibility.cxx
+++ b/vcl/source/window/accessibility.cxx
@@ -250,8 +250,7 @@ sal_uInt16 Window::getDefaultAccessibleRole() const
 case WindowType::CANCELBUTTON:
 case WindowType::HELPBUTTON:
 case WindowType::IMAGEBUTTON:
-case WindowType::MOREBUTTON:
-case WindowType::SPINBUTTON: nRole = 
accessibility::AccessibleRole::PUSH_BUTTON; break;
+case WindowType::MOREBUTTON: nRole = 
accessibility::AccessibleRole::PUSH_BUTTON; break;
 case WindowType::MENUBUTTON: nRole = 
accessibility::AccessibleRole::BUTTON_MENU; break;
 
 case WindowType::RADIOBUTTON: nRole = 
accessibility::AccessibleRole::RADIO_BUTTON; break;
@@ -299,6 +298,7 @@ sal_uInt16 Window::getDefaultAccessibleRole() const
 
 case WindowType::METRICFIELD:
 case WindowType::CURRENCYFIELD:
+case WindowType::SPINBUTTON:
 case WindowType::SPINFIELD:
 case WindowType::FORMATTEDFIELD: nRole = 
accessibility::AccessibleRole::SPIN_BOX; break;
 


[Libreoffice-bugs] [Bug 134607] LO7RC1 - LANGPACK macOS language pack fails to recognize LibreOffice 7 installation as valid on Catalina and Big Sur

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134607

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

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 143601] French Langpack for 7.1.5 and 7.2.0.4 invalid causing installation to fail

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143601

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

   What|Removed |Added

 CC||79045_79...@mail.ru
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||4607
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #19 from Roman Kuznetsov <79045_79...@mail.ru> ---
I can confirm it. I can't install a Russian language pack for LibreOffice 7.2
on macOS

And I think it's the same problem as it was in bug 134607 because after "fix"
it I still couldn't install RU language pack to LO on macOS (I tried different
version)

Version: 7.2.0.4 / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 4; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded

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

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

2021-09-02 Thread Caolán McNamara (via logerrit)
 filter/source/msfilter/svdfppt.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit bd8e2365937f0dc58563a3a09c15078b94cd4f5c
Author: Caolán McNamara 
AuthorDate: Thu Sep 2 08:49:56 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Sep 2 21:16:08 2021 +0200

do the same check on the same code pattern as was done earlier

in this same function

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

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 61e020a2987e..a2ce30270283 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -4051,6 +4051,8 @@ void PPTParaSheet::Read( SdrPowerPointImport const &
 sal_uInt32 nVal32;
 // number of tabulators
 rIn.ReadUInt16( nVal16 );
+if (!rIn.good() || rIn.remainingSize() / sizeof(nVal32) < nVal16)
+return;
 for (sal_uInt16 i = 0; i < nVal16; ++i)
 rIn.ReadUInt32( nVal32 );  // reading the tabulators
 }


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

2021-09-02 Thread Xisco Fauli (via logerrit)
 sc/qa/unit/data/ods/tdf144209.ods   |binary
 sc/qa/unit/subsequent_filters_test2.cxx |   20 
 2 files changed, 20 insertions(+)

New commits:
commit d98aae68810a77df399decbe09ba70f99fdb7344
Author: Xisco Fauli 
AuthorDate: Thu Sep 2 13:36:22 2021 +0200
Commit: Xisco Fauli 
CommitDate: Thu Sep 2 21:15:52 2021 +0200

tdf#144209: sc_subsequent_filters_test2: Add unittest

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

diff --git a/sc/qa/unit/data/ods/tdf144209.ods 
b/sc/qa/unit/data/ods/tdf144209.ods
new file mode 100644
index ..bf30dff17ce0
Binary files /dev/null and b/sc/qa/unit/data/ods/tdf144209.ods differ
diff --git a/sc/qa/unit/subsequent_filters_test2.cxx 
b/sc/qa/unit/subsequent_filters_test2.cxx
index e4fddd00ad60..bf0dee63d885 100644
--- a/sc/qa/unit/subsequent_filters_test2.cxx
+++ b/sc/qa/unit/subsequent_filters_test2.cxx
@@ -145,6 +145,7 @@ public:
 void testTdf136364();
 void testTdf103734();
 void testTdf126116();
+void testTdf144209();
 void testTdf98844();
 void testTdf100458();
 void testTdf118561();
@@ -251,6 +252,7 @@ public:
 CPPUNIT_TEST(testTdf136364);
 CPPUNIT_TEST(testTdf103734);
 CPPUNIT_TEST(testTdf126116);
+CPPUNIT_TEST(testTdf144209);
 CPPUNIT_TEST(testTdf98844);
 CPPUNIT_TEST(testTdf100458);
 CPPUNIT_TEST(testTdf118561);
@@ -1371,6 +1373,24 @@ void ScFiltersTest2::testTdf126116()
 xDocSh->DoClose();
 }
 
+void ScFiltersTest2::testTdf144209()
+{
+ScDocShellRef xDocSh = loadDoc(u"tdf144209.", FORMAT_ODS);
+CPPUNIT_ASSERT_MESSAGE("Failed to open doc", xDocSh.is());
+ScDocument& rDoc = xDocSh->GetDocument();
+
+CPPUNIT_ASSERT_EQUAL(OUString("AA 0"), rDoc.GetString(ScAddress(0, 0, 0)));
+
+xDocSh->DoHardRecalc();
+
+// Without the fix in place, this test would have failed with
+// - Expected: AA 33263342642.5385
+// - Actual  : AA 0
+CPPUNIT_ASSERT_EQUAL(OUString("AA 33263342642.5385"), 
rDoc.GetString(ScAddress(0, 0, 0)));
+
+xDocSh->DoClose();
+}
+
 void ScFiltersTest2::testTdf98844()
 {
 ScDocShellRef xDocSh = loadDoc(u"tdf98844.", FORMAT_ODS);


[Libreoffice-bugs] [Bug 143868] Mac Fonts are too large on non-retina display - UI

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143868

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

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||4075
 CC||79045_79...@mail.ru

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144075

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

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144075

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

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
Could you attach some screenshot or even a photo of your display with opened
LibreOffice?

I don't see the problem in

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 368e21fbc34fa4104f16498a54ab77704f39e6b4
CPU threads: 4; OS: Mac OS X 10.16; UI render: Skia/Metal; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded

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

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

2021-09-02 Thread Caolán McNamara (via logerrit)
 lotuswordpro/source/filter/lwp9reader.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 0e05ce8b9377b90cda47a76a7d0cbd1d5c65c521
Author: Caolán McNamara 
AuthorDate: Thu Sep 2 11:12:27 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Sep 2 21:05:46 2021 +0200

cid#1490900 Unchecked return value

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

diff --git a/lotuswordpro/source/filter/lwp9reader.cxx 
b/lotuswordpro/source/filter/lwp9reader.cxx
index 39c753f5ecd2..7340adb042b2 100644
--- a/lotuswordpro/source/filter/lwp9reader.cxx
+++ b/lotuswordpro/source/filter/lwp9reader.cxx
@@ -111,7 +111,9 @@ bool Lwp9Reader::ReadFileHeader()
 LwpFileHeader::m_nFileRevision = 0;
 
 LwpObjectHeader objHdr;
-objHdr.Read(*m_pDocStream);
+if (!objHdr.Read(*m_pDocStream))
+return false;
+
 sal_Int64 pos = m_pDocStream->Tell();
 m_LwpFileHdr.Read(m_pDocStream);
 return m_pDocStream->CheckSeek(pos + objHdr.GetSize());


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

2021-09-02 Thread Caolán McNamara (via logerrit)
 filter/source/msfilter/svdfppt.cxx |   17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

New commits:
commit 9f51d973f65e85ab01e393fc0821a0b304efbae3
Author: Caolán McNamara 
AuthorDate: Thu Sep 2 08:46:09 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Sep 2 21:05:30 2021 +0200

ofz: MemorySanitizer: use-of-uninitialized-value

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

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 33386122440b..61e020a2987e 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -3949,11 +3949,11 @@ void PPTParaSheet::Read( SdrPowerPointImport const &
 , sal_uInt32 nLevel, bool bFirst )
 {
 // paragraph attributes
-sal_uInt16  nVal16, i, nMask16;
-sal_uInt32  nVal32, nPMask;
-rIn.ReadUInt32( nPMask );
+sal_uInt16  nVal16;
+sal_uInt32 nPMask(0);
+rIn.ReadUInt32(nPMask);
 
-nMask16 = static_cast(nPMask) & 0xf;
+sal_uInt16 nMask16 = static_cast(nPMask) & 0xf;
 if ( nMask16 )
 {
 rIn.ReadUInt16( nVal16 );
@@ -3972,7 +3972,8 @@ void PPTParaSheet::Read( SdrPowerPointImport const &
 }
 if ( nPMask & 0x0020 )
 {
-rIn.ReadUInt32( nVal32 );
+sal_uInt32 nVal32(0);
+rIn.ReadUInt32(nVal32);
 maParaLevel[ nLevel ].mnBulletColor = nVal32;
 }
 if ( bFirst )
@@ -3996,11 +3997,12 @@ void PPTParaSheet::Read( SdrPowerPointImport const &
 rIn.ReadUInt16( maParaLevel[ nLevel ].mnDefaultTab );
 if ( nPMask & 0x20 )
 {
+sal_uInt32 nVal32;
 // number of tabulators
 rIn.ReadUInt16( nVal16 );
 if (rIn.remainingSize() / sizeof(nVal32) < nVal16)
 return;
-for ( i = 0; i < nVal16; i++ )
+for (sal_uInt16 i = 0; i < nVal16; ++i)
 rIn.ReadUInt32( nVal32 );  // reading the tabulators
 }
 if ( nPMask & 0x4 )
@@ -4046,9 +4048,10 @@ void PPTParaSheet::Read( SdrPowerPointImport const &
 }
 if ( nPMask & 0x10 )
 {
+sal_uInt32 nVal32;
 // number of tabulators
 rIn.ReadUInt16( nVal16 );
-for ( i = 0; i < nVal16; i++ )
+for (sal_uInt16 i = 0; i < nVal16; ++i)
 rIn.ReadUInt32( nVal32 );  // reading the tabulators
 }
 if ( nPMask & 0x20 )


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

2021-09-02 Thread Caolán McNamara (via logerrit)
 vcl/source/filter/ipict/ipict.cxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 6d4b78f143f8bea59acd9c62a92effbe6dff0bdf
Author: Caolán McNamara 
AuthorDate: Thu Sep 2 15:13:16 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Sep 2 21:05:10 2021 +0200

ofz: MemorySanitizer: use-of-uninitialized-value

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

diff --git a/vcl/source/filter/ipict/ipict.cxx 
b/vcl/source/filter/ipict/ipict.cxx
index e441603426f2..bcc61870726e 100644
--- a/vcl/source/filter/ipict/ipict.cxx
+++ b/vcl/source/filter/ipict/ipict.cxx
@@ -699,13 +699,13 @@ void PictReader::DrawingMethod(PictDrawingMethod eMethod)
 
 sal_uInt64 PictReader::ReadAndDrawText()
 {
-charnByteLen;
-sal_uInt32  nLen, nDataLen;
 charsText[256];
 
-pPict->ReadChar( nByteLen ); 
nLen=static_cast(nByteLen)&0x00ff;
-nDataLen = nLen + 1;
-pPict->ReadBytes(, nLen);
+char nByteLen(0);
+pPict->ReadChar(nByteLen);
+sal_uInt32 nLen = static_cast(nByteLen)&0x00ff;
+sal_uInt32 nDataLen = nLen + 1;
+nLen = pPict->ReadBytes(, nLen);
 
 if (IsInvisible( PictDrawingMethod::TEXT )) return nDataLen;
 DrawingMethod( PictDrawingMethod::TEXT );


[Libreoffice-bugs] [Bug 144157] LibreOffice windows shows ugly corners on MacOs 10.13.6

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144157

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

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
I don't see the problem in

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 368e21fbc34fa4104f16498a54ab77704f39e6b4
CPU threads: 4; OS: Mac OS X 10.16; UI render: Skia/Metal; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 144264] all icons in toolbar, notebookbar, sidebar are blurred in macOS 11.5

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144264

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

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||79045_79...@mail.ru

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Please clarify what icons do you mean?
Do you have a HiDPI display?
Please write here info from your LibreOffice's About dialog

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

[Libreoffice-ux-advise] [Bug 144195] UI: PNG export dialog has radio button doesn't allow 'dimensions' or 'DPI' to be set both

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144195

--- Comment #9 from Telesto  ---
Created attachment 174745
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174745=edit
Screenshot

(In reply to Regina Henschel from comment #8)
> Example: If I set 300dpi and then width 10inch x height 6.88inch,
> LibreOffice generates an image with 3007 pixels x 2067 pixels. That is
> correct besides small rounding errors.

A BIG *oops* / Mea culpa.. you're right on that point.. I might gone somewhat
off-track.. [Offtopic: PNG doesn't write DPI at all; know fact] Back to comment
0...

A) Radio button does suggest it's or/or. I don't see what the value is of
having with radio buttons. (I see it as wrong usage of radio button: not clear
why it's chosen at all)

B) The dialog has number of assumptions.
* It's uses aspect ratio by design. This is non-optional (which makes it less
flexible). And even worse this isn't communicated; only after it's to late (by
touching it) 
* It uses match size to DPI by design. Under the assumption that's desired? The
default is based on screen resolution (for shapes).. In my case 96 DPI. that's
very low by definition.. So need to bump it up. And go back to Size and set it
again (inconvenient; it's simply a workaround). You need to know in advance
that DPI influences the size (again lack of communication of the UI). And
remember the original size to be able to put it back. And not everybody is good
in remembering (in general) or maybe especially numbers. And well I mostly work
top down :-). Happens when reading a book, or filling a form.. 

I personally think both options should be given: depended and in depended.

C) If you type DPI [no, I don't scroll up from 96 (my default) to 300] the
'size' field isn't updated. If you press OK you will get 3,20 x 3,20 cm. This
is a thing/limitation with those spin-boxes. As long as the cursor being inside
it, nothing will update.. Not sure if something has changed in the last 9
months or so :-(. The feedback is awful


Lets add another dialog of IrfanView; the set size in percentage is also nice
to have, BTW

All those things are pretty much GUI problems at a level of 'easyHack'
LibreOffice pretty much capable of handling it. It's only the GUI not exposing
this. Which makes even harder to accept the current being decent state.
Especially there being plenty of other software capable to do so.

So I'm really not getting the objection/ refusal. Is it about a "floodgates
principle"; https://en.wikipedia.org/wiki/Floodgates_principle. And me not
seeing the floods for more requests? Or fear of opening some can of worms? 
This appears really contained in scope, IMHO.. 

The only problem which goes outside easy hack is the spinbox not updating
issue. started with welding.. and also affecting Table dialog (column width).
And likely another few area's..

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

[Libreoffice-bugs] [Bug 144195] UI: PNG export dialog has radio button doesn't allow 'dimensions' or 'DPI' to be set both

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144195

--- Comment #9 from Telesto  ---
Created attachment 174745
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174745=edit
Screenshot

(In reply to Regina Henschel from comment #8)
> Example: If I set 300dpi and then width 10inch x height 6.88inch,
> LibreOffice generates an image with 3007 pixels x 2067 pixels. That is
> correct besides small rounding errors.

A BIG *oops* / Mea culpa.. you're right on that point.. I might gone somewhat
off-track.. [Offtopic: PNG doesn't write DPI at all; know fact] Back to comment
0...

A) Radio button does suggest it's or/or. I don't see what the value is of
having with radio buttons. (I see it as wrong usage of radio button: not clear
why it's chosen at all)

B) The dialog has number of assumptions.
* It's uses aspect ratio by design. This is non-optional (which makes it less
flexible). And even worse this isn't communicated; only after it's to late (by
touching it) 
* It uses match size to DPI by design. Under the assumption that's desired? The
default is based on screen resolution (for shapes).. In my case 96 DPI. that's
very low by definition.. So need to bump it up. And go back to Size and set it
again (inconvenient; it's simply a workaround). You need to know in advance
that DPI influences the size (again lack of communication of the UI). And
remember the original size to be able to put it back. And not everybody is good
in remembering (in general) or maybe especially numbers. And well I mostly work
top down :-). Happens when reading a book, or filling a form.. 

I personally think both options should be given: depended and in depended.

C) If you type DPI [no, I don't scroll up from 96 (my default) to 300] the
'size' field isn't updated. If you press OK you will get 3,20 x 3,20 cm. This
is a thing/limitation with those spin-boxes. As long as the cursor being inside
it, nothing will update.. Not sure if something has changed in the last 9
months or so :-(. The feedback is awful


Lets add another dialog of IrfanView; the set size in percentage is also nice
to have, BTW

All those things are pretty much GUI problems at a level of 'easyHack'
LibreOffice pretty much capable of handling it. It's only the GUI not exposing
this. Which makes even harder to accept the current being decent state.
Especially there being plenty of other software capable to do so.

So I'm really not getting the objection/ refusal. Is it about a "floodgates
principle"; https://en.wikipedia.org/wiki/Floodgates_principle. And me not
seeing the floods for more requests? Or fear of opening some can of worms? 
This appears really contained in scope, IMHO.. 

The only problem which goes outside easy hack is the spinbox not updating
issue. started with welding.. and also affecting Table dialog (column width).
And likely another few area's..

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

[Libreoffice-ux-advise] [Bug 33749] Inconsistencies in Help pages on Cell Merging and Splitting (unmerging) in Calc

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33749

--- Comment #24 from Rafael Lima  ---
(In reply to Heiko Tietze from comment #23)
> Not a native speaker so with grain of salt: "Split" is more common and
> natural than "Unmerge" which implies that something has been merged before.
> All this discussion is quite academic to me. But OTOH renaming is pretty
> easy. However, where is "Split"?

Hi Heiko. Just to be clear, in Writer the terminology is correct: "Split
Cells". This is correct because in Writer, if you add a table you can select
any cell and split it further. And the newly created cells can be split again,
and again...

In Calc it is not possible to Split a cell. If you select a single cell, it is
not possible to split it in two. The only thing that can be done is first to
merge cells and later "Unmerge" them restoring their original situation.

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

[Libreoffice-bugs] [Bug 33749] Inconsistencies in Help pages on Cell Merging and Splitting (unmerging) in Calc

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33749

--- Comment #24 from Rafael Lima  ---
(In reply to Heiko Tietze from comment #23)
> Not a native speaker so with grain of salt: "Split" is more common and
> natural than "Unmerge" which implies that something has been merged before.
> All this discussion is quite academic to me. But OTOH renaming is pretty
> easy. However, where is "Split"?

Hi Heiko. Just to be clear, in Writer the terminology is correct: "Split
Cells". This is correct because in Writer, if you add a table you can select
any cell and split it further. And the newly created cells can be split again,
and again...

In Calc it is not possible to Split a cell. If you select a single cell, it is
not possible to split it in two. The only thing that can be done is first to
merge cells and later "Unmerge" them restoring their original situation.

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

[Libreoffice-commits] core.git: sd/uiconfig

2021-09-02 Thread rafaelhlima (via logerrit)
 sd/uiconfig/sdraw/ui/notebookbar_compact.ui|  186 +++--
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui |  121 ++-
 sd/uiconfig/sdraw/ui/notebookbar_single.ui |  116 --
 3 files changed, 329 insertions(+), 94 deletions(-)

New commits:
commit 8447f46372f48dc6d259340fafe00d39eabd64cc
Author: rafaelhlima 
AuthorDate: Sun Aug 22 21:08:27 2021 -0300
Commit: Rafael Lima 
CommitDate: Thu Sep 2 20:29:49 2021 +0200

tdf#136610 Add Clone/Clear Direct Format to other tabbed interfaces

Change-Id: I4d009de786acd2a84f698b11eb48c5f09c25
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120858
Tested-by: Jenkins
Tested-by: Andreas Kainz 
Reviewed-by: Heiko Tietze 
Reviewed-by: Andreas Kainz 

diff --git a/sd/uiconfig/sdraw/ui/notebookbar_compact.ui 
b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
index 7cfa4a877461..42fd5833d5f2 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
@@ -12755,6 +12755,70 @@
 0
   
 
+
+  
+True
+False
+center
+
+  
+True
+False
+5
+5
+vertical
+  
+  
+False
+True
+5
+0
+  
+
+
+  
+True
+False
+center
+4
+4
+False
+
+  
+True
+False
+.uno:FormatPaintbrush
+  
+  
+False
+True
+  
+
+
+  
+True
+False
+.uno:SetDefault
+  
+  
+False
+True
+  
+
+  
+  
+False
+True
+1
+  
+
+  
+  
+False
+True
+1
+  
+
 
   
 True
@@ -12816,7 +12880,7 @@
   
 False
 True
-1
+2
   
 
 
@@ -12868,7 +12932,7 @@
   
 False
 True
-2
+3
   
 
 
@@ -12908,7 +12972,7 @@
   
 False
 True
-3
+4
   
 
 
@@ -12947,7 +13011,7 @@
   
 False
 True
-4
+5
   
 
 
@@ -12985,7 +13049,7 @@
   
 False
 True
-5
+6
   
 
 
@@ -13022,7 +13086,7 @@
   
 False
 True
-6
+7
   
 
 
@@ -13058,7 +13122,7 @@
   
 False
 True
-7
+8
   
 
 
@@ -13097,7 +13161,7 @@
   
 False
 True
-   

[Libreoffice-bugs] [Bug 136610] Clone Button does not exist in LO Draw's Tabbed Interface

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136610

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

https://git.libreoffice.org/core/commit/8447f46372f48dc6d259340fafe00d39eabd64cc

tdf#136610 Add Clone/Clear Direct Format to other tabbed interfaces

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 95549] FILEOPEN - XLSM opens very slowly

2021-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95549

--- Comment #29 from Julien Nabet  ---
Created attachment 174744
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174744=edit
perf flamegraph

Here's a Flamegraph retrieved on pc Debian x86-64 with master sources updated
today + gen rendering.

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

  1   2   3   4   >