[Libreoffice-bugs] [Bug 98477] Grow/Shrink animation in PPTX does nothing in Impress

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98477

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=a4d2720ebdc6cdd700ca2cfa0d8e2db22a17e4c2

tdf#98477 convert to, from, by of AnimScaleContext.

It will be available in 6.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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 98477] Grow/Shrink animation in PPTX does nothing in Impress

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98477

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.2.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-commits] core.git: oox/source sd/qa

2018-07-18 Thread Libreoffice Gerrit user
 oox/source/drawingml/drawingmltypes.cxx |2 +-
 oox/source/ppt/timenodelistcontext.cxx  |   22 +-
 sd/qa/unit/data/pptx/tdf98477grow.pptx  |binary
 sd/qa/unit/export-tests.cxx |   14 ++
 4 files changed, 28 insertions(+), 10 deletions(-)

New commits:
commit a4d2720ebdc6cdd700ca2cfa0d8e2db22a17e4c2
Author: Mark Hung 
AuthorDate: Sat Jul 14 19:47:36 2018 +0800
Commit: Mark Hung 
CommitDate: Thu Jul 19 07:38:02 2018 +0200

tdf#98477 convert to, from, by of AnimScaleContext.

To, from, by of AimScaleContext used to use return value
of oox::draingml::GetPointPercent(), which is in 1000th of
a percent, but slideshow need ratio to work.

Make a conversion here, also fix the obvious error in
oox::draingml::GetPointPercent() that y coordinate is always
converted incorrectly.

Change-Id: I061d2ce89341a4e88f3ffada03954734fafad985
Reviewed-on: https://gerrit.libreoffice.org/57434
Tested-by: Jenkins
Reviewed-by: Mark Hung 

diff --git a/oox/source/drawingml/drawingmltypes.cxx 
b/oox/source/drawingml/drawingmltypes.cxx
index 93c7c423330f..41b659082f77 100644
--- a/oox/source/drawingml/drawingmltypes.cxx
+++ b/oox/source/drawingml/drawingmltypes.cxx
@@ -73,7 +73,7 @@ double GetPositiveFixedPercentage( const OUString& sValue )
 /** converts the attributes from an CT_TLPoint into an awt Point with 1/1000% 
*/
 awt::Point GetPointPercent( const Reference< XFastAttributeList >& xAttribs )
 {
-return awt::Point( GetPercent( xAttribs->getOptionalValue( XML_x ) ), 
GetCoordinate( xAttribs->getOptionalValue( XML_y ) ) );
+return awt::Point(GetPercent(xAttribs->getOptionalValue(XML_x)), 
GetPercent(xAttribs->getOptionalValue(XML_y)));
 }
 
 /** converts the ST_TextFontSize to point */
diff --git a/oox/source/ppt/timenodelistcontext.cxx 
b/oox/source/ppt/timenodelistcontext.cxx
index 625036a25a2f..ec720520e54c 100644
--- a/oox/source/ppt/timenodelistcontext.cxx
+++ b/oox/source/ppt/timenodelistcontext.cxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -82,6 +83,15 @@ namespace {
 // only get first token.
 return 
oox::ppt::convertAnimationValue(getAttributeEnumByAPIName(aNameList.getToken(0, 
';')), rAny);
 }
+
+css::uno::Any convertPointPercent(const css::awt::Point& rPoint)
+{
+css::animations::ValuePair aPair;
+// rPoint.X and rPoint.Y are in 1000th of a percent, but we only need 
ratio.
+aPair.First <<= static_cast(rPoint.X) / 10.0;
+aPair.Second <<= static_cast(rPoint.Y) / 10.0;
+return makeAny(aPair);
+}
 }
 
 namespace oox { namespace ppt {
@@ -651,25 +661,19 @@ namespace oox { namespace ppt {
 case PPT_TOKEN( to ):
 {
 // CT_TLPoint
-awt::Point p = GetPointPercent( 
rAttribs.getFastAttributeList() );
-maTo <<= p.X;
-maTo <<= p.Y;
+maTo = 
convertPointPercent(GetPointPercent(rAttribs.getFastAttributeList()));
 return this;
 }
 case PPT_TOKEN( from ):
 {
 // CT_TLPoint
-awt::Point p = GetPointPercent( 
rAttribs.getFastAttributeList() );
-maFrom <<= p.X;
-maFrom <<= p.Y;
+maFrom  = 
convertPointPercent(GetPointPercent(rAttribs.getFastAttributeList()));
 return this;
 }
 case PPT_TOKEN( by ):
 {
 // CT_TLPoint
-awt::Point p = GetPointPercent( 
rAttribs.getFastAttributeList() );
-maBy <<= p.X;
-maBy <<= p.Y;
+maBy = 
convertPointPercent(GetPointPercent(rAttribs.getFastAttributeList()));
 return this;
 }
 default:
diff --git a/sd/qa/unit/data/pptx/tdf98477grow.pptx 
b/sd/qa/unit/data/pptx/tdf98477grow.pptx
new file mode 100755
index ..5761c7b07911
Binary files /dev/null and b/sd/qa/unit/data/pptx/tdf98477grow.pptx differ
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx
index 7ac6fc01404d..1eb9be7404c3 100644
--- a/sd/qa/unit/export-tests.cxx
+++ b/sd/qa/unit/export-tests.cxx
@@ -93,6 +93,7 @@ public:
 void testTransparentBackground();
 void testEmbeddedPdf();
 void testEmbeddedText();
+void testTdf98477();
 void testAuthorField();
 void testTdf100926();
 void testPageWithTransparentBackground();
@@ -118,6 +119,7 @@ public:
 CPPUNIT_TEST(testTransparentBackground);
 CPPUNIT_TEST(testEmbeddedPdf);
 CPPUNIT_TEST(testEmbeddedText);
+CPPUNIT_TEST(testTdf98477);
 CPPUNIT_TEST(testAuthorField);
 CPPUNIT_TEST(testTdf100926);
 CPPUNIT_TEST(testPageWithTransparentBackground);
@@ -847,6 

[Libreoffice-bugs] [Bug 117563] LibreOffice Calc: Links to External Files - Linked Ranges are saved incorrectly - Update Links overwrites data and removes links

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117563

--- Comment #6 from KSN  ---
Hi

May I request some help on this please?

Thanks
KSN

-- 
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 118838] New: Delay in copying the content of the cell

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118838

Bug ID: 118838
   Summary: Delay in copying the content of the cell
   Product: LibreOffice
   Version: 6.0.2.1 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pramod.n...@gmail.com

Description:
Delay in copying the content of the cell to another cell or outside the libre
office document. I have this issue for long time. Currently I have installed
Version: 6.0.2.1 

Steps to Reproduce:
1. Copy content of the cell 
2. Paste it anywhere
3.

Actual Results:
Should be copied instantly

Expected Results:
content wont be copied immediately, it takes a delay of 5-10 seconds


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
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 99500] FILEOPEN DOCX Overflowing image displayed inconsequently

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99500

--- Comment #7 from cson...@halmai.hu ---
I tried it at my workplace with the currrently installed LO on a Mac. It seems
to work fine.

Version: 6.0.4.2
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 4; OS: Mac OS X 10.11.6; UI render: default; 
Locale: en-US (en.UTF-8); Calc: group

Within a day I will check it on my home computer as well. After that I wioll
set the Status accordingly.

-- 
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 59323] Impress conversion to PPTX doesn't save (header and footer) fields so Repair in MSO - steps in Comment 7

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59323

--- Comment #9 from Aron Budea  ---
Header/footer fields still don't get saved in LO 6.1.0.1, either.
I couldn't reproduce the corruption part, though, neither with 6.1.0.1, nor
with 5.3.0.3. I used steps in comment 7.

-- 
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 99213] Presentation saved in PPTX format cannot be opened in PowerPoint

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99213

--- Comment #3 from Aron Budea  ---
Created attachment 143631
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143631=edit
Validation results with OOXML SDK

LO 6.1.0.1 still generates a corrupted PPTX.

-- 
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 106547] [META] OOXML SmartArt bug tracker

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106547

Aron Budea  changed:

   What|Removed |Added

 Depends on||105317


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105317
[Bug 105317] FILEOPEN: PPTX: misaligned text in smart arts
-- 
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 108226] [META] PPTX (OOXML) bug tracker

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108226

Aron Budea  changed:

   What|Removed |Added

 Depends on|105317  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105317
[Bug 105317] FILEOPEN: PPTX: misaligned text in smart arts
-- 
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 105317] FILEOPEN: PPTX: misaligned text in smart arts

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105317

Aron Budea  changed:

   What|Removed |Added

 Blocks|108226  |106547


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106547
[Bug 106547] [META] OOXML SmartArt bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=108226
[Bug 108226] [META] PPTX (OOXML) bug tracker
-- 
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 118834] Use of Buttons in Modify Style Dialogue is not Documented

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118834

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
Yup... => NEW

-- 
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 104390] FILEOPEN RTF Courier New erroneously replaced with fallback font, when file does not contain \pard\plain

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104390

V Stuart Foote  changed:

   What|Removed |Added

 CC||vmik...@collabora.co.uk,
   ||vstuart.fo...@utsa.edu

--- Comment #10 from V Stuart Foote  ---
Continues reproducible on Windows 10 Pro 64-bit en-US with Courier New font
available and current master/6.2.0

Version: 6.2.0.0.alpha0+ (x64)
Build ID: daafe79c55cd53decbeac2367f298d79371dcf3d
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-07-18_02:59:18
Locale: en-US (en_US); Calc: group threaded

RTF import filter does not pick up the Courier New font--and Default style is
assigned to all paragraphs.

Once opened into LO, modifying Default paragraph style to use Courier New
restores tabular format of the 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 104787] [META] Saved PPTX files that MS Powerpoint can't open

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104787

Aron Budea  changed:

   What|Removed |Added

 Depends on||118783


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118783
[Bug 118783] FILESAVE: document saved as pptx that contains spin animation
won't open
-- 
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 118835] FILESAVE: saved pptx that contains color transform animation corrupts

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118835

Aron Budea  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104787
[Bug 104787] [META] Saved PPTX files that MS Powerpoint can't open
-- 
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 104787] [META] Saved PPTX files that MS Powerpoint can't open

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104787

Aron Budea  changed:

   What|Removed |Added

 Depends on||118835


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118835
[Bug 118835] FILESAVE: saved pptx that contains color transform animation
corrupts
-- 
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 104787] [META] Saved PPTX files that MS Powerpoint can't open

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104787

Aron Budea  changed:

   What|Removed |Added

 Depends on||99213


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99213
[Bug 99213] Presentation saved in PPTX format cannot be opened in PowerPoint
-- 
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 99213] Presentation saved in PPTX format cannot be opened in PowerPoint

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99213

Aron Budea  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104787
[Bug 104787] [META] Saved PPTX files that MS Powerpoint can't open
-- 
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 93123] VIEWING: Split/frozen sheet not redrawn properly when formula with manual range selection causes page to scroll

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93123

--- Comment #13 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 98573] FILEOPEN Pictures in .docx not visible (attach)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98573

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 99725] FILEOPEN RTF layout problem with footer (Normal view not showing some text)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99725

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 104288] FILESAVE RTF: File size increases with factor 5 after re-saving a certain RTF-document

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104288

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 100165] Calc: Resizing of a special image nearly freezes whole system on Linux

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100165

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 107055] FILEOPEN: DOCX DOC Change in Kerning Causing Cut-off Text in Table

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107055

--- Comment #10 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 94815] Selecting enable macros freezes application with syntax error

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94815

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 101642] Ghost integral resulting from importing a rtf equation containing the text fragment ", int"

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101642

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 92722] Fileopen: RTF Qualifiers on field SEQ not translated.

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92722

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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

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

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 104390] FILEOPEN RTF Courier New erroneously replaced with fallback font, when file does not contain \pard\plain

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104390

--- Comment #9 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 101170] FILESAVE: Opening and saving an rtf with an embedded jpeg leads to massive file size increase

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101170

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 108374] Bad alloc crash when pasting RTF (in an uncommon circumstance)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108374

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 102058] No screen reader notification that there is a comment

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102058

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 107716] FILEOPEN: DOCX - Unable to correctly import track changes on page number field

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107716

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 96401] FILEOPEN: DOCX - Specific file reported as corrupted (openable in MSO but not in other programs because of unzip error)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96401

--- Comment #10 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 84399] FILEOPEN: DOCX drawing canvas error (wrong size and text wrapping option imported)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84399

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 108952] FILESAVE: DOCX: VML connectors lost after roundtrip

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108952

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 80526] FILEOPEN: DOCX frame not being stretched to accomodate text in it

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80526

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 97274] Frames borders are not correctly exported in .docx format (for Word<=2007)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97274

--- Comment #5 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 99570] Freeze cells moves when adding rows or columns

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99570

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 107814] fresh install with default settings in clean Windows 10 assigns rtf file type to open with Calc instead of Writer

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107814

--- Comment #5 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 107726] FILESAVE: RTF: first page header not exported

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107726

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 104579] FILEOPEN DOCX: Inconsistent pie chart color

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104579

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 45763] 237 pages complex .doc file hang when trying to open

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45763

--- Comment #22 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 99500] FILEOPEN DOCX Overflowing image displayed inconsequently

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99500

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 108687] Form option buttons not reachable with tab key

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108687

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://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 104787] [META] Saved PPTX files that MS Powerpoint can't open

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104787

Aron Budea  changed:

   What|Removed |Added

 Depends on||59323


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=59323
[Bug 59323] Impress conversion to PPTX doesn't save (header and footer) fields
so Repair in MSO - steps in Comment 7
-- 
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 59323] Impress conversion to PPTX doesn't save (header and footer) fields so Repair in MSO - steps in Comment 7

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59323

Aron Budea  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104787
[Bug 104787] [META] Saved PPTX files that MS Powerpoint can't open
-- 
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 104787] [META] Saved PPTX files that MS Powerpoint can't open

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104787

Aron Budea  changed:

   What|Removed |Added

 Depends on||118836


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118836
[Bug 118836] FILESAVE: saved PPTX that contains grow-shrink effect can't open
in  powerpoint
-- 
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 118805] Calc UI can not freeze columns or rows headers

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118805

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu

--- Comment #1 from Aron Budea  ---
Yes, this feature hasn't been implemented, yet. There's already a bug report on
this, therefore I'm closing this as duplicate.

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

-- 
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 116858] [Feature Request] View > Freeze Cells > Freeze Rows and Columns

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116858

Aron Budea  changed:

   What|Removed |Added

 CC||thie...@pielo.net

--- Comment #2 from Aron Budea  ---
*** Bug 118805 has been marked as a duplicate of this 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 118836] FILESAVE: saved PPTX that contains grow-shrink effect can't open in powerpoint

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118836

Mark Hung  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |mark...@gmail.com
   |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 118837] EDITING size change of rectangles is sometimes ignored

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118837

--- Comment #1 from himajin100...@gmail.com ---
from programmer's point of view, Reordering the mpBindings->Update in the
constructor of PosSizePropertyPanel sounds it would reduce this sort of stress.
mpBindings->Update

it just reduces the stress but would not be a final solution, especially when
we manually change the measurement unit.

https://ask.libreoffice.org/ja/question/149422/drawnotu-desaizuworu-li-suruga-zai-biao-shi-surutowu-chai-gabiao-shi-suru/

-- 
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 118837] New: EDITING size change of rectangles is sometimes ignored

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118837

Bug ID: 118837
   Summary: EDITING size change of rectangles is sometimes ignored
   Product: LibreOffice
   Version: 6.1.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: uwesto...@web.de

Created attachment 143630
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143630=edit
example file

- take the attached file
- open the size sidebar and set the width of the blue box to 4.40 and height to
1.90 cm
- click somewhere outside the box to make the sidebar disappear
- now check the soie of the box

result: despite you just changed the width to 4.40 cm, the width is still 4.39
cm.

-- 
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 112876] Make use of scroll lock for navigation configurable (it conflicts with system use as keyboard layout indicator)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112876

--- Comment #18 from Mike Kaganski  ---
(In reply to kolrac from comment #11)
> If, however, developers decided to add such an option I think it
> should be disabled by default and the decision to enable it should be left
> to distro maintainers and/or the end users in order to avoid confusing the
> huge majority of the user base.

(In reply to Heiko Tietze from comment #12)
> Would be nice if the option gets predefined depending on the system
> capability whether scroll lock is available or not.

I agree with kolrac on this; when an option is available, it's maintainers'
task to define customized defaults when they know it makes sense on the systems
they maintain (in the absence of some universal API to obtain meaningful
default from system). I don't think that we should try to change the default in
LibreOffice from current mode; just introduce the option to disable use of
Scroll Lock state for navigation, and let maintainers/users to decide.

-- 
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 118563] LibO 6.1 forgets base filename when switching file format

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118563

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #3 from Aron Budea  ---
Which Linux distribution / desktop environment are you using?

-- 
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 112876] Make use of scroll lock for navigation configurable (it conflicts with system use as keyboard layout indicator)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112876

Mike Kaganski  changed:

   What|Removed |Added

Summary|Use of scroll lock for  |Make use of scroll lock for
   |navigation conflicts with   |navigation configurable (it
   |system use as keyboard  |conflicts with system use
   |layout indicator|as keyboard layout
   ||indicator)

-- 
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 112876] Use of scroll lock for navigation conflicts with system use as keyboard layout indicator

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112876

Mike Kaganski  changed:

   What|Removed |Added

   Keywords|needsDevEval|easyHack, skillCpp
   Hardware|x86-64 (AMD64)  |All

--- Comment #17 from Mike Kaganski  ---
Don't see why this easyhack needs much evaluation. It's known which commit (
http://cgit.freedesktop.org/libreoffice/core/commit/?id=453de3473cf6f383c71466a1ed15e28b844ed7e5
for bug 46200 ) changed the behaviour; so the only thing that is needed is to
take a new configuration into account when evaluating the value of bool
bScrollLock in ScCellShell::ExecuteCursor. I am sure that Heiko could assist
with the new configuration option bits.

-- 
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 118836] FILESAVE: saved PPTX that contains grow-shrink effect can't open in powerpoint

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118836

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #1 from Regina Henschel  ---
Saving to pptx in LibreOffice and reopen that file in LibreOffice, shows, that
the animation is lost.

I confirm, that PowerPoint reports an error in the document.

Tested with current master and PowerPoint 365.

-- 
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-6-1' - formula/source include/formula sc/inc sc/source

2018-07-18 Thread Libreoffice Gerrit user
 formula/source/core/api/FormulaCompiler.cxx |   17 +++
 formula/source/core/api/token.cxx   |   28 ---
 include/formula/tokenarray.hxx  |   68 ++--
 sc/inc/documentimport.hxx   |7 ++
 sc/source/core/data/documentimport.cxx  |   52 +
 sc/source/core/data/formulacell.cxx |3 -
 sc/source/core/tool/interpr2.cxx|6 --
 sc/source/core/tool/interpr4.cxx|8 ---
 sc/source/core/tool/interpr7.cxx|3 -
 sc/source/filter/oox/formulabuffer.cxx  |5 ++
 sc/source/filter/oox/workbookfragment.cxx   |3 +
 11 files changed, 136 insertions(+), 64 deletions(-)

New commits:
commit 4e5248f32d8fdfd4655bd15bd60d83e9a0c6e540
Author: Eike Rathke 
AuthorDate: Fri Jul 13 19:29:12 2018 +0200
Commit: Markus Mohrhard 
CommitDate: Thu Jul 19 01:45:41 2018 +0200

Resolves: tdf#94925 proper recalc mode and dirty broadcast for OOXML import

 This is a combination of 4 commits.

Rework FormulaTokenArray ScRecalcMode in preparation for tdf#94925

Strictly order the exclusive bits by priority, let AddRecalcMode()
handle all sets except forced ALWAYS or NORMAL.

Introduce ONLOAD_LENIENT and ONLOAD_MUST splitting ONLOAD to be
able to distinguish later during OOXML import.

Reviewed-on: https://gerrit.libreoffice.org/57402
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

Resolves: tdf#94925 do not unset dirty if formula cell must be recalculated

Reviewed-on: https://gerrit.libreoffice.org/57404
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

Broadcast formula cells marked for recalc, tdf#94925 related

In fact the ScDocument::CalcFormulaTree() call in
WorkbookFragment::recalcFormulaCells() never did anything because
no formula cell was added to the tree. Only visible dirty cells
were recalculated, but not their dependents.

Reviewed-on: https://gerrit.libreoffice.org/57431
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

Remove the check for IsRecalcModeMustAfterImport(), tdf#94925 follow-up

It's now superfluous as we set those cells dirty and broadcast in
ScDocumentImport::broadcastRecalcAfterImport()

Reviewed-on: https://gerrit.libreoffice.org/57439
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

f70860b8babf1cce7fda2ae63412659e72dbb4c3
a9dd4ad16c20b23ee8a1d46b69a4702b1ad4c81f
188de2d53a2d54df32d24eeeb148c4f9e87e7cfc

Change-Id: I11217fa19adb766f509d0d6854502112de547c59
Reviewed-on: https://gerrit.libreoffice.org/57438
Tested-by: Jenkins
Reviewed-by: Markus Mohrhard 

diff --git a/formula/source/core/api/FormulaCompiler.cxx 
b/formula/source/core/api/FormulaCompiler.cxx
index f5e06e77deba..4979310041e7 100644
--- a/formula/source/core/api/FormulaCompiler.cxx
+++ b/formula/source/core/api/FormulaCompiler.cxx
@@ -1424,14 +1424,15 @@ void FormulaCompiler::Factor()
 switch( eOp )
 {
 // Functions recalculated on every document load.
-// Don't use SetExclusiveRecalcModeOnLoad() which would
-// override ModeAlways, use
-// AddRecalcMode(ScRecalcMode::ONLOAD) instead.
+// ONLOAD_LENIENT here to be able to distinguish and not
+// force a recalc (if not in an ALWAYS or ONLOAD_MUST
+// context) but keep an imported result from for example
+// OOXML a DDE call. Will be recalculated for ODFF.
 case ocConvertOOo :
 case ocDde:
 case ocMacro:
 case ocExternal:
-pArr->AddRecalcMode( ScRecalcMode::ONLOAD );
+pArr->AddRecalcMode( ScRecalcMode::ONLOAD_LENIENT );
 break;
 // If the referred cell is moved the value changes.
 case ocColumn :
@@ -1439,15 +1440,15 @@ void FormulaCompiler::Factor()
 pArr->SetRecalcModeOnRefMove();
 break;
 // ocCell needs recalc on move for some possible type 
values.
-// and recalc mode on load, fdo#60646
+// And recalc mode on load, tdf#60645
 case ocCell :
 pArr->SetRecalcModeOnRefMove();
-pArr->AddRecalcMode( ScRecalcMode::ONLOAD );
+pArr->AddRecalcMode( ScRecalcMode::ONLOAD_MUST );
 break;
 case ocHyperLink :
-// cell with hyperlink needs to be calculated on load to
+// Cell with hyperlink needs to be calculated on load to
 // get its matrix result generated.
-pArr->AddRecalcMode( ScRecalcMode::ONLOAD );
+pArr->AddRecalcMode( 

[Libreoffice-bugs] [Bug 117016] Formula to Get value of last non-empty cell does not return expected result (lookup function)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117016

--- Comment #5 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "libreoffice-6-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=cc2c11c2e4a99adf00d184507d6925c9af37e1bd=libreoffice-6-1

Related: tdf#117016 DoubleRefToVars: always put in order

It will be available in 6.1.0.2.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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-commits] core.git: Branch 'libreoffice-6-1' - sc/source

2018-07-18 Thread Libreoffice Gerrit user
 sc/source/core/tool/interpr4.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit cc2c11c2e4a99adf00d184507d6925c9af37e1bd
Author: Eike Rathke 
AuthorDate: Tue Jul 17 16:49:39 2018 +0200
Commit: Markus Mohrhard 
CommitDate: Thu Jul 19 01:42:47 2018 +0200

Related: tdf#117016 DoubleRefToVars: always put in order

... as all callers expect, whatever dynamic range creating process
may have created it.

Change-Id: I47b2e174d5bf4d5c23f10685526b48eee07dd6a4
Reviewed-on: https://gerrit.libreoffice.org/57567
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 6db5e1bdd67531fab14b375d6c624237d38de297)
Reviewed-on: https://gerrit.libreoffice.org/57621
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index c600cdca34b1..7c149d95d94a 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -948,6 +948,12 @@ void ScInterpreter::DoubleRefToVars( const 
formula::FormulaToken* p,
 const ScComplexRefData& rCRef = *p->GetDoubleRef();
 SingleRefToVars( rCRef.Ref1, rCol1, rRow1, rTab1);
 SingleRefToVars( rCRef.Ref2, rCol2, rRow2, rTab2);
+if (rCol2 < rCol1)
+std::swap( rCol2, rCol1);
+if (rRow2 < rRow1)
+std::swap( rRow2, rRow1);
+if (rTab2 < rTab1)
+std::swap( rTab2, rTab1);
 if (!pDok->m_TableOpList.empty())
 {
 ScRange aRange( rCol1, rRow1, rTab1, rCol2, rRow2, rTab2 );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117016] Formula to Get value of last non-empty cell does not return expected result (lookup function)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117016

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.2.0|target:6.2.0 target:6.1.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-bugs] [Bug 118798] spreadsheet hangs when moving mouse pointer from cells over toolbars and again from toolbars to cells 5-10 seconds. Load spiral spins sometimes multiple times before in

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118798

--- Comment #2 from ez  ---
(In reply to Buovjaga from comment #1)
> Can you try in Safe mode? Not sure, if this is the location on macOS, but:
> Help - Restart in safe mode and then Continue in safe mode.

I did start LibreOffice in safe mode and still had the same issue.

-- 
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 118832] I would suggest a feature that allow import Charts

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118832

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
Summary|I would suggest a feature   |I would suggest a feature
   |that allow import Diagrams. |that allow import Charts
   Severity|normal  |enhancement
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from V Stuart Foote  ---
This issue would be applying styles to *Charts* (not diagrams) and allowing
import of that style.

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

-- 
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 62925] FORMATTING: enhancement: please add "chart styles" to the styles of Calc

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62925

V Stuart Foote  changed:

   What|Removed |Added

 CC||fabiru...@gmail.com

--- Comment #34 from V Stuart Foote  ---
*** Bug 118832 has been marked as a duplicate of this 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 118836] New: FILESAVE: saved PPTX that contains grow-shrink effect can't open in powerpoint

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118836

Bug ID: 118836
   Summary: FILESAVE: saved PPTX that contains grow-shrink effect
can't open in  powerpoint
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mark...@gmail.com

Created attachment 143629
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143629=edit
Sample odp that contains a grow-shrink effect animation.

Steps to reproduce:
1. open the attached file.
2. saved as pptx.
3. open it in PowerPoint. 

Expected: document should open.
Actual Result: PowerPoint report that the file is broken.

-- 
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 116280] [META] Regressions introduced by the image handling refactoring

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116280

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||118820


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118820
[Bug 118820] FILEOPEN ODT: Table background doesn't fill the entire table
-- 
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 118820] FILEOPEN ODT: Table background doesn't fill the entire table

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118820

Xisco Faulí  changed:

   What|Removed |Added

Version|6.2.0.0.alpha0+ Master  |6.1.0.0.alpha1+
 CC||qui...@gmail.com,
   ||xiscofa...@libreoffice.org
   Keywords|bibisectRequest |bibisected, bisected
 Blocks||116280

--- Comment #4 from Xisco Faulí  ---
Regression introduced by:

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

author  Tomaž Vajngerl  2018-03-01 08:39:11
+0900
committer   Tomaž Vajngerl2018-03-07 02:37:36
+0100
commit  d72145f9307c732ced4a546ac1e5093ec7c1a982 (patch)
tree648cf88d30ba3da260edb22829d8cd8be0c9345e
parent  6b39ed0eaffabb6ffe11496d833053c094c72f7b (diff)
Move BackGraphicURL property & friends to BackGraphic + fixes

Bisected with: bibisect-linux64-6.1

Adding Cc: to Tomaž Vajngerl


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116280
[Bug 116280] [META] Regressions introduced by the image handling refactoring
-- 
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 118835] FILESAVE: saved pptx that contains color transform animation corrupts

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118835

--- Comment #1 from Mark Hung  ---
Created attachment 143628
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143628=edit
Sample 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 118835] FILESAVE: saved pptx that contains color transform animation corrupts

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118835

Mark Hung  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

-- 
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 118835] New: FILESAVE: saved pptx that contains color transform animation corrupts

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118835

Bug ID: 118835
   Summary: FILESAVE: saved pptx that contains color transform
animation corrupts
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mark...@gmail.com

Steps to reproduce:
1. Open the attached file.
2. Save as pptx.
3. open it in Powerpoint.

Actual result: Powerpoint report the file is corrupted.
Expected result: file should open and the animations contained should act
normally when played.

-- 
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 118834] New: Use of Buttons in Modify Style Dialogue is not Documented

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118834

Bug ID: 118834
   Summary: Use of Buttons in Modify Style Dialogue is not
Documented
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harald.koes...@mail.de
CC: olivier.hal...@documentfoundation.org

At the bottom of the Modify Style dialogue there are several buttons which
functions are not documented. 

In order to open the dialogue:
(a) Open list of styles with F11.
(b) Choose style type (paragraph, character, …) at the top of the style list.
(c) Right click on a style and choose Modify…

These buttons are displayed at the bottom of the dialogue: OK, Apply, Cancel,
Reset and Standard. In the help I did not found a description how these buttons
work. Expected: The functions of the buttons should be documented in the help
because the functions are not self-explaining.

As far as I tested the buttons, these are the functions.
[a] OK: Changes of all tabs are saved, dialogue is closed.
[b] Apply: Changes of all tabs are saved, dialogue is not closed.
[c] Cancel: Changes of all tabs are not saved, dialogue is closed.
[d] Reset: Changes of current tab are undone but not saved, dialogue is not
closed.
[e] Standard: Changes of current tab are reset to inherited values but not
saved, dialogue is not closed. (Button not available for page and list styles)

Furthermore I propose to display tips with the function of each button, if the
cursor rests on a 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 118738] [META] WriterMultiListener instead of SwDepend in SwContentNode regressions

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118738

--- Comment #2 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "libreoffice-6-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=a6fc577ca0303006e5668f52ffc93c3cdf0effd6=libreoffice-6-1

tdf#118738: use SwDepend instead of WriterMultiListener in SwContentNode

It will be available in 6.1.0.2.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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 118738] [META] WriterMultiListener instead of SwDepend in SwContentNode regressions

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118738

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.1.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-6-1' - sw/inc sw/source

2018-07-18 Thread Libreoffice Gerrit user
 sw/inc/calbck.hxx|   44 
 sw/inc/ndtxt.hxx |1 
 sw/inc/node.hxx  |   15 +--
 sw/source/core/docnode/node.cxx  |  191 ---
 sw/source/core/txtnode/ndtxt.cxx |  134 +--
 5 files changed, 217 insertions(+), 168 deletions(-)

New commits:
commit a6fc577ca0303006e5668f52ffc93c3cdf0effd6
Author: Xisco Fauli 
AuthorDate: Mon Jul 16 21:49:47 2018 +0200
Commit: Michael Meeks 
CommitDate: Wed Jul 18 23:43:57 2018 +0200

tdf#118738: use SwDepend instead of WriterMultiListener in SwContentNode

This reverts commit 83243003b46dfb258c2b41049b0e1cb82a2d7ddb

use WriterMultiListener instead of SwDepend in SwContentNode
- also move SwContentNode and SwTextNode from
  Modify to SwClientNotify
- this removes the last public use of SwDepend, which should now become
  an implementation detail of WriterMultiListener

and commit ecf50fe71596c3edba8ce437481ab80ae1cd8935

remove now obsolete SwDepend

Revert them for now ( specially before the relese of LibreOffice 6.1 )
until a fix for the bugs listed in tdf#118738 is provided

Change-Id: I174feb3b092ff31b4c4837011c31343296c0c693
Reviewed-on: https://gerrit.libreoffice.org/57698
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx
index 967e4be6a314..a8deff0a772b 100644
--- a/sw/inc/calbck.hxx
+++ b/sw/inc/calbck.hxx
@@ -223,6 +223,50 @@ public:
 bool HasOnlyOneListener() { return m_pWriterListeners && 
m_pWriterListeners->IsLast(); }
 };
 
+// SwDepend
+
+/*
+ * Helper class for objects that need to depend on more than one SwClient
+ */
+class SW_DLLPUBLIC SwDepend final : public SwClient
+{
+SwClient *m_pToTell;
+
+public:
+SwDepend(SwClient *pTellHim, SwModify *pDepend) : SwClient(pDepend), 
m_pToTell(pTellHim) {}
+SwDepend(SwDepend&) = delete;
+SwDepend(SwDepend&& o)
+: SwClient(std::move(o)), m_pToTell(o.m_pToTell)
+{
+o.m_pToTell = nullptr;
+}
+
+/** get Client information */
+virtual bool GetInfo( SfxPoolItem& rInfo) const override
+{ return m_pToTell == nullptr || m_pToTell->GetInfo( rInfo ); }
+private:
+virtual void Modify( const SfxPoolItem* pOldValue, const SfxPoolItem 
*pNewValue ) override
+{
+SwClientNotify(*GetRegisteredIn(), sw::LegacyModifyHint(pOldValue, 
pNewValue));
+}
+virtual void SwClientNotify( const SwModify& rModify, const SfxHint& rHint 
) override
+{
+if (auto pLegacyHint = dynamic_cast())
+{
+if( pLegacyHint->m_pNew && pLegacyHint->m_pNew->Which() == 
RES_OBJECTDYING )
+{
+auto pModifyChanged = CheckRegistration(pLegacyHint->m_pOld);
+if(pModifyChanged)
+m_pToTell->SwClientNotify(rModify, *pModifyChanged);
+}
+else if( m_pToTell )
+m_pToTell->ModifyNotification(pLegacyHint->m_pOld, 
pLegacyHint->m_pNew);
+}
+else if(m_pToTell)
+m_pToTell->SwClientNotifyCall(rModify, rHint);
+}
+};
+
 template 
class SwIterator;
 
 namespace sw
diff --git a/sw/inc/ndtxt.hxx b/sw/inc/ndtxt.hxx
index d1a8801eb9c7..e40e056a1964 100644
--- a/sw/inc/ndtxt.hxx
+++ b/sw/inc/ndtxt.hxx
@@ -205,6 +205,7 @@ public:
 
 protected:
 /// for hanging TextFormatCollections somewhere else (Outline-Numbering!)
+virtual void Modify( const SfxPoolItem*, const SfxPoolItem* ) override;
 virtual void SwClientNotify( const SwModify&, const SfxHint& ) override;
 
 public:
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx
index 1a8a4dc69c82..d8ab5576feff 100644
--- a/sw/inc/node.hxx
+++ b/sw/inc/node.hxx
@@ -360,8 +360,9 @@ private:
 class SW_DLLPUBLIC SwContentNode: public SwModify, public SwNode, public 
SwIndexReg
 {
 
-sw::WriterMultiListener m_aCondCollListener;
-SwFormatColl* m_pCondColl;
+//FEATURE::CONDCOLL
+std::unique_ptr m_pCondColl;
+//FEATURE::CONDCOLL
 mutable bool mbSetModifyAtAttr;
 
 protected:
@@ -382,7 +383,7 @@ protected:
SwAttrSet (handle): */
 sal_uInt16 ClearItemsFromAttrSet( const std::vector& rWhichIds 
);
 
-virtual void SwClientNotify( const SwModify&, const SfxHint& rHint) 
override;
+virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) 
override;
 
 public:
 
@@ -718,14 +719,14 @@ inline const SwDoc* SwNode::GetDoc() const
 
 inline SwFormatColl* SwContentNode::GetCondFormatColl() const
 {
-return m_pCondColl;
+return m_pCondColl ? 
static_cast(m_pCondColl->GetRegisteredIn()) : nullptr;
 }
 
 inline SwFormatColl& SwContentNode::GetAnyFormatColl() const
 {
-return m_pCondColl
-? *m_pCondColl
-: *const_cast(static_cast(GetRegisteredIn()));
+return m_pCondColl && m_pCondColl->GetRegisteredIn()
+? *static_cast(m_pCondColl->GetRegisteredIn())
+  

[Libreoffice-bugs] [Bug 108619] Java Crash on x86 in jfw_plugin_startJavaVirtualMachine w/ recent linux kernels

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108619

Xisco Faulí  changed:

   What|Removed |Added

 CC||roeldijk...@outlook.com

--- Comment #37 from Xisco Faulí  ---
*** Bug 118677 has been marked as a duplicate of this 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 118677] Calc crash when looking for macro to assign to menu

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118677

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #12 from Xisco Faulí  ---
Thanks for the further information.
Yep, this is a crash of Java in Linux x86. Please see bug 108619.
Closing as RESOLVED DUPLICATED

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

-- 
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 118677] Calc crash when looking for macro to assign to menu

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118677

--- Comment #11 from roeldijk...@outlook.com  ---
Hello,
I have some news.
I can switch off/on the crashing by dis/enabling using the Java runtime
environment. When disabled I can assign a macro to the button. No crashing when
hitting it... macro works. No crashing when enabling Java.

I tested with LO 4.4, 5.4, 6

Doing this was triggered by the crashreport the Ubuntu 16.04 LTS 32 bit system
gave me after a crash:

Title: soffice.bin crashed with SIGSEGV in JNI_CreateJavaVM()

I found on google Java gives often problems with LO on linux 32bit

After Java was diabled and wanting to select the macro, LO complained it wants
to use Java, should it be enabled. I no-ed that and LO went on without a
problem. Appearently it does not need Java, so that comment is useless.

Nonetheless, there is a problem with java on 32 bit linux.
But there is a work-around (in my case).
Do not believe everything you read (apart from this).

-- 
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: formula/source sc/source

2018-07-18 Thread Libreoffice Gerrit user
 formula/source/core/api/FormulaCompiler.cxx |1 +
 sc/source/filter/xml/xmlcelli.cxx   |   12 +---
 2 files changed, 10 insertions(+), 3 deletions(-)

New commits:
commit a014a9bcf071229eef93c307c705a4c639635bd5
Author: Eike Rathke 
AuthorDate: Wed Jul 18 22:04:09 2018 +0200
Commit: Eike Rathke 
CommitDate: Wed Jul 18 23:21:26 2018 +0200

Do not force all string results to be recalculated if no style set

Results are forced to recalculate for cells with General format in
case they need to inherit a format that then can be set. However,
a General format will never lead to some other format being set
for any string results and almost all string result cells will
have General format because the string is already what is being
displayed. So for formula cells with a string result available do
not allow to use ScFormulaCell::SetNeedNumberFormat() forcing the
need to recalculate.

This popped up during intercepting for tdf#118735 when the formula
cell containing a WEBSERVICE() call is set dirty, through
CompileXMLHandler::operator()(...)

if (pCell->NeedsNumberFormat())
pCell->SetDirtyVar();

Which again, as WEBSERVICE() has to be recalculated to populate
the link manager, made it necessary to add that to
ScRecalcMode::ONLOAD_LENIENT (which it should already had been
before (when that was ONLOAD), but no harm in this case).

Change-Id: I0dc2cdfe35c56d9843f0edd24a6d14e3de79f7ef
Reviewed-on: https://gerrit.libreoffice.org/57700
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/formula/source/core/api/FormulaCompiler.cxx 
b/formula/source/core/api/FormulaCompiler.cxx
index 5d4c3e76ec5b..d11bd25a08d1 100644
--- a/formula/source/core/api/FormulaCompiler.cxx
+++ b/formula/source/core/api/FormulaCompiler.cxx
@@ -1436,6 +1436,7 @@ void FormulaCompiler::Factor()
 case ocDde:
 case ocMacro:
 case ocExternal:
+case ocWebservice:
 pArr->AddRecalcMode( ScRecalcMode::ONLOAD_LENIENT );
 break;
 // If the referred cell is moved the value changes.
diff --git a/sc/source/filter/xml/xmlcelli.cxx 
b/sc/source/filter/xml/xmlcelli.cxx
index 32a0cb1e6392..c9899457f23c 100644
--- a/sc/source/filter/xml/xmlcelli.cxx
+++ b/sc/source/filter/xml/xmlcelli.cxx
@@ -1009,6 +1009,8 @@ void 
ScXMLTableRowCellContext::SetFormulaCell(ScFormulaCell* pFCell) const
 {
 if(pFCell)
 {
+bool bMayForceNumberformat = true;
+
 if(mbErrorValue)
 {
 // don't do anything here
@@ -1021,6 +1023,9 @@ void 
ScXMLTableRowCellContext::SetFormulaCell(ScFormulaCell* pFCell) const
 ScDocument* pDoc = rXMLImport.GetDocument();
 
pFCell->SetHybridString(pDoc->GetSharedStringPool().intern(*maStringValue));
 pFCell->ResetDirty();
+// A General format doesn't force any other format for a string
+// result, don't attempt to recalculate this later.
+bMayForceNumberformat = false;
 }
 }
 else if (rtl::math::isFinite(fValue))
@@ -1035,6 +1040,10 @@ void 
ScXMLTableRowCellContext::SetFormulaCell(ScFormulaCell* pFCell) const
 else
 pFCell->ResetDirty();
 }
+
+if (bMayForceNumberformat)
+// Re-calculate to get number format only when style is not set.
+pFCell->SetNeedNumberFormat(!mbHasStyle);
 }
 }
 
@@ -1398,9 +1407,6 @@ void ScXMLTableRowCellContext::PutFormulaCell( const 
ScAddress& rCellPos )
 ScFormulaCell* pNewCell = new ScFormulaCell(pDoc, rCellPos, pCode, 
eGrammar, ScMatrixMode::NONE);
 SetFormulaCell(pNewCell);
 rDoc.setFormulaCell(rCellPos, pNewCell);
-
-// Re-calculate to get number format only when style is not set.
-pNewCell->SetNeedNumberFormat(!mbHasStyle);
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: LibreOffice ESC call, Thur - 16:00 central European (local) time

2018-07-18 Thread Bjoern Michaelsen
Hi Xisco,

On Tue, Jul 17, 2018 at 07:37:44PM +0200, Xisco Fauli wrote:
> I have tried to reach Björn but I haven't got any answer back, that's
> why I would like to revert the commit for now [2], and if possible, for
> LibreOffice 6.1 RC2.

Revert is fine. I will it fix on master, but this shouldnt block you or the
release. ;)

Best,

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


[Libreoffice-bugs] [Bug 116460] The current page number isn't updated when scrolling with page up/down or arrow until after release

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116460

Òscar  changed:

   What|Removed |Added

   Severity|trivial |minor
 CC||o.arias...@gmail.com

--- Comment #2 from Òscar  ---
Reproduced with several documents. Also after release, the displayed current
page number is not updated and shows allways Page 1/X. The displayed current
page style match that of page 1.

In addition,
"When you scroll using the right scrollbar, the page numbers are displayed as a
Help tip." (https://help.libreoffice.org/Writer/Page_Number)
does not work.


User Profile Reset: No

Version: 6.0.5.2 (x64)
Build ID: 54c8cbb85f300ac59db32fe8a675ff7683cd5a16
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: ca-ES (de_DE); Calc: group

-- 
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-6-1' - svgio/inc svgio/source

2018-07-18 Thread Libreoffice Gerrit user
 svgio/inc/svggradientnode.hxx  |1 
 svgio/source/svgreader/svggradientnode.cxx |   75 -
 2 files changed, 55 insertions(+), 21 deletions(-)

New commits:
commit b59d639a5fbbddd976d6c79ea12460b553426887
Author: Caolán McNamara 
AuthorDate: Wed Jul 18 12:12:05 2018 +0100
Commit: Michael Meeks 
CommitDate: Wed Jul 18 22:31:11 2018 +0200

crashtesting: infinite recurse on moz330387-6.svg

Change-Id: I3c39d49504a4651b92f41c07e4cef8887366dc2b
Reviewed-on: https://gerrit.libreoffice.org/57627
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/svgio/inc/svggradientnode.hxx b/svgio/inc/svggradientnode.hxx
index 3710519dc392..1542796b48fc 100644
--- a/svgio/inc/svggradientnode.hxx
+++ b/svgio/inc/svggradientnode.hxx
@@ -56,6 +56,7 @@ namespace svgio
 /// link to another gradient used as style. If maXLink
 /// is set, the node can be fetched on demand by using
 // tryToFindLink (buffered)
+mutable bool mbResolvingLink; // protect against infinite link 
recursion
 OUString   maXLink;
 const SvgGradientNode*  mpXLink;
 
diff --git a/svgio/source/svgreader/svggradientnode.cxx 
b/svgio/source/svgreader/svggradientnode.cxx
index 4496a809a8cf..efbfdccaadb5 100644
--- a/svgio/source/svgreader/svggradientnode.cxx
+++ b/svgio/source/svgreader/svggradientnode.cxx
@@ -51,6 +51,7 @@ namespace svgio
 maGradientUnits(objectBoundingBox),
 maSpreadMethod(drawinglayer::primitive2d::SpreadMethod::Pad),
 mpaGradientTransform(nullptr),
+mbResolvingLink(false),
 maXLink(),
 mpXLink(nullptr)
 {
@@ -246,9 +247,11 @@ namespace svgio
 {
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
+mbResolvingLink = true;
 mpXLink->collectGradientEntries(aVector);
+mbResolvingLink = false;
 }
 }
 else
@@ -312,9 +315,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
-return mpXLink->getX1();
+mbResolvingLink = true;
+auto ret = mpXLink->getX1();
+mbResolvingLink = false;
+return ret;
 }
 
 // default is 0%
@@ -330,9 +336,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
-return mpXLink->getY1();
+mbResolvingLink = true;
+auto ret = mpXLink->getY1();
+mbResolvingLink = false;
+return ret;
 }
 
 // default is 0%
@@ -348,9 +357,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
-return mpXLink->getX2();
+mbResolvingLink = true;
+auto ret = mpXLink->getX2();
+mbResolvingLink = false;
+return ret;
 }
 
 // default is 100%
@@ -366,9 +378,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
-return mpXLink->getY2();
+mbResolvingLink = true;
+auto ret = mpXLink->getY2();
+mbResolvingLink = false;
+return ret;
 }
 
 // default is 0%
@@ -384,9 +399,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
-return mpXLink->getCx();
+mbResolvingLink = true;
+auto ret = mpXLink->getCx();
+mbResolvingLink = false;
+return ret;
 }
 
 // default is 50%
@@ -402,9 +420,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && !mbResolvingLink)
 {
-return mpXLink->getCy();
+mbResolvingLink = true;
+auto ret = mpXLink->getCy();
+mbResolvingLink = false;
+return ret;
 }
 
 // default is 50%
@@ -420,9 +441,12 @@ namespace svgio
 
 const_cast< SvgGradientNode* >(this)->tryToFindLink();
 
-if(mpXLink)
+if (mpXLink && 

[Libreoffice-commits] core.git: comphelper/source desktop/source

2018-07-18 Thread Libreoffice Gerrit user
 comphelper/source/misc/threadpool.cxx |9 -
 desktop/source/lib/init.cxx   |4 
 2 files changed, 8 insertions(+), 5 deletions(-)

New commits:
commit 5bfdbc664072dbf2731365b237b60eba2b3e03fb
Author: Michael Meeks 
AuthorDate: Wed Jul 18 12:23:10 2018 +0100
Commit: Michael Meeks 
CommitDate: Wed Jul 18 22:28:51 2018 +0200

Allow the comphelper threadpool to be reset after construction.

Otherwise some pre-init components can start it, and threads get
stranded in the forkit process causing grief.

Change-Id: Ib1846f8b329b4c6b84645999dafba1252c5129c7
Reviewed-on: https://gerrit.libreoffice.org/57631
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/comphelper/source/misc/threadpool.cxx 
b/comphelper/source/misc/threadpool.cxx
index d23b6fa9431a..650541406a6a 100644
--- a/comphelper/source/misc/threadpool.cxx
+++ b/comphelper/source/misc/threadpool.cxx
@@ -128,13 +128,12 @@ sal_Int32 ThreadPool::getPreferredConcurrency()
 return ThreadCount;
 }
 
-// FIXME: there should be no need for this as/when our baseline
-// is >VS2015 and drop WinXP; the sorry details are here:
-// https://connect.microsoft.com/VisualStudio/feedback/details/1282596
+// Used to order shutdown, and to ensure there are no lingering
+// threads after LibreOfficeKit pre-init.
 void ThreadPool::shutdown()
 {
-if (mbTerminate)
-return;
+//if (mbTerminate)
+//return;
 
 std::unique_lock< std::mutex > aGuard( maMutex );
 shutdownLocked(aGuard);
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index fc4705233195..0b3582f8c07c 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -3968,7 +3969,10 @@ static int lo_initialize(LibreOfficeKit* pThis, const 
char* pAppPath, const char
 }
 
 if (eStage == PRE_INIT)
+{
+comphelper::ThreadPool::getSharedOptimalPool().shutdown();
 rtl_alloc_preInit(rtlAllocPostInit);
+}
 
 return bInitialized;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116280] [META] Regressions introduced by the image handling refactoring

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116280

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||118819


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118819
[Bug 118819] UI: There is dialog background after enlarging an specific item
(by double clicking)
-- 
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 118819] UI: There is dialog background after enlarging an specific item (by double clicking)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118819

Xisco Faulí  changed:

   What|Removed |Added

Version|6.2.0.0.alpha0+ Master  |6.1.0.1 rc
   Keywords||bibisected, bisected,
   ||regression
 Blocks||116280
 OS|All |Mac OS X (All)
 CC||qui...@gmail.com,
   ||t...@iki.fi
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Xisco Faulí  ---
This is only Mac.

Regression introduced by:

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

author  Tomaž Vajngerl  2018-03-31 17:27:01
+0900
committer   Tomaž Vajngerl2018-04-10 08:33:55
+0200
commit  ea3d755ac949c1b6dada5c341e018f8c23f5d395 (patch)
tree086b3573d3e2f64fd918df4996d1f00ad9aa863b
parent  94185507ed11bf6e2e2e9fa47c247680ae1edb36 (diff)
vcl: detach usage and remove GraphicManager and GraphicCache

Bisected with: mac64-61

Adding Cc: to Tomaž Vajngerl


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116280
[Bug 116280] [META] Regressions introduced by the image handling refactoring
-- 
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: sw/source

2018-07-18 Thread Libreoffice Gerrit user
 sw/source/filter/html/swhtml.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 98fdac1e1f7dcba40b1d3a1cd5662f23160a0881
Author: Caolán McNamara 
AuthorDate: Wed Jul 18 16:13:19 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Jul 18 22:13:26 2018 +0200

tdf#118579 ignore body in body instead of flagging as an error

Change-Id: Ie6626a320a5264aea004f7c57244643798703de8
Reviewed-on: https://gerrit.libreoffice.org/57652
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index dbf0da0a0d5e..508bbc1a4671 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -1279,9 +1279,7 @@ void SwHTMLParser::NextToken( HtmlTokenId nToken )
 switch( nToken )
 {
 case HtmlTokenId::BODY_ON:
-if (m_bBodySeen)
-eState = SvParserState::Error;
-else
+if (!m_bBodySeen)
 {
 m_bBodySeen = true;
 if( !m_aStyleSource.isEmpty() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-18 Thread Libreoffice Gerrit user
 vcl/unx/gtk3/gtk3gtkinst.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f48d1cf923231cbfcd663c5f97657d04073793b5
Author: Caolán McNamara 
AuthorDate: Wed Jul 18 16:33:34 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Jul 18 22:12:37 2018 +0200

Resolves: tdf#118802 map GTK_RESPONSE_DELETE_EVENT to RET_CANCEL

Change-Id: I8285f329e4672c90f47d96ccffe60c21c565dde7
Reviewed-on: https://gerrit.libreoffice.org/57655
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 2a524619e480..2041f6d90f12 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -2031,6 +2031,8 @@ private:
 ret = RET_OK;
 else if (ret == GTK_RESPONSE_CANCEL)
 ret = RET_CANCEL;
+else if (ret == GTK_RESPONSE_DELETE_EVENT)
+ret = RET_CANCEL;
 else if (ret == GTK_RESPONSE_CLOSE)
 ret = RET_CLOSE;
 else if (ret == GTK_RESPONSE_YES)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - solenv/gbuild

2018-07-18 Thread Libreoffice Gerrit user
 solenv/gbuild/platform/macosx.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 2daa2d8a77c802cfad84ef952a99606e3bcc467f
Author: Jim Jagielski 
AuthorDate: Wed Jul 18 18:18:15 2018 +
Commit: Jim Jagielski 
CommitDate: Wed Jul 18 18:18:15 2018 +

update

diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk
index 3b2fbcb6650f..103b09f53aa4 100644
--- a/solenv/gbuild/platform/macosx.mk
+++ b/solenv/gbuild/platform/macosx.mk
@@ -298,7 +298,8 @@ $(call gb_Helper_abbreviate_dirs,\
`cat $${DYLIB_FILE}` && \
$(if $(filter Library,$(TARGETTYPE)),\
$(PERL) $(SOLARENV)/bin/macosx-change-install-names.pl Library 
$(LAYER) $(1) && \
-   ln -sf $(1) $(patsubst %.dylib,%.jnilib,$(1)) &&) \
+   ln -f $(if $(call 
gb_Library_is_udk_versioned,$(1)),$(1).$(gb_UDK_MAJOR),$(1)) \
+ $(patsubst %.dylib,%.jnilib,$(1)) &&) \
rm -f $${DYLIB_FILE})
 endef
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118716] Inner border of an embedded table can't be dragged around

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118716

--- Comment #9 from Xisco Faulí  ---
Hi Noel,
Thanks for the nice clarification.
In your initial commit, I see 3 or 4 places where static_cast was
converted to std::max< sal_uInt16 >, should they be reverted just in case as
well?

Would you mind providing a fix for this issue, or should I do it ?

-- 
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: sc/inc sc/source

2018-07-18 Thread Libreoffice Gerrit user
 sc/inc/formulacell.hxx  |2 ++
 sc/source/core/data/formulacell.cxx |5 +
 sc/source/core/tool/interpr7.cxx|   26 --
 3 files changed, 31 insertions(+), 2 deletions(-)

New commits:
commit d2e5283f0caeb87e316040e2db1aade8cc408f62
Author: Eike Rathke 
AuthorDate: Wed Jul 18 18:02:58 2018 +0200
Commit: Eike Rathke 
CommitDate: Wed Jul 18 21:41:43 2018 +0200

Related: tdf#118735 WEBSERVICE preserve the hybrid string result, if 
possible

Possible only for constant literal URI arguments, as otherwise we
wouldn't know whether the hybrid string result actually matches
the call, and possible only for the very first recalc as the
hybrid string result will be replaced by the calculated result.

However, executing an initial recalc is necessary to add the (then
determined and maybe calculated) URI to the link manager after
having loaded a document.

Change-Id: I67738c13ecce54b43ebb52ea8a8282aebee5f03a
Reviewed-on: https://gerrit.libreoffice.org/57696
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index 34c578076d97..8091a00198f5 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -402,6 +402,8 @@ public:
 
 svl::SharedString GetResultString() const;
 
+bool HasHybridStringResult() const;
+
 /* Sets the shared code array to error state in addition to the cell 
result */
 void SetErrCode( FormulaError n );
 
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index 7377144d8b5b..112d215bc2f7 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -2537,6 +2537,11 @@ svl::SharedString ScFormulaCell::GetResultString() const
 return aResult.GetString();
 }
 
+bool ScFormulaCell::HasHybridStringResult() const
+{
+return aResult.GetType() == formula::svHybridCell && 
!aResult.GetString().isEmpty();
+}
+
 void ScFormulaCell::SetResultMatrix( SCCOL nCols, SCROW nRows, const 
ScConstMatrixRef& pMat, const formula::FormulaToken* pUL )
 {
 aResult.SetMatrix(nCols, nRows, pMat, pUL);
diff --git a/sc/source/core/tool/interpr7.cxx b/sc/source/core/tool/interpr7.cxx
index ab8e0092985a..108d5f4445ea 100644
--- a/sc/source/core/tool/interpr7.cxx
+++ b/sc/source/core/tool/interpr7.cxx
@@ -320,6 +320,7 @@ void ScInterpreter::ScWebservice()
 ScWebServiceLink* pLink = lcl_GetWebServiceLink(mpLinkManager, aURI);
 
 bool bWasError = (pMyFormulaCell && pMyFormulaCell->GetRawError() != 
FormulaError::NONE);
+bool bLinkFormulaNeedingCheck = false;
 
 if (!pLink)
 {
@@ -335,7 +336,8 @@ void ScInterpreter::ScWebservice()
 //if the document was just loaded, but the ScDdeLink entry was 
missing, then
 //don't update this link until the links are updated in response 
to the users
 //decision
-if (!pDok->HasLinkFormulaNeedingCheck())
+bLinkFormulaNeedingCheck = pDok->HasLinkFormulaNeedingCheck();
+if (!bLinkFormulaNeedingCheck)
 {
 pLink->Update();
 }
@@ -360,7 +362,27 @@ void ScInterpreter::ScWebservice()
 if (pLink->HasResult())
 PushString(pLink->GetResult());
 else
-PushError(FormulaError::NoValue);
+{
+// If this formula cell is recalculated just after load and the
+// expression is exactly WEBSERVICE("literal_URI") (i.e. no other
+// calculation involved, not even a cell reference) and a cached
+// result is set as hybrid string then use that as result value to
+// prevent a #VALUE! result due to the "Automatic update of
+// external links has been disabled."
+// This will work only once, as the new formula cell result won't
+// be a hybrid anymore.
+if (bLinkFormulaNeedingCheck && pMyFormulaCell && 
pMyFormulaCell->GetCode()->GetCodeLen() == 2 &&
+pMyFormulaCell->HasHybridStringResult())
+{
+formula::FormulaToken const * const * pRPN = 
pMyFormulaCell->GetCode()->GetCode();
+if (pRPN[0]->GetType() == formula::svString && 
pRPN[1]->GetOpCode() == ocWebservice)
+PushString( pMyFormulaCell->GetResultString());
+else
+PushError(FormulaError::NoValue);
+}
+else
+PushError(FormulaError::NoValue);
+}
 
 pDok->EnableIdle(bOldEnabled);
 mpLinkManager->CloseCachedComps();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118833] New paragraph style is not shown in the sidebar until its is refreshed

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118833

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||118738
 Ever confirmed|0   |1
   Keywords||bibisected, bisected,
   ||regression
 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

author  Bjoern Michaelsen2018-05-04
08:44:47 +0200
committer   Björn Michaelsen
2018-05-05 08:14:12 +0200
commit  83243003b46dfb258c2b41049b0e1cb82a2d7ddb (patch)
tree1e9f4fa59e10e7c8ea30fce1bd5c0cb7c37f87cd
parent  0b56585cfc047decf25c648d3cccfc3c7b594a86 (diff)
use WriterMultiListener instead of SwDepend in SwContentNode
- also move SwContentNode and SwTextNode from
  Modify to SwClientNotify
- this removes the last public use of SwDepend, which should now become
  an implementation detail of WriterMultiListener

Bisected with: bibisect-linux64-6.1


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118738
[Bug 118738] [META] WriterMultiListener instead of SwDepend in SwContentNode
regressions
-- 
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 118738] [META] WriterMultiListener instead of SwDepend in SwContentNode regressions

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118738

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||118833


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118833
[Bug 118833] New paragraph style is not shown in the sidebar until its is
refreshed
-- 
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 118833] New: New paragraph style is not shown in the sidebar until its is refreshed

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118833

Bug ID: 118833
   Summary: New paragraph style is not shown in the sidebar until
its is refreshed
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Steps to reproduce:
1. Open Writer
2. Go to the Sidebar - Styles
3. From the top-right icon, add a new style called ''

Observed behaviour: it's not displayed on the list of styles. Changing to
another style and back displays it.

Reproduced in

Version: 6.2.0.0.alpha0+
Build ID: 95b00f1bfa341003af23e150d316d943d47909cf
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group 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 114908] VIEWING: Text-flow not correct from 5.2 for ODT with near-by tables (5, 6 and 8 pages instead of 4)

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114908

Justin L  changed:

   What|Removed |Added

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

--- Comment #7 from Justin L  ---
Fixed in 6.2 and requesting a backport to 6.1.
I changed the emulation so that it is not triggered by inherited (aka styles)
properties.

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

-- 
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-6-1' - include/sfx2 sfx2/source svx/source sw/source

2018-07-18 Thread Libreoffice Gerrit user
 include/sfx2/linkmgr.hxx|7 ---
 sfx2/source/appl/linkmgr2.cxx   |   11 +++
 svx/source/svdraw/svdograf.cxx  |2 +-
 sw/source/core/docnode/swbaslnk.cxx |9 -
 4 files changed, 20 insertions(+), 9 deletions(-)

New commits:
commit 6f521b2d4e2a68d29839012f73dec45e68aeaef1
Author: Caolán McNamara 
AuthorDate: Tue Jul 17 09:08:51 2018 +0100
Commit: Eike Rathke 
CommitDate: Wed Jul 18 21:21:23 2018 +0200

bubble referer to LinkManager::GetGraphicFromAny

Change-Id: Id2c6d629692a365f96f3f81c5686930668389a6a
Reviewed-on: https://gerrit.libreoffice.org/57549
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/include/sfx2/linkmgr.hxx b/include/sfx2/linkmgr.hxx
index b1057aef5f1a..128dd47e4462 100644
--- a/include/sfx2/linkmgr.hxx
+++ b/include/sfx2/linkmgr.hxx
@@ -156,9 +156,10 @@ public:
 
 // if the mimetype says graphic/bitmap/gdimetafile then get the
 // graphic from the Any. Return says no errors
-static bool GetGraphicFromAny( const OUString& rMimeType,
-const css::uno::Any & rValue,
-Graphic& rGrf );
+static bool GetGraphicFromAny(const OUString& rMimeType,
+  const css::uno::Any & rValue,
+  const OUString& rReferer,
+  Graphic& rGrf);
 
 private:
 LinkManager( const LinkManager& ) = delete;
diff --git a/sfx2/source/appl/linkmgr2.cxx b/sfx2/source/appl/linkmgr2.cxx
index 64e89a927f12..b503e06f0cf6 100644
--- a/sfx2/source/appl/linkmgr2.cxx
+++ b/sfx2/source/appl/linkmgr2.cxx
@@ -40,6 +40,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include "fileobj.hxx"
@@ -497,9 +498,10 @@ SotClipboardFormatId LinkManager::RegisterStatusInfoId()
 return nFormat;
 }
 
-bool LinkManager::GetGraphicFromAny( const OUString& rMimeType,
-const css::uno::Any & rValue,
-Graphic& rGraphic )
+bool LinkManager::GetGraphicFromAny(const OUString& rMimeType,
+const css::uno::Any & rValue,
+const OUString& rReferer,
+Graphic& rGraphic )
 {
 bool bRet = false;
 
@@ -509,7 +511,8 @@ bool LinkManager::GetGraphicFromAny( const OUString& 
rMimeType,
 if (rValue.has())
 {
 OUString sURL = rValue.get();
-rGraphic = vcl::graphic::loadFromURL(sURL);
+if (!SvtSecurityOptions().isUntrustedReferer(rReferer))
+rGraphic = vcl::graphic::loadFromURL(sURL);
 if (!rGraphic)
 rGraphic.SetDefaultType();
 rGraphic.setOriginURL(sURL);
diff --git a/svx/source/svdraw/svdograf.cxx b/svx/source/svdraw/svdograf.cxx
index d336c9634d42..aa3df15dcd43 100644
--- a/svx/source/svdraw/svdograf.cxx
+++ b/svx/source/svdraw/svdograf.cxx
@@ -226,7 +226,7 @@ void SdrGraphicLink::RemoveGraphicUpdater()
 sfx2::LinkManager::GetDisplayNames( this, nullptr, 
, nullptr,  );
 
 Graphic aGraphic;
-if( sfx2::LinkManager::GetGraphicFromAny( rMimeType, rValue, aGraphic 
))
+if (sfx2::LinkManager::GetGraphicFromAny(rMimeType, rValue, 
getReferer(), aGraphic))
 {
 rGrafObj.ImpSetLinkedGraphic(aGraphic);
 }
diff --git a/sw/source/core/docnode/swbaslnk.cxx 
b/sw/source/core/docnode/swbaslnk.cxx
index 744eb2720cea..4aa300ee30de 100644
--- a/sw/source/core/docnode/swbaslnk.cxx
+++ b/sw/source/core/docnode/swbaslnk.cxx
@@ -144,7 +144,14 @@ static void lcl_CallModify( SwGrfNode& rGrfNd, 
SfxPoolItem& rItem )
 
 Graphic aGrf;
 
-if( sfx2::LinkManager::GetGraphicFromAny( rMimeType, rValue, aGrf ) &&
+OUString sReferer;
+SfxObjectShell * sh = pDoc->GetPersist();
+if (sh != nullptr && sh->HasName())
+{
+sReferer = sh->GetMedium()->GetName();
+}
+
+if( sfx2::LinkManager::GetGraphicFromAny(rMimeType, rValue, sReferer, 
aGrf) &&
 ( GraphicType::Default != aGrf.GetType() ||
   GraphicType::Default != rGrfObj.GetType() ) )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118767] FIREBIRD: Access2Base: Dlookup function generates SQL error

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118767

--- Comment #5 from Drew Jensen  ---
Opened an issue for the metadata uno service returning a null string for
productname.  https://bugs.documentfoundation.org/show_bug.cgi?id=118809 added
it to 'see also' here.

Even with that property not returning a name the code could handle it by
checking the URL property. For the URL there would be at least two, embedded
and file.

So, off the code in _DFunction could maybe change to

sProductName = MetaData.getDatabaseProductName()
If sProductName = "" Then
  If MetaData.URL = "sdbc:embedded:firebird" 
 Or Left( MetaData.URL, 13) = "sdbc:firebird"  Then

 sProductName = "Firebird"
  End If
End If  

Select Case UCase(sProductName)
  Case "MYSQL", "SQLITE"
If psFunction = "" Then
  sTarget = psExpr
  sLimit = " LIMIT 1"
Else
  sTarget = UCase(psFunction) & "(" & psExpr & ")"
End If
sSql = "SELECT " & sTarget & " AS " & sTempField & " FROM " & psDomain & 
sWhere & sOrderBy & sLimit

  Case "FIREBIRD"
If psFunction = "" Then 
  sTarget = "FIRST 1 " & psExpr 
Else 
  sTarget = UCase(psFunction) & "(" & psExpr & ")"
End If
sSql = "SELECT " & sTarget & " AS " & sTempField & " FROM " & psDomain &
sWhere & sOrderBy



-- 
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 118716] Inner border of an embedded table can't be dragged around

2018-07-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118716

--- Comment #8 from Noel Grandin  ---
Xisco, your change is correct, my patch was inadvisable.

In this code
   int a;
   std::max(a,0)
std::max will first convert a and b to sal_uInt16, therefore potentially
converting a negative number to a positive number due to the conversion rules.
Then it will take the larger number.

While this code
int a;
static_cast(a > 0 ? a : 0)
will compare first, and then convert the larger number to sal_uInt16, which
might result in making a "a" that is larger than 2^16 into a smaller value, but
which will never convert a negative "a" value into a positive value.

-- 
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-6-1' - sw/source

2018-07-18 Thread Libreoffice Gerrit user
 sw/source/filter/html/htmlgrin.cxx |   16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 72dc4c2633fb866cc8b42dc742bffc57c23e9889
Author: Caolán McNamara 
AuthorDate: Tue Jul 17 09:58:56 2018 +0100
Commit: Eike Rathke 
CommitDate: Wed Jul 18 21:18:02 2018 +0200

put load of html images (to measure dimensions) under referer control

Change-Id: I1de4a5214ef48394dcafa97e4ea12bb460f2fba2
Reviewed-on: https://gerrit.libreoffice.org/57566
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/sw/source/filter/html/htmlgrin.cxx 
b/sw/source/filter/html/htmlgrin.cxx
index 0a9050f3475a..8e61296d5389 100644
--- a/sw/source/filter/html/htmlgrin.cxx
+++ b/sw/source/filter/html/htmlgrin.cxx
@@ -299,6 +299,20 @@ void SwHTMLParser::GetDefaultScriptType( ScriptType& rType,
 rTypeStr = GetScriptTypeString( pHeaderAttrs );
 }
 
+namespace
+{
+bool allowAccessLink(SwDoc& rDoc)
+{
+OUString sReferer;
+SfxObjectShell * sh = rDoc.GetPersist();
+if (sh != nullptr && sh->HasName())
+{
+sReferer = sh->GetMedium()->GetName();
+}
+return !SvtSecurityOptions().isUntrustedReferer(sReferer);
+}
+}
+
 /*  */
 
 void SwHTMLParser::InsertImage()
@@ -627,7 +641,7 @@ IMAGE_SETEVENT:
 bool bSetScaleImageMap = false;
 sal_uInt8 nPrcWidth = 0, nPrcHeight = 0;
 
-if (!nWidth || !nHeight)
+if ((!nWidth || !nHeight) && allowAccessLink(*m_xDoc))
 {
 GraphicDescriptor aDescriptor(aGraphicURL);
 if (aDescriptor.Detect(/*bExtendedInfo=*/true))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-18 Thread Libreoffice Gerrit user
 sw/source/core/inc/rowfrm.hxx|2 +-
 sw/source/core/layout/tabfrm.cxx |   12 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit ef86b2e7a08ea25c434db85087d094f030f762cc
Author: Justin Luth 
AuthorDate: Wed Jul 18 09:01:43 2018 +0300
Commit: Justin Luth 
CommitDate: Wed Jul 18 21:17:00 2018 +0200

tdf#118528 sw layout: only direct formatting for EmulateTableKeep

Emulating MSWord's way of keeping a table with the next paragraph
has caused a few complaints, but never anything that seemed
to clearly indicate a real problem - usually just badly designed
documents. But a common theme has been the keep attribute coming
through styles. Since our export-emulation writes directly
to the paragraph properties, lets make the emulation dependent
on direct formatting to avoid some of these complaints.

Change-Id: I008fc7b6a7083292463c20972ad209761ec97601
Reviewed-on: https://gerrit.libreoffice.org/57613
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/source/core/inc/rowfrm.hxx b/sw/source/core/inc/rowfrm.hxx
index 9ff22cc0a125..c3724667cdaf 100644
--- a/sw/source/core/inc/rowfrm.hxx
+++ b/sw/source/core/inc/rowfrm.hxx
@@ -97,7 +97,7 @@ public:
 // <-- split table rows
 
 // #131283# Table row keep feature
-bool ShouldRowKeepWithNext() const;
+bool ShouldRowKeepWithNext( const bool bCheckParents = true ) const;
 
 // #i4032# NEW TABLES
 bool IsRowSpanLine() const { return m_bIsRowSpanLine; }
diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index a5538ea3f707..7c62601414f0 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -1775,16 +1775,16 @@ SwFrame* sw_FormatNextContentForKeep( SwTabFrame* 
pTabFrame )
 }
 
 namespace {
-bool AreAllRowsKeepWithNext( const SwRowFrame* pFirstRowFrame )
+bool AreAllRowsKeepWithNext( const SwRowFrame* pFirstRowFrame, const bool 
bCheckParents = true  )
 {
 bool bRet = pFirstRowFrame != nullptr &&
-pFirstRowFrame->ShouldRowKeepWithNext();
+pFirstRowFrame->ShouldRowKeepWithNext( bCheckParents );
 
 while ( bRet && pFirstRowFrame->GetNext() != nullptr )
 {
 pFirstRowFrame = dynamic_cast(pFirstRowFrame->GetNext());
 bRet = pFirstRowFrame != nullptr &&
-   pFirstRowFrame->ShouldRowKeepWithNext();
+   pFirstRowFrame->ShouldRowKeepWithNext( bCheckParents );
 }
 
 return bRet;
@@ -1861,8 +1861,8 @@ void SwTabFrame::MakeAll(vcl::RenderContext* 
pRenderContext)
 const SwBorderAttrs *pAttrs = pAccess->Get();
 
 const bool bLargeTable = GetTable()->GetTabLines().size() > 64;  
//arbitrary value, virtually guaranteed to be larger than one page.
+const bool bEmulateTableKeep = !bLargeTable && AreAllRowsKeepWithNext( 
GetFirstNonHeadlineRow(), /*bCheckParents=*/false );
 // The beloved keep attribute
-const bool bEmulateTableKeep = !bLargeTable && AreAllRowsKeepWithNext( 
GetFirstNonHeadlineRow() );
 const bool bKeep = IsKeep(pAttrs->GetAttrSet().GetKeep(), GetBreakItem(), 
bEmulateTableKeep);
 
 // All rows should keep together
@@ -4607,7 +4607,7 @@ bool SwRowFrame::IsRowSplitAllowed() const
 return rLP.GetValue();
 }
 
-bool SwRowFrame::ShouldRowKeepWithNext() const
+bool SwRowFrame::ShouldRowKeepWithNext( const bool bCheckParents ) const
 {
 // No KeepWithNext if nested in another table
 if ( GetUpper()->GetUpper()->IsCellFrame() )
@@ -4617,7 +4617,7 @@ bool SwRowFrame::ShouldRowKeepWithNext() const
 const SwFrame* pText = pCell->Lower();
 
 return pText && pText->IsTextFrame() &&
-   static_cast(pText)->GetTextNodeForParaProps()->GetSwAttrSet().GetKeep().GetValue();
+   static_cast(pText)->GetTextNodeForParaProps()->GetSwAttrSet().GetKeep(bCheckParents).GetValue();
 }
 
 SwCellFrame::SwCellFrame(const SwTableBox , SwFrame* pSib, bool 
bInsertContent)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - vcl/unx

2018-07-18 Thread Libreoffice Gerrit user
 vcl/unx/gtk3/gtk3gtkinst.cxx |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 13f451715619aab016bb1d1a02b3c6577178e295
Author: Caolán McNamara 
AuthorDate: Wed Jul 18 09:10:30 2018 +0100
Commit: Eike Rathke 
CommitDate: Wed Jul 18 21:08:26 2018 +0200

only ellipize menubutton label when requesting narrower size

Change-Id: I32f4856756910ec1db8d37854b6e57dbec5aae76
Reviewed-on: https://gerrit.libreoffice.org/57618
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 5c6fc9901d3e..26bc4dbb0e3a 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -3054,7 +3054,6 @@ public:
 m_pBox = GTK_BOX(gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0));
 
 m_pLabel = GTK_LABEL(gtk_label_new_with_mnemonic(sLabel.getStr()));
-gtk_label_set_ellipsize(m_pLabel, PANGO_ELLIPSIZE_MIDDLE);
 gtk_label_set_mnemonic_widget(m_pLabel, GTK_WIDGET(m_pMenuButton));
 gtk_box_pack_start(m_pBox, GTK_WIDGET(m_pLabel), false, false, 0);
 
@@ -3063,6 +3062,13 @@ public:
 gtk_widget_show_all(GTK_WIDGET(m_pBox));
 }
 
+virtual void set_size_request(int nWidth, int nHeight) override
+{
+// tweak the label to get a narrower size to stick
+gtk_label_set_ellipsize(m_pLabel, PANGO_ELLIPSIZE_MIDDLE);
+gtk_widget_set_size_request(m_pWidget, nWidth, nHeight);
+}
+
 virtual void set_label(const OUString& rText) override
 {
 ::set_label(m_pLabel, rText);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   >