[Libreoffice-bugs] [Bug 144338] UI Connected spinbox not updated when value is typed into the field

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

--- Comment #2 from Heiko Tietze  ---
When you leave the control per tab into the other spinbox the values are
updated. Since it depends on each other I don't see how this can be done
on-editing. Point is that while editing a value the depending are volatile and
must not be updated before finished. => NAB (and there are likely duplicates)

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

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

2021-09-06 Thread Dennis Francis (via logerrit)
 include/LibreOfficeKit/LibreOfficeKitEnums.h |8 
 libreofficekit/source/gtk/lokdocview.cxx |1 +
 sc/source/ui/unoobj/docuno.cxx   |   19 +++
 3 files changed, 28 insertions(+)

New commits:
commit 9cc818355dad271c030af611862f15c0e081321a
Author: Dennis Francis 
AuthorDate: Thu Aug 12 15:58:15 2021 +0530
Commit: Dennis Francis 
CommitDate: Tue Sep 7 07:08:54 2021 +0200

sc: lok: introduce LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR callback

to send the document background color (Calc only for now).

Change-Id: Ibd2f042a81c9bb714bed947c4ef92f82ff3e6f50
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120524
Reviewed-by: Szymon Kłos 
Tested-by: Dennis Francis 
(cherry picked from commit 5f2d669a51a91b21196eecb935aa55d3fc1aa7be)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120736
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Dennis Francis 

diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index ae8eacd9151f..c9d694ca8b4d 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -772,6 +772,12 @@ typedef enum
  * The payload format is JSON: { "title": "title text", "content": 
"content text" }
  */
 LOK_CALLBACK_VALIDITY_INPUT_HELP = 51,
+
+/**
+ * This is currently Calc only. Indicates the document background
+ * color in the payload as a RGB hex string (RRGGBB).
+ */
+LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR = 52,
 }
 LibreOfficeKitCallbackType;
 
@@ -904,6 +910,8 @@ static inline const char* lokCallbackTypeToString(int nType)
 return "LOK_CALLBACK_FORM_FIELD_BUTTON";
 case LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY:
 return "LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY";
+case LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR:
+return "LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR";
 }
 
 assert(!"Unknown LibreOfficeKitCallbackType type.");
diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index 156224b57351..9102672e12ec 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -1414,6 +1414,7 @@ callback (gpointer pData)
 case LOK_CALLBACK_TAB_STOP_LIST:
 case LOK_CALLBACK_FORM_FIELD_BUTTON:
 case LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY:
+case LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR:
 {
 // TODO: Implement me
 break;
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index e0de184bfcea..6237277c8498 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -23,6 +23,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -965,6 +966,19 @@ bool ScModelObj::isMimeTypeSupported()
 return EditEngine::HasValidData(aDataHelper.GetTransferable());
 }
 
+static void lcl_sendLOKDocumentBackground(const ScViewData* pViewData)
+{
+ScDocShell* pDocSh = pViewData->GetDocShell();
+ScDocument& rDoc = pDocSh->GetDocument();
+const ScPatternAttr *pAttr = rDoc.GetDefPattern();
+const SfxPoolItem& rItem = pAttr->GetItem(ATTR_BACKGROUND);
+const SvxBrushItem& rBackground = static_cast(rItem);
+const Color& rColor = rBackground.GetColor();
+
+ScTabViewShell* pViewShell = pViewData->GetViewShell();
+
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR, 
rColor.AsRGBHexString().toUtf8().getStr());
+}
+
 void ScModelObj::setClientZoom(int nTilePixelWidth_, int nTilePixelHeight_, 
int nTileTwipWidth_, int nTileTwipHeight_)
 {
 ScViewData* pViewData = ScDocShell::GetViewData();
@@ -972,6 +986,11 @@ void ScModelObj::setClientZoom(int nTilePixelWidth_, int 
nTilePixelHeight_, int
 if (!pViewData)
 return;
 
+// Currently in LOK clients the doc background cannot be changed, so send 
this sparingly as possible but for every view.
+// FIXME: Find a better place to trigger this callback where it would be 
called just once per view creation.
+// Doing this in ScTabViewShell init code does not work because callbacks 
do not work at that point for the first view.
+lcl_sendLOKDocumentBackground(pViewData);
+
 const Fraction newZoomX(nTilePixelWidth_ * TWIPS_PER_PIXEL, 
nTileTwipWidth_);
 const Fraction newZoomY(nTilePixelHeight_ * TWIPS_PER_PIXEL, 
nTileTwipHeight_);
 


[Libreoffice-bugs] [Bug 143813] Outline folding: copy, cut and paste do not work anymore

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

--- Comment #7 from hwtan  ---
It is not possible to use the functions with either the drop down menu
(edit-cut, edit-copy, and edit-paste) or the short-cut keys like ctrl-X,
ctrl-C, and ctrl-V.

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

[Libreoffice-bugs] [Bug 144042] FORMATTING: Direct formatting makes the spelling system underline wrongly non-English words

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

Fiable.biz  changed:

   What|Removed |Added

 CC||mongolie2006-freedesktop@ya
   ||hoo.fr

--- Comment #1 from Fiable.biz  ---
Created attachment 174843
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174843=edit
Same text with same style, plus direct formatting or not

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

[Libreoffice-bugs] [Bug 144041] "Edit points" tool is missing for custom shapes

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

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 144038] LO BASE numeric properties converted to locale format inside macro

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

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 144015] In Calc secondary X axis position is referring to primary Y axis

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

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 144013] When "Same content on first page" is unchecked, and there is a table on the page which spreads across two pages, the first page header content also goes to the second p

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

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 144320] Color filtering stops program after de-selecting color

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

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 144320] Color filtering stops program after de-selecting color

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

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

-- 
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-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144264

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 144264] all icons in toolbar, notebookbar, sidebar are blurred in macOS 11.5

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

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

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

[Libreoffice-bugs] [Bug 143621] Crash in: std::runtime_error::runtime_error(char const *) (VLOOKUP copying in thousands cells?)

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

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 143621] Crash in: std::runtime_error::runtime_error(char const *) (VLOOKUP copying in thousands cells?)

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

--- 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 142519] Language direction LTR/RTL is not working in Impress comment box

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

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 142519] Language direction LTR/RTL is not working in Impress comment box

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

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

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

[Libreoffice-bugs] [Bug 136220] Long fields lose its part on page end in some cases

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

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 136220] Long fields lose its part on page end in some cases

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

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

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

[Libreoffice-bugs] [Bug 140609] Libre Office Writer Recover Message

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

--- Comment #3 from QA Administrators  ---
Dear Harold Cheyney,

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 140452] Image anchored to Page misplaced after PDF export

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

--- Comment #4 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 139014] Heading Format & TOC carry preceding UNDELETEABLE period, sometimes a space also.

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

--- Comment #6 from QA Administrators  ---
Dear matthew.musial609,

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 136508] Drop down list is in black color in ' Tools -> Customize -> Toolbars' of Calc [Version 7.0.1.2]

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

--- Comment #7 from QA Administrators  ---
Dear Nukool Chompuparn,

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 97126] listbox in table control: read only property without effect

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

--- Comment #11 from QA Administrators  ---
Dear Paulo Martins,

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 64459] SVG: dashed line shown to fat/big

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

--- Comment #9 from QA Administrators  ---
Dear ilikebigbugs,

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 37161] FILESAVE RTF: Vertical cell merging in tables not exported correctly

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

--- Comment #24 from QA Administrators  ---
Dear Christopher M. Penalver,

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 127318] Writer: text in columns with Insert Page Before in paragraph starts in right instead of left column

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

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

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 119192] Text pasted from Impress to Writer switches CTL font to Western font in its style (see comment 5)

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

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

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 118179] FILESAVE XLSX: Basic code with accented letters from Excel does not work

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

--- Comment #4 from QA Administrators  ---
Dear Gabor Kelemen,

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 144346] New: FILESAVE Added Secondary Y Axis on charts and its label are missing when saved to MS Excel format.

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

Bug ID: 144346
   Summary: FILESAVE Added Secondary Y Axis on charts and its
label are missing when saved to MS Excel format.
   Product: LibreOffice
   Version: 7.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: toneldac...@gmail.com

Description:
When saving into MS Excel format, the secondary axis and its label that are
added to charts are missing. Saving into ODS format will include the added
secondary axis and label though.

Steps to Reproduce:
1. Add a Secondary axis and label to a chart.
2. Save to .xlsx format.
3. Open the .xlsx file.

Actual Results:
The secondary axis and the label will be missing in the saved .xlsx format.

Expected Results:
The added secondary axis and label must remain even after saving into a .xlsx
format.


Reproducible: Always


User Profile Reset: No



Additional Info:
Couldn't find a fix for this issue on the Help - About LibreOffice.

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

[Libreoffice-bugs] [Bug 144345] New: LibreOffice 7.2 AUTOINPUT scans only nearest clumped strings

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

Bug ID: 144345
   Summary: LibreOffice 7.2 AUTOINPUT scans only nearest clumped
strings
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gba...@gmail.com

Description:
When I type any text, autoinput usually offers similar strings written on
several cells on the same column even if there are blank cells between them.
But now at LO 7.2, it only offers the nearest similar strings if clumped
together (just like Microsoft Excel). 

Steps to Reproduce:
1. Cell A1 - type 
2. Cell A2 - type 
3. Cell A3 - type 
3. Cell A4 - type A ( is displayed as an option) then select option 
4. Cell A10 - type A (does not offer  as an option)

Actual Results:
After typing on cell A10, it does not offer a similar string found several
cells before it unless no blank cells exist.

Expected Results:
When typing A on cell A10, the string  should be displayed as an option.


Reproducible: Always


User Profile Reset: No



Additional Info:
AUTOINPUT (Help Menu)
Switches the AutoInput function on and off, which automatically completes
entries, based on other entries in the same column. The column is scanned up to
a maximum of 2000 cells or 200 different strings.

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

[Libreoffice-bugs] [Bug 143206] Libreoffice on plasma works really bad

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

Henrique SantAnna  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142943] Can't change paragraph styles by double-clicking a style on sidebar

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

Henrique SantAnna  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142943] Can't change paragraph styles by double-clicking a style on sidebar

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

Henrique SantAnna  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from Henrique SantAnna  ---
Yes, I'm using kvantum.

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

[Libreoffice-bugs] [Bug 144344] New: Incorrect result when editing cell value in Calc

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

Bug ID: 144344
   Summary: Incorrect result when editing cell value in Calc
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d.dutoit1...@hotmail.com

Created attachment 174842
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174842=edit
Combined screenshot illustrating the bug

Unusual bug when editing a field in Calc. The attachment shows two screenshots
combined into one image. The left side shows the starting situation; the right
side shows what happens when I edit the value "102.16" in the edit box by
selecting "2.16" with the mouse and overtyping it with "1.89". As can be seen,
the value in the cell becomes "102.89.161"

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

[Libreoffice-bugs] [Bug 105441] styles don't resize shape with "resize shape to fit text" until turned off by a different style (updated steps in Comment 7)

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

stragu  changed:

   What|Removed |Added

Summary|styles don't resize shape   |styles don't resize shape
   |with "resize shape to fit   |with "resize shape to fit
   |text"   |text" until turned off by a
   ||different style (updated
   ||steps in Comment 7)

--- Comment #8 from stragu  ---
Still (partially) reproducible in 7.2, but I will try to clarify what is going
in here.

First of all, note that in 7.2, the Default Drawing Style has the following
options on by default in the "Text" tab:

- Fit height to text
- Word wrap text in shape
- Resize shape to fit text

When creating a rectangle and adding some text to it, it has the style "Default
Drawing Style". (You can confirm that with right-click on the shape > Edit
Style...)

So, to start with, it seems that a rectangle with some text in it doesn't
follow the default style's options by resizing it to the text.

(The issue with "Fit width to text" seems to be that it is ignored entirely in
all cases, which should probably be a separate bug. I am ignoring it here, and
only focusing on "Resize shape to fit text", to keep things as simple as
possible. It needs further investigating.)

Updated steps for LO 7.2.0.4:

=== Steps to Reproduce ===

0.  Restore everything to factory settings
1.  Open LibreOffice Draw
2.  Start with a new document
3.  Draw two rectangles on the page
4.  Add text to both rectangles, e.g. "apply style" for the first one, and
"modify style" for the second one. Notice that the rectangle does not adapt to
the size of the text (even though that is the default in the style).
5.  Open "Styles" sidebar
6.  Create two styles:
   a)  Right-click on "Default Drawing Style" and create New style named
"resize on". Click "OK" (it is a copy of the original).
   b)  Right-click on "Default Drawing Style" and create New style named
"resize off". Untick "Resize shape to fit text". Click "OK".
7.  Select first shape on page
8.  Double-click on "resize on" style: nothing happens, it still doesn't shrink
to the size of the text.
9.  Double-click on "resize off" style: nothing happens, as expected. However:
10. Double-click on "resize on" once more: now, the shape shrinks to the text.
The option needed to be off in the style applied first, before being taken into
account when turned on!
11. Now onto the _modification_ of the default style: modify the Default
Drawing Style by unticking "Resize shape to fit text", click "OK". The second
shape does not change, as expected.
12. Modify the Default Drawing Style again by turning "Resize shape to fit
text" back on, click "OK". The second shape still does not shrink to the text
size.
13. However, if you apply the style "resize off" to that second shape, and then
turn on "Resize shape to fit text" in the "resize off" style, you'll see it
does shrink to the size of the text.

=== Conclusion ===

So, trying to summarise in one sentence: the style setting "resize shape to fit
text" is not taken into account _until_ it is turned off by applying a
_separate style_ that has it off.

I hope I was able to summarise accurately in this comment...

Version used:

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

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

[Libreoffice-bugs] [Bug 136327] [META] XLSX shape related issues

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

Bug 144242 Summary: FILESAVE XLSX Line objects incorrectly saved after creation
https://bugs.documentfoundation.org/show_bug.cgi?id=144242

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142914] FILE SAVE XLSX Line shapes rotation is incorrect in range 45 - 135 degrees

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

--- Comment #8 from Regina Henschel  ---
This is fixed with
https://git.libreoffice.org/core/commit/84d6d704682a4d0e037a28895356b073e4f992a5
from bug 144242.

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

[Libreoffice-bugs] [Bug 100373] [META] Style issues in Draw/Impress

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

Bug 126625 Summary: In Impress and Draw, the option "Resize shape to fit text" 
when set in default style is ignored by new shapes
https://bugs.documentfoundation.org/show_bug.cgi?id=126625

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 126625] In Impress and Draw, the option "Resize shape to fit text" when set in default style is ignored by new shapes

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

stragu  changed:

   What|Removed |Added

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

--- Comment #2 from stragu  ---
I believe this is a duplicate of Bug 105441.

Using the per-object "Format > Object and Shape > Text Attributes... > Text >
Resize shape to fit text" works correctly, but using the option in the style
does not work.

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

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

[Libreoffice-bugs] [Bug 105441] styles don't resize shape with "resize shape to fit text"

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

stragu  changed:

   What|Removed |Added

 CC||jult...@hotmail.com

--- Comment #7 from stragu  ---
*** Bug 126625 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 144337] Unable to send combined correspondence (send emails) using Writer LO Fresh 7.2.0

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

--- Comment #2 from Luciano Ferrer  ---
Thanks I did it now, and the same happens...

I configured the email settings at Options, Writer, started the combine email
wizard, added an .ods file, selected the detination email column, added some
fields in the text... and hit send, selected TO emails, added som subject...

It freezes at 0 of X (in this case was just 4, some emails I own)

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

[Libreoffice-bugs] [Bug 144063] LibreOffice shows Shift-Ecs assigned to "Search Command"... Doesn't work

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

--- Comment #9 from rij...@protonmail.com ---
I made a mistake when inserting the first image - it was just the text.

How I see the expected behavior of this window.
--- 
Selecting the Libreoffice item.| ---> |I'll change Shortcut Key for all LO |
---
---    
Selecting the Writer item.| ---> |I'll change Shortcut Key just for Writer|
---   

I came to this conclusion when I saw "command+c" Shortcut Key inside both
(Libreoffice and Writer).

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

[Libreoffice-bugs] [Bug 144326] Calc - Embedded Images not loading in 7.2.0.4 for documents created in older versions

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

--- Comment #11 from Uwe Auer  ---
This seems to be an issue of the "snap" version.

Repro in (snap version on Ubuntu 20.04)

Version: 7.2.0.4 / LibreOffice Community
Build ID: fa0a9af5681a0acc7909a705f92c1ada8a658552
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Calc: threaded

No repro (using ppa:libreoffice/ppa on Ubuntu 20.04)

Version: 7.1.6.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: de-DE (de_DE.UTF-8); UI: en-US
Ubuntu package version: 1:7.1.6~rc2-0ubuntu0.20.04.1~lo1
Calc: threaded

No repro  (TDF packages on OpenSUSE Leap 15.3)

Version: 7.2.0.4 / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 144063] LibreOffice shows Shift-Ecs assigned to "Search Command"... Doesn't work

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

--- Comment #8 from rij...@protonmail.com ---
Created attachment 174841
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174841=edit
Shortcut_just_for_Writer

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

[Libreoffice-bugs] [Bug 144063] LibreOffice shows Shift-Ecs assigned to "Search Command"... Doesn't work

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

--- Comment #7 from rij...@protonmail.com ---
Created attachment 174840
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174840=edit
Shortcut_for_all_Libreoffice

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

[Libreoffice-bugs] [Bug 132325] Basic: Any keyword is not documented

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

stragu  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #6 from stragu  ---
Verified as fixed in:

https://help.libreoffice.org/7.2/en-US/text/sbasic/shared/01020100.html?DbPAR=BASIC#bm_id3149346

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

[Libreoffice-bugs] [Bug 54342] My formulae were converted to "Object X" and I cannot convert them back

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

--- Comment #48 from abadillo2...@gmail.com ---
One of my formulas crashed libreoffice after trying to copy and paste it
several times; this caused all of the formulas above it to change, including
the one i was tying to copy, after recovering the document. The ones bellow it
did not change.

Version: 7.1.5.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 6; OS: Linux 5.13; UI render: default; VCL: kf5
Locale: es-VE (en_AU.UTF-8); UI: en-US
7.1.5-2
Calc: threaded

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

[Libreoffice-commits] core.git: external/firebird

2021-09-06 Thread Mike Kaganski (via logerrit)
 external/firebird/firebird-cygwin-msvc.patch |   46 ---
 1 file changed, 28 insertions(+), 18 deletions(-)

New commits:
commit c7b5e6566d9b24a0a996c739a945004d9aadee2f
Author: Mike Kaganski 
AuthorDate: Mon Sep 6 22:10:58 2021 +0200
Commit: Mike Kaganski 
CommitDate: Mon Sep 6 23:56:50 2021 +0200

tdf#144340: fix FB configure on Windows

./configure runs on Windows, and sets value of FB_ALIGNMENT,
a define that affects the layout of FB's sort memory pool.

Trying to include  fails on Windows; the test in
./configure considers error value (equal to 2) as the value of
the alignment (which should be 4 or 8 depending on arch). This
makes the memory misaligned, chunks overlapping and re-written
during the sort, memory corrupt, and so on.

Removing the include (which is documented in a commit adding a
similar include [1] to be needed for m68k) fixes detection.

Additionally this cleans up the code added to config.h.in from
autoconfig_msvc.h, because the former is auto-generated during
configure, and the values get re-written in all occurrences of
respective defines anyway.

[1] 
https://github.com/FirebirdSQL/firebird/commit/7ba46163c74211ce4bf1051ee9998db58cb2f396

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

diff --git a/external/firebird/firebird-cygwin-msvc.patch 
b/external/firebird/firebird-cygwin-msvc.patch
index 9536403886c6..7f4332633316 100644
--- a/external/firebird/firebird-cygwin-msvc.patch
+++ b/external/firebird/firebird-cygwin-msvc.patch
@@ -27,8 +27,34 @@
 
  grep ODS_VERSION $OdsH | grep -v ENCODE_ODS >$Mini
 
+--- configure  2016-07-07 15:57:04.538983200 +0200
 configure  2016-07-13 11:31:18.132820200 +0200
+@@ -21473,13 +21473,12 @@
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+-#include 
+ main () {
+   struct s {
+ char a;
+-union { long long x; sem_t y; } b;
++long long b;
+   };
+   exit((int)&((struct s*)1024)->b - 1024);
+ }
+ _ACEOF
+ if ac_fn_c_try_run "$LINENO"; then :
 --- builds/make.new/config/config.h.in 2016-07-07 15:55:55.693112800 +0200
 +++ builds/make.new/config/config.h.in 2016-07-08 13:38:49.994986400 +0200
+@@ -211,7 +211,7 @@
+ #undef HAVE_GETMNTENT
+ 
+ /* Define to 1 if you have the `getpagesize' function. */
+-#undef HAVE_GETPAGESIZE
++#define HAVE_GETPAGESIZE 1
+ 
+ /* Define to 1 if you have the `getrlimit' function. */
+ #undef HAVE_GETRLIMIT
 @@ -396,7 +396,7 @@
  #undef HAVE_SIGSET
  
@@ -56,7 +82,7 @@
  
  /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
 significant byte first (like Motorola and SPARC, unlike Intel). */
-@@ -703,3 +703,36 @@
+@@ -703,3 +703,20 @@
  #ifndef HAVE_SOCKLEN_T
  typedef int socklen_t;
  #endif
@@ -66,28 +92,12 @@
 +#define WIN32_LEAN_AND_MEAN   // Exclude rarely-used stuff from 
Windows headers
 +#endif
 +/* target architecture */
-+#if defined(_M_IX86)
-+/* sizeof(void *) */
-+#define SIZEOF_VOID_P 4
-+/* sizeof(size_t) */
-+#define SIZEOF_SIZE_T 4
-+/* alignment of long */
-+#define FB_ALIGNMENT 4
-+#elif defined(_M_AMD64)
++#if defined(_M_AMD64)
 +#define AMD64
-+/* sizeof(void *) */
-+#define SIZEOF_VOID_P 8
-+/* sizeof(size_t) */
-+#define SIZEOF_SIZE_T 8
-+/* alignment of long */
-+#define FB_ALIGNMENT 8
-+#else
-+#error unknown target platform
 +#endif
 +
 +#define HAVE_IO_H
 +#define HAVE_CTIME_S
-+#define HAVE_GETPAGESIZE
 +
 +#if defined _MSC_VER
 +#define isnan _isnan


[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - sw/inc sw/qa sw/source writerfilter/source

2021-09-06 Thread Attila Szűcs (via logerrit)
 sw/inc/unotextbodyhf.hxx |
2 
 sw/inc/unotextrange.hxx  |
3 
 sw/qa/extras/ooxmlexport/data/tdf143384_tableInFoot_negativeMargins.docx 
|binary
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx   |
7 +
 sw/source/core/unocore/unoframe.cxx  |
8 +
 sw/source/core/unocore/unoobj2.cxx   |   
15 ++
 sw/source/core/unocore/unotext.cxx   |   
56 +++---
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|
8 +
 writerfilter/source/dmapper/PropertyIds.cxx  |
1 
 writerfilter/source/dmapper/PropertyIds.hxx  |
1 
 10 files changed, 83 insertions(+), 18 deletions(-)

New commits:
commit 7ec91bcb7d248c38522375c31f2b6f640b1b84e2
Author: Attila Szűcs 
AuthorDate: Tue Jul 27 11:45:58 2021 +0200
Commit: Xisco Fauli 
CommitDate: Mon Sep 6 23:54:47 2021 +0200

tdf#143384 DOCX import: fix SAXException at header with table

Regression from commit d656191ec308d4280b93c7169372e543a255d108
"tdf#119952 DOCX import: fix negative page margins".

Add SwXHeadFootText::CreateTextCursor(bool bIgnoreTables = false)
(modeled after SwXBodyText::CreateTextCursor) to create text cursor
for copying the header/footer also started with table during
fly frame creation in convertoToTextFrame().

Note: add hidden property PROP_CURSOR_NOT_IGNORE_TABLES_IN_HF
to use the new feature in domainmapper (followed
commit af4e5ee0f93c1ff442d08caed5c875f2b2c1fd43
"tdf#97128 DOCX import: fix frame direction").

Co-authored-by: Tibor Nagy (NISZ)

Change-Id: I96e2cf2dddcecd146c53c12d7fdb44fc4d90fa0d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119549
Tested-by: László Németh 
Reviewed-by: László Németh 
(cherry picked from commit c1ad429d925855c1baacbdeca1ef42f4486eb9c2)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120985
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sw/inc/unotextbodyhf.hxx b/sw/inc/unotextbodyhf.hxx
index fbccc982ef04..99887c6beb5c 100644
--- a/sw/inc/unotextbodyhf.hxx
+++ b/sw/inc/unotextbodyhf.hxx
@@ -115,6 +115,8 @@ public:
 static css::uno::Reference< css::text::XText >
 CreateXHeadFootText(SwFrameFormat & rHeadFootFormat, const bool 
bIsHeader);
 
+css::uno::Reference CreateTextCursor(const bool 
bIgnoreTables = false);
+
 // XInterface
 virtual css::uno::Any SAL_CALL queryInterface(
 const css::uno::Type& rType) override;
diff --git a/sw/inc/unotextrange.hxx b/sw/inc/unotextrange.hxx
index f3ed06fb4a06..4d8ed2df2c06 100644
--- a/sw/inc/unotextrange.hxx
+++ b/sw/inc/unotextrange.hxx
@@ -57,7 +57,8 @@ namespace sw {
 
 enum class TextRangeMode {
 RequireTextNode,
-AllowNonTextNode
+AllowNonTextNode,
+AllowTableNode
 };
 
 void DeepCopyPaM(SwPaM const & rSource, SwPaM & rTarget);
diff --git 
a/sw/qa/extras/ooxmlexport/data/tdf143384_tableInFoot_negativeMargins.docx 
b/sw/qa/extras/ooxmlexport/data/tdf143384_tableInFoot_negativeMargins.docx
new file mode 100644
index ..918c1029fb4a
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf143384_tableInFoot_negativeMargins.docx 
differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index 431d5d71753d..17f05d1dcd16 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -1599,6 +1599,13 @@ DECLARE_OOXMLEXPORT_TEST(testTdf119952_negativeMargins, 
"tdf119952_negativeMargi
 CPPUNIT_ASSERT_EQUAL(OUString("        "), 
parseDump("/root/page[3]/header/txt/anchored/fly"));
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf143384_tableInFoot_negativeMargins, 
"tdf143384_tableInFoot_negativeMargins.docx")
+{
+// There should be no crash during loading of the document
+// so, let's check just how much pages we have
+CPPUNIT_ASSERT_EQUAL(1, getPages());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/unocore/unoframe.cxx 
b/sw/source/core/unocore/unoframe.cxx
index a430d92f5b7f..8fd930322a38 100644
--- a/sw/source/core/unocore/unoframe.cxx
+++ b/sw/source/core/unocore/unoframe.cxx
@@ -1417,7 +1417,13 @@ void SwXFrame::setPropertyValue(const OUString& 
rPropertyName, const ::uno::Any&
 const ::SfxItemPropertyMapEntry* pEntry = 
m_pPropSet->getPropertyMap().getByName(rPropertyName);
 
 if (!pEntry)
-throw beans::UnknownPropertyException( "Unknown property: " + 
rPropertyName, static_cast < cppu::OWeakObject * > ( this ) );
+{
+// Hack to skip the dummy CursorNotIgnoreTables property
+if 

[Libreoffice-bugs] [Bug 144343] New: Filternavigator shows up every second filtering

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

Bug ID: 144343
   Summary: Filternavigator shows up every second filtering
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ze...@web.de

Description:
This is a minor problem:
I have a form with several columns. When I want to filter the data according to
a specific value of a column I click into this column and the window of the
filter navigator pops up. I select the value from a drop-down list. This works
fine.

When I want to filter again with another value the window of the navigator does
not show up, but filtering works fine.

When filtering with another value everything works as expected, the filter
navigator appears again and so on. 

This behavior exists since release 6.x. I do not remember the exact version.

Btw, the position of the window cannot be changed since version 7.1.5. It is
positioned always on the left side of the screen. When I move it to another
place, it shows up on the left side again when I call the filter again.

Steps to Reproduce:
1. see Description
2.
3.

Actual Results:
The filter navigator shows up every second filter action

Expected Results:
The filter navigator shows up every time and the window remembers its last
position


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.5.2 (x64) / LibreOffice Community
Build ID: 85f04e9f809797b8199d13c421bd8a2b025d52b5
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

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

[Libreoffice-bugs] [Bug 144342] Writer makes a .docx table take more space than in Word

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

--- Comment #4 from Mike Kaganski  ---
Created attachment 174839
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174839=edit
Word 2016 opening the file in 3 pages

Can't repro the "When viewing a .docx file with Microsoft Word, the document is
2 pages total" part using Word 2016.

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

[Libreoffice-bugs] [Bug 144342] Writer makes a .docx table take more space than in Word

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

--- Comment #3 from happytoas...@gmail.com ---
Created attachment 174838
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174838=edit
word file

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

[Libreoffice-bugs] [Bug 144296] Under-engineered and inconsistent overflow/extension direction choice incl. with cell edit mode

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

--- Comment #4 from Eyal Rozenberg  ---
Created attachment 174837
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174837=edit
Screencast exemplifying current behavior (following the four parts)

Enjoy this near-feature-length video...

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

[Libreoffice-bugs] [Bug 144342] Writer makes a .docx table take more space than in Word

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

--- Comment #2 from happytoas...@gmail.com ---
Created attachment 174836
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174836=edit
How it  looks on Writer

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

[Libreoffice-bugs] [Bug 144342] Writer makes a .docx table take more space than in Word

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

--- Comment #1 from happytoas...@gmail.com ---
Created attachment 174835
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174835=edit
How it looks on Word

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

[Libreoffice-bugs] [Bug 144342] New: Writer makes a .docx table take more space than in Word

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

Bug ID: 144342
   Summary: Writer makes a .docx  table take more space than in
Word
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: happytoas...@gmail.com

Description:
When viewing a .docx file with Microsoft Word, the document is 2 pages total.
When I try with Writer, the document goes to 3 pages, with what I'm guessing is
a problem with the merge table cells.



Steps to Reproduce:
1.Open file with Writer
2.See that the merged cells have a slight grey line.
3.Notice that the table takes one extra line compared if you were to open it
with Microsoft Word.

Actual Results:
A 3 page document with the last item on the table going over to the second
page.

Expected Results:
A 2 page document with the table not appearing on the second page.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.2.0.4 (x86) / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 12; OS: Windows 10.0 Build 19043; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

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

2021-09-06 Thread Julien Nabet (via logerrit)
 dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 970883a85ad1d714683a1d98fb45efc89cbdeb3b
Author: Julien Nabet 
AuthorDate: Mon Sep 6 21:45:42 2021 +0200
Commit: Julien Nabet 
CommitDate: Mon Sep 6 22:51:37 2021 +0200

tdf#140951: fix crash on Base when accessibility used

See bt here:
https://bugs.documentfoundation.org/attachment.cgi?id=174832

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

diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx 
b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx
index 3857e5db9f64..f008ce03a2ba 100644
--- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx
+++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx
@@ -2105,6 +2105,8 @@ OUString OSelectionBrowseBox::GetCellText(sal_Int32 nRow, 
sal_uInt16 nColId) con
 {
 
 sal_uInt16 nPos = GetColumnPos(nColId);
+if ( nPos == 0 || nPos == BROWSER_INVALIDID || nPos > getFields().size() )
+return OUString();
 
 OTableFieldDescRef pEntry = getFields()[nPos-1];
 OSL_ENSURE(pEntry != nullptr, "OSelectionBrowseBox::GetCellText : invalid 
column id, prepare for GPF ... ");
@@ -2689,7 +2691,7 @@ void 
OSelectionBrowseBox::setFunctionCell(OTableFieldDescRef const & _pEntry)
 Reference< XAccessible > OSelectionBrowseBox::CreateAccessibleCell( sal_Int32 
_nRow, sal_uInt16 _nColumnPos )
 {
 OTableFieldDescRef pEntry;
-if(getFields().size() > o3tl::make_unsigned(_nColumnPos - 1))
+if ( _nColumnPos != 0 && _nColumnPos != BROWSER_INVALIDID && _nColumnPos 
<= getFields().size() )
 pEntry = getFields()[_nColumnPos - 1];
 
 if ( _nRow == BROW_VIS_ROW && pEntry.is() )


[Libreoffice-bugs] [Bug 144296] Under-engineered and inconsistent overflow/extension direction choice incl. with cell edit mode

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

--- Comment #3 from Eyal Rozenberg  ---
And I forgot:

Main Problem 2


On an LTR sheet, in a RTL cell, when typing in Hebrew text in cell edit mode -
the text extends due right... but only until the cell boundaries, and
characters simply disappear, with only the latest ones visible.

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

[Libreoffice-bugs] [Bug 144325] [CRASH REPORT] Cannot enable report to send to TDF

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

--- Comment #7 from Julien Nabet  ---
(In reply to Olivier Hallot from comment #5)
> Following  the advise from @Opaque, KDE crash manager (drkonqi) is capturing
> the crash before LibreOffice Crash manager.

So disabling it temporarily (at least until the next LO crash) could be useful.

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

[Libreoffice-bugs] [Bug 144325] [CRASH REPORT] Cannot enable report to send to TDF

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

--- Comment #6 from Julien Nabet  ---
(In reply to Olivier Hallot from comment #4)
> (In reply to Xisco Faulí from comment #1)
> > Hi Olivier,
> > it should definitely work on Windows. On linux, it depends, did you download
> > the installer from the TDF page or do you use a repository ?
> 
> I always use TDF deb packages.

Oups! deb packages are more for maintainers of repositories. Indeed, they check
all required dependencies.
I would have proposed LO ppa but it doesn't propose 7.2.0 and I suppose you
need it to write documentation on new features.

The next way would be to build sources, I know it takes some time (but you can
do something else when it builds), depending on your machine, but perhaps it
could worth it.

Anyway if you want to stick to deb from TDF, just for the test, could you
launch LO from terminal and before launching it, type this
export SAL_USE_VCLPLUGIN=gen
?

The goal is to know if it happens only with kf5 rendering or not.

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

[Libreoffice-bugs] [Bug 144325] [CRASH REPORT] Cannot enable report to send to TDF

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

--- Comment #5 from Olivier Hallot  ---
Following  the advise from @Opaque, KDE crash manager (drkonqi) is capturing
the crash before LibreOffice Crash manager.

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

[Libreoffice-bugs] [Bug 106057] General input/output error loading pdf file

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

--- Comment #7 from esni...@acm.org ---
I was able to open the test.pdf file originally reported (using LibreOffice
7.2.0.4 on Mac).  There is an error message "This document has an invalid
signature." and Show Signatures shows four signatures that can't be found.

I am here because I got the same message with one of my own PDF files.  I don't
want to upload it here because it is 44MB and I need to redact it before
sharing.  It am less concerned that LibreOffice can't open it than I am that
the message is "General Error.  General input/output error." and I cannot
figure out how to get more details.  Nothing is written to stderr/stdout. 
There is nothing in the system log.

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

[Libreoffice-bugs] [Bug 144326] Calc - Embedded Images not loading in 7.2.0.4 for documents created in older versions

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

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #10 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this
with gtk3, gen or kf5 renderings.
Could you give a try at https://wiki.documentfoundation.org/QA/FirstSteps ?

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

[Libreoffice-bugs] [Bug 144340] A query against an embedded FB database fails, and then crashed program on close on Windows

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

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

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

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

[Libreoffice-bugs] [Bug 144337] Unable to send combined correspondence (send emails) using Writer LO Fresh 7.2.0

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Please test with a clean profile, Menu/Help/Restart in Safe Mode

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

[Libreoffice-bugs] [Bug 144326] Calc - Embedded Images not loading in 7.2.0.4 for documents created in older versions

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

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #9 from m.a.riosv  ---
maybe it's an only Linux issue.

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

[Libreoffice-bugs] [Bug 123632] Accessibility: Writer crashes while browsing the images if Orca is on

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

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #7 from Julien Nabet  ---
Let's put this one to FIXED since there's no feedback after the patch.

Of course, don't hesitate to reopen this tracker if you can still reproduce
this.

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

[Libreoffice-bugs] [Bug 144341] New: Unable to set alignment for hyperlinks in text boxes

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

Bug ID: 144341
   Summary: Unable to set alignment for hyperlinks in text boxes
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Created attachment 174833
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174833=edit
Sample ODP file

In Impress, if you add a Textbox and inside of it you create a Hyperlink, the
alignment of the Hyperlink is changed to "left align" and cannot be modified.

See the attached example. The text in the Textbox is aligned to the right. But
if I insert a hyperlink, the link will be aligned to the left and it cannot be
changed with any formatting method (sidebar, toolbar, right-click and then
"Paragraph, etc..).

SYSTEM INFO:
Version: 7.2.0.4 / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 16; OS: Linux 5.11; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 144296] Under-engineered and inconsistent overflow/extension direction choice incl. with cell edit mode

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

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|Under-engineered and|Under-engineered and
   |inconsistent cell edit mode |inconsistent
   |overflow direction with RTL |overflow/extension
   |text|direction choice incl. with
   ||cell edit mode

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

[Libreoffice-bugs] [Bug 144340] A query against an embedded FB database fails, and then crashed program on close on Windows

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

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: helpcontent2

2021-09-06 Thread Andrea Gelmini (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e83f5c04c4689f5812098e248999e7ad4e7dcbf0
Author: Andrea Gelmini 
AuthorDate: Mon Sep 6 21:50:28 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Mon Sep 6 21:50:28 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to f62fb28bc3aad654de660408e9215cd66abb3e5b
  - Fix typo

Change-Id: I59548caf3c307d7ff95354f9d7f664112af23b21
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121736
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/helpcontent2 b/helpcontent2
index 28b4c299d1d8..f62fb28bc3aa 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 28b4c299d1d89b814502c9da56bf828b8808ceb0
+Subproject commit f62fb28bc3aad654de660408e9215cd66abb3e5b


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

2021-09-06 Thread Andrea Gelmini (via logerrit)
 source/text/sbasic/guide/calc_borders.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f62fb28bc3aad654de660408e9215cd66abb3e5b
Author: Andrea Gelmini 
AuthorDate: Mon Sep 6 21:46:56 2021 +0200
Commit: Julien Nabet 
CommitDate: Mon Sep 6 21:50:27 2021 +0200

Fix typo

Change-Id: I59548caf3c307d7ff95354f9d7f664112af23b21
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/121736
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/source/text/sbasic/guide/calc_borders.xhp 
b/source/text/sbasic/guide/calc_borders.xhp
index 6ca63b619..7ab690fbe 100644
--- a/source/text/sbasic/guide/calc_borders.xhp
+++ b/source/text/sbasic/guide/calc_borders.xhp
@@ -102,7 +102,7 @@
   
 Line Styles
   
-  Line styles are 
defined as integer contants. The table below lists the constants for the line 
styles available in Format - Cells - Borders:  
+  Line styles are 
defined as integer constants. The table below lists the constants for the line 
styles available in Format - Cells - Borders:  
   




[Libreoffice-bugs] [Bug 139340] Crash when opening Table or Query with graphic Editor

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

Julien Nabet  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #12 from Julien Nabet  ---
Sorry I finally found how to reproduce this on Windows with master sources
updated some days ago and debug mode.
I've just submitted a patch for tdf#140951

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

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - solenv/flatpak-manifest.in

2021-09-06 Thread Stephan Bergmann (via logerrit)
 solenv/flatpak-manifest.in |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit a6d9abd6ab554a7684f5543c3b624fc3aaac777d
Author: Stephan Bergmann 
AuthorDate: Mon Sep 6 11:42:59 2021 +0200
Commit: Xisco Fauli 
CommitDate: Mon Sep 6 21:48:00 2021 +0200

Adapt solenv/flatpak-manifest.in to recent download.lst changes

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

diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index 4167735133f7..75b843729a2e 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -285,11 +285,11 @@
 "dest-filename": "libfreehand-0.1.2.tar.xz"
 },
 {
-"url": 
"https://dev-www.libreoffice.org/src/language-subtag-registry-2021-03-05.tar.bz2;,
-"sha256": 
"ce80e8face06bf2ada363e0c159e3f990c4116fdae9232ca43e6369aa82bf16a",
+"url": 
"https://dev-www.libreoffice.org/src/language-subtag-registry-2021-08-06.tar.bz2;,
+"sha256": 
"08452d3997c78e21f2d81e31409dc46557707be6dc1df3129674019659e5ff9b",
 "type": "file",
 "dest": "external/tarballs",
-"dest-filename": 
"language-subtag-registry-2021-03-05.tar.bz2"
+"dest-filename": 
"language-subtag-registry-2021-08-06.tar.bz2"
 },
 {
 "url": 
"https://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2;,


[Libreoffice-bugs] [Bug 140951] Base crashes as soon as I start an 'Abfrage' (Windows)

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

Julien Nabet  changed:

   What|Removed |Added

 Status|NEEDINFO|ASSIGNED
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |

--- Comment #15 from Julien Nabet  ---
Let's try with:
https://gerrit.libreoffice.org/c/core/+/121735

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

[Libreoffice-bugs] [Bug 140951] Base crashes as soon as I start an 'Abfrage' (Windows)

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

--- Comment #14 from Julien Nabet  ---
Created attachment 174832
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174832=edit
bt with debug symbols

On Win10 with master sources updated some days ago I could reproduce this.

I had to install and enable NVDA to trigger accessibility part.

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

[Libreoffice-bugs] [Bug 144340] New: A query against an embedded FB database fails, and then crashed program on close on Windows

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

Bug ID: 144340
   Summary: A query against an embedded FB database fails, and
then crashed program on close on Windows
   Product: LibreOffice
   Version: 7.2.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 174831
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174831=edit
A sample embedded Firebird DB with a query

The attached embedded Firebird database has a single table "ВОРОТА", and a
single query "Query1":

  SELECT DISTINCT "ТипВорот" FROM "ВОРОТА"

Trying to run the query on Windows results in an error:

> The data content could not be loaded.
> 
> firebird_sdbc error:
> *Unrecognized C++ exception
> caused by
> 'isc_dsql_execute'

Closing the program after that looks like OK, but upon the next launch, a crash
reported starts, informing about a silent crash at close time. (In dbgutil
master build, the crash is not silent.)

Tested with Version: 7.2.1.1 (x64) / LibreOffice Community
Build ID: 3cfc32d9754d2d239bd8ce2941029c12873010c1
CPU threads: 12; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 144339] LOCALHELP] Add page for Protect Fields and Protect Bookmarks

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

Olivier Hallot  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 133197] Date format of field not saved

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

Dieter  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #8 from Dieter  ---
(In reply to Alexander Polkhovskiy from comment #7)
> Can anyone else test?

ogb1966, could you please retest with an actual version of LO?
=> NEEDINFO

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

[Libreoffice-bugs] [Bug 120979] File statistics: wrong number of lines

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

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

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 74d35e143d557a7e65c4443f5b80cb9d406b1fa1
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

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

[Libreoffice-bugs] [Bug 120294] "Combine single line paragraphs" autocorrect option does not work

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

Dieter  changed:

   What|Removed |Added

Summary|"Combine single line|"Combine single line
   |paragraphs" autocorrect |paragraphs" autocorrect
   |option does not work in |option does not work
   |paragraph jump with  |

--- Comment #11 from Dieter  ---
Behaviour ist still the same in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 74d35e143d557a7e65c4443f5b80cb9d406b1fa1
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

LO help [1] says, that you have to apply the default paragraph style. as far as
I can the default PS is not available in style menu, but in the paragraph tab
of the sidebar

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

[Libreoffice-bugs] [Bug 140265] Emoji selector takes too long to load and respond

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #5 from V Stuart Foote  ---
Can not confirm, loads on Windows (which now have a correct path as for bug
105689) are immediate.  

The widget is using os/DE font mapping, i.e. Segoe Emoji, for the toolbar split
button and grid.  But each grid populates immediately, with fall back to
EmojiOne Color as needed.

Actual pick and placement onto document canvas is the expected EmojiOne Color
(in a b/w glyph outline as expected).

Text run for placed Emojis can be selected and the font toggled to MS Segoe
Emoji, which is now rendering to canvas as color glyph--but think the color
glyph support is Windows 10 only.

Anyhow, great to have the path fixed for Windows builds--maybe it can come out
of 'experimental' finally?

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

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

[Libreoffice-bugs] [Bug 133197] Date format of field not saved

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

--- Comment #7 from Alexander Polkhovskiy  ---
NOT reproduced in
Version: 7.2.1.1 (x64) / LibreOffice Community
Build ID: 3cfc32d9754d2d239bd8ce2941029c12873010c1
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL
Can anyone else test?

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

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

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

Olivier Hallot  changed:

   What|Removed |Added

 Depends on||144339


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144339
[Bug 144339] LOCALHELP] Add page for Protect Fields and Protect Bookmarks
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144339] New: LOCALHELP] Add page for Protect Fields and Protect Bookmarks

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

Bug ID: 144339
   Summary: LOCALHELP] Add page for Protect Fields and Protect
Bookmarks
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: olivier.hal...@libreoffice.org
CC: olivier.hal...@libreoffice.org
Blocks: 80430

These 2 command were introduced recently and have no Help page

references

https://gerrit.libreoffice.org/c/core/+/88586/1
https://gerrit.libreoffice.org/c/core/+/88585/2

and 

bug#130648


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80430
[Bug 80430] [META] Documentation gap for new features
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144319] Cannot load Formula-14 from ODT with LibreOffice 7.2.0, shown as OLE

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

Noel Grandin  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: vcl/headless vcl/jsdialog vcl/qt5 vcl/source vcl/unx

2021-09-06 Thread Noel Grandin (via logerrit)
 vcl/headless/svpbmp.cxx |3 ---
 vcl/headless/svpgdi.cxx |   12 +++-
 vcl/jsdialog/jsdialogbuilder.cxx|1 -
 vcl/qt5/Qt5SvpGraphics.cxx  |3 +--
 vcl/source/app/svdata.cxx   |3 +--
 vcl/source/bitmap/dibtools.cxx  |7 +--
 vcl/source/control/DropdownBox.cxx  |1 -
 vcl/source/control/button.cxx   |4 ++--
 vcl/source/control/quickselectionengine.cxx |3 ---
 vcl/source/filter/eps/eps.cxx   |   11 ---
 vcl/source/filter/idxf/dxfgrprd.cxx |1 -
 vcl/source/filter/idxf/dxfvec.cxx   |8 +++-
 vcl/source/filter/imet/ios2met.cxx  |6 --
 vcl/source/font/font.cxx|6 +++---
 vcl/source/gdi/gradient.cxx |3 +--
 vcl/source/gdi/graphictools.cxx |   11 ++-
 vcl/source/gdi/hatch.cxx|2 +-
 vcl/source/gdi/lineinfo.cxx |2 +-
 vcl/source/gdi/mapmod.cxx   |2 +-
 vcl/source/gdi/region.cxx   |   25 +
 vcl/source/gdi/salgdilayout.cxx |1 -
 vcl/source/gdi/sallayout.cxx|3 +--
 vcl/source/gdi/vectorgraphicdata.cxx|6 --
 vcl/source/graphic/GraphicObject2.cxx   |2 +-
 vcl/source/graphic/UnoGraphic.cxx   |3 +--
 vcl/source/helper/canvasbitmap.cxx  |4 
 vcl/source/helper/threadex.cxx  |4 +---
 vcl/source/image/ImplImage.cxx  |1 -
 vcl/source/treelist/svlbitm.cxx |6 ++
 vcl/source/uitest/logger.cxx|3 +--
 vcl/source/window/OptionalBox.cxx   |1 -
 vcl/source/window/menu.cxx  |7 ++-
 vcl/source/window/printdlg.cxx  |4 
 vcl/source/window/tabpage.cxx   |1 -
 vcl/unx/generic/gdi/cairo_xlib_cairo.cxx|3 ---
 vcl/unx/generic/gdi/gdiimpl.cxx |3 +--
 vcl/unx/generic/gdi/salgdi.cxx  |1 -
 vcl/unx/gtk3/gtkdata.cxx|2 --
 vcl/unx/gtk3/gtkinst.cxx|3 +--
 vcl/unx/gtk3/gtksys.cxx |2 +-
 vcl/unx/gtk3/salnativewidgets-gtk.cxx   |3 +--
 41 files changed, 38 insertions(+), 139 deletions(-)

New commits:
commit 81f6842a7d03f5b93ddcece64ef252cc9adf4350
Author: Noel Grandin 
AuthorDate: Sun Sep 5 15:54:52 2021 +0200
Commit: Noel Grandin 
CommitDate: Mon Sep 6 20:53:01 2021 +0200

clang-tidy:readability-redundant-member-init

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

diff --git a/vcl/headless/svpbmp.cxx b/vcl/headless/svpbmp.cxx
index 29b85a1acf91..167a5165a893 100644
--- a/vcl/headless/svpbmp.cxx
+++ b/vcl/headless/svpbmp.cxx
@@ -35,9 +35,6 @@
 using namespace basegfx;
 
 SvpSalBitmap::SvpSalBitmap()
-:   SalBitmap(),
-basegfx::SystemDependentDataHolder(), // MM02
-mpDIB()
 {
 }
 
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index a80a1317487f..5126abb19385 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -357,8 +357,7 @@ namespace
 
 public:
 explicit SurfaceHelper()
-:   pSurface(nullptr),
-maDownscaled()
+:   pSurface(nullptr)
 {
 }
 ~SurfaceHelper()
@@ -398,11 +397,9 @@ namespace
 explicit BitmapHelper(
 const SalBitmap& rSourceBitmap,
 const bool bForceARGB32 = false)
-:   SurfaceHelper(),
 #ifdef HAVE_CAIRO_FORMAT_RGB24_888
-m_bForceARGB32(bForceARGB32),
+: m_bForceARGB32(bForceARGB32)
 #endif
-aTmpBmp()
 {
 const SvpSalBitmap& rSrcBmp = static_cast(rSourceBitmap);
 #ifdef HAVE_CAIRO_FORMAT_RGB24_888
@@ -513,8 +510,6 @@ namespace
 
 public:
 explicit MaskHelper(const SalBitmap& rAlphaBitmap)
-:   SurfaceHelper(),
-pAlphaBits()
 {
 const SvpSalBitmap& rMask = static_cast(rAlphaBitmap);
 const BitmapBuffer* pMaskBuf = rMask.GetBuffer();
@@ -1417,8 +1412,7 @@ 
SystemDependentData_CairoPath::SystemDependentData_CairoPath(
 :   basegfx::SystemDependentData(rSystemDependentDataManager),
 mpCairoPath(nullptr),
 mbNoJoin(bNoJoin),
-mbAntiAlias(bAntiAlias),
-maStroke()
+mbAntiAlias(bAntiAlias)
 {
 // tdf#129845 only create a copy of the path when nSizeMeasure is
 // bigger than some decent threshold
diff --git a/vcl/jsdialog/jsdialogbuilder.cxx b/vcl/jsdialog/jsdialogbuilder.cxx
index c54ea3491f8a..6b6c12831d73 100644
--- a/vcl/jsdialog/jsdialogbuilder.cxx
+++ b/vcl/jsdialog/jsdialogbuilder.cxx
@@ -50,7 +50,6 @@ JSDialogNotifyIdle::JSDialogNotifyIdle(VclPtr 
aNotifierWindow,
 , 

[Libreoffice-bugs] [Bug 144319] Cannot load Formula-14 from ODT with LibreOffice 7.2.0, shown as OLE

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

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

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

tdf#144319 fix formula load

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 144319] Cannot load Formula-14 from ODT with LibreOffice 7.2.0, shown as OLE

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

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

2021-09-06 Thread Noel Grandin (via logerrit)
 tools/source/generic/fract.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit f8cf0d2cb4e5e18f48d6b3bfbc7d0e72e7ed5190
Author: Noel Grandin 
AuthorDate: Mon Sep 6 13:25:45 2021 +0200
Commit: Noel Grandin 
CommitDate: Mon Sep 6 20:51:48 2021 +0200

tdf#144319 fix formula load

regression from
commit 67d83e40e2c4f3862c50e6abeabfc24a75119fc8
Author: Noel Grandin 
Date:   Sat Dec 19 13:25:53 2020 +0200
speedup rational_FromDouble

Change-Id: Icb728b63f950e827f1492087114f927c2f85ddb9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121719
Tested-by: Jenkins
Tested-by: Xisco Fauli 
Reviewed-by: Xisco Fauli 
Reviewed-by: Noel Grandin 

diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx
index 7c0e850db8d7..57dd4e79c138 100644
--- a/tools/source/generic/fract.cxx
+++ b/tools/source/generic/fract.cxx
@@ -43,6 +43,9 @@ static boost::rational toRational(sal_Int32 n, 
sal_Int32 d)
 // https://github.com/boostorg/boost/issues/335 when these are 
std::numeric_limits::min
 if (n == d)
 return 1;
+// tdf#144319 avoid boost::bad_rational e.g. if numerator=-476741369, 
denominator=-2147483648
+if (d < -std::numeric_limits::max())
+return 0;
 return boost::rational(n, d);
 }
 


[Libreoffice-bugs] [Bug 144285] LibreOffice 7.2.0.4 crash on macOS always after launching and work

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

--- Comment #13 from Jan-S. Gagel  ---
@Alex: Es ist mir nicht bewußt, daß ich screenreader oder Ähnliches verwende.
Ich glaube, ich verwende das nicht. Aber vielleicht hatte ich mal etwas
installiert, was derartige Funktionen ausübt.

@Steve: mir war schon bewußt, daß es  ein major-update gibt. Ich fürchte aber,
daß solche Updates zu einem Fehler führen, deshalb habe ich es nicht
installiert. Nach Ihrem Einwand hab eich die Updates alle installiert und was
soll ich sagen, LibreOffice ist bisher nicht mehr eingefroren.

@all: by the way, i'm using java as well. Because i'm using .jar files as
executable applications like dirsyncpro or mucommander. But i'm not sure how i
did it to have it working.
I think, macOS is a bit different from using java than other operatingsystems.
But i don't know how to use it with LibreOffice. Because in the settings didn't
find any java runtime. So LibreOffice is not recognizing the installed java
runtime.
But i don't think that i need the java runtime wiht LibreOffice, because it's
working without also. or is there any benefit of java runtime?

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

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

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

New commits:
commit 2e4ce586f95230e1e5cffd1d3349090877ce3afd
Author: Caolán McNamara 
AuthorDate: Mon Sep 6 16:16:56 2021 +0100
Commit: Caolán McNamara 
CommitDate: Mon Sep 6 20:45:41 2021 +0200

ofz: MemorySanitizer: use-of-uninitialized-value

Change-Id: I979b11badd0df454aa0d344b90c809a2a3f6c392
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121726
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 d434763dd4be..cf9b2531e2c6 100644
--- a/vcl/source/filter/ipict/ipict.cxx
+++ b/vcl/source/filter/ipict/ipict.cxx
@@ -90,8 +90,7 @@ namespace PictReaderInternal {
   }
 
   sal_uInt8 Pattern::read(SvStream ) {
-unsigned char nbyte[8];
-sal_uInt32 nHiBytes, nLoBytes;
+unsigned char nbyte[8] = {0};
 isColor = false;
 
 // count the no of bits in pattern which are set to 1:
@@ -99,16 +98,16 @@ namespace PictReaderInternal {
 for (unsigned char & ny : nbyte) {
   stream.ReadChar( reinterpret_cast(ny) );
   for (short nx=0; nx<8; nx++) {
-if ( (ny & (1<(nbyte[0])<<8)|
+sal_uInt32 nHiBytes = (static_cast(nbyte[0])<<8)|
  static_cast(nbyte[1]))<<8)|
static_cast(nbyte[2]))<<8)|
   static_cast(nbyte[3]);
-nLoBytes=(static_cast(nbyte[4])<<8)|
+sal_uInt32 nLoBytes = (static_cast(nbyte[4])<<8)|
  static_cast(nbyte[5]))<<8)|
static_cast(nbyte[6]))<<8)|
   static_cast(nbyte[7]);


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

2021-09-06 Thread Caolán McNamara (via logerrit)
 vcl/source/filter/imet/ios2met.cxx |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit 5fa8ee4650962bf483b6ac034dd373b5d7b9926e
Author: Caolán McNamara 
AuthorDate: Mon Sep 6 12:41:16 2021 +0100
Commit: Caolán McNamara 
CommitDate: Mon Sep 6 20:45:25 2021 +0200

ofz: MemorySanitizer: use-of-uninitialized-value

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

diff --git a/vcl/source/filter/imet/ios2met.cxx 
b/vcl/source/filter/imet/ios2met.cxx
index edf0bb95293f..5611da89428d 100644
--- a/vcl/source/filter/imet/ios2met.cxx
+++ b/vcl/source/filter/imet/ios2met.cxx
@@ -1837,7 +1837,7 @@ void OS2METReader::ReadOrder(sal_uInt16 nOrderID, 
sal_uInt16 nOrderLen)
 case GOrdSXtCol: {
 sal_uInt16 nVal;
 if (nOrderID==GOrdPColor || nOrderID==GOrdSColor) {
-sal_uInt8 nbyte;
+sal_uInt8 nbyte(0);
 pOS2MET->ReadUChar( nbyte ); 
nVal=static_cast(nbyte)|0xff00;
 }
 else pOS2MET->ReadUInt16( nVal );
@@ -1992,7 +1992,7 @@ void OS2METReader::ReadOrder(sal_uInt16 nOrderID, 
sal_uInt16 nOrderLen)
 case GOrdPLnWdt: PushAttr(nOrderID);
 [[fallthrough]];
 case GOrdSLnWdt: {
-sal_uInt8 nbyte;
+sal_uInt8 nbyte(0);
 pOS2MET->ReadUChar( nbyte );
 if (nbyte==0) aAttr.nLinWidth=aDefAttr.nLinWidth;
 else aAttr.nLinWidth=static_cast(nbyte)-1;
@@ -2035,7 +2035,8 @@ void OS2METReader::ReadOrder(sal_uInt16 nOrderID, 
sal_uInt16 nOrderLen)
 case GOrdPChSet: PushAttr(nOrderID);
 [[fallthrough]];
 case GOrdSChSet: {
-sal_uInt8 nbyte; pOS2MET->ReadUChar( nbyte );
+sal_uInt8 nbyte(0);
+pOS2MET->ReadUChar( nbyte );
 aAttr.nChrSet=static_cast(nbyte)&0xff;
 break;
 }
@@ -2107,7 +2108,7 @@ void OS2METReader::ReadOrder(sal_uInt16 nOrderID, 
sal_uInt16 nOrderLen)
 case GOrdPMkSet: PushAttr(nOrderID);
 [[fallthrough]];
 case GOrdSMkSet: {
-sal_uInt8 nbyte;
+sal_uInt8 nbyte(0);
 pOS2MET->ReadUChar( nbyte );
 if (nbyte==0) aAttr.nMrkSet=aDefAttr.nMrkSet;
 else aAttr.nMrkSet=nbyte;
@@ -2117,7 +2118,7 @@ void OS2METReader::ReadOrder(sal_uInt16 nOrderID, 
sal_uInt16 nOrderLen)
 case GOrdPMkSym: PushAttr(nOrderID);
 [[fallthrough]];
 case GOrdSMkSym: {
-sal_uInt8 nbyte;
+sal_uInt8 nbyte(0);
 pOS2MET->ReadUChar( nbyte );
 if (nbyte==0) aAttr.nMrkSymbol=aDefAttr.nMrkSymbol;
 else aAttr.nMrkSymbol=nbyte;
@@ -2132,7 +2133,7 @@ void OS2METReader::ReadOrder(sal_uInt16 nOrderID, 
sal_uInt16 nOrderLen)
 aAttr.aMrkCellSize.setHeight(ReadCoord(bCoord32) );
 if (bCoord32) nLen-=8; else nLen-=4;
 if (nLen>=2) {
-sal_uInt8 nbyte;
+sal_uInt8 nbyte(0);
 pOS2MET->ReadUChar( nbyte );
 if ((nbyte&0x80)==0 && aAttr.aMrkCellSize==Size(0,0))
 aAttr.aMrkCellSize=aDefAttr.aMrkCellSize;


[Libreoffice-bugs] [Bug 144338] UI Connected spinbox not updated when value is typed into the field

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

Telesto  changed:

   What|Removed |Added

 CC||caol...@redhat.com,
   ||heiko.tietze@documentfounda
   ||tion.org

--- Comment #1 from Telesto  ---
@Caolán
I have brought this up a while ago.. The assessment back then was, that the
problem was inherent to the working of those spinboxes :-(.

I'm not content with current state.. they lack of feedback is really really
annoying...  [I assume UX having the same opinion...]

Has there been some change to those spinboxes in the mean time which could
solve the issue here?
Or is there some spinbox variant/alternative which does behave? 
Or is it possible to simply force an update every second (after last
keypress?); Maybe only for those spinboxes which are interconnected..

--
Case 3 (comment 0 has 2 other cases)
1. Open Writer
2. Insert a Image
3. F4
4. Type tab
5. Check keep ratio
6. Type Width -> Notice height not changing..

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

[Libreoffice-bugs] [Bug 106107] Vertically joined cells in table header don't keep its height when repeated on the next page

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

--- Comment #13 from Alexander Polkhovskiy  ---
Reproduced in
Version: 7.2.1.1 (x64) / LibreOffice Community
Build ID: 3cfc32d9754d2d239bd8ce2941029c12873010c1
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL

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

[Libreoffice-bugs] [Bug 88696] Field text with no-break spaces in a table cell doesn't follow line break paragraph rules

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

--- Comment #11 from Alexander Polkhovskiy  ---
Reproduced in
Version: 7.2.1.1 (x64) / LibreOffice Community
Build ID: 3cfc32d9754d2d239bd8ce2941029c12873010c1
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL

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

[Libreoffice-bugs] [Bug 120921] Function “Navigate By” does not Work Correctly if Cursor is Located in Header or Footer

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

--- Comment #5 from Dieter  ---
Behaviour still the same in

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 74d35e143d557a7e65c4443f5b80cb9d406b1fa1
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

but now I think it is the regular search order of LO
1. Text area
2. Footnote
3. Header and Footer

So I think it's logic, that the "Navigate By" feature follows that search
order. So for me NAB (if we don't want to change the search order in a
document)

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

[Libreoffice-bugs] [Bug 136220] Long fields lose its part on page end in some cases

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

--- Comment #5 from Alexander Polkhovskiy  ---
(In reply to Buovjaga from comment #4)
> (In reply to Alexander Polkhovskiy from comment #3)
> > Created attachment 168122 [details]
> > Updated example with no external text and hidden stuff
> > 
> > Right you are - problem is not in external file.
> > Correcting the original message:
> > Steps to Reproduce:
> > 1. Open the attached file.
> > 2. Try to append text on page 2 - part of the field disappears.
> > 
> > 
> > Actual Results:
> > Look at the last field on the first page - it ends with "Long field". When
> > you open the file you you'll see continuation on the next page ("Long field
> > with many words"), but after you append (or delete) some text anywhere the
> > "with many words" part disappears.
> 
> I don't reproduce this. Could you re-test with 7.2?
> 
> Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
> Build ID: a866d63e0ac9de4ff7e59b3928f09ec21877bef3
> CPU threads: 2; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL:
> win
> Locale: fi-FI (fi_FI); UI: en-US
> Calc: threaded Jumbo

Reproduced in 7.2.1.1
Version: 7.2.1.1 (x64) / LibreOffice Community
Build ID: 3cfc32d9754d2d239bd8ce2941029c12873010c1
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL

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

[Libreoffice-ux-advise] [Bug 105689] Emoji toolbar button (bug 100100 emoji.json implementation) not functional on Windows

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

Julien Nabet  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org,
   ||xiscofa...@libreoffice.org

--- Comment #48 from Julien Nabet  ---
(In reply to V Stuart Foote from comment #46)
> ...
> Would it make sense to shift to EmojiTwo (Unicode 9.0), or even Noto Emoji,
> rather than the outdated EmojiOne Color font--we'd have to build them anyway
> to deploy in a usable form.  
> 
> EmojiTwo or Noto Emoji, especially as the more complete JoyPixels and
> non-color Symbola have restrictive font license preventing our distribution.
> 
> =-ref-=
> [1] https://opengrok.libreoffice.org/history/core/sfx2/emojiconfig/emoji.json

Between EmojiTwo or Noto Emoji, I don't know what's the best choice, so I've
just cc'ed Heiko and Xisco.
However I just wonder, considering tdf#140265, if it would increase even more
the pb of slowness since there would be 2.5 more symbols to load.

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

[Libreoffice-bugs] [Bug 144338] New: UI Connected spinbox not updated when value is typed into the field

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

Bug ID: 144338
   Summary: UI Connected spinbox not updated when value is typed
into the field
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Connected spinbox not updated when value is typed into the field

Steps to Reproduce:
1. Open Writer
2. Insert a 3 column table
3. Table Properties -> Column tab
4. Type a width for column A. notice column B not being updated. 
5. Press OK -> 

6. Open Writer
7. File Export (
9. Pick JPG & a directory 
10. Press Save.. JPG options dialog opens
11. Switch to Modify Resolution
12. Type some value
13. Notice the dimension field not being adapted.. press TAB.. now it does

Actual Results:
As long as the cursor being inside the field.. nothing happens

Expected Results:
Well, so way to trigger an update.. Simply force an update every second (after
last keypress?) for example? The current UI feedback is really inconvenient
(not user friendly). And going backwards compared to older versions


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 05ff3d67d0e2e436406786c949eb7cfca107ba33
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

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

  1   2   3   4   5   >