[Libreoffice-bugs] [Bug 99746] [META] PDF import filter in Draw

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746
Bug 99746 depends on bug 78427, which changed state.

Bug 78427 Summary: FILEOPEN PDF Import: sometimes bold and italic font 
properties are imported incorrectly (because of toUnicode map in the pdf font 
file)
https://bugs.documentfoundation.org/show_bug.cgi?id=78427

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: Build failure, Error: no matching function for call on x86 Linux

2021-07-15 Thread Rene Engelhard
Hi,

Am 15.07.21 um 15:10 schrieb Luke Benes:
> Build succeeds now and tests pass on Arch 32. Thanks!

Tests pass?

uicheck does with two patches not upstream[1], but junit crashes with
segfault and then other mosly off-by one cppunit test failures here
which are i386 only.

Regards,


Rene


[1]
https://salsa.debian.org/libreoffice-team/libreoffice/libreoffice/-/blob/debian-experimental-7.2/patches/fix-uicheck-tests-on-i386.patch

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


GSoC week 5 summary : Integrating .ui dialogs with strings

2021-07-15 Thread sary nasser
Hello guys
what was done in the 5th week:
* Python script that assign each screenshot to it's unit ids.

* Python script that POST screenshots and associate source string with
screenshot.
 (still not merged but i'll fix small things to be merged)

* generating the summary file that contain screenshot name ,screenshot id
,associated unit id and location - context pair

Thanks
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 99746] [META] PDF import filter in Draw

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746
Bug 99746 depends on bug 81484, which changed state.

Bug 81484 Summary: Draw pdf import: bold font shown as "outline", if Chinese 
(CJK?) font is applied
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83066] [META] CJK (Chinese, Japanese, Korean, and Vietnamese) language issues

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83066
Bug 83066 depends on bug 81484, which changed state.

Bug 81484 Summary: Draw pdf import: bold font shown as "outline", if Chinese 
(CJK?) font is applied
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-07-15 Thread Andrzej Hunt (via logerrit)
 sd/source/ui/remotecontrol/Transmitter.cxx |   14 +++---
 sd/source/ui/remotecontrol/Transmitter.hxx |2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit f4ea1e6095ff751cbecf10061c4eff9934ffd520
Author: Andrzej Hunt 
AuthorDate: Sun Jul 11 17:22:54 2021 +0200
Commit: Andrzej Hunt 
CommitDate: Fri Jul 16 07:20:36 2021 +0200

sdremote: Transmitter: s/mQueuesNotEmpty/mProcessingRequired/

Make mProcessingRequired's name a bit more self-explanatory to make it
clear what we're actually using it for. See also a 8e6cdb0 which
fixed a race condition caused by incorrect use of this Condition.

Change-Id: I6ad63dbd5ae8ed767f42ea22e568ac47a4d08642
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118752
Tested-by: Jenkins
Reviewed-by: Andrzej Hunt 

diff --git a/sd/source/ui/remotecontrol/Transmitter.cxx 
b/sd/source/ui/remotecontrol/Transmitter.cxx
index 76cda8feae55..f00f15502a45 100644
--- a/sd/source/ui/remotecontrol/Transmitter.cxx
+++ b/sd/source/ui/remotecontrol/Transmitter.cxx
@@ -16,7 +16,7 @@ using namespace sd;
 
 Transmitter::Transmitter( IBluetoothSocket* aSocket )
   : pStreamSocket( aSocket ),
-mQueuesNotEmpty(),
+mProcessingRequired(),
 mMutex(),
 mFinishRequested( false ),
 mLowPriority(),
@@ -30,7 +30,7 @@ void SAL_CALL Transmitter::run()
 
 while ( true )
 {
-mQueuesNotEmpty.wait();
+mProcessingRequired.wait();
 
 ::osl::MutexGuard aGuard( mMutex );
 
@@ -52,9 +52,9 @@ void SAL_CALL Transmitter::run()
 pStreamSocket->write( aMessage.getStr(), aMessage.getLength() );
 }
 
-if ( mLowPriority.empty() && mHighPriority.empty() )
+if ( mLowPriority.empty() && mHighPriority.empty())
 {
-mQueuesNotEmpty.reset();
+mProcessingRequired.reset();
 }
 }
 }
@@ -63,7 +63,7 @@ void Transmitter::notifyFinished()
 {
 ::osl::MutexGuard aGuard( mMutex );
 mFinishRequested = true;
-mQueuesNotEmpty.set();
+mProcessingRequired.set();
 }
 
 Transmitter::~Transmitter()
@@ -82,9 +82,9 @@ void Transmitter::addMessage( const OString& aMessage, const 
Priority aPriority
 mHighPriority.push( aMessage );
 break;
 }
-if ( !mQueuesNotEmpty.check() )
+if ( !mProcessingRequired.check() )
 {
-mQueuesNotEmpty.set();
+mProcessingRequired.set();
 }
 }
 
diff --git a/sd/source/ui/remotecontrol/Transmitter.hxx 
b/sd/source/ui/remotecontrol/Transmitter.hxx
index 1cd94ea26712..c24f5a5a46fe 100644
--- a/sd/source/ui/remotecontrol/Transmitter.hxx
+++ b/sd/source/ui/remotecontrol/Transmitter.hxx
@@ -36,7 +36,7 @@ private:
 
 ::sd::IBluetoothSocket* pStreamSocket;
 
-::osl::Condition mQueuesNotEmpty;
+::osl::Condition mProcessingRequired;
 
 ::osl::Mutex mMutex;
 /**
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104597] Text runs of RTL scripts (e.g. Arabic, Hebrew, Persian) from imported PDF are reversed, PDFIProcessor::mirrorString not behaving

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104597

--- Comment #55 from Kevin Suo  ---
Created attachment 173618
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173618=edit
rtl.pdf (a simplified RTL file which can be used as a unittest case)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104597] Text runs of RTL scripts (e.g. Arabic, Hebrew, Persian) from imported PDF are reversed, PDFIProcessor::mirrorString not behaving

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104597

--- Comment #54 from Kevin Suo  ---
Created attachment 173617
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173617=edit
screenshot showing the PDF open in draw, with the "not perfect" patch applied

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104597] Text runs of RTL scripts (e.g. Arabic, Hebrew, Persian) from imported PDF are reversed, PDFIProcessor::mirrorString not behaving

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104597

--- Comment #53 from Kevin Suo  ---
Created attachment 173616
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173616=edit
tdf104597-not-perfect-patch.diff

Good news is that we are almost there.

With the attached modification to the code, the RTL text are now shown in
correct order.

However, the modification has deleted the "(rCurGC.Transformation ==
rNextGC.Transformation || notTransformed(rNextGC))" condition directly. This
may be wrong. Need to find a special case when some text within a line has
transformation even though the characters in this line all have the same font
id and the same fill color. This may be very rare. I tested many PDFs with this
patch applied on current master, all of them are displaying perfect.

As a result, the attached may be committed to master in my opinion, because
this makes Draw to be usable for RTL pdf files. In case someone find a special
case when the removable of transformation may have caused a regression, then we
investigate that matter separately.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143398] When I click to add a single sheet. It makes automatically two sheets.

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143398

Rizal Muttaqin  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||riz...@libreoffice.org
 Status|UNCONFIRMED |NEW

--- Comment #1 from Rizal Muttaqin  ---
Not reproducible in:

Version: 7.1.4.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: kf5
Locale: id-ID (id_ID.UTF-8); UI: id-ID
Ubuntu package version: 1:7.1.4~rc2-0ubuntu0.20.04.1~lo1
Calc: threaded

Reproducible in:

Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 0ce3a9dcc071094121252a286aa88529ee09a4eb
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: id-ID
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-07-15_08:59:24
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143398] New: When I click to add a single sheet. It makes automatically two sheets.

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143398

Bug ID: 143398
   Summary: When I click to add a single sheet. It makes
automatically two sheets.
   Product: LibreOffice
   Version: 7.2.0.1 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: avd.sha...@gmail.com

Description:
Here I got a problem with Calc. When I click to add a single sheet. It makes
automatically two sheets. 

Version: 7.2.0.1 (x64) / LibreOffice Community
Build ID: 32efc3b7f3a71cfa6a7fa3f6c208333df48656cc
CPU threads: 4; OS: Windows 6.2 Service Pack 1 Build 9200; UI render:
Skia/Raster; VCL: win
Locale: en-IN (en_IN); UI: en-US
Calc: threaded

Steps to Reproduce:
1.Sigle clicked on Plus Button to add a new single sheet. 
2.
3.

Actual Results:
It creates a double sheet automatically

Expected Results:
Create a single sheet.


Reproducible: Always


User Profile Reset: No



Additional Info:
This mentioned problem needs to be fixed.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143150] Brackets [] for bibliography reference lost on DOCX import (fine with DOC)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143150

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142162] Sidebar on Draw takes up more than 50% of the horizontal screen space

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142162

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143191] Libre office cannot open hyperlink - link to another sheet

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143191

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143191] Libre office cannot open hyperlink - link to another sheet

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143191

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108800] [META] Print related issues

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108800
Bug 108800 depends on bug 81642, which changed state.

Bug 81642 Summary: PRINTING: problem with printing on sheets of other than A4 
format
https://bugs.documentfoundation.org/show_bug.cgi?id=81642

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81642] PRINTING: problem with printing on sheets of other than A4 format

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81642

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81642] PRINTING: problem with printing on sheets of other than A4 format

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81642

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

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139659] Fails with message "Application Error" ~ 2 seconds after starting.

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139659

--- Comment #2 from QA Administrators  ---
Dear Edward Ahlsen-Girard,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139362] PRINTING - Sender address on envelope doesn't print

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139362

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

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88199] Table: Backward selection does not shrink properly

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88199

--- Comment #10 from QA Administrators  ---
Dear Harald Koester,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77157] Other: Dialogue Text is Wrong if Document is Switched to Read-only Mode

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77157

--- Comment #13 from QA Administrators  ---
Dear Harald Koester,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45540] Changing between Documents not Possible if Dialog Boxes are Displayed

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45540

--- Comment #12 from QA Administrators  ---
Dear Harald Koester,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 126301] [UI] Color/Grayscale/Black and White switches sometimes do not work

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126301

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118591] [NEWHELP] Editing: F1 key press goes to missing page when chart object is in edit mode on Impress page

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118591

--- Comment #5 from QA Administrators  ---
Dear Drew Jensen,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118444] Documents in Read-only Mode are Moved a Bit to the Left with Home and End Key

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118444

--- Comment #4 from QA Administrators  ---
Dear Harald Koester,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107698] EDITING: vertical position of controls anchored to cell incorrectly updated when non-default height rows are inserted/deleted above

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107698

--- Comment #11 from QA Administrators  ---
Dear gisel.avaleazar,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105297] A small border appears around the page when pasting as RTF

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105297

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143395] Max function only works in arrays of less that 150 cells in length

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143395

--- Comment #4 from Mark Lytle  ---
Thank you, I didn't know that.

Regards,
Mark Lytle

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-07-15 Thread Mike Kaganski (via logerrit)
 cui/source/tabpages/align.cxx|6 +--
 cui/source/tabpages/numfmt.cxx   |2 -
 cui/source/tabpages/swpossizetabpage.cxx |3 -
 cui/source/tabpages/tpshadow.cxx |7 ++--
 cui/source/tabpages/tptrans.cxx  |4 +-
 cui/source/tabpages/transfrm.cxx |   10 ++
 include/svl/itemset.hxx  |   48 ---
 include/svl/whichranges.hxx  |8 ++---
 svl/source/items/itemset.cxx |1 
 svx/source/dialog/hdft.cxx   |9 ++---
 sw/source/ui/envelp/envfmt.cxx   |2 -
 sw/source/ui/frmdlg/frmpage.cxx  |2 -
 sw/source/ui/frmdlg/wrap.cxx |4 +-
 13 files changed, 47 insertions(+), 59 deletions(-)

New commits:
commit 01c0cf63be7155531e1240d79e3936f8c4600864
Author: Mike Kaganski 
AuthorDate: Fri Jul 16 01:03:06 2021 +0300
Commit: Mike Kaganski 
CommitDate: Fri Jul 16 03:46:26 2021 +0200

Move validity check to svl::Items, to avoid invalid WhichRangesContainer

This uncovered lots of pre-existing invalid ranges, e.g. introduced
in commit 6dbfbebad37fd84208e4c336f0864d26019db153, or in much older
commit 46952138c938730afcc3607e1a524bb590b0e30e.

Also this makes the static in svl::Items to be array of WhichPair,
to avoid questionable reinterpret_cast in WhichRangesContainer ctor.

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

diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx
index b178630ab61e..4c9b43454c74 100644
--- a/cui/source/tabpages/align.cxx
+++ b/cui/source/tabpages/align.cxx
@@ -41,15 +41,15 @@ namespace svx {
 
 const WhichRangesContainer AlignmentTabPage::s_pRanges(
 svl::Items<
-SID_ATTR_ALIGN_HOR_JUSTIFY, SID_ATTR_ALIGN_VER_JUSTIFY,
 SID_ATTR_ALIGN_STACKED, SID_ATTR_ALIGN_LINEBREAK,
 SID_ATTR_ALIGN_INDENT, SID_ATTR_ALIGN_INDENT,
 SID_ATTR_ALIGN_DEGREES, SID_ATTR_ALIGN_DEGREES,
 SID_ATTR_ALIGN_LOCKPOS, SID_ATTR_ALIGN_LOCKPOS,
 SID_ATTR_ALIGN_HYPHENATION, SID_ATTR_ALIGN_HYPHENATION,
-SID_ATTR_ALIGN_ASIANVERTICAL, SID_ATTR_ALIGN_ASIANVERTICAL,
 SID_ATTR_FRAMEDIRECTION, SID_ATTR_FRAMEDIRECTION,
-SID_ATTR_ALIGN_SHRINKTOFIT, SID_ATTR_ALIGN_SHRINKTOFIT>::value);
+SID_ATTR_ALIGN_ASIANVERTICAL, SID_ATTR_ALIGN_ASIANVERTICAL,
+SID_ATTR_ALIGN_SHRINKTOFIT, SID_ATTR_ALIGN_SHRINKTOFIT,
+SID_ATTR_ALIGN_HOR_JUSTIFY, SID_ATTR_ALIGN_VER_JUSTIFY>::value);
 
 
 namespace {
diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx
index 6f889f747517..f1560168b16a 100644
--- a/cui/source/tabpages/numfmt.cxx
+++ b/cui/source/tabpages/numfmt.cxx
@@ -57,8 +57,8 @@ using ::com::sun::star::uno::UNO_QUERY;
 const WhichRangesContainer SvxNumberFormatTabPage::pRanges(
 svl::Items<
 SID_ATTR_NUMBERFORMAT_VALUE, SID_ATTR_NUMBERFORMAT_INFO,
-SID_ATTR_NUMBERFORMAT_NOLANGUAGE, SID_ATTR_NUMBERFORMAT_NOLANGUAGE,
 SID_ATTR_NUMBERFORMAT_ONE_AREA, SID_ATTR_NUMBERFORMAT_ONE_AREA,
+SID_ATTR_NUMBERFORMAT_NOLANGUAGE, SID_ATTR_NUMBERFORMAT_NOLANGUAGE,
 SID_ATTR_NUMBERFORMAT_SOURCE, SID_ATTR_NUMBERFORMAT_SOURCE>::value);
 
 /*
diff --git a/cui/source/tabpages/swpossizetabpage.cxx 
b/cui/source/tabpages/swpossizetabpage.cxx
index ac9a0da25866..fc0e3d90ef92 100644
--- a/cui/source/tabpages/swpossizetabpage.cxx
+++ b/cui/source/tabpages/swpossizetabpage.cxx
@@ -723,9 +723,6 @@ WhichRangesContainer SvxSwPosSizeTabPage::GetRanges()
 {
 static const WhichRangesContainer ranges(svl::Items<
 SID_ATTR_TRANSFORM_POS_X, SID_ATTR_TRANSFORM_POS_Y,
-SID_ATTR_TRANSFORM_PROTECT_POS, SID_ATTR_TRANSFORM_PROTECT_POS,
-SID_ATTR_TRANSFORM_INTERN, SID_ATTR_TRANSFORM_INTERN,
-SID_ATTR_TRANSFORM_ANCHOR, SID_ATTR_TRANSFORM_VERT_ORIENT,
 SID_ATTR_TRANSFORM_WIDTH, SID_ATTR_TRANSFORM_SIZE_POINT,
 SID_ATTR_TRANSFORM_PROTECT_POS, SID_ATTR_TRANSFORM_INTERN,
 SID_ATTR_TRANSFORM_AUTOWIDTH, SID_ATTR_TRANSFORM_VERT_ORIENT,
diff --git a/cui/source/tabpages/tpshadow.cxx b/cui/source/tabpages/tpshadow.cxx
index 8e0c86eaea59..3169b723e37d 100644
--- a/cui/source/tabpages/tpshadow.cxx
+++ b/cui/source/tabpages/tpshadow.cxx
@@ -43,9 +43,10 @@ using namespace com::sun::star;
 
 const WhichRangesContainer SvxShadowTabPage::pShadowRanges(svl::Items<
 SDRATTR_SHADOWCOLOR, SDRATTR_SHADOWTRANSPARENCE,
-SDRATTR_SHADOWBLUR, SID_ATTR_FILL_SHADOW,
-SID_ATTR_FILL_SHADOW, SID_ATTR_SHADOW_TRANSPARENCE,
-SID_ATTR_SHADOW_BLUR, SID_ATTR_SHADOW_YDISTANCE
+SDRATTR_SHADOWBLUR, SDRATTR_SHADOWBLUR,
+SID_ATTR_FILL_SHADOW, SID_ATTR_FILL_SHADOW,
+SID_ATTR_SHADOW_BLUR, SID_ATTR_SHADOW_BLUR,
+SID_ATTR_SHADOW_TRANSPARENCE, SID_ATTR_SHADOW_YDISTANCE
 >::value);
 
 

[Libreoffice-bugs] [Bug 142418] 1.2 - 1.1 = 0.09 ?

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142418

--- Comment #6 from damontrip...@gmail.com ---
Inherently wrong is still wrong

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 65535] Adding a comment in the middle of a word makes it recognised as misspelt by spellchecker

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65535

--- Comment #39 from stragu  ---
Justin, what do you think of the suggestions in Comment 35?
If that was implemented, there would never be a comment character inside a
word, and therefore correcting a word would never make the comment disappear
(according to what I tested so far).

If the drawbacks of that solution are too big (i.e. if we think that users will
want to have the option to comment at a precise spot inside a word), another
option could be to move the comment only when the word is corrected. The steps
would be:

- User clicks to correct the word / picks a replacement
- LO checks if a comment character is inside the string
- If TRUE, move comment character to end of string
- Replace the string with correction

It would make sense, as there is no straight-forward way to decide where
exactly the comment should end up being located in the new string, which might
be completely different to the original in length and characters.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142476] Save a Copy to different format doesn't update extension

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142476

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Summary|Save a Copy |Save a Copy to different
   ||format doesn't update
   ||extension

--- Comment #2 from Aron Budea  ---
I think I'm encountering this fairly often on Ubuntu, but inconsistently, and
not always. I'm also not using Save a Copy... (but Save As...) perhaps that's
also a special case, if it's 100% reproducible for you.
(can't check now, will try in a few days if I don't forget)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142210] Manage Names dialogue box error in help

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142210

Aron Budea  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEEDINFO
  Component|Calc|Documentation
 CC||ba...@caesar.elte.hu,
   ||olivier.hallot@libreoffice.
   ||org
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Is this related to the help, or to Calc Guide?

Ie. the latter is:
https://wiki.documentfoundation.org/Documentation/Publications#LibreOffice_Calc_Guide

If it's the help, can you please link the page?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142443] Libre Office Writer breaks the text adding unwanted tags in the content.xml file

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142443

Aron Budea  changed:

   What|Removed |Added

   Keywords||needsDevAdvice

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104597] Text runs of RTL scripts (e.g. Arabic, Hebrew, Persian) from imported PDF are reversed, PDFIProcessor::mirrorString not behaving

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104597

--- Comment #52 from Kevin Suo  ---
(In reply to V Stuart Foote from comment #51)
As I said, if all the following evaluate true:
'''
if( (pCur->FontId == pNext->FontId || isSpaces(pNext)) &&
rCurGC.FillColor.Red == rNextGC.FillColor.Red &&
rCurGC.FillColor.Green == rNextGC.FillColor.Green &&
rCurGC.FillColor.Blue == rNextGC.FillColor.Blue &&
rCurGC.FillColor.Alpha == rNextGC.FillColor.Alpha &&
(rCurGC.Transformation == rNextGC.Transformation ||
notTransformed(rNextGC))
)

then the chharacters will be combined into strings and then the mirror code
would be triggered which will reverse the reversed char sequence, thus produce
correct ones in the XML. 

So the issue now is how to modify the last condition "(rCurGC.Transformation ==
rNextGC.Transformation || notTransformed(rNextGC))" to correctly detect the
current char is of the same transformation thus they should be combined into
string.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143395] Max function only works in arrays of less that 150 cells in length

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143395

Regina Henschel  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEEDINFO|RESOLVED

--- Comment #3 from Regina Henschel  ---
The cells in lines 150, 155, 395, 415, 420, 493, 680, 685 and 752 contain the
error value #N/A.
The function MAX cannot skip cells with error values, but propagate the error.

In case you will not remove the error values (find & replace), you can use the
formula =MAX(IFNA(L1:L825;"")). You need to enter it as matrix formula (Ctrl +
Shift + Enter).

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143380] Polish language: Avoid putting conjunctions like "i" "a" "o" at the end of a line

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143380

Ming Hua  changed:

   What|Removed |Added

 CC||ming.v@qq.com
Summary|The conjunction is the last |Polish language: Avoid
   |one in the line |putting conjunctions like
   ||"i" "a" "o" at the end of a
   ||line

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143395] Max function only works in arrays of less that 150 cells in length

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143395

--- Comment #2 from Mark Lytle  ---
Created attachment 173615
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173615=edit
This is the file I'm having trouble with,  Change the max command to anything
larger than 149, it fails

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143395] Max function only works in arrays of less that 150 cells in length

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143395

Regina Henschel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
I cannot confirm the problem. Are you sure, that all cells contain numbers?

Please attach the failing document.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 131947] Sidebar minimum width of Decks are too wide when docked (see comment 22 comment 40) to be addressed with bug 140360

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131947

Aron Budea  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142162] Sidebar on Draw takes up more than 50% of the horizontal screen space

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142162

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||1947
 Ever confirmed|0   |1
 CC||ba...@caesar.elte.hu
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Aron Budea  ---
(In reply to Menoo from comment #0)
> Using a Microsoft Surface Laptop which has a high-DPI screen and using 250%
> scaling factor.
This is interesting information, please add a screenshot. Seems related to bug
131947.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 134452] Page break disappears after applying table style

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

--- Comment #8 from Commit Notification 
 ---
Balazs Santha committed a patch related to this issue.
It has been pushed to "libreoffice-7-2":

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

tdf#134452 sw: fix page break disappears after applying table style

It will be available in 7.2.0.2.

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

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 134452] Page break disappears after applying table style

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.3.0|target:7.3.0 target:7.2.0.2

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-07-15 Thread Balazs Santha (via logerrit)
 sw/inc/tblafmt.hxx  |4 --
 sw/qa/core/uwriter.cxx  |   12 --
 sw/qa/uitest/writer_tests7/tdf134452.py |   58 
 sw/source/core/doc/tblafmt.cxx  |   22 +++-
 4 files changed, 65 insertions(+), 31 deletions(-)

New commits:
commit 03bde450887c95f59f511d39cf2e10dcb26bbcf0
Author: Balazs Santha 
AuthorDate: Wed Jul 14 15:18:47 2021 +0200
Commit: Xisco Fauli 
CommitDate: Fri Jul 16 01:47:37 2021 +0200

tdf#134452 sw: fix page break disappears after applying table style

After setting the break and pagedesc property of a table, applying a table 
style (autoformat) caused the loss of these settings.
This was because, when applying a table style, the 
SwTableAutoFormat::RestoreTableProperties() overrid these settings with its own 
default settings.
As the autoformats can never be modified, and they don't really use these 
two props, the easiest way to prevent any problem was to completely remove 
these properties and its uses.
Unfortunately, m_aBreak couldn't be removed entirely, as the autoformats 
are stored in a binary file, and to be able to read and write these files the 
offset of the subsequent items must not be changed.

Change-Id: Ieba439d3ba5da892b39f00f8b61c5c8467306635
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118662
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118991

diff --git a/sw/inc/tblafmt.hxx b/sw/inc/tblafmt.hxx
index 2873f51e9196..ff6abca8baa7 100644
--- a/sw/inc/tblafmt.hxx
+++ b/sw/inc/tblafmt.hxx
@@ -173,8 +173,6 @@ class SW_DLLPUBLIC SwTableAutoFormat
 SwBoxAutoFormat* m_aBoxAutoFormat[ 16 ] = {};
 
 // Writer-specific options
-std::shared_ptr m_aBreak;
-SwFormatPageDesc m_aPageDesc;
 std::shared_ptr m_aKeepWithNextPara;
 sal_uInt16 m_aRepeatHeading;
 bool m_bLayoutSplit;
@@ -191,11 +189,9 @@ public:
 
 SwTableAutoFormat& operator=( const SwTableAutoFormat& rNew );
 
-const SvxFormatBreakItem& GetBreak() const { return *m_aBreak; }
 const SvxFormatKeepItem& GetKeepWithNextPara() const { return 
*m_aKeepWithNextPara; }
 const SvxShadowItem& GetShadow() const { return *m_aShadow; }
 
-void SetBreak(const SvxFormatBreakItem& rNew) { 
m_aBreak.reset(rNew.Clone()); }
 void SetKeepWithNextPara(const SvxFormatKeepItem& rNew) { 
m_aKeepWithNextPara.reset(rNew.Clone()); }
 void SetShadow(const SvxShadowItem& rNew) { m_aShadow.reset(rNew.Clone()); 
}
 
diff --git a/sw/qa/core/uwriter.cxx b/sw/qa/core/uwriter.cxx
index ade0a9d8170b..4f9ffdb98c40 100644
--- a/sw/qa/core/uwriter.cxx
+++ b/sw/qa/core/uwriter.cxx
@@ -1324,17 +1324,9 @@ void SwDocTest::testTableAutoFormats()
 //Set m_eNumFormatLanguage
 LanguageType aNFLang( LANGUAGE_GERMAN );
 aBoxAF.SetNumFormatLanguage(aNFLang);
-//Set m_aBreak
-SvxFormatBreakItem aBreak( SvxBreak::PageBefore, 0 );
-aTableAF.SetBreak(aBreak);
 //Set m_aKeepWithNextPara
 SvxFormatKeepItem aKWNPara( true, 0 );
 aTableAF.SetKeepWithNextPara(aKWNPara);
-//Set m_aPageDesc
-SwFormatPageDesc aPDesc;
-uno::Any aPDAny( sal_uInt16(3) );
-aPDesc.PutValue( aPDAny, 0 );
-aTableAF.m_aPageDesc = aPDesc;
 //Set m_aRepeatHeading
 sal_uInt16 aRHeading = 3;
 aTableAF.m_aRepeatHeading = aRHeading;
@@ -1466,12 +1458,8 @@ void SwDocTest::testTableAutoFormats()
 CPPUNIT_ASSERT( bool( pLoadAF->GetBoxFormat(0).GetSysLanguage() == aSLang 
) );
 //Get m_eNumFormatLanguage
 CPPUNIT_ASSERT( bool( pLoadAF->GetBoxFormat(0).GetNumFormatLanguage() == 
aNFLang ) );
-//Get m_aBreak
-CPPUNIT_ASSERT( bool( pLoadAF->GetBreak() == aBreak ) );
 //Get m_aKeepWithNextPara
 CPPUNIT_ASSERT( bool( pLoadAF->GetKeepWithNextPara() == aKWNPara ) );
-//Get m_aPageDesc
-CPPUNIT_ASSERT( bool( pLoadAF->m_aPageDesc == aPDesc ) );
 //Get m_aRepeatHeading
 CPPUNIT_ASSERT( bool( pLoadAF->m_aRepeatHeading == aRHeading ) );
 //Get m_bLayoutSplit
diff --git a/sw/qa/uitest/writer_tests7/tdf134452.py 
b/sw/qa/uitest/writer_tests7/tdf134452.py
new file mode 100644
index ..09dc9c5f9c6a
--- /dev/null
+++ b/sw/qa/uitest/writer_tests7/tdf134452.py
@@ -0,0 +1,58 @@
+# -*- 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.common import select_pos
+
+# Bug 134452 - Applying a table style caused the loss of break/pagedesc props 
of the table
+
+
+class tdf134452(UITestCase):
+def test_tdf134452(self):
+

[Libreoffice-bugs] [Bug 143393] After first opening of DRAW and inserting an image buttons (and other content) is hidden

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143393

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #2 from Regina Henschel  ---
I do not get such error on Windows. Tested with Version: 7.3.0.0.alpha0+ (x64)
/ LibreOffice Community
Build ID: 3aa1152ccee13869b2c1d64a296524cf4fb73fa8
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: de-DE (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143397] FILESAVE Extra long document saved as .docx displayed as multiple very short pages in Writer

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143397

--- Comment #4 from justforth...@outlook.com ---
Had posted this as a question here.
https://ask.libreoffice.org/en/question/317895/mail-merge-doc-saved-as-docx-not-displayed-correctly-in-lo-writer/

It was a mail merge document but I have since discovered it is true for other
documents.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143397] FILESAVE Extra long document saved as .docx displayed as multiple very short pages in Writer

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143397

--- Comment #3 from justforth...@outlook.com ---
Created attachment 173614
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173614=edit
Screenshot of incorrect layout

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143397] FILESAVE Extra long document saved as .docx displayed as multiple very short pages in Writer

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143397

--- Comment #2 from justforth...@outlook.com ---
Created attachment 173613
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173613=edit
Screenshot of correct display

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143397] FILESAVE Extra long document saved as .docx displayed as multiple very short pages in Writer

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143397

--- Comment #1 from justforth...@outlook.com ---
Created attachment 173612
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173612=edit
Test file

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143397] New: FILESAVE Extra long document saved as .docx displayed as multiple very short pages in Writer

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143397

Bug ID: 143397
   Summary: FILESAVE Extra long document saved as .docx displayed
as multiple very short pages in Writer
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: justforth...@outlook.com

Description:
Document created in writer with an extended page length and saved as .docx
file. On reopening in Writer is displayed as multiple blank lines. The page
length has been changed to be a few cm long and the display is showing multiple
pages. This happens if the page length exceeds the limit for .docx files in
word (approx 55cm). If you change the page length back to a longer length it
continues to be displayed correctly. When the file with the extended page
length is opened directly in Word it changes the page length to the default
maximum, when opened in google docs it is displayed as the extended page
length.  

Steps to Reproduce:
1.create file larger than 55cm long in Writer
2.save as .docx, close file
3.reopen in Writer

Actual Results:
Display is unreadable. Document is displayed as multiple pages each a few cm
long.

Expected Results:
Display is readable, page length is as saved (or changed to default maximum
length)


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.7.2
Build ID: 1:6.4.7-0ubuntu0.20.04.1
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-GB
Calc: threaded 
(NB same issue found using Windows 10)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136914] full screen is not calculated correctly under linux wayland with several screens/monitors attached

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136914

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
Version|unspecified |6.4.6.2 release

--- Comment #2 from Aron Budea  ---
What is a "horizontal screen setup", and in what way is it different from
"several monitors under wayland all with landscape orientation"?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142418] 1.2 - 1.1 = 0.09 ?

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142418

Aron Budea  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 CC||ba...@caesar.elte.hu
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #5 from Aron Budea  ---
This inherently comes from using floating point numbers, please refer to this
FAQ: https://wiki.documentfoundation.org/Faq/Calc/Accuracy

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


New Defects reported by Coverity Scan for LibreOffice

2021-07-15 Thread scan-admin
Hi,

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

1 new defect(s) introduced to LibreOffice found with Coverity Scan.
5 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent 
build analyzed by Coverity Scan.

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


** CID 1487031:(TAINTED_SCALAR)
/vcl/source/filter/svm/SvmReader.cxx: 730 in 
SvmReader::TextArrayHandler(ImplMetaReadData *)()
/vcl/source/filter/svm/SvmReader.cxx: 719 in 
SvmReader::TextArrayHandler(ImplMetaReadData *)()



*** CID 1487031:(TAINTED_SCALAR)
/vcl/source/filter/svm/SvmReader.cxx: 730 in 
SvmReader::TextArrayHandler(ImplMetaReadData *)()
724 for (i = 0; i < nAryLen; i++)
725 {
726 mrStream.ReadInt32(val);
727 aArray[i] = val;
728 }
729 // #106172# setup remainder
>>> CID 1487031:(TAINTED_SCALAR)
>>> Using tainted variable "nTmpLen" as a loop boundary.
730 for (; i < nTmpLen; i++)
731 aArray[i] = 0;
732 }
733 }
734 else
735 {
/vcl/source/filter/svm/SvmReader.cxx: 719 in 
SvmReader::TextArrayHandler(ImplMetaReadData *)()
713 
714 if (nAryLen)
715 {
716 // #i9762#, #106172# Ensure that DX array is at least mnLen 
entries long
717 if (nTmpLen >= nAryLen)
718 {
>>> CID 1487031:(TAINTED_SCALAR)
>>> Passing tainted expression "nTmpLen * 8UL" to "operator new[]", which 
>>> uses it as an allocation size.
719 aArray.reset(new (std::nothrow) tools::Long[nTmpLen]);
720 if (aArray)
721 {
722 sal_Int32 i;
723 sal_Int32 val;
724 for (i = 0; i < nAryLen; i++)



To view the defects in Coverity Scan visit, 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50ypSs1kiFPuCn2xFdlMIFBirii0zZ9j2-2F9F2XPBcBm2BNgi9duPy3v-2FzgFDd2LJ-2BDKI-3D8t0__OTq2XUZbbipYjyLSo6GRo-2FpVxQ9OzkDINu9UTS-2FQhSdO0F0jQniitrGlNxDIzPJiZLg-2FhhZU40JdDnlkz7uSerbednszgGbOaYkWH4-2BRmJvr4Puwx2qW0yhvtD-2FHhrlwIOL-2BARlL2NRJNYNbpKVur-2BuVXKlr0Wi5I-2FOxSx1xpWvZX4GaA58qc2mIqyyq-2FmiDZCK3Q5cDcov63Gd7-2BF3wJgux71lv1xifcuDVhFWXx5I-3D

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 111450] [META] SVG fileSave filter (Draw/Impress)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111450

Aron Budea  changed:

   What|Removed |Added

 Depends on||142314


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142314
[Bug 142314] Included Background photo is not exported to SVG
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 111450] [META] SVG fileSave filter (Draw/Impress)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111450
Bug 111450 depends on bug 142314, which changed state.

Bug 142314 Summary: Included Background photo is not exported to SVG
https://bugs.documentfoundation.org/show_bug.cgi?id=142314

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142314] Included Background photo is not exported to SVG

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142314

Aron Budea  changed:

   What|Removed |Added

  Component|Impress |filters and storage
 Resolution|--- |WORKSFORME
 Blocks||111450
Summary|Included Background photo   |Included Background photo
   |is not shown in |is not exported to SVG
   |presentation mode   |
Product|LibreOffice Online  |LibreOffice
 CC||ba...@caesar.elte.hu
Version|unspecified |7.0.5.2 release
 Status|UNCONFIRMED |RESOLVED

--- Comment #6 from Aron Budea  ---
This was a missing feature in LO's SVG export, and it should be fine in LO 7.2
(and in a LOOL build configured to run together with that).


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111450
[Bug 111450] [META] SVG fileSave filter (Draw/Impress)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-07-15 Thread Eike Rathke (via logerrit)
 svx/source/dialog/langbox.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit da13b76e07231131cb951868a314ee6f51c0f254
Author: Eike Rathke 
AuthorDate: Thu Jul 15 23:53:04 2021 +0200
Commit: Eike Rathke 
CommitDate: Fri Jul 16 00:35:46 2021 +0200

Resolves: tdf#143372 Exclude {qtz} KeyID from SvxLanguageBox list

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

diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index 49f608629890..fcd9c54e3774 100644
--- a/svx/source/dialog/langbox.cxx
+++ b/svx/source/dialog/langbox.cxx
@@ -95,6 +95,7 @@ bool lcl_isPrerequisite( LanguageType nLangType )
 nLangType != LANGUAGE_DONTKNOW &&
 nLangType != LANGUAGE_SYSTEM &&
 nLangType != LANGUAGE_NONE &&
+nLangType != LANGUAGE_USER_KEYID &&
 !MsLangId::isLegacy( nLangType) &&
 MsLangId::getSubLanguage( nLangType);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143396] nVidia GPU Skia Vulkan 461.368.0 driver issue -- nVidia Quadro K2000 -- resizing floating Sidebar and dragging deck open onto main LO window frame.

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143396

V Stuart Foote  changed:

   What|Removed |Added

Crash report or||https://crashreport.libreof
crash signature||fice.org/stats/signature/Gr
   ||VkPipelineState::setAndBind
   ||InputAttachment(GrVkGpu%20*
   ||,GrVkRenderTarget%20*,GrVkC
   ||ommandBuffer%20*)

--- Comment #2 from V Stuart Foote  ---
This bug was filed from the crash reporting server and is
br-fe84b049-360c-481f-8e9b-29c5b035ceb9.
=

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143396] nVidia GPU Skia Vulkan 461.368.0 driver issue -- nVidia Quadro K2000 -- resizing floating Sidebar and dragging deck open onto main LO window frame.

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143396

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
Summary|nVidia GPU Skia Vulkan  |nVidia GPU Skia Vulkan
   |461.368.0 driver issue --   |461.368.0 driver issue --
   |nVidia Quadro K2000 --  |nVidia Quadro K2000 --
   |resizing floating Sidebar > |resizing floating Sidebar
   |Navigator deck  |and dragging deck open onto
   ||main LO window frame.

--- Comment #1 from V Stuart Foote  ---
Crash does not depend on the floating Sidebar deck active, just dragging wider
and passing the edge of the main LO window frame results in crash.  Does not
occur with Skia Raster rendering mode--just Vulkan for this GPU/Driver pair.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143374] EDITING Feature Request: Hide/Show Ruler Guide Lines Hotkey

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143374

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #4 from V Stuart Foote  ---
Setting the shortcut for the UNO command does toggle the mode.

Set the shortcut. Observe the Draw -> Standard toolbar.  The 'Helplines While
Moving' button will toggle enabled and disabled with each click of the shortcut
assigned.  Correctly functions with draw object pre-selected or not.

Both enabling and disabling the helplines mode applies from the shortcut
assigned.

Sorry, with the dearth of available shortcut keys to use--it does not make
sense to preload shortcuts for Toolbar buttons that are always available.

=> WFM  and IMHO a clear WF as enhancement.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143374] EDITING Feature Request: Hide/Show Ruler Guide Lines Hotkey

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143374

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #4 from V Stuart Foote  ---
Setting the shortcut for the UNO command does toggle the mode.

Set the shortcut. Observe the Draw -> Standard toolbar.  The 'Helplines While
Moving' button will toggle enabled and disabled with each click of the shortcut
assigned.  Correctly functions with draw object pre-selected or not.

Both enabling and disabling the helplines mode applies from the shortcut
assigned.

Sorry, with the dearth of available shortcut keys to use--it does not make
sense to preload shortcuts for Toolbar buttons that are always available.

=> WFM  and IMHO a clear WF as enhancement.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 143374] EDITING Feature Request: Hide/Show Ruler Guide Lines Hotkey

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143374

--- Comment #3 from JDubz  ---
EDIT: For clarification, "Show them again" refers to showing the Guides(Help
Lines) and not the toolbar button.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143374] EDITING Feature Request: Hide/Show Ruler Guide Lines Hotkey

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143374

--- Comment #2 from JDubz  ---
The result is very close to the outcome I would like to see as a result of my
feature request.

This is successful in toggling on/off the "Helplines While Moving" toolbar
button as a keyboard shortcut. This also does hide the guides (Help Lines), but
repeating the execution of shortcut does not reverse this action and "show"
them again. 

That's the core of my request.

My request is to have a switchable hotkey assigned for this task, and to have
be added as a default.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143396] nVidia GPU Skia Vulkan 461.368.0 driver issue -- nVidia Quadro K2000 -- resizing floating Sidebar > Navigator deck

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143396

V Stuart Foote  changed:

   What|Removed |Added

Summary|nVidia GPU Skia Vulkan  |nVidia GPU Skia Vulkan
   |461.368.0 driver issue --   |461.368.0 driver issue --
   |nVidia Quatro K2000 --  |nVidia Quadro K2000 --
   |resizing floating Sidebar > |resizing floating Sidebar >
   |Navigator deck  |Navigator deck
 CC||vstuart.fo...@utsa.edu
 Blocks||129062


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129062
[Bug 129062] [META] Skia library bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||143396


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143396
[Bug 143396] nVidia GPU Skia Vulkan 461.368.0 driver issue -- nVidia Quadro
K2000 -- resizing floating Sidebar > Navigator deck
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143396] New: nVidia GPU Skia Vulkan 461.368.0 driver issue -- nVidia Quatro K2000 -- resizing floating Sidebar > Navigator deck

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143396

Bug ID: 143396
   Summary: nVidia GPU Skia Vulkan 461.368.0 driver issue --
nVidia Quatro K2000 -- resizing floating Sidebar >
Navigator deck
   Product: LibreOffice
   Version: 7.2.0.1 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vstuart.fo...@utsa.edu

With sidebar undocked, while in the Navigator deck--expanding and shrinking the
width of the deck will crash.  On recovery Skia rendering falls back to Raster
mode and crash no longer occurs.

Two crashreport minidump stack traces with signature

'GrVkPipelineState::setAndBindInputAttachment(GrVkGpu%20*,GrVkRenderTarget%20*,GrVkCommandBuffer%20*)'

https://crashreport.libreoffice.org/stats/crash_details/942b279a-f440-431c-935d-80b2675ca1d8

https://crashreport.libreoffice.org/stats/crash_details/3ff12c99-f054-430d-b690-5f0e2ca502b7


Version: 7.2.0.1 (x64) / LibreOffice Community
Build ID: 32efc3b7f3a71cfa6a7fa3f6c208333df48656cc
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

VulkanDriver461.368.0
VulkanAPI   1.2.155
ProductName LibreOffice
VulkanDeviceNameQuadro K2000
VulkanVendor0x10de

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143249] UI: Improve handling of configuring table borders in table properties dialog (to make it work for multiple workflows)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143249

--- Comment #19 from Telesto  ---
(In reply to Heiko Tietze from comment #16)
The design is interesting; refreshing: positive surprised. 

However... My core concern is the workflow. The task oriented view  (you may
add persona to it. So Benjamin has mental idea of a certain formatting, how can
he do that).

Simply putting some cases forward:

Case A: 
Say you have a 1x2x table. You intend to make the left 'left and right' border
red. And Top bottom border dashed. And increase the border width of the middle.

How many steps are required to do this? And is there an order in which you have
to handle it?

Case B: 
You have pre-existing (border)formatted table. Say the formatted table you
created above. You want to change the line style of the left/right border
(without changing the color). Is it possible to do? How many clicks are needed?

Case C: 
You want to get quick overview of the border settings of the existing borders..
How do I do that? Difference in border thickness between 0,05pt 0,15pt are
sometimes hard to differentiate on screen (not even starting about visually
disabled people)

Case D
Take again the table of case A, now I want the change the line width of those
borders at once.. without touching the other formatting (color/dash) of the
outer border. And excluding the inner border. Is it possible to do so?

For the record: My ancient MS word struggles on these tasks too :-).

My initial impression (or misreading) is that the mockup has less capability's
compared to the current, click at the preview thingy. The current concept is
not that bad, my core issue with it is the implementation. There are annoying
quirks and particularity's. Like the preview being to small, evilly sensitive.
lacking outside buttons (to avoid inside clicking). 

And also lacking certain functionality.
*It's lacking an option to select multiple borders (manually and/or by
present). So you can change formatting of multiple borders at once. So you can
change the border width of all borders while retaining the dashed look of some
borders it the selection.
* Being able to select a single border and see the current formatting in the
edit fields.

It's quite possible I odd table design capability's :-). I'm running into
issues with MS Word too. And modern versions discourages manual formatting
(fiddling with formatting).. likely for a reason.

Different workflow should be fit into a design which is workable for all

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143249] UI: Improve handling of configuring table borders in table properties dialog (to make it work for multiple workflows)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143249

--- Comment #19 from Telesto  ---
(In reply to Heiko Tietze from comment #16)
The design is interesting; refreshing: positive surprised. 

However... My core concern is the workflow. The task oriented view  (you may
add persona to it. So Benjamin has mental idea of a certain formatting, how can
he do that).

Simply putting some cases forward:

Case A: 
Say you have a 1x2x table. You intend to make the left 'left and right' border
red. And Top bottom border dashed. And increase the border width of the middle.

How many steps are required to do this? And is there an order in which you have
to handle it?

Case B: 
You have pre-existing (border)formatted table. Say the formatted table you
created above. You want to change the line style of the left/right border
(without changing the color). Is it possible to do? How many clicks are needed?

Case C: 
You want to get quick overview of the border settings of the existing borders..
How do I do that? Difference in border thickness between 0,05pt 0,15pt are
sometimes hard to differentiate on screen (not even starting about visually
disabled people)

Case D
Take again the table of case A, now I want the change the line width of those
borders at once.. without touching the other formatting (color/dash) of the
outer border. And excluding the inner border. Is it possible to do so?

For the record: My ancient MS word struggles on these tasks too :-).

My initial impression (or misreading) is that the mockup has less capability's
compared to the current, click at the preview thingy. The current concept is
not that bad, my core issue with it is the implementation. There are annoying
quirks and particularity's. Like the preview being to small, evilly sensitive.
lacking outside buttons (to avoid inside clicking). 

And also lacking certain functionality.
*It's lacking an option to select multiple borders (manually and/or by
present). So you can change formatting of multiple borders at once. So you can
change the border width of all borders while retaining the dashed look of some
borders it the selection.
* Being able to select a single border and see the current formatting in the
edit fields.

It's quite possible I odd table design capability's :-). I'm running into
issues with MS Word too. And modern versions discourages manual formatting
(fiddling with formatting).. likely for a reason.

Different workflow should be fit into a design which is workable for all

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 143249] UI: Improve handling of configuring table borders in table properties dialog (to make it work for multiple workflows)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143249

--- Comment #18 from Regina Henschel  ---
The mockup has no way to change the inner lines only.

Currently you can set all four padding values at the same time and you can see
the current values of all four paddings at the same time. The use of a drop
down as in the mockup would be a regression.

The term in the shadow style is "Distance" not "Width".

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143249] UI: Improve handling of configuring table borders in table properties dialog (to make it work for multiple workflows)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143249

--- Comment #18 from Regina Henschel  ---
The mockup has no way to change the inner lines only.

Currently you can set all four padding values at the same time and you can see
the current values of all four paddings at the same time. The use of a drop
down as in the mockup would be a regression.

The term in the shadow style is "Distance" not "Width".

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 143395] New: Max function only works in arrays of less that 150 cells in length

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143395

Bug ID: 143395
   Summary: Max function only works in arrays of less that 150
cells in length
   Product: LibreOffice
   Version: 7.0.6.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mlyt...@sbcglobal.net

Description:
A simple vertical array of floating point numbers is copied onto the
spreadsheet.

The Max function works correctly if the number of cell < 150.

Arrays larger than that gives N/A

Steps to Reproduce:
1.A simple vertical array of floating point numbers is copied onto the
spreadsheet.
2.Implement the Max function.  It works correctly if the number of cell < 150.
3.Arrays larger than that gives 'N/A'

Actual Results:

It works correctly if the number of cell < 150.

Arrays larger than that gives N/A

Expected Results:
That it would work regardless of array size.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
4 threads, Linux 5.4
UI render: default; VCL; GTK3
Misc 7.0.6 -3

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143249] UI: Improve handling of configuring table borders in table properties dialog (to make it work for multiple workflows)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143249

--- Comment #17 from Regina Henschel  ---
The current dialog has the presets "Set Outer Border only" (which removes the
inner lines if any) and "Set Outer Border Without Changing inner Border". The
mockup has only the preset "Frame".

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143249] UI: Improve handling of configuring table borders in table properties dialog (to make it work for multiple workflows)

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143249

--- Comment #17 from Regina Henschel  ---
The current dialog has the presets "Set Outer Border only" (which removes the
inner lines if any) and "Set Outer Border Without Changing inner Border". The
mockup has only the preset "Frame".

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: helpcontent2

2021-07-15 Thread Steve Fanning (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ce609485630427ed30a8e6e4d3c6d16c4033b519
Author: Steve Fanning 
AuthorDate: Thu Jul 15 23:06:51 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Thu Jul 15 23:06:51 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 435e1e0e429e9d743cf11d08cb10f9f25b83e3b3
  - Delete erroneous statement from help description of Calc's REPT 
function.

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

diff --git a/helpcontent2 b/helpcontent2
index 11c68842e216..435e1e0e429e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 11c68842e216735f261fd065750a91ba98b42be1
+Subproject commit 435e1e0e429e9d743cf11d08cb10f9f25b83e3b3
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-07-15 Thread Steve Fanning (via logerrit)
 source/text/scalc/01/04060110.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 435e1e0e429e9d743cf11d08cb10f9f25b83e3b3
Author: Steve Fanning 
AuthorDate: Thu Jul 15 22:37:01 2021 +0200
Commit: Olivier Hallot 
CommitDate: Thu Jul 15 23:06:51 2021 +0200

Delete erroneous statement from help description of Calc's REPT function.

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

diff --git a/source/text/scalc/01/04060110.xhp 
b/source/text/scalc/01/04060110.xhp
index cee63d9d7..55a130d20 100644
--- a/source/text/scalc/01/04060110.xhp
+++ b/source/text/scalc/01/04060110.xhp
@@ -565,11 +565,11 @@
 REPT("Text"; 
Number)
  
Text is the text to be repeated.
  
Number is the number of repetitions.
-The result can 
be a maximum of 255 characters.
 
 
  =REPT("Good morning";2) returns Good morningGood 
morning.
-
+  
+Refer to the https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPT; 
name="REPT_Wiki">REPT wiki page for more details about this 
function.
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2021-07-15 Thread Steve Fanning (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 082599db722fc662b9c235d618d4787708c09a96
Author: Steve Fanning 
AuthorDate: Thu Jul 15 23:06:02 2021 +0200
Commit: Gerrit Code Review 
CommitDate: Thu Jul 15 23:06:02 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 11c68842e216735f261fd065750a91ba98b42be1
  - Correct misleading descriptions of parameters passed to Calc's REPLACEB 
function.

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

diff --git a/helpcontent2 b/helpcontent2
index 5314f2bf5615..11c68842e216 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 5314f2bf56153760b4d704eb971b41638fc4c4d1
+Subproject commit 11c68842e216735f261fd065750a91ba98b42be1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-07-15 Thread Steve Fanning (via logerrit)
 source/text/scalc/01/func_replaceb.xhp |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 11c68842e216735f261fd065750a91ba98b42be1
Author: Steve Fanning 
AuthorDate: Thu Jul 15 22:27:11 2021 +0200
Commit: Olivier Hallot 
CommitDate: Thu Jul 15 23:06:02 2021 +0200

Correct misleading descriptions of parameters passed to Calc's REPLACEB 
function.

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

diff --git a/source/text/scalc/01/func_replaceb.xhp 
b/source/text/scalc/01/func_replaceb.xhp
index 52966391c..a2e85b72c 100644
--- a/source/text/scalc/01/func_replaceb.xhp
+++ b/source/text/scalc/01/func_replaceb.xhp
@@ -28,14 +28,16 @@
 
 
 REPLACEB( Text ; Position ; Length ; NewText )
-Text: 
A text expression or reference to a cell containing a text expression in which 
the characters are to be replaced.
-Position: the character position from 
which text is to be replaced. 
-Length: the number of characters to be 
replaced.
+Text: 
A text expression or reference to a cell containing a text expression in which 
the bytes are to be replaced.
+Position: the byte position from which 
text is to be replaced. 
+Length: the number of bytes to be 
replaced.
 NewText: the text to be 
inserted.
 
 
 =REPLACEB("ᄩᄔᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ";4;1;"ab")
 returns "ᄩ abᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ" .
 
+Refer to the https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB;
 name="REPLACEB_Wiki">REPLACEB wiki page for more details about this 
function.
+  
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143394] Icon theme cannot be changed

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143394

--- Comment #1 from tomas...@gmail.com ---
Created attachment 173611
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173611=edit
look of the dialog

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143394] New: Icon theme cannot be changed

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143394

Bug ID: 143394
   Summary: Icon theme cannot be changed
   Product: LibreOffice
   Version: 7.2.0.1 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tomas...@gmail.com

Description:
After opening the settings ⟶ icon style dialog, it is possible to install
different theme, but not select/activate them. (I am curious if this is my
fault/misunderstanding, or if there is really a new theme selecting dialog that
does not work at all.)

Steps to Reproduce:
Open the list of icon themes, try to click on different entries.

Actual Results:
Nothing happens.

Expected Results:
The user is able to select and activate a desired icon theme.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.1 (x64) / LibreOffice Community
Build ID: 32efc3b7f3a71cfa6a7fa3f6c208333df48656cc
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Vulkan; VCL: win
Locale: cs-CZ (cs_CZ); UI: cs-CZ
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143372] KeyID in language select list

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143372

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #4 from Eike Rathke  ---
Taking.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101731] Rename gradient 'border' label to something more meaningful

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101731

--- Comment #11 from Regina Henschel  ---
(In reply to Heiko Tietze from comment #10)
> We discussed the topic in the design meeting.
> 
> "Border" could become "Distance to edge".

Not specific enough, "Border" always refers to "Start".

 But we don't see much issue for
> Start/End value (or rather no advantage of changing this label). Rather some
> tooltips would help users.

Only 'Start' is relevant.

> 
> Border/distance: "Defines the distance to the edge of the area where the
> gradient of the transparency starts. The border area itself will take the
> transparency from the edges of the gradient."

... from the start of the gradient.

For color gradient it would be "take the color from the start of the gradient"

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105844] FILESAVE: Very slow saving with password compared to 5.2.5

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105844

--- Comment #29 from hamk...@alumni.caltech.edu ---
I confirm that with LibreOffice 7.1.4.2, using password protection in Calc
results in slow load and save operations. A 250 KB Calc file with a password
takes me 8 seconds to save, compared to <1 second when I remove the password.

This is so slow that when Calc autosaves, my OS (Fedora 34) notices how
unresponsive Calc is and pops up a window asking if I want to force quit it or
wait.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104597] Text runs of RTL scripts (e.g. Arabic, Hebrew, Persian) from imported PDF are reversed, PDFIProcessor::mirrorString not behaving

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104597

--- Comment #51 from V Stuart Foote  ---
(In reply to Alex Cohn from comment #50)
> > X(curr) + currCharWitdh <-similar-> to X(next)
> 
> only note that for an RTL sequence, this will probably be 
> 
>   X(curr) - currCharWitdh <-similar-> to X(next)

Unfortunately that would not work, for RTL to render correctly they have to be
laid down in the XML in the reverse order from the lexical text run. 

That is the glitch, as the code that detected the RTL for each text run--
bounded by ICU iterators--is broken, and the XML is fed the glyphs in the wrong
reversed order. Text runs get encoded into the Draw canvas in the reversed
sequence. And, there seems to be issues with the correct ICU word and sentence
iterators.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


loading component library failed

2021-07-15 Thread 宋河川
try

{

xInterface = Reference< XInterface >(

resolver->resolve(sConnectionString), UNO_QUERY);

}

catch (Exception& e)

{

printf("Error: cannot establish a connection using '%s':\n   %s\n",

OUStringToOString(sConnectionString, 
RTL_TEXTENCODING_ASCII_US).getStr(),

OUStringToOString(e.Message, RTL_TEXTENCODING_ASCII_US).getStr());




exit(1);

}




Error: cannot establish a connection using 
'uno:socket,host=localhost,port=2083;urp;StarOffice.ServiceManager':
   loading component library  failed___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2021-07-15 Thread Noel Grandin (via logerrit)
 chart2/source/controller/inc/AxisItemConverter.hxx  |  
  2 
 chart2/source/controller/inc/CharacterPropertyItemConverter.hxx |  
  2 
 chart2/source/controller/inc/DataPointItemConverter.hxx |  
  2 
 chart2/source/controller/inc/ErrorBarItemConverter.hxx  |  
  2 
 chart2/source/controller/inc/GraphicPropertyItemConverter.hxx   |  
  2 
 chart2/source/controller/inc/ItemConverter.hxx  |  
 13 
 chart2/source/controller/inc/LegendItemConverter.hxx|  
  2 
 chart2/source/controller/inc/MultipleChartConverters.hxx|  
 10 
 chart2/source/controller/inc/RegressionCurveItemConverter.hxx   |  
  2 
 chart2/source/controller/inc/RegressionEquationItemConverter.hxx|  
  2 
 chart2/source/controller/inc/SeriesOptionsItemConverter.hxx |  
  2 
 chart2/source/controller/inc/StatisticsItemConverter.hxx|  
  2 
 chart2/source/controller/inc/TextLabelItemConverter.hxx |  
  2 
 chart2/source/controller/inc/TitleItemConverter.hxx |  
  2 
 chart2/source/controller/itemsetwrapper/AxisItemConverter.cxx   |  
  2 
 chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx  |  
  2 
 chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx  |  
  2 
 chart2/source/controller/itemsetwrapper/ErrorBarItemConverter.cxx   |  
  2 
 chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx|  
 13 
 chart2/source/controller/itemsetwrapper/LegendItemConverter.cxx |  
  2 
 chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx |  
 10 
 chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx|  
  2 
 chart2/source/controller/itemsetwrapper/RegressionEquationItemConverter.cxx |  
  2 
 chart2/source/controller/itemsetwrapper/SchWhichPairs.hxx   |  
136 +++---
 chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx  |  
  2 
 chart2/source/controller/itemsetwrapper/StatisticsItemConverter.cxx |  
  2 
 chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx  |  
  2 
 chart2/source/controller/itemsetwrapper/TitleItemConverter.cxx  |  
  6 
 28 files changed, 94 insertions(+), 138 deletions(-)

New commits:
commit ecd6e3ac757575deb3162b3bdd470b6a74f5dd70
Author: Noel Grandin 
AuthorDate: Thu Jul 15 20:39:26 2021 +0200
Commit: Noel Grandin 
CommitDate: Thu Jul 15 22:13:46 2021 +0200

use WhichRangesContainer in chart2

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

diff --git a/chart2/source/controller/inc/AxisItemConverter.hxx 
b/chart2/source/controller/inc/AxisItemConverter.hxx
index 7f42853d1088..76c047105d3c 100644
--- a/chart2/source/controller/inc/AxisItemConverter.hxx
+++ b/chart2/source/controller/inc/AxisItemConverter.hxx
@@ -50,7 +50,7 @@ public:
 virtual bool ApplyItemSet( const SfxItemSet & rItemSet ) override;
 
 protected:
-virtual const sal_uInt16 * GetWhichPairs() const override;
+virtual const WhichRangesContainer& GetWhichPairs() const override;
 virtual bool GetItemProperty( tWhichIdType nWhichId, 
tPropertyNameWithMemberId & rOutProperty ) const override;
 
 virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & 
rOutItemSet ) const override;
diff --git a/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx 
b/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx
index 4322c8c391fd..96138e237230 100644
--- a/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx
+++ b/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx
@@ -42,7 +42,7 @@ public:
 virtual ~CharacterPropertyItemConverter() override;
 
 private:
-virtual const sal_uInt16* GetWhichPairs() const override;
+virtual const WhichRangesContainer& GetWhichPairs() const override;
 virtual bool GetItemProperty( tWhichIdType nWhichId, 
tPropertyNameWithMemberId & rOutProperty ) const override;
 virtual void FillSpecialItem( sal_uInt16 nWhichId, SfxItemSet & 
rOutItemSet ) const override;
 virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & 
rItemSet ) override;
diff --git a/chart2/source/controller/inc/DataPointItemConverter.hxx 
b/chart2/source/controller/inc/DataPointItemConverter.hxx
index f2fbfdf9ca99..0c4fcb3f7038 100644
--- a/chart2/source/controller/inc/DataPointItemConverter.hxx
+++ b/chart2/source/controller/inc/DataPointItemConverter.hxx
@@ -62,7 +62,7 @@ public:
 virtual bool ApplyItemSet( const SfxItemSet & rItemSet ) override;
 
 protected:
-virtual const sal_uInt16 * GetWhichPairs() const override;
+virtual const 

[Libreoffice-bugs] [Bug 140383] Base, Form, Table Default Date not working

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140383

--- Comment #35 from Robert Großkopf  ---
(In reply to Stang from comment #34)

Please see what is written from Joe for starting this bug 2021-02-12 23:27:50
UTC . What you are writing has nothing to do with the description there.

Could be something like bug 143357 .

And if this is not the bug what is written there: Write a new bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104597] Text runs of RTL scripts (e.g. Arabic, Hebrew, Persian) from imported PDF are reversed, PDFIProcessor::mirrorString not behaving

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104597

--- Comment #50 from Alex Cohn  ---
> X(curr) + currCharWitdh <-similar-> to X(next)

only note that for an RTL sequence, this will probably be 

  X(curr) - currCharWitdh <-similar-> to X(next)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 65535] Adding a comment in the middle of a word makes it recognised as misspelt by spellchecker

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65535

--- Comment #38 from Justin L  ---
(In reply to Justin L from comment #37)
> Still needed is a patch for "correcting the broken word makes the comment
> disappear" in case the word truly needed correcting.

Right-clicking on the word-with-mid-comment already brings up a different
context menu without anything related to spell checking. So at the moment that
situation is safe.

Running the spell-check dialog is very unsafe however (especially since you
don't really see the context of the word and notice that it has a comment
attached). That is MUCH harder to deal with. What looked promising was
UPN_MAX_NUMBER_OF_SUGGESTIONS = 0, but that seems to be completely ignored (a
bug? Well actually it seems to be used in a different context only).
UPH_IS_USE_DICTIONARY_LIST = false doesn't give what is desired either.

The SpellChecker::GetProposals is what gives the choices to 
txtedt.cxx's  SwTextNode::Spell calls to 
pArgs->xSpeller->spell( rWord, static_cast(eActLang), aPropVals );

Trying to trick it with LANGUAGE_NONE doesn't work because it just returns as
"not a spelling error".

I don't think I'll be able to solve this last part by tweaking any existing
stuff. A work-around hack will need to be created (and I don't like doing that,
especially not in areas I am unfamiliar with).
Probably need to make a special function so that you can create an empty
Proposal via SpellAlternatives::CreateSpellAlternatives( rWord,
LANGUAGE_DONTKNOW, SpellFailure::SPELLING_ERROR, Sequence< OUString >( 0 ) )

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 131447] Unable to use ARC mathematical functions (like ACOT, ASIN, ATAN) when LibreOffice Calc is in Norwegian Bokmål

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131447

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #13 from Julien Nabet  ---
Raphaël: do you still reproduce the pb with last LO version 7.1.4 ?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101232] [Polish UI] Tools - Options - View panel field widths are not enough. Text is overlapping.

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101232

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from Julien Nabet  ---
Most of dialogs UI (all?) have been rebuilt (with "weld" process) since 5.1.3
Let's put this to WFM.
Don't hesitate to reopen this tracker if you reproduce the pb with a recent LO
version like 7.0.6 or 7.1.4

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 140383] Base, Form, Table Default Date not working

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140383

--- Comment #34 from Stang  ---
(In reply to Robert Großkopf from comment #33)
> (In reply to Stang from comment #32)
> > (In reply to Robert Großkopf from comment #29)
> > > (In reply to Stang from comment #28)
> > > > It appears to use the current date - for me 07/14/21
> > > 
> > > Then it is working right for you. This is the default, because I had set 
> > > up
> > > the database on 07/14/21 and set the default date as 07/14/21.
> > > 
> > > To set the current date through the date control directly is impossible. 
> > > You
> > > have to use macros or other little "tricks". The database will show the 
> > > date
> > > 07/14/21 also today, where it is 07/15/21.
> > > 
> > > Please create an example which shows the behavior you get with your
> > > database: Using date min instead of date default. Attach the example to 
> > > this
> > > bug.
> > 
> > NO. It is NOT working right for me.  Today it again shows 07/14/21 and I
> > cannot change it to anything else.  How is that right!
> > 
> > Done with this.
> 
> That is the behavior of a default in the GUI. It shows the content which is
> set in the field as default. It doesn't show the content of min date. And
> this is the bug you reported.

Don't know why I am posting this as have stated this a number of times but it
is ignored.

This is not the reported bug as I stated this in comment #23

Cannot save any changes on date control properties of Min, Max or Default
dates.

Can change but will automatically change back.

Min date 01/01/1800 changed to 01/01/1801 will change back to 01/01/1800 after
closing the Properties dialog.  Max and Default do the same.

As originally stated, the control is currently nearly worthless.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142923] Deleting comment in Writer leaves visual artifact behind

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142923

--- Comment #6 from Telesto  ---
It's still an issue in
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 717dc8e3575a18e1e18dc446031e6db4e60a873d
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
Calc: CL

Would like to see this fixed at RC2.. this is way to prominent..

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1-5' - svtools/source

2021-07-15 Thread Caolán McNamara (via logerrit)
 svtools/source/control/ctrlbox.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 8d9f47cfe892d6fba3f336e79a990888b61c8557
Author: Caolán McNamara 
AuthorDate: Thu Jul 15 15:28:09 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jul 15 20:25:13 2021 +0200

crashreporting: Crash seen in CachePreview from Idle UpdateHdl

the intent here is regenerate the previews if font settings changed
which should mean that we restart at index 0 and not continue from
the old index

https: 
//crashreport.libreoffice.org/stats/crash_details/a01c5fcd-983b-40ab-b90a-8ee90286e5b8

Change-Id: I9604ad96cf6cc757d2d33469827d1295d309454d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118924
Reviewed-by: Xisco Fauli 
Reviewed-by: Michael Stahl 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/svtools/source/control/ctrlbox.cxx 
b/svtools/source/control/ctrlbox.cxx
index 4a0210cde5bd..7c7f61cb61f8 100644
--- a/svtools/source/control/ctrlbox.cxx
+++ b/svtools/source/control/ctrlbox.cxx
@@ -360,8 +360,11 @@ IMPL_LINK(FontNameBox, SettingsChangedHdl, 
VclSimpleEvent&, rEvent, void)
 gFontPreviewVirDevs.clear();
 gRenderedFontNames.clear();
 calcCustomItemSize(*m_xComboBox);
-if (mbWYSIWYG)
+if (mbWYSIWYG && mpFontList && !mpFontList->empty())
+{
+mnPreviewProgress = 0;
 maUpdateIdle.Start();
+}
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143356] UI: Default setting autocorrect and replacement not in sync with the active document language

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143356

--- Comment #5 from Telesto  ---
(In reply to Telesto from comment #4)
> (In reply to Telesto from comment #3)
> > I forgot another part. The autocorrect stops functioning if a different
> > language is selected in "Tools -> Autocorrect -> Autocorrect options"
> > compared to document language. 
> > 
> > So it's de facto disabling autocorrect caused by mismatch between language
> > in "Tools -> Autocorrect -> Autocorrect options" and the one in the document
> 
> Rectification. Replacement table does work. It's 'only' Word completion that
> stops functioning

No true, me being mistaken

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143373] Autocomplete Word completion does not function if the replacement and exceptions language doesn't match document language

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143373

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
   Keywords|needsUXEval |
 Resolution|--- |INVALID

--- Comment #2 from Telesto  ---
Me confused.. it's working as expected..
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 717dc8e3575a18e1e18dc446031e6db4e60a873d
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: nl-NL
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143373] Autocomplete Word completion does not function if the replacement and exceptions language doesn't match document language

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143373

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
   Keywords|needsUXEval |
 Resolution|--- |INVALID

--- Comment #2 from Telesto  ---
Me confused.. it's working as expected..
Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 717dc8e3575a18e1e18dc446031e6db4e60a873d
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: nl-NL
Calc: CL

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 134452] Page break disappears after applying table style

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

László Németh  changed:

   What|Removed |Added

   Assignee|santha.bal...@simonyi.bme.h |libreoffice-b...@lists.free
   |u   |desktop.org

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108519] [META] Page break bugs and enhancements

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108519
Bug 108519 depends on bug 134452, which changed state.

Bug 134452 Summary: Page break disappears after applying table style
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107553] [META] Writer table styles bugs and enhancements

2021-07-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107553
Bug 107553 depends on bug 134452, which changed state.

Bug 134452 Summary: Page break disappears after applying table style
https://bugs.documentfoundation.org/show_bug.cgi?id=134452

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   4   >