[Libreoffice-bugs] [Bug 145049] copy / paste of numbered style numbers everything

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

niina-ma...@outlook.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from niina-ma...@outlook.com ---
Interesting, I tested it again with the test document and now I can reproduce
it. I don't know what I did differently this time but yes, I can confirm that
the bug is present in both

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: ec76fff198323122bedc63ffdfd896c2543102c6
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: fi-FI (fi_FI); UI: fi-FI
Calc: CL

and

Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: fi-FI (fi_FI); UI: fi-FI
Calc: CL

Changed the status to NEW.

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

[Libreoffice-bugs] [Bug 145117] XML Source not imported if tags is non-ASCII symbols

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

--- Comment #14 from Kevin Suo  ---
This issue has been fixed upstream in Orcus
https://gitlab.com/orcus/orcus/-/issues/143

However the current orcus version is still old. Need either prepare a patch
within libreoffice, or upgrade orcus to the pending 0.17.

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

[Libreoffice-bugs] [Bug 128969] File is not an absolute URL that can be passed to an external application to open it

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

--- Comment #15 from Jean-Francois Nifenecker 
 ---
This bug is still present in 7.2.x. and is there for a very long time (I
checked v.6.4.7 under windows).

It is *very* annoying, since it prevents from starting a secondary slideshow
from the main one.

If the "Run Program" interaction can't be used anymore for that purpose, I'd
suggest adding a dedicated interaction "Run slideshow" (unless I'm missing
something). The ability to run external/secondary slideshows is a must-have,
imo.

I'd set this bug importance as major.

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

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

2021-10-25 Thread Mike Kaganski (via logerrit)
 cppu/source/uno/assign.hxx |2 
 sd/qa/unit/data/xml/n593612_0.xml  |4 
 sd/qa/unit/data/xml/n762695_0.xml  |4 
 sd/qa/unit/data/xml/n762695_1.xml  |8 
 sd/qa/unit/data/xml/n819614_0.xml  |  668 +
 sd/qa/unit/data/xml/n820786_0.xml  |  204 ++-
 sd/qa/unit/data/xml/tdf90338_0.xml |4 
 sd/qa/unit/data/xml/tdf92001_0.xml |8 
 8 files changed, 226 insertions(+), 676 deletions(-)

New commits:
commit d46f659c7524625474f0bb907805e285ee27d5ec
Author: Mike Kaganski 
AuthorDate: Tue Oct 26 00:24:49 2021 +0300
Commit: Mike Kaganski 
CommitDate: Tue Oct 26 07:19:40 2021 +0200

Make sure that self-assign test checks types

This may be important with static empty sequence cppu::g_emptySeq, that is
common for sequences of different types.

The changes in sd/qa/unit/data/xml/*.xml fix places where anys with empty
Sequence used to wrongly take 'if(aAny >>= aPropSeq)' branch in
dumpPropertyValueAsElement (drawinglayer/source/dumper/XShapeDumper.cxx).

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

diff --git a/cppu/source/uno/assign.hxx b/cppu/source/uno/assign.hxx
index 4e3d70f311b2..c6a2cf58b457 100644
--- a/cppu/source/uno/assign.hxx
+++ b/cppu/source/uno/assign.hxx
@@ -388,7 +388,7 @@ inline bool _assignData(
 return false;
 // self assignment:
 if (*static_cast(pSource) == 
*static_cast(pDest))
-return true;
+return _type_equals(pDestType, pSourceType); // E.g. static empty 
sequence may be shared
 if (_type_equals( pDestType, pSourceType ))
 {
 osl_atomic_increment( &(*static_cast(pSource))->nRefCount );
diff --git a/sd/qa/unit/data/xml/n593612_0.xml 
b/sd/qa/unit/data/xml/n593612_0.xml
index 7c93f494e3ca..3f5f88e445f1 100644
--- a/sd/qa/unit/data/xml/n593612_0.xml
+++ b/sd/qa/unit/data/xml/n593612_0.xml
@@ -18,9 +18,7 @@
 


-   
-
-   
+   



diff --git a/sd/qa/unit/data/xml/n762695_0.xml 
b/sd/qa/unit/data/xml/n762695_0.xml
index 710a5039ab69..02b3074e92f1 100644
--- a/sd/qa/unit/data/xml/n762695_0.xml
+++ b/sd/qa/unit/data/xml/n762695_0.xml
@@ -18,9 +18,7 @@
 


-   
-
-   
+   



diff --git a/sd/qa/unit/data/xml/n762695_1.xml 
b/sd/qa/unit/data/xml/n762695_1.xml
index 54b383db40a8..f0798923fed9 100644
--- a/sd/qa/unit/data/xml/n762695_1.xml
+++ b/sd/qa/unit/data/xml/n762695_1.xml
@@ -18,9 +18,7 @@
 


-   
-
-   
+   



@@ -104,9 +102,7 @@
 


-   
-
-   
+   



diff --git a/sd/qa/unit/data/xml/n819614_0.xml 
b/sd/qa/unit/data/xml/n819614_0.xml
index e28d86fb510c..a12f04d7e6fa 100644
--- a/sd/qa/unit/data/xml/n819614_0.xml
+++ b/sd/qa/unit/data/xml/n819614_0.xml
@@ -34,9 +34,7 @@
   
  
  
- 
-  
- 
+ 
  
  
  
@@ -97,12 +95,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -156,12 +150,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -215,12 +205,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -274,12 +260,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -337,12 +319,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -396,12 +374,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -455,12 +429,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -514,12 +484,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -573,12 +539,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -632,12 +594,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -691,12 +649,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -754,12 +708,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -813,12 +763,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -872,12 +818,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -931,12 +873,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -994,12 +932,8 @@
  
   
  
- 
-  
- 
- 
-  
- 
+ 
+ 
  
  
  
@@ -1053,12 

[Libreoffice-bugs] [Bug 127592] [META] LibreOffice Basic incl."Option Compatible" modules

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

Bug 57308 Summary: Basic IDE: watching of variable not working if variable is 
returning value of function
https://bugs.documentfoundation.org/show_bug.cgi?id=57308

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145081] Line spacing style type "Fixed" is exposed on the property side bar but not on the style sheet dialog

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

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 145072] wrong page count after ttile page

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

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 145071] Watermark is vertically stretched

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

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 145064] inserted sections in documents being included in masters are empty

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

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 145063] FILESAVE: very slow file saving in Draw, sometimes hanging

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

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 145062] Crash when inserting hidden field over input field

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

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 145060] Add informations about Find-Toolbar

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

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 145059] FILESAVE XLSX Changing the conditional formatting of autofiltered color loses the ffilter condtion

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

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 145056] UI Turning autofilter OFF and ON again retains the color filter setting

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

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 145055] UI Re-running filter by color is inconvenient because of inactive OK button

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

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 145285] Cannot export!! Exporting Drawing Crashes EVERY time

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 145285] Cannot export!! Exporting Drawing Crashes EVERY time

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

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

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

[Libreoffice-bugs] [Bug 140627] the clipboard does not work together with the system clipboard

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

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 140627] the clipboard does not work together with the system clipboard

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

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

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 108843] [META] Clipboard bugs and enhancements

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

Bug 136671 Summary: Clipboard not working properly in KDE.
https://bugs.documentfoundation.org/show_bug.cgi?id=136671

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 136671] Clipboard not working properly in KDE.

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

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 136671] Clipboard not working properly in KDE.

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

--- Comment #3 from QA Administrators  ---
Dear Tony Alexander Hild,

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 136275] Accelerator keys and default buttons not functional

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

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

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 136274] Version 6.4.6 Not installing properly

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

--- Comment #2 from QA Administrators  ---
Dear Kevin Barnes,

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 136256] Cannot enter large numbers in Axis Scale in Manual

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

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

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 135443] Character rendering in import/paste dialog

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

--- Comment #5 from QA Administrators  ---
Dear 伟思礼,

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 135091] FILESAVE DOCX: Overlapping images on file open

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

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 134627] Font shadow not rendered in presentation mode if highlighted

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

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 134116] LibO Writer 6.4.4 crashes with serial correspondence

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

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

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 95695] Text wrapping doesn't work if an image overlaps an other image

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 93973] Inconsistent treatment of array formulas if imported, inserted or entered as text using the curly brackets.

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

--- Comment #21 from QA Administrators  ---
Dear rstill74,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 93067] Scanning can't scan multiple documents using adf or flatbed

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 59070] EDITING: Document interpreted as containing multiple languages for no apparent reason

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 45739] FORMATTING: Table columns drawn in background of a floating frame

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

--- Comment #17 from QA Administrators  ---
Dear Vladimir Savic,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120331] Document moves and renames are not tracked on macOS

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

--- Comment #5 from QA Administrators  ---
Dear Andrew Hyatt,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120131] Include font substitutions for fonts commonly used in MS Office for which we bundle alternatives

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

--- Comment #7 from QA Administrators  ---
Dear Eyal Rozenberg,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 101005] When switch between slides LibreOffice sends panel type to assistive technologies instead of usefuls informations (title, page, ...)

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

--- Comment #9 from QA Administrators  ---
Dear Alex ARNAUD,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

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

Bug 144945 Summary: Writer always delete "extra" collected words
https://bugs.documentfoundation.org/show_bug.cgi?id=144945

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 86872] Word completion: Add ability to save word completion (aka "auto complete") lists and re-use them

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

Shantanu  changed:

   What|Removed |Added

 CC||johnsmithbeat...@gmail.com

--- Comment #13 from Shantanu  ---
*** Bug 144945 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 144945] Writer always delete "extra" collected words

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

Shantanu  changed:

   What|Removed |Added

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

--- Comment #4 from Shantanu  ---


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

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

[Libreoffice-bugs] [Bug 145287] detached tool bars no longer can me moved

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

andréb  changed:

   What|Removed |Added

 CC||and...@laposte.net

--- Comment #4 from andréb  ---
Maybe it only affects the Linux version ?
I can't test an ms windows version.

Comment 2 refers to buttons with icons.
Note that on my (Linux) system, what does not work :
1) moving the tool bar (with the mouse on the title)
2) closing the tool bar via the X on the title
Everything else works, including that showing the context menu.

I just noticed that the context menu of the tool bar has a option to close the
tool bar, which does work.
However there is no option to move the tool bar.

In my case, the tool bar is OUTSIDE the Libreoffice window.
(It has to be for my use.)
Have the other users tested that ?

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

[Libreoffice-bugs] [Bug 145318] direct formatting indentation does override style indentation in lists

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

--- Comment #3 from Dominik Lenné  ---
What do you mean exactly by "bullets set directly" and by "turn off direct
setting of bullets"? Which dialog window, which setting in the dialog window?
I indeed changed the bullet type to "empty circle", but the behaviour described
is independent of the bullet type.

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

[Libreoffice-bugs] [Bug 145318] direct formatting indentation does override style indentation in lists

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

--- Comment #2 from David  ---
It looks like the bullets are being set directly. Turn off the direct setting
of bullets for those paragraphs and set them through the style. It should work
then.

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

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

2021-10-25 Thread Eike Rathke (via logerrit)
 include/svl/zforlist.hxx |5 -
 svx/source/tbxctrls/tbcontrl.cxx |   18 +++---
 2 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit 3a76bba6bc2d638ce9e13179bcf03854b05b97e1
Author: Eike Rathke 
AuthorDate: Mon Oct 25 15:39:46 2021 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Oct 26 00:08:20 2021 +0200

Fix toolbar button's currency list's number format for default locale

Always resulted in the currency's LCID being omitted in the number
format for the default locale, which doesn't immediately harm but
loses the context (what currency a $ sign is actually), and also
lead to the "real" default currency format never matching the one
being generated for the list so no entry was selected if that
format was applied.

Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124152
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 97e63ff5375d9d80d6fe5d4bd68883e35bd56d91)

Backported, deleted the deleted copy-ctor ...

Change-Id: I7963e4d3701092d6e227705fc0e8282448f075b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124025
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx
index c3d82d7b109a..31559e80b209 100644
--- a/include/svl/zforlist.hxx
+++ b/include/svl/zforlist.hxx
@@ -312,7 +312,6 @@ class UNLESS_MERGELIBS(SVL_DLLPUBLIC) NfCurrencyEntry
 sal_uInt16  nDigits;/// count of decimal digits
 sal_Unicode cZeroChar;  /// which character is used for zeros 
as last decimal digits
 
-NfCurrencyEntry( const NfCurrencyEntry& ) = delete;
 NfCurrencyEntry&operator=( const NfCurrencyEntry& ) = delete;
 
 private:
@@ -328,6 +327,7 @@ public:
 NfCurrencyEntry( const css::i18n::Currency & rCurr,
  const LocaleDataWrapper& rLocaleData,
  LanguageType eLang );
+NfCurrencyEntry( const NfCurrencyEntry& ) = default;
 
 /// Symbols and language identical
 booloperator==( const NfCurrencyEntry& r ) const;
@@ -339,6 +339,9 @@ public:
 sal_uInt16  GetNegativeFormat() const   { return nNegativeFormat; }
 sal_uInt16  GetDigits() const   { return nDigits; }
 
+/** Only to resolve system locale for currency list. */
+voidSetLanguage( LanguageType nLang ) { eLanguage = nLang; 
}
+
 /** [$DM-407] (bBank==false) or [$DEM] (bBank==true)
 is returned. If bBank==false and
 bWithoutExtension==true only [$DM] */
diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx
index 1b94df39887d..076c2b6fe4aa 100644
--- a/svx/source/tbxctrls/tbcontrl.cxx
+++ b/svx/source/tbxctrls/tbcontrl.cxx
@@ -3566,11 +3566,23 @@ namespace
 if (rItem.getLength() > sLongestString.getLength())
 sLongestString = rItem;
 
-const NfCurrencyEntry& aCurrencyEntry = rCurrencyTable[ 
rCurrencyIndex ];
-
 bIsSymbol = nPos >= nLen;
 
-sal_uInt16 nDefaultFormat = 
aFormatter.GetCurrencyFormatStrings( aStringsDtor, aCurrencyEntry, bIsSymbol );
+sal_uInt16 nDefaultFormat;
+const NfCurrencyEntry& rCurrencyEntry = rCurrencyTable[ 
rCurrencyIndex ];
+if (rCurrencyIndex == 0)
+{
+// Stored with system locale, but we want the resolved
+// full LCID format string. For example
+// "[$$-409]#,##0.00" instead of "[$$]#,##0.00".
+NfCurrencyEntry aCurrencyEntry( rCurrencyEntry);
+aCurrencyEntry.SetLanguage( LanguageTag( 
aCurrencyEntry.GetLanguage()).getLanguageType());
+nDefaultFormat = aFormatter.GetCurrencyFormatStrings( 
aStringsDtor, aCurrencyEntry, bIsSymbol);
+}
+else
+{
+nDefaultFormat = aFormatter.GetCurrencyFormatStrings( 
aStringsDtor, rCurrencyEntry, bIsSymbol);
+}
 const OUString& rFormatStr = aStringsDtor[ nDefaultFormat 
];
 m_aFormatEntries.push_back( rFormatStr );
 if( rFormatStr == m_rSelectedFormat )


[Libreoffice-bugs] [Bug 145318] direct formatting indentation does override style indentation in lists

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

--- Comment #1 from Dominik Lenné  ---
Created attachment 175917
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175917=edit
odt file with an example bullet list showing described behaviour

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

[Libreoffice-bugs] [Bug 145318] New: direct formatting indentation does override style indentation in lists

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

Bug ID: 145318
   Summary: direct formatting indentation does override style
indentation in lists
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dle...@web.de

Description:
I'd like to set indentation of lists via the "List Paragraph" style, but this
seems to be impossible. The "List Paragraph" indentation has no effect, instead
the direct formatting indentation is applied always. 
So, if you want to change list indentations of a large document at once, you
have to do it for every list separately.

Steps to Reproduce:
1. create bullet list
2. set indentation as you want in - F11 - List Paragraph - change - indentation
3. apply ctr m (clear direct formatting)

Actual Results:
"List paragraph" indentation setting have no effect.
Direct formatting indentation settings are not reset to zero.

Expected Results:
Direct formatting indentation is set to zero and made ineffectual to allow
"List Paragraph" style indentation settings to apply.

It might be made effectual again by being set to another value than zero, or by
some checkbox "use direct formatting" with default "no". 


Reproducible: Always


User Profile Reset: No



Additional Info:
Fresh installation on a fresh hard disk on windows 10.

The opengl checker download page is overloaded with clickbaits, and the file is
labelled on virustotal as "malicious" by one antimalware provider, so i
refrained from using it.

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

[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-5-4-7-2' - config_host.mk.in configure.ac external/msc-externals instsetoo_native/inc_ooohelppack instsetoo_native/inc_openoffice instsetoo_nat

2021-10-25 Thread Mike Kaganski (via logerrit)
Rebased ref, commits from common ancestor:
commit 715e85b99d0415ca7693ba67bdfc81572a0b2d83
Author: Mike Kaganski 
AuthorDate: Sun Apr 15 23:24:42 2018 +0300
Commit: Andras Timar 
CommitDate: Mon Oct 25 22:55:31 2021 +0200

Install UCRT from MSUs, not using nested VC Redist install

Using nested install is bad because (1) MS advises against it (though it
most possibly doesn't relate to our specific case, when we install the
vc redist exe package in UI part, so actually only a single MSI session
is active at any time); (2) because it adds some extra interactions
(user sees something "unrelated" being installed, which raises concerns;
additional admin authentication required); and (3) because it runs in
InstallUISequence, thus only installing the UCRT when doing interactive
installation (unattended installs, including GPO, need to install UCRT
separately).

This patch aims to incorporate the original UCRT MSU (Windows Update)
packages (https://support.microsoft.com/en-us/help/2999226) available as
a zip archive from
https://www.microsoft.com/en-us/download/details.aspx?id=48234
- the same as used in VC redists for VS 2015 and 2017. This obsoletes
the separate installation of the redist; since we also have the redist
as merge module in our MSI, that is enough (and removes redundancy).
The MSUs are installed using wusa.exe in a custom action (deferred,
non-impersonating).

As a small bonus, embedding MSUs instead of redist EXE allows us to
shrink the size of installer a little (~10 MB).

As deferred custom actions cannot access current installer database,
we workaround this by using initial immediate impersonating action to
extract the binaries into a temporary location. To ensure that the file
gets removed upon completion (both successful and failed), we use an
additional cleanup action.

Commit 61b1d631331551b43bc7d619be33bfbfeff7cad6 is effectively reverted.

This commit also includes changes from commits from master:
8faa1bc61fa8f09365d483364aea2b1c2751b587
1f8a3657216e44796cb94087450552aa977ebdae
378c1576d2890625ebbd18ec9ccff560eeb1619f

Change-Id: I1529356fdcc67ff24b232c01ddf8bb3a31bb00bd
Reviewed-on: https://gerrit.libreoffice.org/53332
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/Repository.mk b/Repository.mk
index 963d58695d50..008874852f26 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -666,6 +666,7 @@ endif
 $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooobinarytable, \
$(if $(WINDOWS_SDK_HOME),\
instooofiltmsi \
+   inst_msu_msi \
qslnkmsi \
reg4allmsdoc \
sdqsmsi \
@@ -834,7 +835,6 @@ $(eval $(call gb_Helper_register_packages_for_install,ure,\
jvmfwk_jreproperties \
$(if $(filter MACOSX,$(OS)),bridges_jnilib_java_uno) \
) \
-   $(if $(UCRT_REDISTDIR),ucrt) \
 ))
 
 $(eval $(call gb_Helper_register_packages_for_install,postgresqlsdbc,\
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index cb63070e09b9..a1acdbbc0cc8 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -4086,4 +4086,8 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo,\
 ))
 endif
 
+$(eval $(call gb_Helper_register_packages_for_install,ucrt_binarytable,\
+   $(if $(UCRT_REDISTDIR),ucrt) \
+))
+
 # vim: set noet sw=4 ts=4:
diff --git a/config_host.mk.in b/config_host.mk.in
index c74a097b937b..2dc4e1ba7ed3 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -576,7 +576,6 @@ export TOUCH=@TOUCH@
 export UCRTSDKDIR=@UCRTSDKDIR@
 export UCRTVERSION=@UCRTVERSION@
 export UCRT_REDISTDIR=@UCRT_REDISTDIR@
-export UCRT_DLLS=@UCRT_DLLS@
 export UNOWINREG_DLL=@UNOWINREG_DLL@
 export USE_LIBRARY_BIN_TAR=@USE_LIBRARY_BIN_TAR@
 export USE_XINERAMA=@USE_XINERAMA@
diff --git a/configure.ac b/configure.ac
index 4c2f914de059..c37ca3ee975a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6704,9 +6704,17 @@ AC_SUBST([JITC_PROCESSOR_TYPE])
 # Misc Windows Stuff
 AC_ARG_WITH(ucrt-dir,
 AS_HELP_STRING([--with-ucrt-dir],
-[path to the directory with the arch-specific subdirectories of the 
Windows Universtal CRT redistributables
-from the Windows 10 SDK for packaging into the installsets (without 
those the target system needs to install
-the Visual C++ Runtimes manually)]),
+[path to the directory with the arch-specific MSU packages of the 
Windows Universal CRT redistributables
+(MS KB 2999226) for packaging into the installsets (without those the 
target system needs to install
+the UCRT or Visual C++ Runtimes manually). The directory must contain 
the following 6 files:
+Windows6.1-KB2999226-x64.msu
+Windows6.1-KB2999226-x86.msu
+Windows8.1-KB2999226-x64.msu
+ 

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

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

Bug 145297 Summary: Assert fails in debug build when click on icon to open the 
"3D Effects" dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=145297

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: 2 commits - svx/uiconfig

2021-10-25 Thread Caolán McNamara (via logerrit)
 svx/uiconfig/ui/docking3deffects.ui | 3769 ++--
 1 file changed, 1892 insertions(+), 1877 deletions(-)

New commits:
commit d80547c7f4ddf599cce52e5c52269cb07a677466
Author: Caolán McNamara 
AuthorDate: Mon Oct 25 20:03:19 2021 +0100
Commit: Caolán McNamara 
CommitDate: Mon Oct 25 22:04:31 2021 +0200

resave with latest glade

to normalize the property names and grid row/col comments. Taking
care not to lose the non-standard explicitly empty labels for
the GtkMenuButtons

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

diff --git a/svx/uiconfig/ui/docking3deffects.ui 
b/svx/uiconfig/ui/docking3deffects.ui
index b42c9efd922e..831f460ce409 100644
--- a/svx/uiconfig/ui/docking3deffects.ui
+++ b/svx/uiconfig/ui/docking3deffects.ui
@@ -1,351 +1,351 @@
 
-
+
 
   
   
 100
-5
-10
+5
+10
   
   
 100
-1
-10
+1
+10
   
   
 1
-5
-10
+5
+10
   
   
 3600
-1
-10
+1
+10
   
   
 1
-1
-10
+1
+10
   
   
 2
 256
-1
-10
+1
+10
   
   
 90
-5
-10
+5
+10
   
   
 100
-1
-10
+1
+10
   
   
 100
-1
-10
+1
+10
   
   
 1
 256
-1
-10
+1
+10
   
   
 True
-False
-svx/res/3dgeo.png
+False
+svx/res/3dgeo.png
   
   
 True
-False
-svx/res/normsphe.png
+False
+svx/res/normsphe.png
   
   
 True
-False
-svx/res/invert3d.png
+False
+svx/res/invert3d.png
   
   
 True
-False
-svx/res/lght2sid.png
+False
+svx/res/lght2sid.png
   
   
 True
-False
-svx/res/doublesi.png
+False
+svx/res/doublesi.png
   
   
 True
-False
-svx/res/convrt3d.png
+False
+svx/res/convrt3d.png
   
   
 True
-False
-svx/res/rotate3d.png
+False
+svx/res/rotate3d.png
   
   
 True
-False
-svx/res/persp3d.png
+False
+svx/res/persp3d.png
   
   
 True
-False
-svx/res/shadow3d.png
+False
+svx/res/shadow3d.png
   
   
 True
-False
-svx/res/colordlg.png
+False
+svx/res/colordlg.png
   
   
 True
-False
-svx/res/colordlg.png
+False
+svx/res/colordlg.png
   
   
 True
-False
-svx/res/3drepres.png
+False
+svx/res/3drepres.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/light.png
+False
+svx/res/light.png
   
   
 True
-False
-svx/res/luminanc.png
+False
+svx/res/luminanc.png
   
   
 True
-False
-svx/res/color.png
+False
+svx/res/color.png
   
   
 True
-False
-svx/res/3dlight.png
+False
+svx/res/3dlight.png
   
   
 True
-False
-svx/res/replac3d.png
+False
+svx/res/replac3d.png
   
   
 True
-False
-svx/res/modula3d.png
+False
+svx/res/modula3d.png
   
   
 True
-False
-svx/res/objspc3d.png
+False
+svx/res/objspc3d.png
   
   
 True
-False
-svx/res/parallel.png
+False
+svx/res/parallel.png
   
   
 True
-False
-svx/res/sphere3d.png
+False
+svx/res/sphere3d.png
   
   
 True
-False
-svx/res/objspc3d.png
+False
+svx/res/objspc3d.png
   
   
 True
-False
-svx/res/parallel.png
+False
+svx/res/parallel.png
   
   
 True
-False
-svx/res/sphere3d.png
+False
+svx/res/sphere3d.png
   
   
 True
-False
-svx/res/filter3d.png
+False
+svx/res/filter3d.png
   
   
 True
-False
-svx/res/colordlg.png
+False
+svx/res/colordlg.png
   
   
 True
-False
-svx/res/3dtextur.png
+False
+svx/res/3dtextur.png
   
   
 True
-False
-svx/res/colordlg.png
+False
+svx/res/colordlg.png
   
   
 True
-False
-svx/res/colordlg.png
+False
+svx/res/colordlg.png
   
   
 True
-False
-svx/res/material.png
+False
+svx/res/material.png
   
   
 True
-False
-res/sc10350.png
+False
+res/sc10350.png
   
   
 True
-False
-svx/res/apply.png
+False
+svx/res/apply.png
   
   
 True
-False
-

[Libreoffice-bugs] [Bug 145279] ByRef argument modified in called Sub is returned incorrectly

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

Rafael Lima  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Rafael Lima  ---
In Excel if you remove the parenthesis from the line "Add1(a)" it will return
11 in both cases. It should look like:

Sub Main()
MsgBox Plus1()
MsgBox Plus1(10)
End Sub

Function Plus1(Optional a)
If IsMissing(a) Then a = 10
Add1 a   ' <--- Note the change here
Plus1 = a
End Function

Sub Add1(ByRef a)
a = a + 1
End sub

It must have something to do with evaluation of expressions... when there is
parenthesis, it is treated as an expression instead of a variable being passed
by reference. So removing the parenthesis make it work as expected on Excel.

However, on LibreOffice Basic the error persists even when the parenthesis is
removed. So I believe this is a bug.

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

[Libreoffice-bugs] [Bug 141659] FILESAVE: DOC: Shape disappears after RT

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

--- Comment #2 from Björn Michaelsen  ---
https://gerrit.libreoffice.org/c/core/+/124162

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

[Libreoffice-bugs] [Bug 143815] EDITING: images duplicated after undo

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

--- Comment #4 from Björn Michaelsen  ---
https://gerrit.libreoffice.org/c/core/+/124162

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

[Libreoffice-bugs] [Bug 140798] Image order not respected when copy/pasting images (if not saved before)

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

--- Comment #7 from Björn Michaelsen  ---
https://gerrit.libreoffice.org/c/core/+/124162

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

[Libreoffice-bugs] [Bug 145296] Label in toolbar drop-down list can no longer be clicked

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

Caolán McNamara  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #3 from Caolán McNamara  ---
Yeah for gtk4 checkbuttons/radiobuttons aren't "buttons" anymore and don't have
a "clicked" hence that change. I'll have to reimagine these two cases in terms
of something "clickable"

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

[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-5-4-7-2' - config_host.mk.in configure.ac external/msc-externals instsetoo_native/inc_ooohelppack instsetoo_native/inc_openoffice instsetoo_nat

2021-10-25 Thread Mike Kaganski (via logerrit)
 Repository.mk  |1 
 RepositoryExternal.mk  |4 
 config_host.mk.in  |1 
 configure.ac   |   50 
 external/msc-externals/Module_msc-externals.mk |8 
 external/msc-externals/Package_ucrt.mk |9 
 instsetoo_native/inc_ooohelppack/windows/msi_templates/Control.idt |2 
 instsetoo_native/inc_openoffice/windows/msi_languages/CustomAc.ulf |3 
 instsetoo_native/inc_openoffice/windows/msi_languages/LaunchCo.ulf |4 
 instsetoo_native/inc_openoffice/windows/msi_templates/AppSearc.idt |3 
 instsetoo_native/inc_openoffice/windows/msi_templates/Control.idt  |2 
 instsetoo_native/inc_openoffice/windows/msi_templates/CustomAc.idt |1 
 instsetoo_native/inc_openoffice/windows/msi_templates/DrLocato.idt |6 
 instsetoo_native/inc_openoffice/windows/msi_templates/LaunchCo.idt |2 
 instsetoo_native/inc_openoffice/windows/msi_templates/Signatur.idt |   13 
 instsetoo_native/inc_sdkoo/windows/msi_templates/Control.idt   |2 
 postprocess/signing/no_signing.txt |6 
 scp2/InstallModule_windows.mk  |1 
 scp2/source/ooo/ucrt.scp   |  154 ++
 setup_native/Library_inst_msu_msi.mk   |   40 
 setup_native/Module_setup_native.mk|1 
 setup_native/source/win32/customactions/inst_msu/inst_msu.cxx  |  515 
++
 setup_native/source/win32/customactions/inst_msu/inst_msu_msi.def  |5 
 solenv/bin/modules/installer/windows/idtglobal.pm  |   11 
 solenv/bin/modules/installer/windows/msiglobal.pm  |   29 
 25 files changed, 834 insertions(+), 39 deletions(-)

New commits:
commit 26e2faca148316817811b2ca13f73883f90cbdfa
Author: Mike Kaganski 
AuthorDate: Sun Apr 15 23:24:42 2018 +0300
Commit: Andras Timar 
CommitDate: Mon Oct 25 21:08:34 2021 +0200

Install UCRT from MSUs, not using nested VC Redist install

Using nested install is bad because (1) MS advises against it (though it
most possibly doesn't relate to our specific case, when we install the
vc redist exe package in UI part, so actually only a single MSI session
is active at any time); (2) because it adds some extra interactions
(user sees something "unrelated" being installed, which raises concerns;
additional admin authentication required); and (3) because it runs in
InstallUISequence, thus only installing the UCRT when doing interactive
installation (unattended installs, including GPO, need to install UCRT
separately).

This patch aims to incorporate the original UCRT MSU (Windows Update)
packages (https://support.microsoft.com/en-us/help/2999226) available as
a zip archive from
https://www.microsoft.com/en-us/download/details.aspx?id=48234
- the same as used in VC redists for VS 2015 and 2017. This obsoletes
the separate installation of the redist; since we also have the redist
as merge module in our MSI, that is enough (and removes redundancy).
The MSUs are installed using wusa.exe in a custom action (deferred,
non-impersonating).

As a small bonus, embedding MSUs instead of redist EXE allows us to
shrink the size of installer a little (~10 MB).

As deferred custom actions cannot access current installer database,
we workaround this by using initial immediate impersonating action to
extract the binaries into a temporary location. To ensure that the file
gets removed upon completion (both successful and failed), we use an
additional cleanup action.

Commit 61b1d631331551b43bc7d619be33bfbfeff7cad6 is effectively reverted.

This commit also includes changes from commits from master:
8faa1bc61fa8f09365d483364aea2b1c2751b587
1f8a3657216e44796cb94087450552aa977ebdae
378c1576d2890625ebbd18ec9ccff560eeb1619f

Change-Id: I1529356fdcc67ff24b232c01ddf8bb3a31bb00bd
Reviewed-on: https://gerrit.libreoffice.org/53332
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/Repository.mk b/Repository.mk
index 963d58695d50..b5f2f3d98382 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -666,6 +666,7 @@ endif
 $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooobinarytable, \
$(if $(WINDOWS_SDK_HOME),\
instooofiltmsi \
+   inst_msu_msi \
qslnkmsi \
reg4allmsdoc \
sdqsmsi \
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index cb63070e09b9..a1acdbbc0cc8 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -4086,4 +4086,8 @@ $(eval $(call 

[Libreoffice-bugs] [Bug 138531] Dynamic Data Exchange is not operable

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

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

https://git.libreoffice.org/core/commit/03f4bd06bd89eb086eeb332693d1c4e96916e2df

tdf#138531: sw: Add UItest

It will be available in 7.3.0.

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

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

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

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

2021-10-25 Thread Xisco Fauli (via logerrit)
 sw/qa/uitest/writer_tests5/tdf138531.py |   64 
 1 file changed, 64 insertions(+)

New commits:
commit 03f4bd06bd89eb086eeb332693d1c4e96916e2df
Author: Xisco Fauli 
AuthorDate: Mon Oct 25 16:54:58 2021 +0200
Commit: Xisco Fauli 
CommitDate: Mon Oct 25 21:03:54 2021 +0200

tdf#138531: sw: Add UItest

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

diff --git a/sw/qa/uitest/writer_tests5/tdf138531.py 
b/sw/qa/uitest/writer_tests5/tdf138531.py
new file mode 100644
index ..94d3a15e0e7d
--- /dev/null
+++ b/sw/qa/uitest/writer_tests5/tdf138531.py
@@ -0,0 +1,64 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.calc import enter_text_to_cell
+
+class Tdf138531(UITestCase):
+
+def test_tdf138531(self):
+
+with self.ui_test.create_doc_in_start_center("calc") as document:
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+#enter data
+enter_text_to_cell(gridwin, "A1", "First")
+enter_text_to_cell(gridwin, "A2", "Second")
+
+#select A1:A2
+gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A1:A2"}))
+
+self.xUITest.executeCommand(".uno:Copy")
+
+with self.ui_test.load_empty_file("writer") as writer_doc:
+
+# Paste as DDE
+formatProperty = mkPropertyValues({"SelectedFormat": 59})
+
self.xUITest.executeCommandWithParameters(".uno:ClipboardFormatItems", 
formatProperty)
+
+self.assertEqual(1, writer_doc.TextTables.getCount())
+table = writer_doc.getTextTables()[0]
+self.assertEqual("First", 
table.getCellByName("A1").getString())
+self.assertEqual("Second", 
table.getCellByName("A2").getString())
+
+frames = self.ui_test.get_frames()
+# switch view to the calc document
+frames[0].activate()
+enter_text_to_cell(gridwin, "A1", "Second")
+enter_text_to_cell(gridwin, "A2", "First")
+
+# switch view back to the writer document
+frames[1].activate()
+
+with 
self.ui_test.execute_dialog_through_command(".uno:LinkDialog", 
close_button="close") as xDialog:
+xLinks = xDialog.getChild("TB_LINKS")
+self.assertEqual(1, len(xLinks.getChildren()))
+
+xFileName = xDialog.getChild("FULL_FILE_NAME")
+self.assertEqual("Untitled 1", 
get_state_as_dict(xFileName)["Text"])
+
+xUpdate = xDialog.getChild("UPDATE_NOW")
+xUpdate.executeAction("CLICK", tuple())
+
+# Without the fix in place, this test would have failed with
+# AssertionError: 'Second' != 'First'
+self.assertEqual("Second", 
table.getCellByName("A1").getString())
+self.assertEqual("First", 
table.getCellByName("A2").getString())
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-0' - 5 commits - config_host.mk.in configure.ac download.lst external/curl external/libgpg-error external/msc-externals instsetoo_native/inc_

2021-10-25 Thread Mike Kaganski (via logerrit)
Rebased ref, commits from common ancestor:
commit 1f7b35fd0721fa41a30adc28410c36e8ffaa312a
Author: Mike Kaganski 
AuthorDate: Sun Apr 15 23:24:42 2018 +0300
Commit: Andras Timar 
CommitDate: Mon Oct 25 20:55:15 2021 +0200

Install UCRT from MSUs, not using nested VC Redist install

Using nested install is bad because (1) MS advises against it (though it
most possibly doesn't relate to our specific case, when we install the
vc redist exe package in UI part, so actually only a single MSI session
is active at any time); (2) because it adds some extra interactions
(user sees something "unrelated" being installed, which raises concerns;
additional admin authentication required); and (3) because it runs in
InstallUISequence, thus only installing the UCRT when doing interactive
installation (unattended installs, including GPO, need to install UCRT
separately).

This patch aims to incorporate the original UCRT MSU (Windows Update)
packages (https://support.microsoft.com/en-us/help/2999226) available as
a zip archive from
https://www.microsoft.com/en-us/download/details.aspx?id=48234
- the same as used in VC redists for VS 2015 and 2017. This obsoletes
the separate installation of the redist; since we also have the redist
as merge module in our MSI, that is enough (and removes redundancy).
The MSUs are installed using wusa.exe in a custom action (deferred,
non-impersonating).

As a small bonus, embedding MSUs instead of redist EXE allows us to
shrink the size of installer a little (~10 MB).

As deferred custom actions cannot access current installer database,
we workaround this by using initial immediate impersonating action to
extract the binaries into a temporary location. To ensure that the file
gets removed upon completion (both successful and failed), we use an
additional cleanup action.

Commit 61b1d631331551b43bc7d619be33bfbfeff7cad6 is effectively reverted.

This commit also includes changes from commits from master:
8faa1bc61fa8f09365d483364aea2b1c2751b587
1f8a3657216e44796cb94087450552aa977ebdae
378c1576d2890625ebbd18ec9ccff560eeb1619f

Change-Id: I1529356fdcc67ff24b232c01ddf8bb3a31bb00bd
Reviewed-on: https://gerrit.libreoffice.org/53332
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/Repository.mk b/Repository.mk
index 92f24a886b98..bd449413f921 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -659,6 +659,7 @@ endif
 $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooobinarytable, \
$(if $(WINDOWS_SDK_HOME),\
instooofiltmsi \
+   inst_msu_msi \
qslnkmsi \
reg4allmsdoc \
sdqsmsi \
diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 98326a3bdc32..f53691a101f9 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -4116,8 +4116,8 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo,\
 ))
 endif
 
-$(eval $(call 
gb_Helper_register_packages_for_install,vcredist_exe_binarytable,\
-   $(if $(VCREDIST_DIR),vcredist_exe) \
+$(eval $(call gb_Helper_register_packages_for_install,ucrt_binarytable,\
+   $(if $(UCRT_REDISTDIR),ucrt) \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/config_host.mk.in b/config_host.mk.in
index 8cbbc5fee1d5..b335cecb0cd7 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -582,8 +582,7 @@ export TMPDIR=@TEMP_DIRECTORY@
 export TOUCH=@TOUCH@
 export UCRTSDKDIR=@UCRTSDKDIR@
 export UCRTVERSION=@UCRTVERSION@
-export VCREDIST_DIR=@VCREDIST_DIR@
-export VCREDIST_EXE=@VCREDIST_EXE@
+export UCRT_REDISTDIR=@UCRT_REDISTDIR@
 export UNOWINREG_DLL=@UNOWINREG_DLL@
 export USE_LIBRARY_BIN_TAR=@USE_LIBRARY_BIN_TAR@
 export USE_XINERAMA=@USE_XINERAMA@
diff --git a/configure.ac b/configure.ac
index f42f0f81436f..0ae66814529f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6477,34 +6477,50 @@ fi
 AC_SUBST([JITC_PROCESSOR_TYPE])
 
 # Misc Windows Stuff
-AC_ARG_WITH(vcredist-dir,
-AS_HELP_STRING([--with-vcredist-dir],
-[path to the directory with the arch-specific executables 
(vc_redist.x64.exe, vc_redist.x86.exe)
-for packaging into the installsets (without those the target system 
needs to install
-the Visual C++ Runtimes manually)]),
+AC_ARG_WITH(ucrt-dir,
+AS_HELP_STRING([--with-ucrt-dir],
+[path to the directory with the arch-specific MSU packages of the 
Windows Universal CRT redistributables
+(MS KB 2999226) for packaging into the installsets (without those the 
target system needs to install
+the UCRT or Visual C++ Runtimes manually). The directory must contain 
the following 6 files:
+Windows6.1-KB2999226-x64.msu
+Windows6.1-KB2999226-x86.msu
+Windows8.1-KB2999226-x64.msu
+Windows8.1-KB2999226-x86.msu
+Windows8-RT-KB2999226-x64.msu

[Libreoffice-bugs] [Bug 145290] Slow scrolling with gtk3

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

--- Comment #6 from Buovjaga  ---
(In reply to gianluca.dequecker from comment #5)
> Thank you for your reply.
> 
> In our study office, we only use the stable version of Debian. Can you
> please tell me when you plan to integrate the LibreOffice 7.2 version into
> Debian Bullsyey stable branch?

Sorry, we are not in control of Debian's packaging. I don't think it will
appear in Bullseye stable, you would have to use bullseye-backports. But
anyway, you can test with the appimage method described in the wiki just to
check that the problem is gone and let us know.

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

[Libreoffice-bugs] [Bug 145297] Assert fails in debug build when click on icon to open the "3D Effects" dialog

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

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 141920] Calculation formula crashed after entering $ for locked cell reference

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

Timo Kytta  changed:

   What|Removed |Added

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

--- Comment #6 from Timo Kytta  ---
This hasn't happened after this incident, so I will close this.

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

[Libreoffice-bugs] [Bug 145317] New: FILESAVE DOC/X: Header/Footer text lost from follow style when first style has titlePage

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

Bug ID: 145317
   Summary: FILESAVE DOC/X: Header/Footer text lost from follow
style when first style has titlePage
   Product: LibreOffice
   Version: 5.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jl...@mail.com
CC: jl...@mail.com

Created attachment 175916
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175916=edit
first-header-footer_exportBroken.odt: First Page page style has First header

This hasn't worked properly. Prior to 5.2, a round-trip to DOC or DOCX formats
was missing the first page headers. But after 5.2.4, the situation was reversed
with commit 1bfa382b4af649ff2b56b988d89bada156e29078
Author: Michael Stahl on Tue Oct 25 17:35:59 2016 +0200
tdf#101814 sw: MSWord export: don't override first-page with heuristics

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

[Libreoffice-commits] core.git: solenv/gbuild

2021-10-25 Thread Caolán McNamara (via logerrit)
 solenv/gbuild/platform/macosx.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 79d27b6d6eab82d692c2b3547dacdd4e9190dc1e
Author: Caolán McNamara 
AuthorDate: Mon Oct 25 15:54:14 2021 +0100
Commit: Caolán McNamara 
CommitDate: Mon Oct 25 20:13:32 2021 +0200

bsd (as used by macOS) ar does not support '@' option

so gb_LinkTarget__command_staticlink should use the same workaround
for that as gb_LinkTarget__command_dynamiclink does

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

diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk
index 50e37cd8df96..5aeb3a95ce86 100644
--- a/solenv/gbuild/platform/macosx.mk
+++ b/solenv/gbuild/platform/macosx.mk
@@ -153,7 +153,7 @@ $(call gb_Helper_abbreviate_dirs,\
$(foreach object,$(GENCXXOBJECTS),$(call 
gb_GenCxxObject_get_target,$(object))) \
$(foreach object,$(GENOBJCOBJECTS),$(call 
gb_GenObjCObject_get_target,$(object))) \
$(foreach object,$(GENOBJCXXOBJECTS),$(call 
gb_GenObjCxxObject_get_target,$(object))) \
-   $(foreach 
extraobjectlist,$(EXTRAOBJECTLISTS),@$(extraobjectlist)) \
+   $(foreach extraobjectlist,$(EXTRAOBJECTLISTS),$(shell cat 
$(extraobjectlist))) \
$(if $(findstring s,$(MAKEFLAGS)),2> /dev/null))
 endef
 


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

2021-10-25 Thread Caolán McNamara (via logerrit)
 svx/source/customshapes/EnhancedCustomShape3d.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3e9da1e271c26bd17ab4fe107992e6a03fe865de
Author: Caolán McNamara 
AuthorDate: Mon Oct 25 15:12:37 2021 +0100
Commit: Caolán McNamara 
CommitDate: Mon Oct 25 20:13:00 2021 +0200

ofz#40305 Divide-by-zero

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

diff --git a/svx/source/customshapes/EnhancedCustomShape3d.cxx 
b/svx/source/customshapes/EnhancedCustomShape3d.cxx
index b6e3e04234ab..05bb45f4a9cf 100644
--- a/svx/source/customshapes/EnhancedCustomShape3d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape3d.cxx
@@ -228,11 +228,11 @@ Point 
EnhancedCustomShape3d::Transformation2D::Transform2D( const basegfx::B3DPo
 aPoint2D.setX( static_cast(rPoint3D.getX()) );
 aPoint2D.setY( static_cast(rPoint3D.getY()) );
 }
-else
+else if (double fDiv = rPoint3D.getZ() - fViewPoint.getZ(); fDiv != 0.0)
 {
 double fX = rPoint3D.getX() - fOriginX;
 double fY = rPoint3D.getY() - fOriginY;
-double f = ( - fViewPoint.getZ() ) / ( rPoint3D.getZ() - 
fViewPoint.getZ() );
+double f = ( - fViewPoint.getZ() ) / fDiv;
 aPoint2D.setX( static_cast(( fX - fViewPoint.getX() ) * f + 
fViewPoint.getX() + fOriginX ) );
 aPoint2D.setY( static_cast(( fY - fViewPoint.getY() ) * f + 
fViewPoint.getY() + fOriginY ) );
 }


[Libreoffice-bugs] [Bug 141498] WRITER FORMATTING: Unexpected Character Direct formatting when overwriting text

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

--- Comment #5 from Coburn Ingram  ---
This seems to be an operative paradigm in LO in the latest releases. Added text
of any length is surrounded by its own tags, whether they match the paragraph
style or not. It is very disconcerting to the end user, because the application
does not behave as expected, because there are underlying conflicting
instructions. WYDSIWYG.

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

[Libreoffice-bugs] [Bug 145290] Slow scrolling with gtk3

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

--- Comment #5 from gianluca.dequec...@mailfence.com ---
Thank you for your reply.

In our study office, we only use the stable version of Debian. Can you please
tell me when you plan to integrate the LibreOffice 7.2 version into Debian
Bullsyey stable branch?

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

[Libreoffice-bugs] [Bug 140272] impress crashes while dragging a slide in slide preview

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

doomsda...@gmail.com changed:

   What|Removed |Added

Version|7.0.4.2 release |7.2.2.2 release
 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from doomsda...@gmail.com ---
Greetings, I have replicated this bug on my touchscreen laptop running fedora
35 with the flatpak version of Libreoffice (7.2.2.2) from flathub and the
normal 

Information:
Version: 7.2.2.2 / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 8; OS: Linux 5.14; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Flatpak
Calc: threaded

OS: Fedora 35 on Wayland

To reproduce:
1. Open Libre Impress
2. Do not style
3. Begin by pressing down on a slide in the slide list.
4. Drag finger to any location out of the slide item
5. Experience a crash

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

[Libreoffice-bugs] [Bug 141301] extrusion-skew angle value -135 is not written to file, although it is not the default value

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

Regina Henschel  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #5 from Regina Henschel  ---
@Julian: Please reopen https://gerrit.libreoffice.org/c/core/+/113257.

I have thought about it some time now and think, we should go that way and do
not change the internal default value.

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

[Libreoffice-bugs] [Bug 145231] URL Recognition option not working

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

--- Comment #7 from Ken C  ---
I've tried removing & re-installing several times and each time I get the same
result: linkification does not work & nor does spell check. The older version
6.4 works for me so will revert to that.
My opinion is to close this bug.

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - desktop/qa desktop/source sw/inc sw/source test/source

2021-10-25 Thread Luboš Luňák (via logerrit)
 desktop/qa/desktop_lib/test_desktop_lib.cxx |   12 
 desktop/source/lib/init.cxx |   49 +++
 sw/inc/viscrs.hxx   |2 
 sw/source/core/crsr/viscrs.cxx  |   70 ++--
 sw/source/uibase/uiview/viewsrch.cxx|4 -
 sw/source/uibase/wrtsh/wrtsh4.cxx   |5 ++
 test/source/lokcallback.cxx |2 
 7 files changed, 116 insertions(+), 28 deletions(-)

New commits:
commit 1d54cb6adfe0b8730298b39cb4f4b1c390ae1e8f
Author: Luboš Luňák 
AuthorDate: Thu Oct 7 18:02:12 2021 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 25 19:30:49 2021 +0200

use pull model also for LOK text selection

Make LOK_CALLBACK_TEXT_SELECTION, LOK_CALLBACK_TEXT_SELECTION_START,
LOK_CALLBACK_TEXT_SELECTION_END and LOK_CALLBACK_TEXT_VIEW_SELECTION
also use pull model, i.e. LO core will only set a flag and when
CallbackFlushHandler needs the actual data it'll use getLOKPayload().
This again avoids a large number of messages passed to
CallbackFlushHandler only for them to be sooner or later discarded.

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

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 495293b76246..6eb1f73bfcc7 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -1634,6 +1634,7 @@ void DesktopLOKTest::testNotificationCompression()
 LibLODocument_Impl* pDocument = loadDoc("blank_text.odt");
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_VISIBLE_CURSOR, ""); // 0
 handler->queue(LOK_CALLBACK_TEXT_SELECTION, "15, 25, 15, 10"); // 
Superseded.
@@ -1729,6 +1730,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
@@ -1749,6 +1751,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 200, 200, 1"); // 
Different part
@@ -1772,6 +1775,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0"); // 0
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 200, 200, 1"); // 
1: Different part
@@ -1798,6 +1802,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 200, 200, 0"); // 0
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 100, 100, 1"); // 
1: Different part
@@ -1833,6 +1838,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "EMPTY, 0");
@@ -1857,6 +1863,7 @@ void DesktopLOKTest::testPartInInvalidation()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "10, 10, 20, 10");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "20, 10, 20, 10");
@@ -1872,6 +1879,7 @@ void DesktopLOKTest::testPartInInvalidation()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "10, 10, 20, 10");
 

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

2021-10-25 Thread Luboš Luňák (via logerrit)
 desktop/qa/desktop_lib/test_desktop_lib.cxx |   12 
 desktop/source/lib/init.cxx |   56 +-
 sw/inc/viscrs.hxx   |2 
 sw/source/core/crsr/viscrs.cxx  |   70 ++--
 sw/source/uibase/uiview/viewsrch.cxx|4 -
 sw/source/uibase/wrtsh/wrtsh4.cxx   |5 ++
 test/source/lokcallback.cxx |2 
 7 files changed, 121 insertions(+), 30 deletions(-)

New commits:
commit 4bb6533d398cc76d7ff292a9e47dae87fac74f83
Author: Luboš Luňák 
AuthorDate: Thu Oct 7 18:02:12 2021 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 25 19:30:34 2021 +0200

use pull model also for LOK text selection

Make LOK_CALLBACK_TEXT_SELECTION, LOK_CALLBACK_TEXT_SELECTION_START,
LOK_CALLBACK_TEXT_SELECTION_END and LOK_CALLBACK_TEXT_VIEW_SELECTION
also use pull model, i.e. LO core will only set a flag and when
CallbackFlushHandler needs the actual data it'll use getLOKPayload().
This again avoids a large number of messages passed to
CallbackFlushHandler only for them to be sooner or later discarded.

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

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index cfa8e039a5d0..1144a5e48369 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -1545,6 +1545,7 @@ void DesktopLOKTest::testNotificationCompression()
 LibLODocument_Impl* pDocument = loadDoc("blank_text.odt");
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_VISIBLE_CURSOR, ""); // 0
 handler->queue(LOK_CALLBACK_TEXT_SELECTION, "15, 25, 15, 10"); // 
Superseded.
@@ -1640,6 +1641,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
@@ -1660,6 +1662,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 200, 200, 1"); // 
Different part
@@ -1683,6 +1686,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0"); // 0
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 200, 200, 1"); // 
1: Different part
@@ -1709,6 +1713,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 200, 200, 0"); // 0
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 100, 100, 1"); // 
1: Different part
@@ -1744,6 +1749,7 @@ void DesktopLOKTest::testTileInvalidationCompression()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "0, 0, 239, 239, 0");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "EMPTY, 0");
@@ -1768,6 +1774,7 @@ void DesktopLOKTest::testPartInInvalidation()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "10, 10, 20, 10");
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "20, 10, 20, 10");
@@ -1783,6 +1790,7 @@ void DesktopLOKTest::testPartInInvalidation()
 {
 std::vector> notifs;
 std::unique_ptr handler(new 
CallbackFlushHandler(pDocument, callbackCompressionTest, ));
+handler->setViewId(SfxLokHelper::getView());
 
 handler->queue(LOK_CALLBACK_INVALIDATE_TILES, "10, 10, 20, 10");
 

[Libreoffice-bugs] [Bug 140780] Add help page for Lotus, dBase and DIF filter options

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

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

https://git.libreoffice.org/help/commit/56638af603a79cd9330752fab99a7769ace9ffaa

tdf#140779, tdf#140780 filter params for CSV, lotus...

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

[Libreoffice-bugs] [Bug 140780] Add help page for Lotus, dBase and DIF filter options

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

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

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

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

https://git.libreoffice.org/help/commit/56638af603a79cd9330752fab99a7769ace9ffaa

tdf#140779, tdf#140780 filter params for CSV, lotus...

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

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

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 9e3ec1b50052e687d6bc79db8e2ed5ebbd0eb24a
Author: Olivier Hallot 
AuthorDate: Mon Oct 25 14:18:10 2021 -0300
Commit: Gerrit Code Review 
CommitDate: Mon Oct 25 19:18:10 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 56638af603a79cd9330752fab99a7769ace9ffaa
  - tdf#140779, tdf#140780 filter params for CSV, lotus...

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

diff --git a/helpcontent2 b/helpcontent2
index cae1ccb6137d..56638af603a7 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit cae1ccb6137d03cada0e187756e9197a897ba94b
+Subproject commit 56638af603a79cd9330752fab99a7769ace9ffaa


[Libreoffice-commits] help.git: AllLangHelp_shared.mk helpers/convertfilters.py source/text

2021-10-25 Thread Olivier Hallot (via logerrit)
 AllLangHelp_shared.mk |2 
 helpers/convertfilters.py |2 
 source/text/shared/guide/convertfilters.xhp   |2 
 source/text/shared/guide/csv_params.xhp   |  252 ++
 source/text/shared/guide/lotusdbasediff.xhp   |  144 ++
 source/text/shared/guide/start_parameters.xhp |   11 -
 6 files changed, 408 insertions(+), 5 deletions(-)

New commits:
commit 56638af603a79cd9330752fab99a7769ace9ffaa
Author: Olivier Hallot 
AuthorDate: Wed Oct 20 13:33:02 2021 -0300
Commit: Olivier Hallot 
CommitDate: Mon Oct 25 19:18:09 2021 +0200

tdf#140779, tdf#140780 filter params for CSV, lotus...

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

diff --git a/AllLangHelp_shared.mk b/AllLangHelp_shared.mk
index 0158fc6d2..1d8258596 100644
--- a/AllLangHelp_shared.mk
+++ b/AllLangHelp_shared.mk
@@ -648,6 +648,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
 helpcontent2/source/text/shared/guide/copy_drawfunctions \
 helpcontent2/source/text/shared/guide/copytable2application \
 helpcontent2/source/text/shared/guide/copytext2application \
+helpcontent2/source/text/shared/guide/csv_params \
 helpcontent2/source/text/shared/guide/ctl \
 helpcontent2/source/text/shared/guide/data_addressbook \
 helpcontent2/source/text/shared/guide/data_dbase2office \
@@ -708,6 +709,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
 helpcontent2/source/text/shared/guide/lineend_define \
 helpcontent2/source/text/shared/guide/linestyle_define \
 helpcontent2/source/text/shared/guide/linestyles \
+helpcontent2/source/text/shared/guide/lotusdbasediff \
 helpcontent2/source/text/shared/guide/macro_recording \
 helpcontent2/source/text/shared/guide/main \
 helpcontent2/source/text/shared/guide/manage_templates \
diff --git a/helpers/convertfilters.py b/helpers/convertfilters.py
index 921a4fc34..3dd592260 100755
--- a/helpers/convertfilters.py
+++ b/helpers/convertfilters.py
@@ -74,7 +74,7 @@ output = '''
 module file filters
 
 
-File Conversion Filter Names
+File 
Conversion Filter Names
 
 
 
diff --git a/source/text/shared/guide/convertfilters.xhp 
b/source/text/shared/guide/convertfilters.xhp
index 7e937c5a7..b46c90d3f 100644
--- a/source/text/shared/guide/convertfilters.xhp
+++ b/source/text/shared/guide/convertfilters.xhp
@@ -24,7 +24,7 @@
 module file filters
 
 
-File Conversion Filter Names
+File 
Conversion Filter Names
 
 
 
diff --git a/source/text/shared/guide/csv_params.xhp 
b/source/text/shared/guide/csv_params.xhp
new file mode 100644
index 0..75e87f8cf
--- /dev/null
+++ b/source/text/shared/guide/csv_params.xhp
@@ -0,0 +1,252 @@
+
+
+
+
+
+
+CSV Filter parameters
+/text/shared/guide/csv_params.xhp
+
+
+
+
+CSV;filter options
+CSV;import options
+CSV;export options
+CSV;command line filter options
+
+
+CSV Filter 
Options
+The CSV filter accepts an option string containing five to 
twelve tokens, separated by commas. Tokens 6 to 12 are optional.
+
+
+
+
+Token 
Position
+
+
+Definition
+
+
+Meaning 
and Example of Token
+
+
+
+
+1
+
+
+Field Separator
+
+
+Field separator(s) as ASCII values. Multiple values are 
separated by the slash sign ("/"), that is, if the values are separated by 
semicolons and horizontal tabulators, the token would be 59/9. To treat several 
consecutive separators as one, then append '/MRG' to the token. If the file 
contains fixed width fields, then use 'FIX'.  Example: 44 (,)
+
+
+
+
+2
+
+
+Text 
Delimiter
+
+
+The 
text delimiter as ASCII value, that is, 34 for double quotes and 39 for single 
quotes. Example: 34 ()
+
+
+
+
+3
+
+
+Character Set
+
+
+The 
character set code used in the file as described in the table below. Example: 0 
(System)
+
+
+
+
+4
+
+
+Number of First Line
+
+
+3 
(start from third line)
+
+
+
+
+5
+
+
+Cell 
Format 

[Libreoffice-bugs] [Bug 145294] Unable to load Libreoffice 7.1.6_Win (x64 or x32)

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

--- Comment #2 from paour  ---
Hello,
I confirme it's Fixed by the newly released 7.1.7 RC1:
https://www.libreoffice.org/download/download/?version=7.1.7
see : https://bugs.documentfoundation.org/show_bug.cgi?id=145304
Nicolas

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

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

2021-10-25 Thread Eike Rathke (via logerrit)
 include/svl/zforlist.hxx |4 
 svx/source/tbxctrls/tbcontrl.cxx |   18 +++---
 2 files changed, 19 insertions(+), 3 deletions(-)

New commits:
commit 97e63ff5375d9d80d6fe5d4bd68883e35bd56d91
Author: Eike Rathke 
AuthorDate: Mon Oct 25 15:39:46 2021 +0200
Commit: Eike Rathke 
CommitDate: Mon Oct 25 18:15:40 2021 +0200

Fix toolbar button's currency list's number format for default locale

Always resulted in the currency's LCID being omitted in the number
format for the default locale, which doesn't immediately harm but
loses the context (what currency a $ sign is actually), and also
lead to the "real" default currency format never matching the one
being generated for the list so no entry was selected if that
format was applied.

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

diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx
index 9836f5047542..251b8212a3cd 100644
--- a/include/svl/zforlist.hxx
+++ b/include/svl/zforlist.hxx
@@ -323,6 +323,7 @@ public:
 NfCurrencyEntry( const css::i18n::Currency & rCurr,
  const LocaleDataWrapper& rLocaleData,
  LanguageType eLang );
+NfCurrencyEntry( const NfCurrencyEntry& ) = default;
 
 /// Symbols and language identical
 booloperator==( const NfCurrencyEntry& r ) const;
@@ -334,6 +335,9 @@ public:
 sal_uInt16  GetNegativeFormat() const   { return nNegativeFormat; }
 sal_uInt16  GetDigits() const   { return nDigits; }
 
+/** Only to resolve system locale for currency list. */
+voidSetLanguage( LanguageType nLang ) { eLanguage = nLang; 
}
+
 /** [$DM-407] (bBank==false) or [$DEM] (bBank==true)
 is returned. If bBank==false and
 bWithoutExtension==true only [$DM] */
diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx
index 6dd380b31883..1c816097b3ff 100644
--- a/svx/source/tbxctrls/tbcontrl.cxx
+++ b/svx/source/tbxctrls/tbcontrl.cxx
@@ -3642,11 +3642,23 @@ namespace
 if (rItem.getLength() > sLongestString.getLength())
 sLongestString = rItem;
 
-const NfCurrencyEntry& aCurrencyEntry = rCurrencyTable[ 
rCurrencyIndex ];
-
 bIsSymbol = nPos >= nLen;
 
-sal_uInt16 nDefaultFormat = 
aFormatter.GetCurrencyFormatStrings( aStringsDtor, aCurrencyEntry, bIsSymbol );
+sal_uInt16 nDefaultFormat;
+const NfCurrencyEntry& rCurrencyEntry = rCurrencyTable[ 
rCurrencyIndex ];
+if (rCurrencyIndex == 0)
+{
+// Stored with system locale, but we want the resolved
+// full LCID format string. For example
+// "[$$-409]#,##0.00" instead of "[$$]#,##0.00".
+NfCurrencyEntry aCurrencyEntry( rCurrencyEntry);
+aCurrencyEntry.SetLanguage( LanguageTag( 
aCurrencyEntry.GetLanguage()).getLanguageType());
+nDefaultFormat = aFormatter.GetCurrencyFormatStrings( 
aStringsDtor, aCurrencyEntry, bIsSymbol);
+}
+else
+{
+nDefaultFormat = aFormatter.GetCurrencyFormatStrings( 
aStringsDtor, rCurrencyEntry, bIsSymbol);
+}
 const OUString& rFormatStr = aStringsDtor[ nDefaultFormat 
];
 m_aFormatEntries.push_back( rFormatStr );
 if( rFormatStr == m_rSelectedFormat )


[Libreoffice-bugs] [Bug 97391] [META] OpenCL and "Software Interpreter" issues in Calc

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

Bug 142891 Summary: FILEOPEN, EDITING, Chart or Range fails to update using 
Undo:delete for OpenCL when a cell with operator == is present
https://bugs.documentfoundation.org/show_bug.cgi?id=142891

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 142891] FILEOPEN, EDITING, Chart or Range fails to update using Undo:delete for OpenCL when a cell with operator == is present

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

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from Julien Nabet  ---
Thank you for your feedback.

Yes I think it'll be easier if you submit a new bugtracker.
Let's put this one to WFM.

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

[Libreoffice-commits] core.git: uitest/uitest

2021-10-25 Thread Xisco Fauli (via logerrit)
 uitest/uitest/test.py |   26 --
 1 file changed, 20 insertions(+), 6 deletions(-)

New commits:
commit 02bd6074b00c3e4420f67ad67566c217d9341c03
Author: Xisco Fauli 
AuthorDate: Mon Oct 25 16:17:43 2021 +0200
Commit: Xisco Fauli 
CommitDate: Mon Oct 25 17:54:39 2021 +0200

uitest: execute setActiveFrame in load_file first

In 4839b7ca3b5a730edf90ebebc749db145efec098
< Fix UITests that use File Open dialog to load documents >
the order of execution of load_file method was changed,
making the code after the yield keyword to be executed
after the test code is run, which is not what the original code did.
We need to execute that code before running the test code,
specially setActiveFrame

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

diff --git a/uitest/uitest/test.py b/uitest/uitest/test.py
index 239038c4..9a15671223b9 100644
--- a/uitest/uitest/test.py
+++ b/uitest/uitest/test.py
@@ -74,8 +74,8 @@ class UITest(object):
 raise Exception("Property not updated: " + childName)
 
 @contextmanager
-def wait_until_component_loaded(self, eventName="OnLoad"):
-with EventListener(self._xContext, eventName) as event:
+def wait_until_component_loaded(self):
+with EventListener(self._xContext, "OnLoad") as event:
 yield
 time_ = 0
 while time_ < MAX_WAIT:
@@ -90,12 +90,26 @@ class UITest(object):
 
 raise Exception("Component not loaded")
 
+def load_component_from_url(self, url, eventName="OnLoad"):
+with EventListener(self._xContext, eventName) as event:
+component =  self.get_desktop().loadComponentFromURL(url, 
"_default", 0, tuple())
+time_ = 0
+while time_ < MAX_WAIT:
+if event.executed:
+frames = self.get_frames()
+#activate the newest frame
+self.get_desktop().setActiveFrame(frames[-1])
+return component
+time_ += DEFAULT_SLEEP
+time.sleep(DEFAULT_SLEEP)
+
+raise Exception("Document not loaded")
+
 # Calls UITest.close_doc at exit
 @contextmanager
 def load_file(self, url):
 try:
-with self.wait_until_component_loaded():
-yield self.get_desktop().loadComponentFromURL(url, "_default", 
0, tuple())
+yield self.load_component_from_url(url)
 finally:
 self.close_doc()
 
@@ -103,11 +117,11 @@ class UITest(object):
 @contextmanager
 def load_empty_file(self, app):
 try:
-with self.wait_until_component_loaded("OnNew"):
-yield 
self.get_desktop().loadComponentFromURL("private:factory/s" + app, "_blank", 0, 
tuple())
+yield self.load_component_from_url("private:factory/s" + app, 
"OnNew")
 finally:
 self.close_doc()
 
+
 # Calls UITest.close_dialog_through_button at exit
 @contextmanager
 def execute_dialog_through_command(self, command, printNames=False, 
close_button = "ok", eventName = "DialogExecute"):


[Libreoffice-ux-advise] [Bug 133265] [UI] Please increase the 'needs save' indicator visibility

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

Ming Hua  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 144929] the new "document saved" icon and its ambiguous use

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

Ming Hua  changed:

   What|Removed |Added

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

--- Comment #2 from Ming Hua  ---
(In reply to peter josvai from comment #0)
> I was also disappointed by its new
> location (moved from the center of the status bar to the left corner)...
FYI, the icon was moved by commit
https://git.libreoffice.org/core/commit/0707380f05d4cce2d17eb74c4b871dcf17d3ac1f
as a result of resolving bug 133265.

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

[Libreoffice-bugs] [Bug 145279] ByRef argument modified in called Sub is returned incorrectly

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

--- Comment #3 from Jean-Pierre Ledure  ---
(In reply to Andreas Heinisch from comment #1)
> Tested with MS, returns both times 10. 

I would expect twice 11, not 10 ??
> 
> "Constants passed as arguments by reference cause unexpected behavior if
> their value is modified in the
> called routine. The value may arbitrarily change back inside the called
> routine."

This reminder does not seem relevant in the actual context. Passing a variable
instead of a constant in the Main() routine does not change the behaviour.

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

[Libreoffice-bugs] [Bug 145315] Export Artifacts On Columns With Color

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

Jon R Kibler  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
 OS|All |macOS (All)

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

[Libreoffice-bugs] [Bug 145315] Export Artifacts On Columns With Color

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

--- Comment #3 from Jon R Kibler  ---
Created attachment 175914
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175914=edit
FIle created by Print->SaveAsPDF -- has no lines, but can't sign or secure it!

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

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

2021-10-25 Thread Luboš Luňák (via logerrit)
 vcl/inc/impglyphitem.hxx   |   13 ++---
 vcl/source/gdi/CommonSalLayout.cxx |4 ++--
 2 files changed, 8 insertions(+), 9 deletions(-)

New commits:
commit 5dc3bc1e951a5e1c485db8034d691bac4d42344a
Author: Luboš Luňák 
AuthorDate: Mon Oct 25 14:44:12 2021 +0200
Commit: Luboš Luňák 
CommitDate: Mon Oct 25 16:55:02 2021 +0200

replace friend access with functions

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

diff --git a/vcl/inc/impglyphitem.hxx b/vcl/inc/impglyphitem.hxx
index 1942b9d159d5..ca9f7cf5c052 100644
--- a/vcl/inc/impglyphitem.hxx
+++ b/vcl/inc/impglyphitem.hxx
@@ -114,21 +114,20 @@ void GlyphItem::dropGlyph()
 
 class SalLayoutGlyphsImpl : public std::vector
 {
-friend class GenericSalLayout;
-
 public:
+SalLayoutGlyphsImpl(LogicalFontInstance& rFontInstance)
+: m_rFontInstance()
+{
+}
 SalLayoutGlyphsImpl* clone() const;
 const rtl::Reference& GetFont() const { return 
m_rFontInstance; }
 bool IsValid() const;
+void SetFlags(SalLayoutFlags flags) { mnFlags = flags; }
+SalLayoutFlags GetFlags() const { return mnFlags; }
 
 private:
 rtl::Reference m_rFontInstance;
 SalLayoutFlags mnFlags = SalLayoutFlags::NONE;
-
-SalLayoutGlyphsImpl(LogicalFontInstance& rFontInstance)
-: m_rFontInstance()
-{
-}
 };
 
 #endif // INCLUDED_VCL_IMPGLYPHITEM_HXX
diff --git a/vcl/source/gdi/CommonSalLayout.cxx 
b/vcl/source/gdi/CommonSalLayout.cxx
index 2028a4587695..13bc53ebbdab 100644
--- a/vcl/source/gdi/CommonSalLayout.cxx
+++ b/vcl/source/gdi/CommonSalLayout.cxx
@@ -268,7 +268,7 @@ bool 
GenericSalLayout::LayoutText(vcl::text::ImplLayoutArgs& rArgs, const SalLay
 if(!item.glyphId())
 SetNeedFallback(rArgs, item.charPos(), item.IsRTLGlyph());
 // Some flags are set as a side effect of text layout, restore them 
here.
-rArgs.mnFlags |= pGlyphs->mnFlags;
+rArgs.mnFlags |= pGlyphs->GetFlags();
 return true;
 }
 
@@ -598,7 +598,7 @@ bool 
GenericSalLayout::LayoutText(vcl::text::ImplLayoutArgs& rArgs, const SalLay
 
 // Some flags are set as a side effect of text layout, save them here.
 if (rArgs.mnFlags & SalLayoutFlags::GlyphItemsOnly)
-m_GlyphItems.mnFlags = rArgs.mnFlags;
+m_GlyphItems.SetFlags(rArgs.mnFlags);
 
 return true;
 }


[Libreoffice-bugs] [Bug 145315] Export Artifacts On Columns With Color

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

--- Comment #2 from Jon R Kibler  ---
Created attachment 175913
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175913=edit
File created by Export as PDF -- has lines

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

[Libreoffice-bugs] [Bug 145315] Export Artifacts On Columns With Color

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

--- Comment #1 from Jon R Kibler  ---
Created attachment 175912
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175912=edit
Screenshot of PDF with lines, with most visible examples circled

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

[Libreoffice-bugs] [Bug 145316] New: EDITING: The height of the yellow background of the "Insert Comment" box remains fixed independent of the comment height

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

Bug ID: 145316
   Summary: EDITING: The height of the yellow background of the
"Insert Comment" box remains fixed independent of the
comment height
   Product: LibreOffice
   Version: 6.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andrei.dragomire...@gmail.com

Created attachment 175911
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175911=edit
Long comment in LibreOffice Calc

When attaching a long comment to a cell via "Insert Comment", the height of the
yellow background of the comment box does not adapt as the size of the box
increases.

Steps to reproduce the bug:

1. Open LibreOffice Calc.
2. Select cell A1.
3. Right-click on cell A1.
4. Select the option "Insert Comment" from the drop-down menu.
5. Insert a comment having more than five lines in the comment box.
6. As the frame of the comment box expands to accommodate the coment, the
height of the yellow background remains fixed.

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

[Libreoffice-bugs] [Bug 145315] New: Export Artifacts On Columns With Color

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

Bug ID: 145315
   Summary: Export Artifacts On Columns With Color
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jrk1231...@nym.hush.com

Created attachment 175910
  --> https://bugs.documentfoundation.org/attachment.cgi?id=175910=edit
The ODS file used to demonstrate this problem.

"File-->Export as PDF" is creating artifacts in the PDF file that do not exist
in PDFs created by "Print-->Save as PDF" on macOS 10.14.6 (18G9323). Problem
occurs in both normal and safe mode, and LO has full disk access enabled.

Specifically, if you color fill part of a column of merged cells, and have a
different column color filled over a different range, the start and end of a
range will leave fine white lines in the colored column with the shorter range.
In general, the lighter the color of the overlapped column, the more prominent
are the lines.

The file Annotated Screenshot contains an example with the more prominent lines
circled.

Why not just print as PDF instead of exporting, if exporting is a problem?
Because I can't sign or secure documents that are printed, and securing
documents works on export. (Lines appear regardless of securing/signing.)

I have attached several files which illustrate this problem, including a sample
ods file.

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

[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||144945


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144945
[Bug 144945] Writer always delete "extra" collected words
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144945] Writer always delete "extra" collected words

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

Dieter  changed:

   What|Removed |Added

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

--- Comment #3 from Dieter  ---
(In reply to John from comment #2)
> I would say I don't find it intuitive unless your carefully
> **read** the corresponding section in the manual, and I don't think
> this makes sense to me.

So it works a it actually should work, correct?

Tested with
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 273a25c796fca9afa0dfadac57dc3f336831221c
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

So what is your idea now?
a) Close the bug report (NOTABUG)
b) Improve documentation
c) Change behaviour in LO?
d) ?

=> NEEDINFO


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 86066] [META] Bugs and improvements to the status bar

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

Dieter  changed:

   What|Removed |Added

 Depends on||144929


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144929
[Bug 144929] the new "document saved" icon and its ambiguous use
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144929] the new "document saved" icon and its ambiguous use

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

Dieter  changed:

   What|Removed |Added

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

--- Comment #1 from Dieter  ---
Peter, I think bug 92406 includes your idea. So let's focus on the second
problem (one bug report for each problem): I have a disk as icon (white, if
document has not been modifed and red, if some change has been made). I use
icon style Colibre. So I don't see an arrow. Please give information about the
icon style you use.

=> NEEDINFO


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86066
[Bug 86066] [META] Bugs and improvements to the status bar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||144921


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144921
[Bug 144921] Select & drag moves the to character anchor to the start of the
paragraph, until release of the mouse or touchpad
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144921] Select & drag moves the to character anchor to the start of the paragraph, until release of the mouse or touchpad

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

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEW
 Blocks||103152
 Whiteboard| QA:needsComment|
Summary|Select & drag (with mouse)  |Select & drag moves the to
   |moves the to character  |character anchor to the
   |anchor to the start of the  |start of the paragraph,
   |paragraph, until release of |until release of the mouse
   |the mouse   |or touchpad

--- Comment #3 from Dieter  ---
I confirm it

with

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 273a25c796fca9afa0dfadac57dc3f336831221c
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

Additional information:
Same result when select and drag with touchpad


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 114416] Property CharKeepTogether should be removed

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

--- Comment #6 from Jim Kornelsen  ---
Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

The property is still shown at
https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1style_1_1CharacterProperties.html#a1f01c49100613675a9b896037255a2fd,
yet it still does not exist. The following python code produces an error
message : CharKeepTogether:

oParEnum = XSCRIPTCONTEXT.getDocument().getText().createEnumeration()
while oParEnum.hasMoreElements():
oPar = oParEnum.nextElement()
oPortionEnum = oPar.createEnumeration()
while oPortionEnum.hasMoreElements():
oTextPortion = oPortionEnum.nextElement()
if oTextPortion.TextPortionType == "Text":
print(oTextPortion.CharKeepTogether)

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

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

2021-10-25 Thread Stephan Bergmann (via logerrit)
 connectivity/source/drivers/macab/MacabRecords.cxx |  178 ++---
 connectivity/source/drivers/macab/MacabTable.cxx   |4 
 sd/source/ui/slideshow/slideshowimpl.cxx   |6 
 3 files changed, 94 insertions(+), 94 deletions(-)

New commits:
commit ece8937267a0024b209c951884f81ba2aac5792d
Author: Stephan Bergmann 
AuthorDate: Mon Oct 25 14:52:35 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Mon Oct 25 15:58:24 2021 +0200

loplugin:indentation (macOS)

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

diff --git a/connectivity/source/drivers/macab/MacabRecords.cxx 
b/connectivity/source/drivers/macab/MacabRecords.cxx
index 737cdee7d6f8..4c2d4aed8fa1 100644
--- a/connectivity/source/drivers/macab/MacabRecords.cxx
+++ b/connectivity/source/drivers/macab/MacabRecords.cxx
@@ -530,34 +530,34 @@ MacabHeader *MacabRecords::createHeaderForProperty(const 
ABPropertyType _propert
  */
 if(_propertyValue != nullptr)
 {
-sal_Int32 i;
+sal_Int32 i;
 
-sal_Int32 multiLength = 
ABMultiValueCount(static_cast(const_cast(_propertyValue)));
-CFStringRef multiLabel, localizedMultiLabel;
-OUString multiLabelString;
-OUString multiPropertyString;
-OUString headerNameString;
-ABPropertyType multiType = 
static_cast(ABMultiValuePropertyType(static_cast(const_cast(_propertyValue))) - 0x100);
+sal_Int32 multiLength = 
ABMultiValueCount(static_cast(const_cast(_propertyValue)));
+CFStringRef multiLabel, localizedMultiLabel;
+OUString multiLabelString;
+OUString multiPropertyString;
+OUString headerNameString;
+ABPropertyType multiType = 
static_cast(ABMultiValuePropertyType(static_cast(const_cast(_propertyValue))) - 0x100);
 
-length = multiLength;
-headerNames = new macabfield *[multiLength];
-multiPropertyString = CFStringToOUString(_propertyName);
+length = multiLength;
+headerNames = new macabfield *[multiLength];
+multiPropertyString = CFStringToOUString(_propertyName);
 
-/* Go through each element, and - since each element is a scalar -
- * just create a new macabfield for it.
- */
-for(i = 0; i < multiLength; i++)
-{
-multiLabel = 
ABMultiValueCopyLabelAtIndex(static_cast(const_cast(_propertyValue)), i);
-localizedMultiLabel = 
ABCopyLocalizedPropertyOrLabel(multiLabel);
-multiLabelString = CFStringToOUString(localizedMultiLabel);
-CFRelease(multiLabel);
-CFRelease(localizedMultiLabel);
-headerNameString = multiPropertyString + ": " + 
fixLabel(multiLabelString);
-headerNames[i] = new macabfield;
-headerNames[i]->value = OUStringToCFString(headerNameString);
-headerNames[i]->type = multiType;
-}
+/* Go through each element, and - since each element is a 
scalar -
+ * just create a new macabfield for it.
+ */
+for(i = 0; i < multiLength; i++)
+{
+multiLabel = 
ABMultiValueCopyLabelAtIndex(static_cast(const_cast(_propertyValue)), i);
+localizedMultiLabel = 
ABCopyLocalizedPropertyOrLabel(multiLabel);
+multiLabelString = CFStringToOUString(localizedMultiLabel);
+CFRelease(multiLabel);
+CFRelease(localizedMultiLabel);
+headerNameString = multiPropertyString + ": " + 
fixLabel(multiLabelString);
+headerNames[i] = new macabfield;
+headerNames[i]->value = 
OUStringToCFString(headerNameString);
+headerNames[i]->type = multiType;
+}
 }
 break;
 
@@ -653,77 +653,77 @@ MacabHeader *MacabRecords::createHeaderForProperty(const 
ABPropertyType _propert
  */
 if(_propertyValue != nullptr)
 {
-/* Assume all keys are strings */
-sal_Int32 numRecords = 
static_cast(CFDictionaryGetCount(static_cast(_propertyValue)));
+/* Assume all keys are strings */
+sal_Int32 numRecords = 
static_cast(CFDictionaryGetCount(static_cast(_propertyValue)));
 
-/* The only method for getting info out of a CFDictionary, of both
- * keys and values, is to all of them all at once, so these
- * variables will hold them.
- */
-CFStringRef *dictKeys;
-CFTypeRef *dictValues;
-
-sal_Int32 i,j,k;
-

  1   2   3   >