[Libreoffice-bugs] [Bug 144956] LO 7.2 regression: Most buttons not clickable

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144956

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #1 from Mike Kaganski  ---


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

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

[Libreoffice-bugs] [Bug 144037] kf5: Unable to insert table from toolbar button

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144037

Mike Kaganski  changed:

   What|Removed |Added

 CC||ho...@schirmeier.com

--- Comment #24 from Mike Kaganski  ---
*** Bug 144956 has been marked as a duplicate of this bug. ***

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

[Libreoffice-commits] core.git: drawinglayer/qa drawinglayer/source include/drawinglayer sd/source svgio/source svx/source sw/source

2021-10-05 Thread Noel Grandin (via logerrit)
 drawinglayer/qa/unit/border.cxx   |   12 ++--
 drawinglayer/source/attribute/sdrlightingattribute3d.cxx  |8 +--
 drawinglayer/source/attribute/sdrlineattribute.cxx|8 +--
 drawinglayer/source/attribute/strokeattribute.cxx |8 +--
 drawinglayer/source/primitive2d/borderlineprimitive2d.cxx |6 +-
 drawinglayer/source/primitive2d/gridprimitive2d.cxx   |6 +-
 drawinglayer/source/primitive2d/markerarrayprimitive2d.cxx|4 -
 drawinglayer/source/primitive2d/pointarrayprimitive2d.cxx |4 -
 drawinglayer/source/primitive2d/svggradientprimitive2d.cxx|   12 ++--
 drawinglayer/source/primitive2d/textbreakuphelper.cxx |4 -
 drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx  |6 +-
 drawinglayer/source/primitive2d/textlineprimitive2d.cxx   |2 
 drawinglayer/source/primitive2d/textprimitive2d.cxx   |4 -
 drawinglayer/source/primitive2d/textstrikeoutprimitive2d.cxx  |2 
 drawinglayer/source/primitive3d/sdrdecompositiontools3d.cxx   |2 
 drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx|2 
 drawinglayer/source/tools/emfphelperdata.cxx  |   25 --
 drawinglayer/source/tools/wmfemfhelper.cxx|   10 ++--
 include/drawinglayer/attribute/sdrlightingattribute3d.hxx |2 
 include/drawinglayer/attribute/sdrlineattribute.hxx   |2 
 include/drawinglayer/attribute/strokeattribute.hxx|3 -
 include/drawinglayer/primitive2d/borderlineprimitive2d.hxx|2 
 include/drawinglayer/primitive2d/markerarrayprimitive2d.hxx   |2 
 include/drawinglayer/primitive2d/pointarrayprimitive2d.hxx|2 
 include/drawinglayer/primitive2d/svggradientprimitive2d.hxx   |6 +-
 include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx |2 
 include/drawinglayer/primitive2d/textprimitive2d.hxx  |2 
 sd/source/ui/view/sdview.cxx  |6 +-
 svgio/source/svgreader/svgcharacternode.cxx   |4 -
 svgio/source/svgreader/svgstyleattributes.cxx |6 +-
 svx/source/sdr/attribute/sdrformtextattribute.cxx |2 
 svx/source/sdr/contact/viewcontactofsdrobj.cxx|2 
 svx/source/sdr/primitive2d/sdrattributecreator.cxx|4 -
 svx/source/sdr/primitive2d/sdrdecompositiontools.cxx  |2 
 svx/source/sdr/primitive2d/sdrframeborderprimitive2d.cxx  |6 +-
 svx/source/svdraw/svddrgmt.cxx|4 -
 svx/source/svdraw/svdotextdecomposition.cxx   |4 -
 svx/source/svdraw/svdotextpathdecomposition.cxx   |4 -
 svx/source/xoutdev/xtabdash.cxx   |2 
 sw/source/core/layout/paintfrm.cxx|2 
 sw/source/uibase/docvw/AnchorOverlayObject.cxx|2 
 sw/source/uibase/docvw/DashedLine.cxx |2 
 42 files changed, 99 insertions(+), 101 deletions(-)

New commits:
commit cf739db1d6261c43b5b28c6795a4b5b30156478f
Author: Noel Grandin 
AuthorDate: Tue Oct 5 18:46:30 2021 +0200
Commit: Noel Grandin 
CommitDate: Wed Oct 6 07:13:56 2021 +0200

loplugin:moveparam in drawinglayer

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

diff --git a/drawinglayer/qa/unit/border.cxx b/drawinglayer/qa/unit/border.cxx
index 6cfcd1348a4a..fdb3cc71a3a8 100644
--- a/drawinglayer/qa/unit/border.cxx
+++ b/drawinglayer/qa/unit/border.cxx
@@ -47,8 +47,8 @@ CPPUNIT_TEST_FIXTURE(DrawinglayerBorderTest, 
testDoubleDecompositionSolid)
 double const fExtendRightEnd = 0;
 basegfx::BColor aColorRight;
 basegfx::BColor aColorLeft;
-const std::vector 
aDashing(svtools::GetLineDashing(SvxBorderLineStyle::DOUBLE, 10.0));
-const drawinglayer::attribute::StrokeAttribute aStrokeAttribute(aDashing);
+std::vector 
aDashing(svtools::GetLineDashing(SvxBorderLineStyle::DOUBLE, 10.0));
+const drawinglayer::attribute::StrokeAttribute 
aStrokeAttribute(std::move(aDashing));
 std::vector aBorderlines;
 
 aBorderlines.push_back(drawinglayer::primitive2d::BorderLine(
@@ -62,7 +62,7 @@ CPPUNIT_TEST_FIXTURE(DrawinglayerBorderTest, 
testDoubleDecompositionSolid)
 fExtendRightStart, fExtendRightEnd, fExtendRightEnd));
 
 rtl::Reference aBorder(
-new drawinglayer::primitive2d::BorderLinePrimitive2D(aStart, aEnd, 
aBorderlines,
+new drawinglayer::primitive2d::BorderLinePrimitive2D(aStart, aEnd, 
std::move(aBorderlines),
  
aStrokeAttribute));
 
 // Decompose it into polygons.
@@ -111,8 +111,8 @@ CPPUNIT_TEST_FIXTURE(DrawinglayerBorderTest, 
testDoublePixelProcessing)
 double const fExtendRightEnd = 0;
 

[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-6.4-49'

2021-10-05 Thread Andras Timar (via logerrit)
Tag 'cp-6.4-49' created by Andras Timar  at 
2021-10-06 05:09 +

cp-6.4-49

Changes since cp-6.4-48-5:
---
 0 files changed
---


[Libreoffice-commits] translations.git: Changes to 'refs/tags/cp-6.4-49'

2021-10-05 Thread Tor Lillqvist (via logerrit)
Tag 'cp-6.4-49' created by Andras Timar  at 
2021-10-06 05:09 +

cp-6.4-49

Changes since cp-6.4-48:
Tor Lillqvist (1):
  Add missing mobile-specific Impress German translations

---
 source/de/sd/messages.po |   37 +
 1 file changed, 37 insertions(+)
---


[Libreoffice-commits] help.git: Changes to 'refs/tags/cp-6.4-49'

2021-10-05 Thread Andras Timar (via logerrit)
Tag 'cp-6.4-49' created by Andras Timar  at 
2021-10-06 05:09 +

cp-6.4-49

Changes since cp-6.4-branch-point-11:
---
 0 files changed
---


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/cp-6.4-49'

2021-10-05 Thread Andras Timar (via logerrit)
Tag 'cp-6.4-49' created by Andras Timar  at 
2021-10-06 05:09 +

cp-6.4-49

Changes since co-6.4-20:
Andras Timar (1):
  update Danish dictionary

---
 da_DK/README_da_DK.txt |4 
 da_DK/da_DK.aff| 3401 
 da_DK/da_DK.dic|288016 
+++--
 da_DK/description.xml  |9 
 4 files changed, 139245 insertions(+), 152185 deletions(-)
---


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

2021-10-05 Thread Andras Timar (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 70f65227450890656b207e56e2c096a147e6d158
Author: Andras Timar 
AuthorDate: Wed Oct 6 07:09:21 2021 +0200
Commit: Andras Timar 
CommitDate: Wed Oct 6 07:09:21 2021 +0200

Bump version to 6.4-49

Change-Id: I02a0babcf09850157da31e769c618ec85cc0e8e1

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


[Libreoffice-bugs] [Bug 144960] New: "operations" are incorrectly applied to "formats only" in edit paste special

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144960

Bug ID: 144960
   Summary: "operations" are incorrectly applied to "formats only"
in edit paste special
   Product: LibreOffice
   Version: 7.2.1.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@danel.us

Description:
The paste special formats only no longer works. It also changes the cell
contents. Maybe the operations are incorrectly attached. What does add subtract
multiply divide mean when applied to formats only?

Steps to Reproduce:
1.click edit, paste special, paste special, formats only.
2.
3.

Actual Results:
Instead of applying a green color to the number in the cell resulting from the
equation in the cell, it replaced the equation with a 0

Expected Results:
the number should be the result of the formula in the cell and it should be the
new color.


Reproducible: Always


User Profile Reset: No



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

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

[Libreoffice-bugs] [Bug 144651] Field using ROUND formula works in MS Office but broken in LibreOffice

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144651

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 144649] After include of same video in different impress files, plays in one not the other

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144649

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 144643] Defined name pointing to external worksheet does not work/cannot be created

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144643

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 144640] numbered lists show wrong numeration

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144640

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 144639] Border not merging with next paragraph when first line indent is used

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144639

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 144634] Data entry into a cell should match cell's configured vertical alignment formatting

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144634

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 144632] "Minor interval count" for axis scaling options has artificial maximum limit

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144632

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 140871] Toolbars disappear

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140871

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140871] Toolbars disappear

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140871

--- Comment #3 from QA Administrators  ---
Dear Peter Lawson,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140869] In Version 7.1.1.1 of LO for Windows (x64), Crash reporter shows up with blank instead of link to submit, even though crash dump is created.

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140869

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140869] In Version 7.1.1.1 of LO for Windows (x64), Crash reporter shows up with blank instead of link to submit, even though crash dump is created.

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140869

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140788] freeze when paste onto a new draw file

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140788

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140788] freeze when paste onto a new draw file

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140788

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140775] Crash in: CWinClipbImpl::getContents()

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140775

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140775] Crash in: CWinClipbImpl::getContents()

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140775

--- Comment #3 from QA Administrators  ---
Dear Owen Harrison,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140232] Saving substantial slower saving in original file compared to copy/pasting to a new file

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140232

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140232] Saving substantial slower saving in original file compared to copy/pasting to a new file

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140232

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 135954] Libreoffice 7 plante quand je veux insérer une image [EN> LibrOffice [.odg] crash[/restart] when I want to paste an image

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135954

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135954] Libreoffice 7 plante quand je veux insérer une image [EN> LibrOffice [.odg] crash[/restart] when I want to paste an image

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135954

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141555] New document has caret in awkward position and paper view is not centered

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141555

--- Comment #6 from QA Administrators  ---
Dear Wolfgang Fahl,

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 136180] Background graphics in diagrams are not exported when exporting as picture

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136180

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

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 119083] Recalculation is slow with 90000 VLOOKUP

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119083

--- Comment #8 from QA Administrators  ---
Dear Jean-Sebastien Bevilacqua,

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 135822] blank graph where referring to another sheet

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135822

--- Comment #2 from QA Administrators  ---
Dear Lyndon Brown,

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 135824] copying sheet with graph looses data-series names

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135824

--- Comment #2 from QA Administrators  ---
Dear Lyndon Brown,

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 144959] Same file opening twice from the open menu, causing a crash

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144959

CSLam  changed:

   What|Removed |Added

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

--- Comment #1 from CSLam  ---
Sorry, somehow the same issue got duplicated, so only one of them needs
attention.

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

[Libreoffice-bugs] [Bug 144959] New: Same file opening twice from the open menu, causing a crash

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144959

Bug ID: 144959
   Summary: Same file opening twice from the open menu, causing a
crash
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cs...@mail.com

Description:
The same file can be clicked twice from the open menu, thus opening twice in
the same LibreOffice instance, and when the two file instances come up, system
will crash.

Steps to Reproduce:
1.From the LibreOffice open menu, click open the same file twice.
2.
3.

Actual Results:
System crashes when the two file instances come up.

Expected Results:
The system should only open the same file once: after a file is opened, any
subsequent click on the menu should take no action.


Reproducible: Always


User Profile Reset: No



Additional Info:
Kindly bear in mind there are some slow computers out there, and when a file is
clicked in the open menu, sometimes there looks no response due to whatever
reason:
- system running slowly due to other running tasks, or
- LibreOffice does responding slowly somehow.

It will be natural the user will click the file again to ensure the opening
command is issued, and this will cause trouble.

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

[Libreoffice-bugs] [Bug 144958] New: Same file opening twice from the open menu, causing a crash

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144958

Bug ID: 144958
   Summary: Same file opening twice from the open menu, causing a
crash
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cs...@mail.com

Description:
The same file can be clicked twice from the open menu, thus opening twice in
the same LibreOffice instance, and when the two file instances come up, system
will crash.

Steps to Reproduce:
1.From the LibreOffice open menu, click open the same file twice.
2.
3.

Actual Results:
System crashes when the two file instances come up.

Expected Results:
The system should only open the same file once: after a file is opened, any
subsequent click on the menu should take no action.


Reproducible: Always


User Profile Reset: No



Additional Info:
Kindly bear in mind there are some slow computers out there, and when a file is
clicked in the open menu, sometimes there looks no response due to whatever
reason:
- system running slowly due to other running tasks, or
- LibreOffice does responding slowly somehow.

It will be natural the user will click the file again to ensure the opening
command is issued, and this will cause trouble.

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

[Libreoffice-bugs] [Bug 144957] Deletion of array formula not explained

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144957

--- Comment #1 from Alex Sims  ---
An explanation might be:

Deleting Array Formulae
---

1. Select the cell range or array containing the array formula. To select the
whole array, position the cell cursor inside the array range, then press
Command + /, where / is the Division key on the numeric keypad.
2. Press Delete and this brings up the "Delete Content" dialog box
3. Select "Formula" or "Delete All"
4. Press OK

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

[Libreoffice-bugs] [Bug 144957] New: Deletion of array formula not explained

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144957

Bug ID: 144957
   Summary: Deletion of array formula not explained
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: a...@softgrow.com
CC: olivier.hal...@libreoffice.org

Description:
If I want to delete an array formula, e.g. change back to normal or delete
entirely, I look in the help. I can't find anything. The section about array
functions explains how to create an array formula, modify an array formula, but
not how to delete it.

Steps to Reproduce:
1. Open Libreoffice Calc
2. Create an array formula using instructions in Array Functions in Help
3. Try to delete it using instructions in Help

Actual Results:
There is nothing in help. 

Expected Results:
A readable explanation is provided in the Array Functions in Help


Reproducible: Always


User Profile Reset: No



Additional Info:
I have to look externally in forums, search engines and so on. It seems as
though you select the Array formula then press Delete and select "Formula" or
"Delete all".

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

[Libreoffice-bugs] [Bug 144912] Copy in Impress deletes the animations of the following paragraphs

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144912

--- Comment #6 from Octavio Alvarez  ---
Seen also in:

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 0a78cb8eb1ebbfe55896d603e8aa94816242c2cb
CPU threads: 8; OS: Linux 5.11; UI render: default; VCL: gtk3
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-commits] core.git: helpcontent2

2021-10-05 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 547d8dacffc87586597d43e0e0378b4bb86b67a8
Author: Rafael Lima 
AuthorDate: Wed Oct 6 02:49:40 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Wed Oct 6 02:49:40 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to ff4b6d982cb29758b1e81e04f8e404c8ea7324c9
  - tdf#136495 Explain how to quickly switch between Landscape / Portrait

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

diff --git a/helpcontent2 b/helpcontent2
index a82f9c51bdb3..ff4b6d982cb2 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a82f9c51bdb39d0a784069e2927683273c9f8ebc
+Subproject commit ff4b6d982cb29758b1e81e04f8e404c8ea7324c9


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

2021-10-05 Thread Rafael Lima (via logerrit)
 source/text/swriter/01/0401.xhp   |   15 ++-
 source/text/swriter/guide/page_break.xhp  |  105 +-
 source/text/swriter/guide/pageorientation.xhp |   59 +-
 3 files changed, 103 insertions(+), 76 deletions(-)

New commits:
commit ff4b6d982cb29758b1e81e04f8e404c8ea7324c9
Author: Rafael Lima 
AuthorDate: Tue Oct 5 21:58:30 2021 +0200
Commit: Olivier Hallot 
CommitDate: Wed Oct 6 02:49:39 2021 +0200

tdf#136495 Explain how to quickly switch between Landscape / Portrait

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

diff --git a/source/text/swriter/01/0401.xhp 
b/source/text/swriter/01/0401.xhp
index bc4c0128a..3db8209a5 100644
--- a/source/text/swriter/01/0401.xhp
+++ b/source/text/swriter/01/0401.xhp
@@ -26,12 +26,11 @@
 
 
 
-
 
 
 
 
-Insert Manual Break
+Insert Manual 
Break
 Inserts a manual line 
break, column break or a page break at the current cursor position. 

 
 
@@ -60,12 +59,13 @@
 Inserts a 
manual page break, and moves the text found to the right of the cursor to the 
beginning of the next page. The inserted page break is indicated by a 
nonprinting border at the top of the new page.
 You can also insert a page break by 
pressing Command
 
Ctrl+Enter.
 However, if you want to assign the following page a different Page Style, you 
must use the menu command to insert the manual page break.
-
 
+
 Page Style
 Select the 
page style for the page that follows the manual page break.
-
+To switch between landscape and portrait 
orientation, choose the Default Page Style to apply portrait 
orientation or the Landscape style to apply landscape 
orientation.
 
+
 Change page number
 Assigns the 
page number that you specify to the page that follows the manual page break. 
This option is only available if you assign a different page style to the page 
that follows manual page break.
 
@@ -73,7 +73,10 @@
 Page number
 Enter the new 
page number for the page that follows the manual page break.
 To display manual breaks, choose 
View - Nonprinting Characters.
-
-
+
+  
+
+
+  
 
 
diff --git a/source/text/swriter/guide/page_break.xhp 
b/source/text/swriter/guide/page_break.xhp
index bdb2c6f19..f96577d01 100644
--- a/source/text/swriter/guide/page_break.xhp
+++ b/source/text/swriter/guide/page_break.xhp
@@ -19,55 +19,60 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  -->
 
-
 
-  
- Inserting and Deleting Page 
Breaks
- /text/swriter/guide/page_break.xhp
-  
-   
-   
-page breaks; inserting and 
deleting
-  inserting; page breaks
-  deleting;page breaks
-  pages; inserting/deleting page breaks
-  manual page breaks
-  tables;deleting page breaks before
-MW added "tables;"
-Inserting and Deleting Page Breaks
-
-  To Insert a Manual Page Break
-  
- 
-Click in your document where you want the new page to 
begin.
- 
- 
- Press CommandCtrl+Enter.
- 
-  
-  To Delete a Manual Page Break
-  
- 
-Click in front of the first character on the page that follows 
the manual page break.
- 
- 
-Press Backspace.
- 
-  
-  To Delete a Manual Page Break That Occurs Before a Table
-  
- 
-Right-click in the table, and choose 
Table.
- 
- 
-Click the Text Flow tab.
- 
- 
-Clear the Break check box.
- 
-  
-  
-  
-  Insert Break 
dialog
-   
+  
+Inserting and Deleting Page Breaks
+/text/swriter/guide/page_break.xhp
+  
+
+
+  
+inserting; page breaks
+deleting;page breaks
+pages; inserting/deleting page breaks
+manual page breaks
+tables;deleting page breaks before
+  
+  Inserting and Deleting Page Breaks
+
+  To Insert a Manual Page Break
+  
+
+  Click in 
your document where you want the new page to begin.
+
+
+  Press 
CommandCtrl+Enter.
+
+  
+  To Delete a Manual Page Break
+  
+
+  Click in 
front of the first character on the page that follows the manual page 
break.
+
+
+  Press 
Backspace.
+
+  
+  To Delete a Manual Page Break That Occurs Before a 
Table
+  
+
+  Right-click in the table, and choose 
Table.
+
+
+  Click the 
Text 
Flow tab.
+
+
+  Clear the 
Break check box.
+
+  
+  To Quickly Switch Between Portrait and 
Landscape Page Layout
+  
+  Read the help page Changing Page Orientation to learn more 
about advanced configutaions that can be defined concerning page 
orientation.
+  
+  
+
+
+
+  
+
 
diff --git a/source/text/swriter/guide/pageorientation.xhp 
b/source/text/swriter/guide/pageorientation.xhp
index 281cb0dd4..b5d2500bf 100644
--- 

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

2021-10-05 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.2.2.2' created by Christian Lohmaier 
 at 2021-10-06 00:34 +

Tag libreoffice-7.2.2.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmFc7xYACgkQ9DSh76/u
rqMp+hAAw0ul/IOdln9EJZczeVPBMdfLIuAzHFTm/fDsefZSIZ7RD4R6VMg6CKEf
KvWMtOYIvtlVNyjD9IHMa4craUxiauilygyzO3skT/NlrUDyR39RrGili1PirRYN
lQ89X+MMJzuVGD2K+1aVEA/rqXs4BdOq7rjArLQFC47cOGWQ+mvj4tRzu2la5MwI
AMT5eYvwkijnV27bKp/h/Ycc/U7BR6o0Eoba4DgSoDL2DVu/MBON/BIYNDErv5Jv
rc4zC+9M4DhRkTGriO0RxFySBcpbKCjzM3CavLmakzaMRUjwEXpovqDLP8EzFgj+
Ztc4kjlr7S/aWMfmk2TZfMRYJ6XKN79nqcfCp/ZHoKRlK92tmjC5HKqUIU49knxO
JPHsqf4j1GWfwBDgdm3BLvoW3hYBABkVUkGoF8kMVplgr8xW7VEnRB14OtYkEA15
IK6TePLIUvnoB1/EHbzFSKmGYreyHq9yALfbNeq/9VA/dqSkMgduwFVsOnZTDpRF
WLMZHWh0fUwB6QZtHo7AP2KkC9KOP6xGiurU84BswcGzrDlXpXDgJMrVjy1N9tZl
k9QRH6OKj5kkZuAKTtWqKm3b6sovTyc5GUWVHS5FTH/ez+wKZnNSzV/mEq83yGrE
TvHvWdV7WGYHLrXE3wO0ATkOdWwRY2Bx37SRBf6qzMLL1M3EYC8=
=85vT
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-538:
---
 0 files changed
---


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

2021-10-05 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.2.2.2' created by Christian Lohmaier 
 at 2021-10-06 00:34 +

Tag libreoffice-7.2.2.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmFc7xYACgkQ9DSh76/u
rqOenw/+I3ZppYuq+bEuR36sFAQLai9p+OJWgjA9aUzwBoeAl8iAXc0lwZtUVCwW
P5xxHW6+CgPT/HHwAJfcNwtaSvrcpU90QjrAGWW3GeJhuPX5kDfuG1QKT1pdAtIO
iSBQy5hCp07RvDlJ4mXJw0ilTcQl0SMYiyM0LLiLsCRr94yBYx3sq3cL2qyH0iSF
XC8Ypkwz9XpiYin8JwvNca+mqaPNbNrkj02Igfw2c9uealprwnEwiRfEcICMvBNt
OqjtwVmyQgQAtrAwmN1lCSWTzRLkxR3wshXAX3Lt9zgCO9ZgA+fvTe76NaAqNkMV
PuXd44G19C6Sz+lfhyjLjaWJebAoSN7TqxFC+tse9LtmYSUqo7W+aK2pGQ9Fg4vh
oDoNpp/T/RrBQnjCVq5kY9z6C01GlT0DyGPaigcvSFp3XD7tco5bP34XoW8mDV4/
M3G3UuiDhI3RxBVEAawx2ET9Ni0BG4T4zUYqQG6QV1a6EYm/N9YlncmuwyGc3DGn
8USxv6k6x7muH3OqbsZEtrdgskQ6DRgAoVGy54vtO7qf6/R/VntUC4yEJKXJskfd
pGtEW8pD7o32x0KcJXSXf0YrnZZm3K92ScSPaBJWQkZrNQKryQ+1VArUTYvkJ2jq
KtvCwUvcpxJSd3qs6pvwaBMcbSdRFoxSeiq9lw310fV3VdZ+6f8=
=gpfW
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-15:
---
 0 files changed
---


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

2021-10-05 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.2.2.2' created by Christian Lohmaier 
 at 2021-10-06 00:34 +

Tag libreoffice-7.2.2.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmFc7xYACgkQ9DSh76/u
rqNieA/+Jb7g0/dYXmsNglfkW0mS+fp9vEyDG3k0ArK8aspkzJ2nuYx0ppBGUnTr
ECcRxp2sScJeOUE6x5vGKd98vxTBmDEbksBuxqUuFzxnXOPoSy62KBq4xbyelzA9
2gQ0eKSlHFtadktLQDYazSVwdOU44cFZFhOO9XOh8cRUPCxDJeqmPABoe8e4y6Op
ki8V8EQxYIhmMe5c5vh2uI1kLNCYIBKpcsTwJtgwBMOgC+AUnin0v7Xah71CYCdG
9vl5YuXD6QMtCE9skEp7P+cUfaEUyFy+HVFRzYQJpZ1SN6SGtmBzy++qtOo9va5G
s+g0NoXG3oSwZYm/vnTBeshLZtKwekzBzhaXyw/AR1jEDv9EdTeMCDf08s9UM9/k
vHiPLQcLT0qHTBkSiv9gYltY5pAz6/0UKKA9yFy2AS5Tz/A0BZy9vWuz06HZHFtF
GNeNi7sSL2HeG6+ZbUdJ/nTNB69HJz9Q8ebxjjD06cvqn7gYrZwUJ+3K/HyY1gh/
o9kHHfEJzZ/KhUC5JbMvOcG/qfm2/KPjghJl8IADsoPctznpEVNfPI9BvTyor0QH
nSCaLU0TJEBWv4A3Sg84fa5V4A3Ko/Yz98waOaJRb88h3nVbmuVJlBHZTRnPgAar
u+9aTQ//1Lr6IxjbsQWGlNXnyaAxRwqSZmaU4NPa50KwEQaH3E8=
=cYxG
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-14:
---
 0 files changed
---


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

2021-10-05 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.2.2.2' created by Christian Lohmaier 
 at 2021-10-06 00:34 +

Tag libreoffice-7.2.2.2
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmFc7xIACgkQ9DSh76/u
rqNeiRAAvGTvpsu6n/I6Rk4Ucd0epnBD62illX+RwA/Rz4OeYKOsIJkBxvwCQEuH
R9ulLQeMLJ61g9hRLDF6csr4LRgOIHfBfFJSM5GGQeIQ7ITrvDQqtp7EQuzSmBb2
VePYkk7U0BQVPlNesFKeywlIdgu4uqQACNXwoNWc3WDWW2B2yBetn1f/aqkg0dcb
CECPtaKddAr1Fgygi5ryzi14ilITVXIPZW1vrVPVj16moZ4J4TspuvP4SSt9MJRl
TdRzBgPp/OhHXez0f9N85aezbzzycdtuZD/Ghk8dpLBMXIod/ddWo4FT9oLbuw3W
iC5lpn64y3/rmWWoMsfri9m8RduUDp+yQ5aBh7+hSGFos+2LxzlBy0WMlWQWvIqG
3yz5bdce88xuaAlr/PS4Hi35oc6KECBMHynPwbO560fahG/tzuu92qRzshAVdqtk
F7QG3EvsSuQTmTU3eygtFuoP+wEg13XSD/CWyNM5PMpALjLT7Nj+iF1GB59hey9M
FRNIoW8zO4cKl3k3LgG/A1i3Eb8CME+HaaP73X8QGlNe+emkrJcc1uXXtxbnHxTM
cpXWlZk0lyDKIBN9BfInnubzcK6NhazaLA5GlE7eMJjzwkb0NwbRzofGh4EbEA+6
8X18aLSgCHA7s3cqV9Lnw1u1TrGME18fbO//b/JPzA6pXbnGLoQ=
=RuvT
-END PGP SIGNATURE-

Changes since libreoffice-7-2-branch-point-12:
---
 0 files changed
---


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

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

New commits:
commit 959bbfefb7256a597546210479822b7a6d8acfd0
Author: Christian Lohmaier 
AuthorDate: Wed Oct 6 02:35:00 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 02:35:00 2021 +0200

bump product version to 7.2.2.2.0+

Change-Id: I685592214b8a1caf3730f417f09dd5202ab55b32

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-2-2' - readlicense_oo/license

2021-10-05 Thread Christian Lohmaier (via logerrit)
 readlicense_oo/license/CREDITS.fodt | 4132 ++--
 1 file changed, 2088 insertions(+), 2044 deletions(-)

New commits:
commit af693c483a958af730d4b48026021944ceb5ca21
Author: Christian Lohmaier 
AuthorDate: Wed Oct 6 02:00:03 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 02:23:26 2021 +0200

update credits

Change-Id: I434832c8b4395e8a8e0df44ad056e07cce6585d4
(cherry picked from commit 372005419f68eff13f526b3f1bf4a344370ef4c2)
(cherry picked from commit f5e4dbfccdbc0d810cf82c52f14801dddf95631a)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index b3ee4aaa23ad..01c9608c18f1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,13 +1,13 @@
 
 
 http://openoffice.org/2009/office; 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns
 :config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="ur
 n:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:xforms="http://www.w3.org/2002/xforms; office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   651
+   619
501
48588
-   26450
+   27360
true
true

@@ -16,9 +16,9 @@
  3577
  3434
  501
- 651
+ 619
  49087
- 27099
+ 27977
  0
  0
  false
@@ -97,7 +97,7 @@


true
-   10265368
+   10276649

true
false
@@ -165,7 +165,7 @@
  
   

-   
+   
 


@@ -343,26 +343,23 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -424,7 +421,7 @@

   
   
-   
+   
   
   

@@ -436,12 +433,12 @@

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -503,30 +500,33 @@

   
   
-  
+  
+   
+  
+  

   
-  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
   
@@ -1080,7 +1080,7 @@


 Credits
-1696 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-09-08 13:35:55.
+1702 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-10-05 20:49:26.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1088,21 +1088,21 @@
  
  
  
- 
+ 
   
Ruediger 

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

2021-10-05 Thread Aron Budea (via logerrit)
 sw/qa/core/text/data/line-height.fodt |   32 
 sw/qa/core/text/text.cxx  |   16 
 sw/source/core/inc/txtfrm.hxx |2 +-
 sw/source/core/text/frmcrsr.cxx   |2 +-
 sw/source/core/text/frmform.cxx   |8 
 sw/source/core/text/frmpaint.cxx  |4 ++--
 sw/source/core/text/inftxt.cxx|4 ++--
 sw/source/core/text/itrcrsr.cxx   |   10 +-
 sw/source/core/text/itrform2.cxx  |   26 +-
 sw/source/core/text/itrpaint.cxx  |   12 ++--
 sw/source/core/text/itrtxt.cxx|   10 +-
 sw/source/core/text/itrtxt.hxx|8 
 sw/source/core/text/porfld.cxx|8 
 sw/source/core/text/porfly.cxx|2 +-
 sw/source/core/text/porlay.cxx|8 
 sw/source/core/text/porlay.hxx|   10 +-
 sw/source/core/text/porlin.hxx|8 
 sw/source/core/text/pormulti.cxx  |   10 +-
 sw/source/core/text/porrst.cxx|2 +-
 sw/source/core/text/possiz.hxx|   30 +++---
 sw/source/core/text/txtdrop.cxx   |   10 +-
 sw/source/core/text/txtfrm.cxx|4 ++--
 22 files changed, 89 insertions(+), 137 deletions(-)

New commits:
commit 702b7578754344464f0b3c39abb7bf025387a29b
Author: Aron Budea 
AuthorDate: Mon Oct 4 23:52:33 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 02:21:59 2021 +0200

tdf#144122, tdf#144305 Revert "sw: allow the height of a line...

...to be larger than 65536 twips"

Revert in libreoffice-7-2 due to hard to detect underflows
introduced as a side-effect of the type changes.

This reverts commit 301278b656e76b6f42af5cf8a6f5c6c02acfffeb.

Change-Id: I0e10b4b56155c24314b84b34e8ce0bfa1999dd36
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123095
Reviewed-by: Mike Kaganski 
Reviewed-by: Andras Timar 
Tested-by: Christian Lohmaier 

diff --git a/sw/qa/core/text/data/line-height.fodt 
b/sw/qa/core/text/data/line-height.fodt
deleted file mode 100644
index d784ec241bed..
--- a/sw/qa/core/text/data/line-height.fodt
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  iVBORw0KGgoNSUhEUgAAAEBACAQAYLlVBGdBTUEAALGPC/xhBQFz
-   UkdCAK7OHOkgY0hSTQAAeiYAAICEAAD6gOgAAHUwAADqYAAAOpgAABdwnLpRPAAA
-   AAJiS0dEAACqjSMyCW9GRnMGAAAMc1XTCXBIWXMAAA3XAAAN1wFCKJt4
-   CXZwQWcAAABMQACdMTgbAAABzUlEQVRo3u3ZPU/CQBjA8X+Jxs3ESUDj4iK+LA5+
-   BBfjqBE1cXB2MlFAEqMgxvhNNL4sLsK3UPQL6ObkoAETz+FKW2mxCPRYnucWUu76/OC59C49
-   cGOCKqrD9kHRc6ddPv7oW2WCwMh0nF63Myz7Tm8hPTNu0pgHMER3scepTbgK6enJNND83RLn
-   /878yRaPmgBZFDuMsNLeWB9gmFQHP77MIg9gsYciR50NFKvtjIy10yk84pSZA7DYpwR8scmF
-   QQCMuoQMpzbh0iAARrlnVn90CWHTsZcAiHPPdINQAuqsc2MQAAnKDUKWEhZ10twaBEDSJWQo
-   YlFj7S9CzwEegkXWIbQsRAQASFJhpplwbRAACS+hANRJBxMiAkDcJeQ4sQkBhYgMoJ+Ozlwo
-   2YQ7AJ6CRxyiUGnVy3hVKb0Af9v7hUG2Wy9TEQCUelFTDULB2S+YKYGOMcpM6UIccOQnRA6A
-   cSp6ibfI+wkGADBGpTEd8xz1AaAfTQ7huA8AvUw5hVjuA0D/C5OaMN8XACRZ8F0zCggKAQhA
-   AAIQgAAEIAABCEAAAhCAAAQgAAH4zg3feY4w3Xs44M5+oW0qvCWoGcvaIlM3x/f/ab+O738A
-   hOCNQr34oD4ldEVYdGNyZWF0ZS1kYXRlADIwMTAtMTItMjBUMTc6MDg6MzYrMDE6MDB6
-   5RscJXRFWHRtb2RpZnktZGF0ZQAyMDEwLTEyLTIwVDE3OjA4OjM3KzAxOjAwgyNmnAAA
-   AABJRU5ErkJggg==
-  
-
-  
-
diff --git a/sw/qa/core/text/text.cxx b/sw/qa/core/text/text.cxx
index d38b6a3e62cc..4db880e687f4 100644
--- a/sw/qa/core/text/text.cxx
+++ b/sw/qa/core/text/text.cxx
@@ -135,22 +135,6 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, 
testTabOverMarginSection)
 CPPUNIT_ASSERT_LESS(static_cast(5000), nWidth);
 }
 
-CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testLineHeight)
-{
-// Given a document with an as-char image, height in twips not fitting 
into sal_uInt16:
-createSwDoc(DATA_DIRECTORY, "line-height.fodt");
-
-// When laying out that document:
-xmlDocUniquePtr pXmlDoc = parseLayoutDump();
-
-// Then make sure its top is the top of the page:
-// Without the accompanying fix in place, this test would have failed with:
-// - Expected: 284
-// - Actual  : -65252
-// due to various unsigned integer truncations.
-assertXPath(pXmlDoc, "//fly/infos/bounds", "top", 
OUString::number(DOCUMENTBORDER));
-}
-
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/inc/txtfrm.hxx b/sw/source/core/inc/txtfrm.hxx
index 0a2f4fbbd2bc..abef52f448aa 100644
--- a/sw/source/core/inc/txtfrm.hxx
+++ b/sw/source/core/inc/txtfrm.hxx
@@ -578,7 +578,7 @@ public:
 virtual void CheckDirection( bool bVert ) override;
 
 /// Returns the sum of line height in pLine
-sal_uInt32 GetParHeight() const;
+sal_uInt16 GetParHeight() const;
 
 inline   SwTextFrame *GetFollow();
 inline 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - readlicense_oo/license

2021-10-05 Thread Christian Lohmaier (via logerrit)
 readlicense_oo/license/CREDITS.fodt | 4132 ++--
 1 file changed, 2088 insertions(+), 2044 deletions(-)

New commits:
commit f5e4dbfccdbc0d810cf82c52f14801dddf95631a
Author: Christian Lohmaier 
AuthorDate: Wed Oct 6 02:00:03 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 02:16:13 2021 +0200

update credits

Change-Id: I434832c8b4395e8a8e0df44ad056e07cce6585d4
(cherry picked from commit 372005419f68eff13f526b3f1bf4a344370ef4c2)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index b3ee4aaa23ad..01c9608c18f1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,13 +1,13 @@
 
 
 http://openoffice.org/2009/office; 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns
 :config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="ur
 n:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:xforms="http://www.w3.org/2002/xforms; office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   651
+   619
501
48588
-   26450
+   27360
true
true

@@ -16,9 +16,9 @@
  3577
  3434
  501
- 651
+ 619
  49087
- 27099
+ 27977
  0
  0
  false
@@ -97,7 +97,7 @@


true
-   10265368
+   10276649

true
false
@@ -165,7 +165,7 @@
  
   

-   
+   
 


@@ -343,26 +343,23 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -424,7 +421,7 @@

   
   
-   
+   
   
   

@@ -436,12 +433,12 @@

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -503,30 +500,33 @@

   
   
-  
+  
+   
+  
+  

   
-  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
   
@@ -1080,7 +1080,7 @@


 Credits
-1696 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-09-08 13:35:55.
+1702 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-10-05 20:49:26.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1088,21 +1088,21 @@
  
  
  
- 
+ 
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
   
   
-   Kurt 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - readlicense_oo/license

2021-10-05 Thread Christian Lohmaier (via logerrit)
 readlicense_oo/license/CREDITS.fodt | 4132 ++--
 1 file changed, 2088 insertions(+), 2044 deletions(-)

New commits:
commit 86ba59b43754bc59429e2bd9adf4bece1d791196
Author: Christian Lohmaier 
AuthorDate: Wed Oct 6 02:00:03 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 02:10:49 2021 +0200

update credits

Change-Id: I434832c8b4395e8a8e0df44ad056e07cce6585d4
(cherry picked from commit 372005419f68eff13f526b3f1bf4a344370ef4c2)

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index b3ee4aaa23ad..01c9608c18f1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,13 +1,13 @@
 
 
 http://openoffice.org/2009/office; 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns
 :config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="ur
 n:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:xforms="http://www.w3.org/2002/xforms; office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   651
+   619
501
48588
-   26450
+   27360
true
true

@@ -16,9 +16,9 @@
  3577
  3434
  501
- 651
+ 619
  49087
- 27099
+ 27977
  0
  0
  false
@@ -97,7 +97,7 @@


true
-   10265368
+   10276649

true
false
@@ -165,7 +165,7 @@
  
   

-   
+   
 


@@ -343,26 +343,23 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -424,7 +421,7 @@

   
   
-   
+   
   
   

@@ -436,12 +433,12 @@

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -503,30 +500,33 @@

   
   
-  
+  
+   
+  
+  

   
-  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
   
@@ -1080,7 +1080,7 @@


 Credits
-1696 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-09-08 13:35:55.
+1702 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-10-05 20:49:26.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1088,21 +1088,21 @@
  
  
  
- 
+ 
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
   
   
-   Kurt 

[Libreoffice-commits] core.git: readlicense_oo/license

2021-10-05 Thread Christian Lohmaier (via logerrit)
 readlicense_oo/license/CREDITS.fodt | 4132 ++--
 1 file changed, 2088 insertions(+), 2044 deletions(-)

New commits:
commit 372005419f68eff13f526b3f1bf4a344370ef4c2
Author: Christian Lohmaier 
AuthorDate: Wed Oct 6 02:00:03 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 02:00:03 2021 +0200

update credits

Change-Id: I434832c8b4395e8a8e0df44ad056e07cce6585d4

diff --git a/readlicense_oo/license/CREDITS.fodt 
b/readlicense_oo/license/CREDITS.fodt
index b3ee4aaa23ad..01c9608c18f1 100644
--- a/readlicense_oo/license/CREDITS.fodt
+++ b/readlicense_oo/license/CREDITS.fodt
@@ -1,13 +1,13 @@
 
 
 http://openoffice.org/2009/office; 
xmlns:css3t="http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns
 :config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="ur
 n:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:xforms="http://www.w3.org/2002/xforms; office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.text">
- Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
+ Credits » 
LibreOfficeCreditscontributorscodersdevelopersCredits
 for the LibreOffice 
development/coding.LibreOffice/7.2.0.4$Linux_X86_64
 
LibreOffice_project/9a9c6381e3f7a62afc1329bd359cc48accb6435b2012-02-20T22:17:18.06000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA
  
   
-   651
+   619
501
48588
-   26450
+   27360
true
true

@@ -16,9 +16,9 @@
  3577
  3434
  501
- 651
+ 619
  49087
- 27099
+ 27977
  0
  0
  false
@@ -97,7 +97,7 @@


true
-   10265368
+   10276649

true
false
@@ -165,7 +165,7 @@
  
   

-   
+   
 


@@ -343,26 +343,23 @@
  
  
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   
-   
+   
   
   

   
-  
-   
-  
   

   
@@ -424,7 +421,7 @@

   
   
-   
+   
   
   

@@ -436,12 +433,12 @@

   
   
-   
+   
   
   

   
-  
+  

   
   
@@ -503,30 +500,33 @@

   
   
-  
+  
+   
+  
+  

   
-  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
-  
-  
+  
+  

   
   
@@ -1080,7 +1080,7 @@


 Credits
-1696 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-09-08 13:35:55.
+1702 individuals contributed to 
OpenOffice.org (and whose contributions were imported into LibreOffice) or 
LibreOffice until 2021-10-05 20:49:26.
 * marks developers whose first contributions 
happened after 2010-09-28.
 Developers 
committing code since 2010-09-28
 
@@ -1088,21 +1088,21 @@
  
  
  
- 
+ 
   
Ruediger 
TimmCommits: 82464Joined: 
2000-10-10
   
   
-   Kurt 
ZenkerCommits: 31752Joined: 
2000-09-25
+   Caolán 
McNamaraCommits: 31766Joined: 

[Libreoffice-bugs] [Bug 144902] New version of calc and impress can't run on windows 7 (since version 7.1.5)

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144902

--- Comment #26 from ywu...@163.com ---
(In reply to Mike Kaganski from comment #25)
> (In reply to Ming Hua from comment #24)
> > Maybe it's worth testing if the bundled python actually works on reporter's
> > machine?
> 
> Definitely - thanks!
> 
> ywupub: could you please:
> 
> 1. Open command prompt (cmd.exe);
> 2. Run
> 
> > "C:\Program Files\LibreOffice\program\python.exe"
> 
> 3. In Python command prompt, execute
> 
> > import uno
> > import pythonloader
> > pythonloader.DEBUG=1
> > l = pythonloader.Loader(uno.getComponentContext())
> > l.getImplementationName()
> 
> I hope this would run successfully. But maybe we do have some problem with
> bundled Python?

Sorry, I don't know python at all, I run the cmd you gave line by line, seems
the python bundled is the reason for the issue:

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Program Files\LibreOffice\program>python.exe
Python 3.8.10 (default, Sep  9 2021, 17:09:56) [MSC v.1928 64 bit (AMD64)] on
wi
n32
Type "help", "copyright", "credits" or "license" for more information.
>>> import uno
Traceback (most recent call last):
  File "", line 1, in 
  File "C:\Program Files\LibreOffice\program\uno.py", line 19, in 
import pyuno
ImportError: DLL load failed while importing pyuno: The parameter is incorrect.
>>> import pythonloader
Traceback (most recent call last):
  File "", line 1, in 
  File "C:\Program Files\LibreOffice\program\pythonloader.py", line 19, in

import uno
  File "C:\Program Files\LibreOffice\program\uno.py", line 19, in 
import pyuno
ImportError: DLL load failed while importing pyuno: The parameter is incorrect.
>>> l = pythonloader.Loader(uno.getComponentContext())
Traceback (most recent call last):
  File "", line 1, in 
NameError: name 'pythonloader' is not defined
>>>

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

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

2021-10-05 Thread Aron Budea (via logerrit)
 sw/source/core/text/frmcrsr.cxx  |2 +-
 sw/source/core/text/frmform.cxx  |4 ++--
 sw/source/core/text/frmpaint.cxx |2 +-
 sw/source/core/text/inftxt.cxx   |4 ++--
 sw/source/core/text/itrcrsr.cxx  |2 +-
 sw/source/core/text/itrform2.cxx |8 
 sw/source/core/text/itrpaint.cxx |   10 +-
 sw/source/core/text/itrtxt.cxx   |2 +-
 sw/source/core/text/porfld.cxx   |8 
 sw/source/core/text/pormulti.cxx |8 
 sw/source/core/text/porrst.cxx   |2 +-
 11 files changed, 26 insertions(+), 26 deletions(-)

New commits:
commit c0553f63239f258b7e58176d2d44b96f2b7b3b72
Author: Aron Budea 
AuthorDate: Mon Oct 4 23:35:31 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 01:23:13 2021 +0200

Revert "sw: eliminate recently added static_cast() calls"

Needed to revert 301278b656e76b6f42af5cf8a6f5c6c02acfffeb
in libreoffice-7-2.

This reverts commit 9e075acf2bf1ce6c43fdf5b601507ee0663bd691.

Change-Id: I79460e19dadc5a9def5b0ee89cd1cbb5c3ad699c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123094
Reviewed-by: Mike Kaganski 
Reviewed-by: Andras Timar 
Tested-by: Christian Lohmaier 

diff --git a/sw/source/core/text/frmcrsr.cxx b/sw/source/core/text/frmcrsr.cxx
index 8be43264f192..554599d60568 100644
--- a/sw/source/core/text/frmcrsr.cxx
+++ b/sw/source/core/text/frmcrsr.cxx
@@ -590,7 +590,7 @@ bool SwTextFrame::GetModelPositionForViewPoint_(SwPosition* 
pPos, const Point& r
 // See comment in AdjustFrame()
 SwTwips nMaxY = getFrameArea().Top() + getFramePrintArea().Top() + 
getFramePrintArea().Height();
 aLine.TwipsToLine( rPoint.Y() );
-while( aLine.Y() + o3tl::narrowing(aLine.GetLineHeight()) > 
nMaxY )
+while( aLine.Y() + static_cast(aLine.GetLineHeight()) > nMaxY 
)
 {
 if( !aLine.Prev() )
 break;
diff --git a/sw/source/core/text/frmform.cxx b/sw/source/core/text/frmform.cxx
index f59665b2602b..763645891c88 100644
--- a/sw/source/core/text/frmform.cxx
+++ b/sw/source/core/text/frmform.cxx
@@ -1205,7 +1205,7 @@ bool SwTextFrame::FormatLine( SwTextFormatter , 
const bool bPrev )
   bOldHyph == pNew->IsEndHyph();
 if ( bUnChg && !bPrev )
 {
-const tools::Long nWidthDiff = nOldWidth > 
o3tl::narrowing(pNew->Width())
+const tools::Long nWidthDiff = nOldWidth > 
static_cast(pNew->Width())
 ? nOldWidth - pNew->Width()
 : pNew->Width() - nOldWidth;
 
@@ -1259,7 +1259,7 @@ bool SwTextFrame::FormatLine( SwTextFormatter , 
const bool bPrev )
 rLine.SetUnclipped( false );
 }
 }
-SwTwips nRght = std::max( nOldWidth, 
o3tl::narrowing(pNew->Width()) +
+SwTwips nRght = std::max( nOldWidth, 
static_cast(pNew->Width()) +
  pNew->GetHangingMargin() );
 SwViewShell *pSh = getRootFrame()->GetCurrShell();
 const SwViewOption *pOpt = pSh ? pSh->GetViewOptions() : nullptr;
diff --git a/sw/source/core/text/frmpaint.cxx b/sw/source/core/text/frmpaint.cxx
index 76630fc573f6..93007bfcf539 100644
--- a/sw/source/core/text/frmpaint.cxx
+++ b/sw/source/core/text/frmpaint.cxx
@@ -356,7 +356,7 @@ void SwTextFrame::PaintExtraData( const SwRect  ) 
const
 SwTextPainter  aLine( const_cast(this),  );
 bool bNoDummy = !aLine.GetNext(); // Only one empty line!
 
-while( aLine.Y() + o3tl::narrowing(aLine.GetLineHeight()) <= 
rRect.Top() )
+while( aLine.Y() + static_cast(aLine.GetLineHeight()) <= 
rRect.Top() )
 {
 if( !aLine.GetCurr()->IsDummy() &&
 ( rLineInf.IsCountBlankLines() ||
diff --git a/sw/source/core/text/inftxt.cxx b/sw/source/core/text/inftxt.cxx
index 3e3b5d78af23..cb7cb3b36c63 100644
--- a/sw/source/core/text/inftxt.cxx
+++ b/sw/source/core/text/inftxt.cxx
@@ -1023,13 +1023,13 @@ void SwTextPaintInfo::DrawRedArrow( const SwLinePortion 
 ) const
 {
 aRect.Pos().AdjustY(20 - GetAscent() );
 aRect.Pos().AdjustX(20 );
-if( aSize.Height() > o3tl::narrowing(rPor.Height()) )
+if( aSize.Height() > static_cast(rPor.Height()) )
 aRect.Height( rPor.Height() );
 cChar = CHAR_LEFT_ARROW;
 }
 else
 {
-if( aSize.Height() > o3tl::narrowing(rPor.Height()) )
+if( aSize.Height() > static_cast(rPor.Height()) )
 aRect.Height( rPor.Height() );
 aRect.Pos().AdjustY( -(aRect.Height() + 20) );
 aRect.Pos().AdjustX( -(aRect.Width() + 20) );
diff --git a/sw/source/core/text/itrcrsr.cxx b/sw/source/core/text/itrcrsr.cxx
index 64792666e80e..94ee6dd7562f 100644
--- a/sw/source/core/text/itrcrsr.cxx
+++ b/sw/source/core/text/itrcrsr.cxx
@@ -1051,7 +1051,7 @@ void SwTextCursor::GetCharRect_( SwRect* pOrig, 
TextFrameIndex const nOfst,
 nPorHeight = nPorAscent;
   

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

2021-10-05 Thread Aron Budea (via logerrit)
 sw/source/core/text/frmcrsr.cxx  |2 +-
 sw/source/core/text/inftxt.cxx   |4 ++--
 sw/source/core/text/itrcrsr.cxx  |4 ++--
 sw/source/core/text/itrform2.cxx |   24 
 sw/source/core/text/porfld.cxx   |   12 ++--
 sw/source/core/text/porfly.cxx   |6 +++---
 sw/source/core/text/porlin.cxx   |4 ++--
 sw/source/core/text/pormulti.cxx |   10 +-
 sw/source/core/text/porrst.cxx   |4 ++--
 sw/source/core/text/txtdrop.cxx  |   12 ++--
 sw/source/core/text/txtfrm.cxx   |8 
 11 files changed, 45 insertions(+), 45 deletions(-)

New commits:
commit 49b763f43a6a954af0c897042da70e9a7de8b4fa
Author: Aron Budea 
AuthorDate: Mon Oct 4 23:22:47 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 01:22:46 2021 +0200

Partially revert "sw: replace most static_cast()...

... calls with o3tl::narrowing()"

Only the changes that enable
301278b656e76b6f42af5cf8a6f5c6c02acfffeb to be reverted easily
in libreoffice-7-2.

This reverts commit 2634bc59092b24217d984a5845365d703bdb08d2.

Change-Id: Id43bcb8eb386d8aa49a6a0c3768abfc916cce717
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123093
Reviewed-by: Mike Kaganski 
Reviewed-by: Andras Timar 
Tested-by: Christian Lohmaier 

diff --git a/sw/source/core/text/frmcrsr.cxx b/sw/source/core/text/frmcrsr.cxx
index 9ea484912cff..8be43264f192 100644
--- a/sw/source/core/text/frmcrsr.cxx
+++ b/sw/source/core/text/frmcrsr.cxx
@@ -1418,7 +1418,7 @@ void SwTextFrame::FillCursorPos( SwFillData& rFill ) const
 if( nDiff > 0 )
 {
 nDiff /= nDist;
-rFill.Fill().nParaCnt = o3tl::narrowing(nDiff + 1);
+rFill.Fill().nParaCnt = static_cast(nDiff + 1);
 rFill.nLineWidth = 0;
 rFill.bInner = false;
 rFill.bEmpty = true;
diff --git a/sw/source/core/text/inftxt.cxx b/sw/source/core/text/inftxt.cxx
index ddfc54bc6fc3..3e3b5d78af23 100644
--- a/sw/source/core/text/inftxt.cxx
+++ b/sw/source/core/text/inftxt.cxx
@@ -426,7 +426,7 @@ void SwTextSizeInfo::GetTextSize( const SwScriptInfo* pSI, 
const TextFrameIndex
 aDrawInf.SetSnapToGrid( SnapToGrid() );
 aDrawInf.SetKanaComp( nComp );
 SwPosSize aSize( m_pFnt->GetTextSize_( aDrawInf ) );
-nMaxSizeDiff = o3tl::narrowing(aDrawInf.GetKanaDiff());
+nMaxSizeDiff = static_cast(aDrawInf.GetKanaDiff());
 nMinSize = aSize.Width();
 }
 
@@ -955,7 +955,7 @@ static void lcl_DrawSpecial( const SwTextPaintInfo& 
rTextPaintInfo, const SwLine
 Point aTmpPos( nX, nY );
 rNonConstTextPaintInfo.SetPos( aTmpPos );
 sal_uInt16 nOldWidth = rPor.Width();
-const_cast(rPor).Width( 
o3tl::narrowing(aFontSize.Width()) );
+const_cast(rPor).Width( 
static_cast(aFontSize.Width()) );
 rTextPaintInfo.DrawText( aTmp, rPor );
 const_cast(rPor).Width( nOldWidth );
 rNonConstTextPaintInfo.SetFont( const_cast(pOldFnt) );
diff --git a/sw/source/core/text/itrcrsr.cxx b/sw/source/core/text/itrcrsr.cxx
index 138359e68c41..64792666e80e 100644
--- a/sw/source/core/text/itrcrsr.cxx
+++ b/sw/source/core/text/itrcrsr.cxx
@@ -142,7 +142,7 @@ namespace {
 nListLevel = MAXLEVEL - 1;
 
 const SwNumFormat& rNumFormat =
-rTextNode.GetNumRule()->Get( 
o3tl::narrowing(nListLevel) );
+rTextNode.GetNumRule()->Get( 
static_cast(nListLevel) );
 if ( rNumFormat.GetPositionAndSpaceMode() == 
SvxNumberFormat::LABEL_ALIGNMENT )
 {
 bRet = true;
@@ -1627,7 +1627,7 @@ TextFrameIndex 
SwTextCursor::GetModelPositionForViewPoint( SwPosition *pPos, con
 nTmpY = pPor->Height() - nTmpY;
 if( nTmpY < 0 )
 nTmpY = 0;
-nX = o3tl::narrowing(nTmpY);
+nX = static_cast(nTmpY);
 }
 
 if( static_cast(pPor)->HasBrackets() )
diff --git a/sw/source/core/text/itrform2.cxx b/sw/source/core/text/itrform2.cxx
index 8e5a2b403e42..289905bc6f50 100644
--- a/sw/source/core/text/itrform2.cxx
+++ b/sw/source/core/text/itrform2.cxx
@@ -242,7 +242,7 @@ SwLinePortion *SwTextFormatter::Underflow( SwTextFormatInfo 
 )
 
 // line width is adjusted, so that pPor does not fit to current
 // line anymore
-rInf.Width( o3tl::narrowing(rInf.X() + (pPor->Width() ? 
pPor->Width() - 1 : 0)) );
+rInf.Width( static_cast(rInf.X() + (pPor->Width() ? 
pPor->Width() - 1 : 0)) );
 rInf.SetLen( pPor->GetLen() );
 rInf.SetFull( false );
 if( pFly )
@@ -431,7 +431,7 @@ void SwTextFormatter::BuildPortions( SwTextFormatInfo  
)
 {
 SwFontScript nNxtActual = rInf.GetFont()->GetActual();
 SwFontScript nLstActual = nNxtActual;
-sal_uInt16 nLstHeight = 
o3tl::narrowing(rInf.GetFont()->GetHeight());
+sal_uInt16 nLstHeight = 
static_cast(rInf.GetFont()->GetHeight());
 

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

2021-10-05 Thread Aron Budea (via logerrit)
 sw/qa/core/text/data/line-width.fodt |   32 
 sw/qa/core/text/text.cxx |   19 ---
 sw/source/core/edit/edattr.cxx   |4 ++--
 sw/source/core/text/itrcrsr.cxx  |   12 ++--
 sw/source/core/text/porglue.cxx  |2 +-
 sw/source/core/text/porlin.cxx   |2 +-
 sw/source/core/text/porlin.hxx   |4 ++--
 sw/source/core/text/pormulti.cxx |2 +-
 sw/source/core/text/pormulti.hxx |2 +-
 9 files changed, 14 insertions(+), 65 deletions(-)

New commits:
commit 02111da55639dc6a15f7ad1c2bfde1c9d8700880
Author: Aron Budea 
AuthorDate: Mon Oct 4 19:23:51 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 01:22:29 2021 +0200

Revert "sw: allow the width of a line portion to be larger...

...than 65536 twips"

The originating 301278b656e76b6f42af5cf8a6f5c6c02acfffeb will
be reverted in libreoffice-7-2.

This reverts commit 6fdd0a3f8b3448a9a246496191908c92156cc38b.

Change-Id: Ia4f231af90d17eeaa0db4272c8a80e48181647dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122945
Reviewed-by: Mike Kaganski 
Reviewed-by: Andras Timar 
Tested-by: Christian Lohmaier 

diff --git a/sw/qa/core/text/data/line-width.fodt 
b/sw/qa/core/text/data/line-width.fodt
deleted file mode 100644
index a6b2b2f5c62b..
--- a/sw/qa/core/text/data/line-width.fodt
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  iVBORw0KGgoNSUhEUgAAAEBACAQAYLlVBGdBTUEAALGPC/xhBQFz
-   UkdCAK7OHOkgY0hSTQAAeiYAAICEAAD6gOgAAHUwAADqYAAAOpgAABdwnLpRPAAA
-   AAJiS0dEAACqjSMyCW9GRnMGAAAMc1XTCXBIWXMAAA3XAAAN1wFCKJt4
-   CXZwQWcAAABMQACdMTgbAAABzUlEQVRo3u3ZPU/CQBjA8X+Jxs3ESUDj4iK+LA5+
-   BBfjqBE1cXB2MlFAEqMgxvhNNL4sLsK3UPQL6ObkoAETz+FKW2mxCPRYnucWUu76/OC59C49
-   cGOCKqrD9kHRc6ddPv7oW2WCwMh0nF63Myz7Tm8hPTNu0pgHMER3scepTbgK6enJNND83RLn
-   /878yRaPmgBZFDuMsNLeWB9gmFQHP77MIg9gsYciR50NFKvtjIy10yk84pSZA7DYpwR8scmF
-   QQCMuoQMpzbh0iAARrlnVn90CWHTsZcAiHPPdINQAuqsc2MQAAnKDUKWEhZ10twaBEDSJWQo
-   YlFj7S9CzwEegkXWIbQsRAQASFJhpplwbRAACS+hANRJBxMiAkDcJeQ4sQkBhYgMoJ+Ozlwo
-   2YQ7AJ6CRxyiUGnVy3hVKb0Af9v7hUG2Wy9TEQCUelFTDULB2S+YKYGOMcpM6UIccOQnRA6A
-   cSp6ibfI+wkGADBGpTEd8xz1AaAfTQ7huA8AvUw5hVjuA0D/C5OaMN8XACRZ8F0zCggKAQhA
-   AAIQgAAEIAABCEAAAhCAAAQgAAH4zg3feY4w3Xs44M5+oW0qvCWoGcvaIlM3x/f/ab+O738A
-   hOCNQr34oD4ldEVYdGNyZWF0ZS1kYXRlADIwMTAtMTItMjBUMTc6MDg6MzYrMDE6MDB6
-   5RscJXRFWHRtb2RpZnktZGF0ZQAyMDEwLTEyLTIwVDE3OjA4OjM3KzAxOjAwgyNmnAAA
-   AABJRU5ErkJggg==
-  
-
-  
-
diff --git a/sw/qa/core/text/text.cxx b/sw/qa/core/text/text.cxx
index be6406f6b654..d38b6a3e62cc 100644
--- a/sw/qa/core/text/text.cxx
+++ b/sw/qa/core/text/text.cxx
@@ -151,25 +151,6 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testLineHeight)
 assertXPath(pXmlDoc, "//fly/infos/bounds", "top", 
OUString::number(DOCUMENTBORDER));
 }
 
-CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testLineWidth)
-{
-// Given a document with an as-char image, width in twips not fitting into 
sal_uInt16:
-SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "line-width.fodt");
-SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
-sal_Int32 nOldLeft = pWrtShell->GetCharRect().Left();
-
-// When moving the cursor to the right:
-pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, 
/*bBasicCall=*/false);
-
-// Then make sure we move to the right by the image width:
-sal_Int32 nNewLeft = pWrtShell->GetCharRect().Left();
-// Without the accompanying fix in place, this test would have failed with:
-// - Expected greater than: 65536
-// - Actual  : 1872
-// i.e. the width (around 67408 twips) was truncated.
-CPPUNIT_ASSERT_GREATER(static_cast(65536), nNewLeft - nOldLeft);
-}
-
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/edit/edattr.cxx b/sw/source/core/edit/edattr.cxx
index 6ab5a3ae9ad8..4992cc965715 100644
--- a/sw/source/core/edit/edattr.cxx
+++ b/sw/source/core/edit/edattr.cxx
@@ -531,10 +531,10 @@ bool SwEditShell::IsMoveLeftMargin( bool bRight, bool 
bModulus ) const
 SwFrame* pFrame = pCNd->getLayoutFrame( GetLayout() );
 if ( pFrame )
 {
-const sal_uInt32 nFrameWidth = 
o3tl::narrowing( pFrame->IsVertical() ?
+const sal_uInt16 nFrameWidth = 
o3tl::narrowing( pFrame->IsVertical() ?
  
pFrame->getFrameArea().Height() :
  
pFrame->getFrameArea().Width() );
-bRet = o3tl::narrowing(nFrameWidth) > ( nNext 
+ MM50 );
+bRet = nFrameWidth > ( nNext + MM50 );
 }
 else
   

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

2021-10-05 Thread Aron Budea (via logerrit)
 sw/CppunitTest_sw_core_text.mk   |1 
 sw/qa/core/text/data/ruby.fodt   |   25 -
 sw/qa/core/text/text.cxx |   46 ---
 sw/source/core/text/porlay.hxx   |2 -
 sw/source/core/text/pormulti.cxx |2 -
 5 files changed, 2 insertions(+), 74 deletions(-)

New commits:
commit 816e01bf67067ebe32dbc730bef386fdc54b8a66
Author: Aron Budea 
AuthorDate: Mon Oct 4 19:19:13 2021 +0200
Commit: Christian Lohmaier 
CommitDate: Wed Oct 6 01:21:43 2021 +0200

Revert "tdf#144305 sw: fix rendering of ruby portions with...

...non-default ruby alignment"

Causing 301278b656e76b6f42af5cf8a6f5c6c02acfffeb will be
reverted in libreoffice-7-2.

This reverts commit 168065841250c190808261cf65afa00f9ecd52e7.

Change-Id: I9b23c9a1980c4ed06cc0c53086ad24f00e75053a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122944
Reviewed-by: Mike Kaganski 
Reviewed-by: Andras Timar 
Tested-by: Christian Lohmaier 

diff --git a/sw/CppunitTest_sw_core_text.mk b/sw/CppunitTest_sw_core_text.mk
index 6f19ff690f5a..cb4801accac9 100644
--- a/sw/CppunitTest_sw_core_text.mk
+++ b/sw/CppunitTest_sw_core_text.mk
@@ -40,7 +40,6 @@ $(eval $(call gb_CppunitTest_use_externals,sw_core_text,\
 $(eval $(call gb_CppunitTest_set_include,sw_core_text,\
 -I$(SRCDIR)/sw/inc \
 -I$(SRCDIR)/sw/source/core/inc \
--I$(SRCDIR)/sw/source/core/text \
 -I$(SRCDIR)/sw/source/uibase/inc \
 -I$(SRCDIR)/sw/qa/inc \
 $$(INCLUDE) \
diff --git a/sw/qa/core/text/data/ruby.fodt b/sw/qa/core/text/data/ruby.fodt
deleted file mode 100644
index b5a0e23d2c53..
--- a/sw/qa/core/text/data/ruby.fodt
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-  
-  
-  
-  
-  
-
-  
-
-
-  
-
-
-  
-
-  
-  
-  
-  
-
-  Ruby test: base textruby (left) base 
textruby (center) 
base 
textruby 
(right)
-
-  
-
diff --git a/sw/qa/core/text/text.cxx b/sw/qa/core/text/text.cxx
index 6832ad2cb436..be6406f6b654 100644
--- a/sw/qa/core/text/text.cxx
+++ b/sw/qa/core/text/text.cxx
@@ -21,12 +21,6 @@
 #include 
 #include 
 #include 
-#include 
-#include 
-#include 
-
-#include 
-#include 
 
 constexpr OUStringLiteral DATA_DIRECTORY = u"/sw/qa/core/text/data/";
 
@@ -176,46 +170,6 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testLineWidth)
 CPPUNIT_ASSERT_GREATER(static_cast(65536), nNewLeft - nOldLeft);
 }
 
-CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testRuby)
-{
-// Given a document with multiple ruby portions:
-SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "ruby.fodt");
-
-// When laying out that document:
-SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout();
-
-// Then make sure that no unwanted margin portions are created, making the 
actual text
-// invisible:
-SwFrame* pPageFrame = pLayout->GetLower();
-SwFrame* pBodyFrame = pPageFrame->GetLower();
-SwFrame* pFrame = pBodyFrame->GetLower();
-CPPUNIT_ASSERT(pFrame->IsTextFrame());
-auto pTextFrame = static_cast(pFrame);
-SwParaPortion* pPara = pTextFrame->GetPara();
-bool bFirst = true;
-for (SwLinePortion* pPor = pPara->GetFirstPortion(); pPor; pPor = 
pPor->GetNextPortion())
-{
-// Look for multi-portions in the only paragraph of the document.
-if (pPor->GetWhichPor() != PortionType::Multi)
-{
-continue;
-}
-
-if (bFirst)
-{
-bFirst = false;
-continue;
-}
-
-// The second multi-portion has two lines, check the start of the 
second line.
-auto pMulti = static_cast(pPor);
-// Without the accompanying fix in place, this test would have failed, 
as the portion was a
-// margin portion, not a text portion. The margin was so large that 
the actual text portion was
-// hidden. No margin is needed here at all.
-
CPPUNIT_ASSERT(pMulti->GetRoot().GetNext()->GetFirstPortion()->IsTextPortion());
-}
-}
-
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/text/porlay.hxx b/sw/source/core/text/porlay.hxx
index bff0bd559309..5234a537fa4c 100644
--- a/sw/source/core/text/porlay.hxx
+++ b/sw/source/core/text/porlay.hxx
@@ -75,7 +75,7 @@ public:
 
 /// Collection of SwLinePortion instances, representing one line of text.
 /// Typically owned by an SwParaPortion.
-class SW_DLLPUBLIC SwLineLayout : public SwTextPortion
+class SwLineLayout : public SwTextPortion
 {
 private:
 SwLineLayout *m_pNext;// The next Line
diff --git a/sw/source/core/text/pormulti.cxx b/sw/source/core/text/pormulti.cxx
index 98b8df7b643f..b94302bd8ed7 100644
--- a/sw/source/core/text/pormulti.cxx
+++ b/sw/source/core/text/pormulti.cxx
@@ -630,7 +630,7 @@ SwRubyPortion::SwRubyPortion( const SwMultiCreator& 
rCreate, const SwFont& rFnt,
 // If there is a tabulator in smaller line, no adjustment is 

[Libreoffice-bugs] [Bug 143687] Documentation is missing for "Is" keyword

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143687

Rafael Lima  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |rafael.palma.l...@gmail.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 144951] FORMATTING "shrink to fit" is malfunctioning in the new release

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144951

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 143978] Calc: shrink to fit makes font size unnecessary small compared to cell width

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143978

--- Comment #13 from Eike Rathke  ---
*** Bug 144951 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 144951] FORMATTING "shrink to fit" is malfunctioning in the new release

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144951

Eike Rathke  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REOPENED|RESOLVED

--- Comment #3 from Eike Rathke  ---
Oh yes it was right.

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

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

[Libreoffice-bugs] [Bug 144951] FORMATTING "shrink to fit" is malfunctioning in the new release

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144951

Eike Rathke  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|CLOSED  |REOPENED
 Resolution|DUPLICATE   |---

--- Comment #2 from Eike Rathke  ---
Grml.. misoperated.

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

[Libreoffice-bugs] [Bug 144951] FORMATTING "shrink to fit" is malfunctioning in the new release

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144951

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 143978] Calc: shrink to fit makes font size unnecessary small compared to cell width

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143978

Eike Rathke  changed:

   What|Removed |Added

 CC||j...@danel.us

--- Comment #12 from Eike Rathke  ---
*** Bug 144951 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 144951] FORMATTING "shrink to fit" is malfunctioning in the new release

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144951

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #1 from Eike Rathke  ---


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

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

[Libreoffice-bugs] [Bug 144753] Won't open

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144753

--- Comment #5 from gmarco  ---
(In reply to V Stuart Foote from comment #4)
> 7.1.7 build when released, or 7.2.2 out this week.  Avoid 7.1.6 or
> 7.2.1--both are poisoned by Clang compiler issue of bug 144598
> 
> *** This bug has been marked as a duplicate of bug 144598 ***

It would be correct for all information to be "timely" and "correct"!
As I said, in 7.1.5 the invitation was to upgrade to 7.1.6, on the IT download
site 7.1.6.2 is still proposed as extensively tested.
In addition to this 7.2.1.2 is proposed, finally I installed it and it seems to
work (at least it goes running!).
Now you say this too is unreliable 

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

[Libreoffice-bugs] [Bug 144956] New: LO 7.2 regression: Most buttons not clickable

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144956

Bug ID: 144956
   Summary: LO 7.2 regression: Most buttons not clickable
   Product: LibreOffice
   Version: 7.2.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ho...@schirmeier.com

Description:
In LO 7.2.1.2 (installed on Ubuntu 21.10 from .deb archives downloaded from
libreoffice.org), many buttons are not clickable anymore.  For example, picking
a text color does not have any effect.  In direct comparison, LO 7.1.6.2 works
fine.

Steps to Reproduce:
- run /opt/libreoffice7.1/program/soffice
- pick, e.g., Writer (Impress works, too)
- type a few characters, select them with the mouse
- click the down-arrow to the right of the text color icon
- select, e.g., green

Actual Results:
- color picker vanishes, text color stays the same

Expected Results:
- text turns green


Reproducible: Always


User Profile Reset: Yes



Additional Info:
- Text color is just one of MANY buttons that doesn't work as expected anymore.
 For example, down-arrow to the right of the "unordered list" icon and then
selecting a specific bullet style has no effect either.
- This happens with a completely clean ~/.config/libreoffice/ .

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

[Libreoffice-bugs] [Bug 144920] Selecting text BOLD makes bold numbering as well

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144920

--- Comment #6 from Mike Kaganski  ---
(In reply to Orwel from comment #5)
> For me the numbering should has its own formatting unattached from the text

Note that you may define character style for numbering - on Bullets and
Numbering dialog's Customize tab. That style may have whatever formatting you
define, and what is explicitly set for that style, will not be re-defined by
paragraph's properties. So when used correctly, the existing features already
provide all the flexibility ;)

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

[Libreoffice-ux-advise] [Bug 144920] Selecting text BOLD makes bold numbering as well

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144920

--- Comment #6 from Mike Kaganski  ---
(In reply to Orwel from comment #5)
> For me the numbering should has its own formatting unattached from the text

Note that you may define character style for numbering - on Bullets and
Numbering dialog's Customize tab. That style may have whatever formatting you
define, and what is explicitly set for that style, will not be re-defined by
paragraph's properties. So when used correctly, the existing features already
provide all the flexibility ;)

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

[Libreoffice-bugs] [Bug 144899] Table Shadows' "Position" property is not saved in Impress

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144899

Rafael Lima  changed:

   What|Removed |Added

 Whiteboard||QA:needsComment

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

[Libreoffice-commits] core.git: odk/examples onlineupdate/source oox/qa opencl/opencltest opencl/source registry/test xmlhelp/source xmloff/qa

2021-10-05 Thread Julien Nabet (via logerrit)
 odk/examples/cpp/DocumentLoader/DocumentLoader.cxx   |   
13 ++--
 onlineupdate/source/update/updater/progressui-unused/progressui_gonk.cxx |
6 --
 oox/qa/token/tokenmap-test.cxx   |
1 
 opencl/opencltest/main.cxx   |   
10 +--
 opencl/source/openclwrapper.cxx  |
2 
 registry/test/testmerge.cxx  |
9 +--
 registry/test/testregcpp.cxx |
6 --
 xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx|   
29 --
 xmloff/qa/unit/tokenmap-test.cxx |
1 
 9 files changed, 31 insertions(+), 46 deletions(-)

New commits:
commit 10ad9560fba562f494fa44fc8a7bd2388d9e8c5c
Author: Julien Nabet 
AuthorDate: Tue Oct 5 20:49:26 2021 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 5 23:09:56 2021 +0200

drop 'using namespace std' in o* r* x*

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

diff --git a/odk/examples/cpp/DocumentLoader/DocumentLoader.cxx 
b/odk/examples/cpp/DocumentLoader/DocumentLoader.cxx
index 057a9e8152b0..6925fef788b1 100644
--- a/odk/examples/cpp/DocumentLoader/DocumentLoader.cxx
+++ b/odk/examples/cpp/DocumentLoader/DocumentLoader.cxx
@@ -49,7 +49,6 @@
 #include 
 #include 
 
-using namespace std;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
 using namespace com::sun::star::beans;
@@ -67,14 +66,14 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 
 if (nCount < 1)
 {
-cout << "using: DocumentLoader 
-env:URE_MORE_TYPES=  "
+std::cout << "using: DocumentLoader 
-env:URE_MORE_TYPES=  "
 "[]"
- << endl
- << endl
+ << std::endl
+ << std::endl
  << "example: DocumentLoader 
-env:URE_MORE_TYPES=\"file:///.../program/offapi.rdb\" "
 "\"file:///e:/temp/test.odt\" "
 
"\"uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager\""
- << endl;
+ << std::endl;
 exit(1);
 }
  if (nCount == 2)
@@ -109,8 +108,8 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
 }
 catch ( Exception& e )
 {
-cout << "Error: cannot establish a connection using "
- << sConnectionString << endl << e.Message << endl;
+std::cout << "Error: cannot establish a connection using "
+ << sConnectionString << std::endl << e.Message << std::endl;
 exit(1);
 }
 
diff --git 
a/onlineupdate/source/update/updater/progressui-unused/progressui_gonk.cxx 
b/onlineupdate/source/update/updater/progressui-unused/progressui_gonk.cxx
index c855e548efe0..2878aa2f0bb7 100644
--- a/onlineupdate/source/update/updater/progressui-unused/progressui_gonk.cxx
+++ b/onlineupdate/source/update/updater/progressui-unused/progressui_gonk.cxx
@@ -16,8 +16,6 @@
 
 #define LOG(args...)  __android_log_print(ANDROID_LOG_INFO, "GeckoUpdater" , 
## args)
 
-using namespace std;
-
 int InitProgressUI(int *argc, char ***argv)
 {
 return 0;
@@ -48,7 +46,7 @@ void UpdateProgressUI(float progress)
 sLastNumBars = numBars;
 
 size_t numSpaces = kProgressBarLength - numBars;
-string bars(numBars, '=');
-string spaces(numSpaces, ' ');
+std::string bars(numBars, '=');
+std::string spaces(numSpaces, ' ');
 LOG("Progress [ %s%s ]\n", bars.c_str(), spaces.c_str());
 }
diff --git a/oox/qa/token/tokenmap-test.cxx b/oox/qa/token/tokenmap-test.cxx
index 4f617189bbf4..058f7c16ebbf 100644
--- a/oox/qa/token/tokenmap-test.cxx
+++ b/oox/qa/token/tokenmap-test.cxx
@@ -15,7 +15,6 @@
 #include 
 #include 
 
-using namespace std;
 using namespace com::sun::star::uno;
 
 namespace oox {
diff --git a/opencl/opencltest/main.cxx b/opencl/opencltest/main.cxx
index a499032f8c05..0db18b0042d1 100644
--- a/opencl/opencltest/main.cxx
+++ b/opencl/opencltest/main.cxx
@@ -18,8 +18,6 @@
 
 #include 
 
-using namespace std;
-
 // The purpose of this separate executable is to check whether OpenCL works
 // without crashing (asserting, etc.). Other checks can be done by LO core 
itself.
 
@@ -44,7 +42,7 @@ static void runTest(const char* deviceName, const char* 
devicePlatform)
 // Find the given OpenCL device (in order to use the same one as LO core).
 cl_uint numPlatforms;
 openclcheck(clGetPlatformIDs(0, nullptr, ));
-vector platforms(numPlatforms);
+std::vector platforms(numPlatforms);
 openclcheck(clGetPlatformIDs(numPlatforms, platforms.data(), nullptr));
 cl_platform_id platformId = nullptr;
 for (cl_uint i = 0; i < numPlatforms; ++i)
@@ -67,7 +65,7 @@ static void runTest(const char* deviceName, const char* 
devicePlatform)
 
 

[Libreoffice-commits] core.git: solenv/gbuildtojson solenv/gcc-wrappers soltools/mkdepend stoc/source stoc/test svl/source svtools/source toolkit/source

2021-10-05 Thread Julien Nabet (via logerrit)
 solenv/gbuildtojson/gbuildtojson.cxx|   34 -
 solenv/gcc-wrappers/g++.cxx |   14 +---
 solenv/gcc-wrappers/gcc.cxx |   14 +---
 solenv/gcc-wrappers/wrapper.cxx |   56 +++-
 soltools/mkdepend/collectdircontent.cxx |   28 +++-
 stoc/source/namingservice/namingservice.cxx |1 
 stoc/source/servicemanager/servicemanager.cxx   |3 
 stoc/test/javavm/jvm_interaction/interactionhandler.cxx |1 
 stoc/test/javavm/testjavavm.cxx |1 
 svl/source/numbers/zformat.cxx  |2 
 svtools/source/control/ruler.cxx|   13 +--
 svtools/source/dialogs/ServerDetailsControls.cxx|1 
 toolkit/source/controls/eventcontainer.cxx  |2 
 13 files changed, 75 insertions(+), 95 deletions(-)

New commits:
commit 1f90b8086fcad7ac033e76a96bf102db7c15e44f
Author: Julien Nabet 
AuthorDate: Tue Oct 5 20:33:16 2021 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 5 23:03:52 2021 +0200

drop 'using namespace std' in s* + toolkit

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

diff --git a/solenv/gbuildtojson/gbuildtojson.cxx 
b/solenv/gbuildtojson/gbuildtojson.cxx
index 8061b801cd76..4d60ac787a4b 100644
--- a/solenv/gbuildtojson/gbuildtojson.cxx
+++ b/solenv/gbuildtojson/gbuildtojson.cxx
@@ -16,47 +16,45 @@
 #include 
 #include 
 
-using namespace std;
-
 int main(int argc, char** argv)
 {
-const string optsintro("--");
-map vartofile;
+const std::string optsintro("--");
+std::map vartofile;
 for(int i=1; i < argc; ++i)
 {
-const string arg(argv[i]);
+const std::string arg(argv[i]);
 if(arg.substr(0,2) != optsintro)
 {
-cerr << "Only option args starting with -- allowed." << endl;
+std::cerr << "Only option args starting with -- allowed." << 
std::endl;
 return 1;
 }
 const size_t eqpos = arg.find("=", 2);
-if(eqpos == string::npos)
+if(eqpos == std::string::npos)
 {
-cerr << "Only option args assigning with = allowed." << endl;
+std::cerr << "Only option args assigning with = allowed." << 
std::endl;
 return 2;
 }
-const string argname(arg.substr(2, eqpos-2));
-vartofile[argname] = arg.substr(eqpos+1, string::npos);
+const std::string argname(arg.substr(2, eqpos-2));
+vartofile[argname] = arg.substr(eqpos+1, std::string::npos);
 }
-cout << "{";
+std::cout << "{";
 bool first(true);
 for(const auto& varandfile : vartofile)
 {
 if(first)
 first =false;
 else
-cout << "," << endl;
-string varupper(varandfile.first);
+std::cout << "," << std::endl;
+std::string varupper(varandfile.first);
 for(auto& c : varupper)
 if(c != '_')
 c = c-32;
-ifstream filestream(varandfile.second.c_str());
-stringstream contents;
+std::ifstream filestream(varandfile.second.c_str());
+std::stringstream contents;
 contents << filestream.rdbuf();
 filestream.close();
 (void)remove(varandfile.second.c_str());
-string escapedcontents;
+std::string escapedcontents;
 for(const auto& c : contents.str())
 {
 if(c=='\\')
@@ -68,9 +66,9 @@ int main(int argc, char** argv)
 else
 escapedcontents += c;
 }
-cout << "\"" << varupper << "\": \"" << escapedcontents << "\"";
+std::cout << "\"" << varupper << "\": \"" << escapedcontents << "\"";
 }
-cout << "}" << endl;
+std::cout << "}" << std::endl;
 return 0;
 }
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/solenv/gcc-wrappers/g++.cxx b/solenv/gcc-wrappers/g++.cxx
index ae7dcb6be796..6b352e64c845 100644
--- a/solenv/gcc-wrappers/g++.cxx
+++ b/solenv/gcc-wrappers/g++.cxx
@@ -9,19 +9,17 @@
 
 #include "wrapper.hxx"
 
-using namespace std;
-
 int main(int argc, char* argv[])
 {
-vector rawargs(argv + 1, argv + argc);
+std::vector rawargs(argv + 1, argv + argc);
 
-string env_prefix; // defaults to REAL_
+std::string env_prefix; // defaults to REAL_
 bool verbose = false;
-string args = processccargs(rawargs, env_prefix, verbose);
+std::string args = processccargs(rawargs, env_prefix, verbose);
 
-string command = getexe(env_prefix + "CXX");
-string flags = getexe(env_prefix + "CXX_FLAGS", true);
-args.insert(0, flags.empty() ? string() : flags + " ");
+std::string command = getexe(env_prefix + "CXX");
+std::string flags = getexe(env_prefix + "CXX_FLAGS", true);
+

[Libreoffice-bugs] [Bug 32884] recovery should differentiate between crashes and session restoring

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32884

--- Comment #7 from Domarius  ---
LibreOffice is the only program I have which I need to manually close before
shutting down. All other programs that have file recovery dialogues will
respect a shutdown and close gracefully, only bringing up the file recovery
dialogue when the program was actually terminated prematurely (eg. you can
trigger it by force quitting the program).

When LibreOffice receives a shutdown request from the system, it simply has to
gracefully close all open documents the same way the user would manually, and
only stop if there is anything unsaved, at which point, if shut down continues,
we can leave the lock file there and the recovery dialogue will be triggered
next time.

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

[Libreoffice-commits] core.git: hwpfilter/source i18npool/source io/source jvmaccess/workbench jvmfwk/plugins

2021-10-05 Thread Julien Nabet (via logerrit)
 hwpfilter/source/hwpeq.cxx  |   25 ++
 i18npool/source/localedata/LocaleNode.cxx   |7 +---
 io/source/stm/opump.cxx |1 
 jvmaccess/workbench/javainfo/javainfotest.cxx   |5 +-
 jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx|7 +---
 jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx  |2 -
 jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx |9 ++---
 jvmfwk/plugins/sunmajor/pluginlib/sunjre.cxx|2 -
 jvmfwk/plugins/sunmajor/pluginlib/util.cxx  |   35 +---
 jvmfwk/plugins/sunmajor/pluginlib/vendorbase.cxx|7 +---
 10 files changed, 44 insertions(+), 56 deletions(-)

New commits:
commit 3068ab9a2c9307cbea2efa2b6924ce427bb54466
Author: Julien Nabet 
AuthorDate: Tue Oct 5 20:42:00 2021 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 5 22:22:55 2021 +0200

drop 'using namespace std' in h* i* j*

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

diff --git a/hwpfilter/source/hwpeq.cxx b/hwpfilter/source/hwpeq.cxx
index f2325508fc9f..a19bee24acbb 100644
--- a/hwpfilter/source/hwpeq.cxx
+++ b/hwpfilter/source/hwpeq.cxx
@@ -24,7 +24,6 @@
 // DVO: always use standard headers:
 #include 
 #include 
-using namespace std;
 
 #include "mzstring.h"
 #include "hwpeq.h"
@@ -65,8 +64,8 @@ static bool IS_BINARY(std::istream::int_type ch) {
 // sub and sup script status
 enum { SCRIPT_NONE, SCRIPT_SUB, SCRIPT_SUP, SCRIPT_ALL};
 
-static int  eq_word(MzString& outs, istream *strm, int script = SCRIPT_NONE);
-static bool eq_sentence(MzString& outs, istream *strm, const char *end = 
nullptr);
+static int  eq_word(MzString& outs, std::istream *strm, int script = 
SCRIPT_NONE);
+static bool eq_sentence(MzString& outs, std::istream *strm, const char *end = 
nullptr);
 
 namespace {
 
@@ -462,10 +461,10 @@ namespace {
 struct eq_stack {
   MzString  white;
   MzString  token;
-  istream   *strm;
+  std::istream   *strm;
 
   eq_stack() { strm = nullptr; };
-  bool state(istream const *s) {
+  bool state(std::istream const *s) {
 if( strm != s) { white = nullptr; token = nullptr; }
 return token.length() != 0;
   }
@@ -475,7 +474,7 @@ struct eq_stack {
 
 static eq_stack *stk = nullptr;
 
-static void push_token(MzString const , MzString const , istream 
*strm)
+static void push_token(MzString const , MzString const , 
std::istream *strm)
 {
   // one time stack
   assert(stk->token.length() == 0);
@@ -490,7 +489,7 @@ static void push_token(MzString const , MzString 
const , istream *st
  *
  * control char, control sequence, binary sequence,
  * alphabet string, single character */
-static int next_token(MzString , MzString , istream *strm)
+static int next_token(MzString , MzString , std::istream *strm)
 {
   std::istream::int_type ch = 0;
 
@@ -571,7 +570,7 @@ static int next_token(MzString , MzString , 
istream *strm)
   return token.length();
 }
 
-static std::istream::int_type read_white_space(MzString& outs, istream *strm)
+static std::istream::int_type read_white_space(MzString& outs, std::istream 
*strm)
 {
   std::istream::int_type result;
 
@@ -609,7 +608,7 @@ static std::istream::int_type read_white_space(MzString& 
outs, istream *strm)
   a over b -> {a} over {b}
  */
 
-static int eq_word(MzString& outs, istream *strm, int status)
+static int eq_word(MzString& outs, std::istream *strm, int status)
 {
   MzString  token, white, state;
   int   result;
@@ -677,7 +676,7 @@ static int eq_word(MzString& outs, istream *strm, int 
status)
   return result;
 }
 
-static bool eq_sentence(MzString& outs, istream *strm, const char *end)
+static bool eq_sentence(MzString& outs, std::istream *strm, const char *end)
 {
   MzString  state;
   MzString  white, token;
@@ -706,7 +705,7 @@ static bool eq_sentence(MzString& outs, istream *strm, 
const char *end)
   return multiline;
 }
 
-static char eq2ltxconv(MzString& sstr, istream *strm, const char *sentinel)
+static char eq2ltxconv(MzString& sstr, std::istream *strm, const char 
*sentinel)
 {
   MzString  white, token;
   char  key[256];
@@ -784,9 +783,9 @@ void eq2latex(MzString& outs, char const *s)
 
   MzString  tstr;
 
-  istringstream tstrm(s);
+  std::istringstream tstrm(s);
   bool eqnarray = eq_sentence(tstr, );
-  istringstream strm(tstr.c_str());
+  std::istringstream strm(tstr.c_str());
 
   if( eqnarray )
 outs << "\\begin{array}{r}" << ENDL;
diff --git a/i18npool/source/localedata/LocaleNode.cxx 
b/i18npool/source/localedata/LocaleNode.cxx
index 8c23e3a29b21..e1443b1e1d0f 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -41,7 +41,6 @@ typedef ::o3tl::sorted_vector< OUString > NameSet;
 typedef ::o3tl::sorted_vector< sal_Int16 > ValueSet;
 
 namespace cssi = ::com::sun::star::i18n;
-using namespace std;
 

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

2021-10-05 Thread Caolán McNamara (via logerrit)
 sw/source/core/txtnode/fntcache.cxx |   15 +++
 1 file changed, 11 insertions(+), 4 deletions(-)

New commits:
commit b35b1dca3a734739a9780c17331b8368d7df7657
Author: Caolán McNamara 
AuthorDate: Tue Oct 5 09:07:23 2021 +0100
Commit: Caolán McNamara 
CommitDate: Tue Oct 5 22:13:37 2021 +0200

ofz#39150 skip detecting bidi directions

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

diff --git a/sw/source/core/txtnode/fntcache.cxx 
b/sw/source/core/txtnode/fntcache.cxx
index 904535068fa6..bfca43e92147 100644
--- a/sw/source/core/txtnode/fntcache.cxx
+++ b/sw/source/core/txtnode/fntcache.cxx
@@ -17,11 +17,8 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
 #include 
 
-#include 
-
 #include 
 #include 
 #include 
@@ -33,6 +30,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -58,6 +56,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 using namespace ::com::sun::star;
 
@@ -189,6 +189,13 @@ void SwFntObj::CreatePrtFont( const OutputDevice& rPrt )
 
 }
 
+#if !ENABLE_FUZZERS
+const SalLayoutFlags eGlyphItemsOnlyLayout = SalLayoutFlags::GlyphItemsOnly;
+#else
+// ofz#39150 skip detecting bidi directions
+const SalLayoutFlags eGlyphItemsOnlyLayout = SalLayoutFlags::GlyphItemsOnly | 
SalLayoutFlags::BiDiStrong;
+#endif
+
 /**
  * Pre-calculates glyph items for the rendered subset of rKey's text, assuming
  * outdev state does not change between the outdev calls.
@@ -204,7 +211,7 @@ static SalLayoutGlyphs* lcl_CreateLayout(const 
SwTextGlyphsKey& rKey, SwTextGlyp
 // Calculate glyph items.
 std::unique_ptr pLayout
 = rKey.m_pOutputDevice->ImplLayout(rKey.m_aText, rKey.m_nIndex, 
rKey.m_nLength, Point(0, 0), 0,
- nullptr, 
SalLayoutFlags::GlyphItemsOnly);
+   nullptr, eGlyphItemsOnlyLayout);
 if (!pLayout)
 return nullptr;
 


[Libreoffice-bugs] [Bug 144920] Selecting text BOLD makes bold numbering as well

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144920

--- Comment #5 from Orwel  ---
Thanks to all for the posts. I had posted this as I am facing it very often. I
am working with contracts where you want to have a homogeneous formatting.
Numbering is bold or is not - all numbers equal. If you use paragraphs that are
important, e.g. as manual  heading (e.g. 1.1 with bolded word "Definitions"
followed with un-bold 1.1.1 User - …. 1.1.2 Seller -…), you face always this
problem. You have to mark all the numbering and double click  CTRL+B to bold
them all and than unbold them all. 

For me the numbering should has its own formatting unattached from the text –
by default as described after steps 7-9 of telesto’s post above. If you have a
lot of numbered paragraphs (1.1, 1.1.1, than a/, a.a., 1.1.2…. 15.1….) it is
hard to always keep in mind his suggested steps 8/9. 

But I can understand if my use of numbered paragraphs is not common and you
think, the numbers should always became by default bold beside bolded text. But
in my opinion numbers and text are visually 2 different things. 

I like LO compared to MS  mostly for the reason, it does not format anything
without my action (means by itself) and use formats change only if i take a
special format action. Therefor i have felt this behavior is a bug, as format
of numbers change by itself without any format action on the numbers from of me
:-)

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

[Libreoffice-ux-advise] [Bug 144920] Selecting text BOLD makes bold numbering as well

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144920

--- Comment #5 from Orwel  ---
Thanks to all for the posts. I had posted this as I am facing it very often. I
am working with contracts where you want to have a homogeneous formatting.
Numbering is bold or is not - all numbers equal. If you use paragraphs that are
important, e.g. as manual  heading (e.g. 1.1 with bolded word "Definitions"
followed with un-bold 1.1.1 User - …. 1.1.2 Seller -…), you face always this
problem. You have to mark all the numbering and double click  CTRL+B to bold
them all and than unbold them all. 

For me the numbering should has its own formatting unattached from the text –
by default as described after steps 7-9 of telesto’s post above. If you have a
lot of numbered paragraphs (1.1, 1.1.1, than a/, a.a., 1.1.2…. 15.1….) it is
hard to always keep in mind his suggested steps 8/9. 

But I can understand if my use of numbered paragraphs is not common and you
think, the numbers should always became by default bold beside bolded text. But
in my opinion numbers and text are visually 2 different things. 

I like LO compared to MS  mostly for the reason, it does not format anything
without my action (means by itself) and use formats change only if i take a
special format action. Therefor i have felt this behavior is a bug, as format
of numbers change by itself without any format action on the numbers from of me
:-)

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

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

2021-10-05 Thread Eike Rathke (via logerrit)
 sc/inc/formulacell.hxx  |3 +++
 sc/source/core/data/conditio.cxx|4 
 sc/source/core/data/formulacell.cxx |   32 ++--
 vcl/source/window/paint.cxx |9 ++---
 4 files changed, 39 insertions(+), 9 deletions(-)

New commits:
commit ce8a7278e1304f7aaa65bce34aeeda5e83b231f1
Author: Eike Rathke 
AuthorDate: Tue Oct 5 20:04:19 2021 +0200
Commit: Eike Rathke 
CommitDate: Tue Oct 5 22:01:58 2021 +0200

Fix crash if conditional format triggers recursion with iterations enabled

Could occur if a conditional format is evaluated (for example if
row height is to be obtained) while a formula cell it references
is still running and iterations are enabled so the conditional
format's temporary formula cell is added to the iteration
recursion list but iterations are not triggered if there are no
circular references. In that case the temporary formula cell's
pointer remained in the recursion list and it's dangling instance
was accessed in the next round. Mark such formula cell as
free-flying and remove from recursion list if it was added.

Observed at
https://ask.libreoffice.org/t/lo-calc-crashes-when-calling-a-macro/68800
with the original attached file that now got replaced with another
version that doesn't have iterations enabled so wouldn't trigger
the bug (and apparently even doesn't if enabling iterations).

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

diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index 9ad2ba7b16f7..fd57bde39976 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -137,6 +137,7 @@ private:
 boolmbPostponedDirty : 1;   // if cell needs to be set dirty 
later
 boolmbIsExtRef   : 1; // has references in 
ScExternalRefManager; never cleared after set
 boolmbSeenInPath : 1; // For detecting cycle involving 
formula groups and singleton formulacells
+boolmbFreeFlying : 1; // Cell is out of sheets 
interpreted, like in conditional format
 ScMatrixModecMatrixFlag  : 8;
 sal_uInt16  nSeenInIteration : 16;   // Iteration cycle in which the 
cell was last encountered
 SvNumFormatType nFormatType  : 16;
@@ -222,6 +223,8 @@ public:
 
 ScFormulaCell(const ScFormulaCell& rCell, ScDocument& rDoc, const 
ScAddress& rPos, ScCloneFlags nCloneFlags = ScCloneFlags::Default);
 
+voidSetFreeFlying( bool b ) { mbFreeFlying = b; }
+
 size_t GetHash() const;
 
 voidGetFormula( OUString& rFormula,
diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx
index 008592410a75..8707e7eb4c67 100644
--- a/sc/source/core/data/conditio.cxx
+++ b/sc/source/core/data/conditio.cxx
@@ -401,6 +401,7 @@ void ScConditionEntry::MakeCells( const ScAddress& rPos )
 // pFCell1 will hold a flat-copied ScTokenArray sharing ref-counted
 // code tokens with pFormula1
 pFCell1.reset( new ScFormulaCell(*mpDoc, rPos, *pFormula1) );
+pFCell1->SetFreeFlying(true);
 pFCell1->StartListeningTo( *mpDoc );
 }
 
@@ -409,6 +410,7 @@ void ScConditionEntry::MakeCells( const ScAddress& rPos )
 // pFCell2 will hold a flat-copied ScTokenArray sharing ref-counted
 // code tokens with pFormula2
 pFCell2.reset( new ScFormulaCell(*mpDoc, rPos, *pFormula2) );
+pFCell2->SetFreeFlying(true);
 pFCell2->StartListeningTo( *mpDoc );
 }
 }
@@ -653,6 +655,7 @@ void ScConditionEntry::Interpret( const ScAddress& rPos )
 {
 pTemp1.reset(pFormula1 ? new ScFormulaCell(*mpDoc, rPos, *pFormula1) : 
new ScFormulaCell(*mpDoc, rPos));
 pEff1 = pTemp1.get();
+pEff1->SetFreeFlying(true);
 }
 if ( pEff1 )
 {
@@ -683,6 +686,7 @@ void ScConditionEntry::Interpret( const ScAddress& rPos )
 {
 pTemp2.reset(pFormula2 ? new ScFormulaCell(*mpDoc, rPos, *pFormula2) : 
new ScFormulaCell(*mpDoc, rPos));
 pEff2 = pTemp2.get();
+pEff2->SetFreeFlying(true);
 }
 if ( pEff2 )
 {
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index 1600a1248141..254f4bcee1d7 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -599,6 +599,7 @@ ScFormulaCell::ScFormulaCell( ScDocument& rDoc, const 
ScAddress& rPos ) :
 mbPostponedDirty(false),
 mbIsExtRef(false),
 mbSeenInPath(false),
+mbFreeFlying(false),
 cMatrixFlag(ScMatrixMode::NONE),
 nSeenInIteration(0),
 nFormatType(SvNumFormatType::NUMBER),
@@ -631,6 +632,7 @@ ScFormulaCell::ScFormulaCell( ScDocument& rDoc, const 
ScAddress& rPos,
 mbPostponedDirty(false),
 mbIsExtRef(false),
 mbSeenInPath(false),
+

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

2021-10-05 Thread Luboš Luňák (via logerrit)
 vcl/source/window/paint.cxx |9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

New commits:
commit 69bd4b2ad4dd81e5f46a8c598e14410baecc732e
Author: Luboš Luňák 
AuthorDate: Tue Oct 5 14:30:44 2021 +0200
Commit: Luboš Luňák 
CommitDate: Tue Oct 5 22:02:02 2021 +0200

do not block out PaintImmediately() in LOK mode

I'm not sure why I did this when disabling LOK idle painting, even
if a window is not to be painted to, it still needs at least
invalidating.

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

diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx
index 8531ead70012..29f34de4f53c 100644
--- a/vcl/source/window/paint.cxx
+++ b/vcl/source/window/paint.cxx
@@ -594,7 +594,8 @@ void Window::ImplCallPaint(const vcl::Region* pRegion, 
ImplPaintFlags nPaintFlag
 if (!mpWindowImpl->mpFirstChild)
 mpWindowImpl->mnPaintFlags &= ~ImplPaintFlags::PaintAllChildren;
 
-if (mpWindowImpl->mbPaintDisabled)
+// If tiled rendering is used, windows are only invalidated, never painted 
to.
+if (mpWindowImpl->mbPaintDisabled || 
comphelper::LibreOfficeKit::isActive())
 {
 if (mpWindowImpl->mnPaintFlags & ImplPaintFlags::PaintAll)
 Invalidate(InvalidateFlags::NoChildren | InvalidateFlags::NoErase 
| InvalidateFlags::NoTransparent | InvalidateFlags::NoClipChildren);
@@ -1316,12 +1317,6 @@ void Window::PaintImmediately()
 if (!mpWindowImpl)
 return;
 
-if (comphelper::LibreOfficeKit::isActive())
-{
-// Tiled rendering is used, direct paint does not need to do anything.
-return;
-}
-
 if ( mpWindowImpl->mpBorderWindow )
 {
 mpWindowImpl->mpBorderWindow->PaintImmediately();


[Libreoffice-bugs] [Bug 144919] Crash if I export a dialog-screen and click the 'Save' button.

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144919

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #1 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I don't reproduce this.
Perhaps MacOs only?

Would it be possible you try to apply
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#macOS:_How_to_get_debug_information
?

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

[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946
Bug 83946 depends on bug 33082, which changed state.

Bug 33082 Summary: Multiple operations are not tracked as change in change 
control
https://bugs.documentfoundation.org/show_bug.cgi?id=33082

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

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

[Libreoffice-bugs] [Bug 33082] Multiple operations are not tracked as change in change control

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33082

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|NEW |RESOLVED

--- Comment #15 from Buovjaga  ---
This old report has multiple issues in one, so is not really valid. I will
close this. There are now separate reports for all the issues and they are
being tackled by NISZ team. Meta bug:
https://bugs.documentfoundation.org/showdependencytree.cgi?id=143050_resolved=1

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

[Libreoffice-bugs] [Bug 144932] QR code generator

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144932

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #2 from Julien Nabet  ---
On Win10 with LO 7.1.6, I can indeed see this menu.

Could you upgrade to LO 7.1.6 + try
https://wiki.documentfoundation.org/QA/FirstSteps#Corrupted_user_profile ?

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

[Libreoffice-bugs] [Bug 144919] Crash if I export a dialog-screen and click the 'Save' button.

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144919

Julien Nabet  changed:

   What|Removed |Added

Summary|Crach if I export a |Crash if I export a
   |dialog-screen and click the |dialog-screen and click the
   |'Save' button.  |'Save' button.

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

[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107701

Dieter  changed:

   What|Removed |Added

 Depends on||144626


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144626
[Bug 144626] Borders of Writer tables are not correctly aligned
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144626] Borders of Writer tables are not correctly aligned

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144626

Dieter  changed:

   What|Removed |Added

 Blocks||107701
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|

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

Version: 7.2.1.2 (x64) / LibreOffice Community
Build ID: 87b77fad49947c1441b67c559c339af8f3517e22
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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 67272] VIEWING Paragraph border on front of image but paragraph background color is at the back

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67272

Dieter  changed:

   What|Removed |Added

 CC||my...@posteo.de

--- Comment #12 from Dieter  ---
*** Bug 144623 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 144623] Background images/drawings are rendered above the background color of text/tables

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144623

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Dieter  ---
Looks like a duplicate of bug 67272. Andre, feel free to change it back, if you
disagree

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

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

[Libreoffice-bugs] [Bug 144564] CRASH When reloading mail merge documents

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144564

Xisco Faulí  changed:

   What|Removed |Added

 CC||lauradiazfonte...@gmail.com

--- Comment #17 from Xisco Faulí  ---
*** Bug 144954 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 144954] When i try to print a document, it closes immediately.

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144954

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||xiscofa...@libreoffice.org
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Xisco Faulí  ---
Hello Laura,
It looks like a duplicate of bug 144564. It will be fixed in LibreOffice 7.2.2,
due to be released next week

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

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

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

2021-10-05 Thread Julien Nabet (via logerrit)
 winaccessibility/source/UAccCOM/AccEditableText.cxx |5 ++---
 winaccessibility/source/service/AccObject.cxx   |1 -
 winaccessibility/source/service/AccObjectWinManager.cxx |1 -
 3 files changed, 2 insertions(+), 5 deletions(-)

New commits:
commit 0a78cb8eb1ebbfe55896d603e8aa94816242c2cb
Author: Julien Nabet 
AuthorDate: Tue Oct 5 20:21:37 2021 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 5 21:23:57 2021 +0200

drop 'using namespace std' in winaccessibility

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

diff --git a/winaccessibility/source/UAccCOM/AccEditableText.cxx 
b/winaccessibility/source/UAccCOM/AccEditableText.cxx
index c290098d33dc..6c2962074e37 100644
--- a/winaccessibility/source/UAccCOM/AccEditableText.cxx
+++ b/winaccessibility/source/UAccCOM/AccEditableText.cxx
@@ -48,7 +48,6 @@ using namespace com::sun::star::accessibility;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::awt;
 using namespace com::sun::star::beans;
-using namespace std;
 
 /**
  * Copy a range of text to the clipboard.
@@ -228,7 +227,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccEditableText::setAttributes(long startOffs
 
 OUString ouStr(o3tl::toU(*attributes));
 
-vector< OUString > vecAttr;
+std::vector< OUString > vecAttr;
 for (sal_Int32 nIndex {0}; nIndex >= 0; )
 vecAttr.push_back(ouStr.getToken(0, ';', nIndex));
 
@@ -315,7 +314,7 @@ void 
CAccEditableText::get_AnyFromOLECHAR(std::u16string_view ouName, const OUSt
 {
 
 // Convert to the Sequence with TabStop element.
-vector< css::style::TabStop > vecTabStop;
+std::vector< css::style::TabStop > vecTabStop;
 css::style::TabStop tabStop;
 OUString ouSubValue;
 sal_Int32 pos = 0, posComma = 0;
diff --git a/winaccessibility/source/service/AccObject.cxx 
b/winaccessibility/source/service/AccObject.cxx
index 877d33cc0e37..f03b853c9e84 100644
--- a/winaccessibility/source/service/AccObject.cxx
+++ b/winaccessibility/source/service/AccObject.cxx
@@ -46,7 +46,6 @@
 #pragma clang diagnostic pop
 #endif
 
-using namespace std;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::accessibility;
 using namespace com::sun::star::accessibility::AccessibleRole;
diff --git a/winaccessibility/source/service/AccObjectWinManager.cxx 
b/winaccessibility/source/service/AccObjectWinManager.cxx
index cbf50ac343b4..f180127acf65 100644
--- a/winaccessibility/source/service/AccObjectWinManager.cxx
+++ b/winaccessibility/source/service/AccObjectWinManager.cxx
@@ -45,7 +45,6 @@
 #include 
 
 
-using namespace std;
 using namespace com::sun::star::accessibility;
 using namespace com::sun::star::accessibility::AccessibleRole;
 using namespace com::sun::star::accessibility::AccessibleStateType;


[Libreoffice-bugs] [Bug 121358] UI: Character dialog highlighting color is set to blue by default (not yellow)

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121358

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

Version: 7.2.1.2 (x64) / LibreOffice Community
Build ID: 87b77fad49947c1441b67c559c339af8f3517e22
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-commits] core.git: sal/rtl

2021-10-05 Thread Mike Kaganski (via logerrit)
 sal/rtl/math.cxx |   70 +++
 1 file changed, 60 insertions(+), 10 deletions(-)

New commits:
commit 7e558cd5b90f45c67ffc4d03f1c54564aff54bbb
Author: Mike Kaganski 
AuthorDate: Tue Oct 5 19:09:58 2021 +0200
Commit: Mike Kaganski 
CommitDate: Tue Oct 5 21:19:22 2021 +0200

Optimize the whole range of getN10Exp over IEEE 754 doubles

Needs 5056 bytes of pre-calculated data.

Change-Id: I138d9dc80c176f675a6854fe906e235c98efcbc0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122947
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
Reviewed-by: Mike Kaganski 

diff --git a/sal/rtl/math.cxx b/sal/rtl/math.cxx
index 4d590089..6acf3a943fb2 100644
--- a/sal/rtl/math.cxx
+++ b/sal/rtl/math.cxx
@@ -36,20 +36,70 @@
 
 #include 
 
-constexpr int n10Count = 16;
-constexpr double n10s[n10Count*2+1] = {
-1e-16, 1e-15, 1e-14, 1e-13, 1e-12, 1e-11, 1e-10, 1e-9,
-1e-8, 1e-7, 1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1e0,
-1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8,
-1e9, 1e10, 1e11, 1e12, 1e13, 1e14, 1e15, 1e16 ,
+constexpr int minExp = -323, maxExp = 308;
+constexpr double n10s[] = {
+1e-323, 1e-322, 1e-321, 1e-320, 1e-319, 1e-318, 1e-317, 1e-316, 1e-315, 
1e-314, 1e-313, 1e-312,
+1e-311, 1e-310, 1e-309, 1e-308, 1e-307, 1e-306, 1e-305, 1e-304, 1e-303, 
1e-302, 1e-301, 1e-300,
+1e-299, 1e-298, 1e-297, 1e-296, 1e-295, 1e-294, 1e-293, 1e-292, 1e-291, 
1e-290, 1e-289, 1e-288,
+1e-287, 1e-286, 1e-285, 1e-284, 1e-283, 1e-282, 1e-281, 1e-280, 1e-279, 
1e-278, 1e-277, 1e-276,
+1e-275, 1e-274, 1e-273, 1e-272, 1e-271, 1e-270, 1e-269, 1e-268, 1e-267, 
1e-266, 1e-265, 1e-264,
+1e-263, 1e-262, 1e-261, 1e-260, 1e-259, 1e-258, 1e-257, 1e-256, 1e-255, 
1e-254, 1e-253, 1e-252,
+1e-251, 1e-250, 1e-249, 1e-248, 1e-247, 1e-246, 1e-245, 1e-244, 1e-243, 
1e-242, 1e-241, 1e-240,
+1e-239, 1e-238, 1e-237, 1e-236, 1e-235, 1e-234, 1e-233, 1e-232, 1e-231, 
1e-230, 1e-229, 1e-228,
+1e-227, 1e-226, 1e-225, 1e-224, 1e-223, 1e-222, 1e-221, 1e-220, 1e-219, 
1e-218, 1e-217, 1e-216,
+1e-215, 1e-214, 1e-213, 1e-212, 1e-211, 1e-210, 1e-209, 1e-208, 1e-207, 
1e-206, 1e-205, 1e-204,
+1e-203, 1e-202, 1e-201, 1e-200, 1e-199, 1e-198, 1e-197, 1e-196, 1e-195, 
1e-194, 1e-193, 1e-192,
+1e-191, 1e-190, 1e-189, 1e-188, 1e-187, 1e-186, 1e-185, 1e-184, 1e-183, 
1e-182, 1e-181, 1e-180,
+1e-179, 1e-178, 1e-177, 1e-176, 1e-175, 1e-174, 1e-173, 1e-172, 1e-171, 
1e-170, 1e-169, 1e-168,
+1e-167, 1e-166, 1e-165, 1e-164, 1e-163, 1e-162, 1e-161, 1e-160, 1e-159, 
1e-158, 1e-157, 1e-156,
+1e-155, 1e-154, 1e-153, 1e-152, 1e-151, 1e-150, 1e-149, 1e-148, 1e-147, 
1e-146, 1e-145, 1e-144,
+1e-143, 1e-142, 1e-141, 1e-140, 1e-139, 1e-138, 1e-137, 1e-136, 1e-135, 
1e-134, 1e-133, 1e-132,
+1e-131, 1e-130, 1e-129, 1e-128, 1e-127, 1e-126, 1e-125, 1e-124, 1e-123, 
1e-122, 1e-121, 1e-120,
+1e-119, 1e-118, 1e-117, 1e-116, 1e-115, 1e-114, 1e-113, 1e-112, 1e-111, 
1e-110, 1e-109, 1e-108,
+1e-107, 1e-106, 1e-105, 1e-104, 1e-103, 1e-102, 1e-101, 1e-100, 1e-99,  
1e-98,  1e-97,  1e-96,
+1e-95,  1e-94,  1e-93,  1e-92,  1e-91,  1e-90,  1e-89,  1e-88,  1e-87,  
1e-86,  1e-85,  1e-84,
+1e-83,  1e-82,  1e-81,  1e-80,  1e-79,  1e-78,  1e-77,  1e-76,  1e-75,  
1e-74,  1e-73,  1e-72,
+1e-71,  1e-70,  1e-69,  1e-68,  1e-67,  1e-66,  1e-65,  1e-64,  1e-63,  
1e-62,  1e-61,  1e-60,
+1e-59,  1e-58,  1e-57,  1e-56,  1e-55,  1e-54,  1e-53,  1e-52,  1e-51,  
1e-50,  1e-49,  1e-48,
+1e-47,  1e-46,  1e-45,  1e-44,  1e-43,  1e-42,  1e-41,  1e-40,  1e-39,  
1e-38,  1e-37,  1e-36,
+1e-35,  1e-34,  1e-33,  1e-32,  1e-31,  1e-30,  1e-29,  1e-28,  1e-27,  
1e-26,  1e-25,  1e-24,
+1e-23,  1e-22,  1e-21,  1e-20,  1e-19,  1e-18,  1e-17,  1e-16,  1e-15,  
1e-14,  1e-13,  1e-12,
+1e-11,  1e-10,  1e-9,   1e-8,   1e-7,   1e-6,   1e-5,   1e-4,   1e-3,   
1e-2,   1e-1,   1e0,
+1e1,1e2,1e3,1e4,1e5,1e6,1e7,1e8,1e9,
1e10,   1e11,   1e12,
+1e13,   1e14,   1e15,   1e16,   1e17,   1e18,   1e19,   1e20,   1e21,   
1e22,   1e23,   1e24,
+1e25,   1e26,   1e27,   1e28,   1e29,   1e30,   1e31,   1e32,   1e33,   
1e34,   1e35,   1e36,
+1e37,   1e38,   1e39,   1e40,   1e41,   1e42,   1e43,   1e44,   1e45,   
1e46,   1e47,   1e48,
+1e49,   1e50,   1e51,   1e52,   1e53,   1e54,   1e55,   1e56,   1e57,   
1e58,   1e59,   1e60,
+1e61,   1e62,   1e63,   1e64,   1e65,   1e66,   1e67,   1e68,   1e69,   
1e70,   1e71,   1e72,
+1e73,   1e74,   1e75,   1e76,   1e77,   1e78,   1e79,   1e80,   1e81,   
1e82,   1e83,   1e84,
+1e85,   1e86,   1e87,   1e88,   1e89,   1e90,   1e91,   1e92,   1e93,   
1e94,   1e95,   1e96,
+1e97,   1e98,   1e99,   1e100,  1e101,  1e102,  1e103,  1e104,  1e105,  
1e106,  1e107,  1e108,
+1e109,  1e110,  1e111,  1e112,  1e113,  1e114,  1e115,  1e116,  1e117,  
1e118,  1e119,  1e120,
+1e121,  1e122,  1e123,  1e124,  1e125,  1e126,  1e127,  

[Libreoffice-bugs] [Bug 144949] firebird_sdbc error: when opening a form with Libre base 7.2.1

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144949

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet  ---
Would it be possible you attach the odb file?
Indeed, on a brand new Firebird odb file, I created the table and tried to
reproduce the form but don't have the same entries in Data tab.

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

[Libreoffice-bugs] [Bug 136495] Documentation on how to inset a page with different orientation in between pages without affecting the layout of the previous or next pages

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136495

Rafael Lima  changed:

   What|Removed |Added

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

--- Comment #7 from Rafael Lima  ---
Considering that switching between Landscape / Portrait is done very often by
users (and questioned about), I believe the help page could better explain how
to do this.

I'm taking this one.

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

[Libreoffice-bugs] [Bug 144834] EDITING Adding line spacing to a paragraph is not recorded as tracked change

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144834

Deep17  changed:

   What|Removed |Added

 CC||deepoose2...@gmail.com

--- Comment #4 from Deep17  ---
I can reproduce this in stable and master build

Version: 7.2.1.2 (x64) / LibreOffice Community
Build ID: 87b77fad49947c1441b67c559c339af8f3517e22
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: c2de581d1943df2d84f2b71817b6a8bee41f0217
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 144830] EDITING No list operation on an ordered/unordered list is not recorded as tracked change

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144830

Deep17  changed:

   What|Removed |Added

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

--- Comment #3 from Deep17  ---
I can reproduce this in stable and master build.

Version: 7.2.1.2 (x64) / LibreOffice Community
Build ID: 87b77fad49947c1441b67c559c339af8f3517e22
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: c2de581d1943df2d84f2b71817b6a8bee41f0217
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 59952] EDITING: Original (Sub-)Title text box can not be grouped with other elements

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59952

--- Comment #9 from Charles-Henri  ---
Same bug with the last versions Libre Office 7.2.1 and 7.1.6

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

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 08ec94371cd2c395c0c5a157e5c6d737ecfe4f20
Author: Andrea Gelmini 
AuthorDate: Tue Oct 5 20:22:50 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Tue Oct 5 20:22:50 2021 +0200

Update git submodules

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

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

diff --git a/helpcontent2 b/helpcontent2
index 80e65e1d4c34..a82f9c51bdb3 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 80e65e1d4c346cde0c056a2288dfc02c5aae8f92
+Subproject commit a82f9c51bdb39d0a784069e2927683273c9f8ebc


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

2021-10-05 Thread Andrea Gelmini (via logerrit)
 source/text/scalc/main0112.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a82f9c51bdb39d0a784069e2927683273c9f8ebc
Author: Andrea Gelmini 
AuthorDate: Tue Oct 5 18:24:49 2021 +0200
Commit: Julien Nabet 
CommitDate: Tue Oct 5 20:22:49 2021 +0200

Fix typo

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

diff --git a/source/text/scalc/main0112.xhp b/source/text/scalc/main0112.xhp
index 64fb5bb64..99babd524 100644
--- a/source/text/scalc/main0112.xhp
+++ b/source/text/scalc/main0112.xhp
@@ -44,7 +44,7 @@
   Streams
   
   
-  Data Provider temporarilly removed. Feature and help file not 
finished yet.
+  Data Provider temporarily removed. Feature and help file not 
finished yet.
   Link is: 
href="text/scalc/01/data_provider.xhp#data_provider"
   
   


[Libreoffice-bugs] [Bug 144955] Crash invalid_pointer_read_c0000005_mergedlo.dll!printer::implreleasefonts after sending printjob

2021-10-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144955

--- Comment #2 from Telesto  ---
Created attachment 17
  --> https://bugs.documentfoundation.org/attachment.cgi?id=17=edit
BT without symbols

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

  1   2   3   4   >