New Windows Tinderbox Needed

2018-07-27 Thread Luke Benes
This week, I needed a daily Windows build to verify a bugfix, but found that 
none of the win tinderboxes are operational. After reaching out to the 
owners, I learned that the only tinderbox that has been working for the past 
year, @42, “is really aging.”

Having a reliable Windows tinderbox is invaluable to QA. Over the years, I’ve 
used

https://dev-builds.libreoffice.org/daily/

builds to confirm hundreds bugs and verify fixes. And, I’m sure I’m not alone. 
Does TDF have hardware that could be repurposed for this?




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


[Libreoffice-bugs] [Bug 107461] Does not support "file://" scheme with actual hostname

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

Justin L  changed:

   What|Removed |Added

 CC||mentoring@documentfoundatio
   ||n.org
 OS|Linux (All) |All
   Keywords||difficultyInteresting,
   ||easyHack, skillCpp

-- 
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/qa writerfilter/source

2018-07-27 Thread Libreoffice Gerrit user
 sw/qa/extras/ooxmlexport/data/noDefault.docx  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx|   28 ++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |7 +
 3 files changed, 35 insertions(+)

New commits:
commit a56e2bba046b569e8923a438996bc6185037d3ed
Author: Justin Luth 
AuthorDate: Fri Jul 27 07:22:02 2018 +0300
Commit: Justin Luth 
CommitDate: Sat Jul 28 06:16:38 2018 +0200

writerfilter: unit test that no w:default still uses "Normal"

Note: the unit test does NOT test the changes in
GetCurrentParaStyleName. That is just a logical change and this
unit test asserts the validity of the intention.

Word 2013 was used to confirm that Normal is used for styleless
paragraphs even if it is not marked as "default".

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

diff --git a/sw/qa/extras/ooxmlexport/data/noDefault.docx 
b/sw/qa/extras/ooxmlexport/data/noDefault.docx
new file mode 100644
index ..56bc2669110a
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/noDefault.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index 5f8b5bb2a3b6..bb5d91500cb3 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -479,6 +479,34 @@ DECLARE_OOXMLEXPORT_TEST(testOpenDocumentAsReadOnly, 
"open-as-read-only.docx")
 CPPUNIT_ASSERT(pTextDoc->GetDocShell()->IsSecurityOptOpenReadOnly());
 }
 
+DECLARE_OOXMLEXPORT_TEST(testNoDefault, "noDefault.docx")
+{
+uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTextTablesSupplier->getTextTables(), uno::UNO_QUERY);
+uno::Reference xTable(xTables->getByIndex(0), 
uno::UNO_QUERY);
+uno::Reference xCell(xTable->getCellByName("A1"), 
uno::UNO_QUERY);
+uno::Reference 
xParaEnumAccess(xCell->getText(), uno::UNO_QUERY);
+uno::Reference xParaEnum = 
xParaEnumAccess->createEnumeration();
+uno::Reference xPara(xParaEnum->nextElement(), 
uno::UNO_QUERY);
+
+// Row 1: color directly applied to the paragraph, overrides table and 
style colors
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0x2E74B5), 
getProperty(getRun(xPara,1), "CharColor"));
+
+// Row2: (still part of firstRow table-style) ought to use the Normal 
style color, not the table-style color(5B9BD5)
+//xCell.set(xTable->getCellByName("A2"), uno::UNO_QUERY);
+//xParaEnumAccess.set(xCell->getText(), uno::UNO_QUERY);
+//xParaEnum = xParaEnumAccess->createEnumeration();
+//xPara.set(xParaEnum->nextElement(), uno::UNO_QUERY);
+//CPPUNIT_ASSERT_EQUAL(sal_Int32(COL_LIGHTMAGENTA), 
getProperty(getRun(xPara,1), "CharColor"));
+
+// Row 3+: Normal style still applied, even if nothing is specified with 
w:default="1"
+xCell.set(xTable->getCellByName("A3"), uno::UNO_QUERY);
+xParaEnumAccess.set(xCell->getText(), uno::UNO_QUERY);
+xParaEnum = xParaEnumAccess->createEnumeration();
+xPara.set(xParaEnum->nextElement(), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(COL_LIGHTMAGENTA), 
getProperty(getRun(xPara,1), "CharColor"));
+}
+
 DECLARE_OOXMLEXPORT_TEST(testMarginsFromStyle, "margins_from_style.docx")
 {
 // tdf#118521 paragraphs with direct formatting of top or bottom margins 
have
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 6bfb6d7b65b6..469d8d0ce1fd 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -662,6 +662,13 @@ const OUString DomainMapper_Impl::GetCurrentParaStyleName()
 if ( pParaContext && pParaContext->isSet(PROP_PARA_STYLE_NAME) )
 pParaContext->getProperty(PROP_PARA_STYLE_NAME)->second >>= sName;
 
+// In rare situations the name might still be blank, so use the default 
style,
+// despite documentation that states, "If this attribute is not specified 
for any style,
+// then no properties shall be applied to objects of the specified type."
+// Word, however, assigns "Normal" style even in these situations.
+if ( !m_bInStyleSheetImport && sName.isEmpty() )
+sName = GetDefaultParaStyleName();
+
 return sName;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 47615] VIEWING: Documents looks different between Linux and Windows using the same LibreOffice version

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

--- 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 97687] VIEWING: text cursor stop blinking after you double click a bookmark in "navigation" window and close this window.

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

--- 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 77761] EDITING: Calc locks up when copying a range of cells to entire column.

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

--- 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 91490] Calc - Export-as-PDF during Page Preview - causes all pages to be printed

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

--- Comment #15 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 109388] UI: No mouseover effect for the different palettes in the Area tab

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

--- 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 89501] Finalized configuration items set in Windows Registry can be overridden by user and can cause crashes

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

--- 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 91436] Link should be removed when changing image without linking

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

--- 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 109411] FILEOPEN: DOCX: moon signs and text in table are misplaced

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

--- 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 86714] LibO freezes with 100% of cpu usage. Kill required.

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

--- Comment #18 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 94656] Inserted images have 0 width in saved .ods file

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

--- Comment #14 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 96534] LibreOffice Calc stops displaying file on row 28 (attached file)

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

--- 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 73092] EDITING: Repeat custom animation path does not remove (paint over with background) end position.

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

--- 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 89985] Text of this svg image is shifted in slideshow

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

--- Comment #11 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 79324] Attributes not rendered correctly

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

--- 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 102356] Page Style tab unusable when there's a very long string in dropdown list

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

--- 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 93886] Mailmerge: Bookmarks disappear from created individual files

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

--- Comment #14 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 72559] Pie chart from non contiguous blank

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

--- Comment #16 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 97993] EDITING: images and shapes that are successively Copy/Pasted or Pasted should to be shifted

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

Luke  changed:

   What|Removed |Added

Summary|EDITING:  images and shapes |EDITING:  images and shapes
   |that are successively   |that are successively
   |Copy/Pasted should to be|Copy/Pasted or Pasted
   |shifted |should to be shifted

-- 
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 97993] EDITING: images and shapes that are successively Copy/Pasted should to be shifted

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

Luke  changed:

   What|Removed |Added

Summary|EDITING: Copy and Paste for |EDITING:  images and shapes
   |Images / Shapes Need to be  |that are successively
   |Shifted |Copy/Pasted should to be
   ||shifted

-- 
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 118490] Style of edges in cell/paragraph formatting don’t show

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

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 107966] OPENGL: Format Cells/Borders/Line Styles - not drawn

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

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 107966] OPENGL: Format Cells/Borders/Line Styles - not drawn

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

Aron Budea  changed:

   What|Removed |Added

Version|5.3.2.2 release |5.3.0.3 release
 CC||qui...@gmail.com
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #9 from Aron Budea  ---
Bibisected to the following commit using repo bibisect-win32-5.3 on an Intel
HD4000 IGP. Adding Cc: to Tomaz Vajngerl.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=2003076c4318511a3d621558d3b44b4e8e6c6529
author  Tomaž Vajngerl  2016-05-29
15:36:39 +0900
committer   Tomaž Vajngerl  2016-06-08
11:39:22 +0900

opengl: batch draw polypolygons

-- 
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 117892] Area tab: Bitmap preview is not shown

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

--- Comment #4 from Jim Raykowski  ---
This blue box seems to be the correct behavior since in this case there hasn't
yet been a bitmap assigned to the area. But it should show the selection from
the Bitmap listbox which it does not unless there is already a bitmap for the
area or by following these steps:

1) Menu > Format > Paragraph
Paragraph dialog opens
2) Select Area tab
3) Select Bitmap button
Area Bitmap tabpage shows blue bitmap preview
4) Select any bitmap from the Bitmap listbox
Preview still shows blue
5) Select a different tab (Indents & Spacing, Alignment, Text Flow ...)
6) Reselect the Area tab
Preview still shows blue
7) Select None, Color, Gradiant, Pattern, or Hatch button
8) Reselect Bitmap button

Results:
Preview displays bitmap selected in step 4 and subsequent bitmaps selected from
the Bitmap listbox.

Analysis:
A warning message is displayed to the console when there is no initial bitmap
warn:legacy.osl:24288:24288:svx/source/sdr/primitive2d/sdrattributecreator.cxx:639:
No fill graphic in SfxItemSet (!)

A patch for this is presented here:
https://gerrit.libreoffice.org/#/c/58206/

The same can be done for the Area Pattern tab page which suffers the same.

-- 
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 118975] New: LO calc. when opening sheets value highlighting is always enabled.

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

Bug ID: 118975
   Summary: LO calc. when opening sheets value highlighting is
always enabled.
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sederb1...@gmail.com

Description:
Whenever i open a sheet value highlighting is enabled. I have checked the
tools:options settings and it is unchecked.
Doesn't matter what I do it always is on when a sheet is opened.
I switch it off and all is normal and save and close the sheet only to find it
on again on re-opening.
Sheets are savesd in XLXs format for compatibility.

Steps to Reproduce:
1.open spreadsheet (any will do)
2.value highlighting is enabled
3.switch off highlighting (Ctrl-F8)
4. close sheet
5. re-open and is ecivent again.

Actual Results:
as above.
Same happenes with a new spreadsheet value highlighting is enabled by default
even though switched off in options.

Expected Results:
After switching off value highlighting for a sheet and also ensuring in
tools:options:calc:view that it is unchecked value highlighting should not
occur unless specifically switched on either in the sheet or in the options.


Reproducible: Always


User Profile Reset: No



Additional Info:
as above

-- 
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 118907] Password creation dialogs do not warn if CapsLock is on

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

Trevor Parsons  changed:

   What|Removed |Added

  Component|Calc|LibreOffice
Summary|Protect Sheet dialog does   |Password creation dialogs
   |not warn if CapsLock is on  |do not warn if CapsLock is
   |when creating password  |on

--- Comment #3 from Trevor Parsons  ---
Thanks JBF. I agree with your suggestion that this enhancement request should
be extended to all situations where a password is requested.

I am editing the summary of this bug accordingly and changing the component
option from Calc to generic LibreOffice.

-- 
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 117922] libreoffice fails when launched with no_new_privs, due to AppArmor

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

--- Comment #3 from Robert O'Callahan  ---
I have not. I don't want to subscribe to yet another mailing list just to
report a 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-commits] core.git: include/vcl offapi/com uitest/demo_ui vcl/source

2018-07-27 Thread Libreoffice Gerrit user
 include/vcl/uitest/uitest.hxx |8 
 offapi/com/sun/star/ui/test/XUITest.idl   |4 
 uitest/demo_ui/command_with_parameters.py |   24 
 vcl/source/uitest/uitest.cxx  |   19 +++
 vcl/source/uitest/uno/uitest_uno.cxx  |   10 ++
 5 files changed, 65 insertions(+)

New commits:
commit f458dabcaa18d66b054d00f5d9a389c06240f0eb
Author: Saurav Chirania 
AuthorDate: Mon Jul 23 14:32:24 2018 +0530
Commit: Markus Mohrhard 
CommitDate: Sat Jul 28 01:10:23 2018 +0200

uitest: support parameters when sending UNO commands

This patch introduces a new function to send parameters
with UNO commands in UI Tests and adds a test which
uses the function to change the color of text in writer.

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

diff --git a/include/vcl/uitest/uitest.hxx b/include/vcl/uitest/uitest.hxx
index 4031402e8fc0..1759ea7656b0 100644
--- a/include/vcl/uitest/uitest.hxx
+++ b/include/vcl/uitest/uitest.hxx
@@ -12,6 +12,11 @@
 #include 
 
 #include 
+#include 
+
+namespace com { namespace sun { namespace star {
+namespace beans { struct PropertyValue; }
+} } }
 
 class UIObject;
 
@@ -21,6 +26,9 @@ public:
 
 static bool executeCommand(const OUString& rCommand);
 
+static bool executeCommandWithParameters(const OUString& rCommand,
+const css::uno::Sequence< css::beans::PropertyValue >& rArgs);
+
 static bool executeDialog(const OUString& rCommand);
 
 static std::unique_ptr getFocusTopWindow();
diff --git a/offapi/com/sun/star/ui/test/XUITest.idl 
b/offapi/com/sun/star/ui/test/XUITest.idl
index f4926a19bd09..b8dba4f9a901 100644
--- a/offapi/com/sun/star/ui/test/XUITest.idl
+++ b/offapi/com/sun/star/ui/test/XUITest.idl
@@ -11,6 +11,7 @@
 #define __com_sun_star_ui_test_XUITest_idl__
 
 #include 
+#include 
 
 module com { module sun { module star { module ui { module test {
 
@@ -18,6 +19,9 @@ interface XUITest
 {
 boolean executeCommand([in] string command);
 
+boolean executeCommandWithParameters([in] string command,
+[in] com::sun::star::beans::PropertyValues propValues);
+
 boolean executeDialog([in] string command);
 
 XUIObject getTopFocusWindow();
diff --git a/uitest/demo_ui/command_with_parameters.py 
b/uitest/demo_ui/command_with_parameters.py
new file mode 100644
index ..3fd8c85e3ca7
--- /dev/null
+++ b/uitest/demo_ui/command_with_parameters.py
@@ -0,0 +1,24 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import type_text
+from libreoffice.uno.propertyvalue import mkPropertyValues
+
+class CommandWithParametersTest(UITestCase):
+
+def test_text_color_change(self):
+
+self.ui_test.create_doc_in_start_center("writer")
+
+self.xUITest.executeCommandWithParameters(".uno:Color",
+mkPropertyValues({"Color": 16776960}))
+xWriterEdit = self.xUITest.getTopFocusWindow().getChild("writer_edit")
+type_text(xWriterEdit, "Libreoffice")
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file
diff --git a/vcl/source/uitest/uitest.cxx b/vcl/source/uitest/uitest.cxx
index 658b8cf75a82..bf1f69bfe54b 100644
--- a/vcl/source/uitest/uitest.cxx
+++ b/vcl/source/uitest/uitest.cxx
@@ -25,6 +25,25 @@ bool UITest::executeCommand(const OUString& rCommand)
   css::beans::PropertyState_DIRECT_VALUE}});
 }
 
+bool UITest::executeCommandWithParameters(const OUString& rCommand,
+const css::uno::Sequence< css::beans::PropertyValue >& rArgs)
+{
+css::uno::Sequence< css::beans::PropertyValue > lNewArgs =
+{{"SynchronMode", -1, css::uno::Any(true),
+  css::beans::PropertyState_DIRECT_VALUE}};
+
+sal_uInt32 nArgs = rArgs.getLength();
+if ( nArgs > 0 )
+{
+sal_uInt32 nIndex( lNewArgs.getLength() );
+lNewArgs.realloc( lNewArgs.getLength()+rArgs.getLength() );
+
+for ( sal_uInt32 i = 0; i < nArgs; i++ )
+lNewArgs[nIndex++] = rArgs[i];
+}
+return comphelper::dispatchCommand(rCommand,lNewArgs);
+}
+
 bool UITest::executeDialog(const OUString& rCommand)
 {
 return comphelper::dispatchCommand(
diff --git a/vcl/source/uitest/uno/uitest_uno.cxx 
b/vcl/source/uitest/uno/uitest_uno.cxx
index a625e670667e..69d0c717a9bb 100644
--- a/vcl/source/uitest/uno/uitest_uno.cxx
+++ b/vcl/source/uitest/uno/uitest_uno.cxx
@@ -40,6 +40,9 @@ public:
 
 sal_Bool SAL_CALL executeCommand(const OUString& rCommand) override;
 
+sal_Bool SAL_CALL 

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

2018-07-27 Thread Libreoffice Gerrit user
 sc/qa/unit/datatransformation_test.cxx   |   19 
 sc/source/ui/dataprovider/datatransformation.cxx |   49 +++
 sc/source/ui/inc/datatransformation.hxx  |   16 +++
 3 files changed, 83 insertions(+), 1 deletion(-)

New commits:
commit 0c350906b1d6dc27383619dd3338fe28768f1c2e
Author: Vikas 
AuthorDate: Tue Jul 24 21:36:07 2018 +0530
Commit: Markus Mohrhard 
CommitDate: Sat Jul 28 01:04:24 2018 +0200

Added ReplaceNullTransformation

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

diff --git a/sc/qa/unit/datatransformation_test.cxx 
b/sc/qa/unit/datatransformation_test.cxx
index 00b6b69d4946..06d82181657c 100644
--- a/sc/qa/unit/datatransformation_test.cxx
+++ b/sc/qa/unit/datatransformation_test.cxx
@@ -51,6 +51,7 @@ public:
 void testNumberEven();
 void testNumberOdd();
 void testNumberSign();
+void testReplaceNull();
 
 CPPUNIT_TEST_SUITE(ScDataTransformationTest);
 CPPUNIT_TEST(testColumnRemove);
@@ -76,6 +77,7 @@ public:
 CPPUNIT_TEST(testNumberEven);
 CPPUNIT_TEST(testNumberOdd);
 CPPUNIT_TEST(testNumberSign);
+CPPUNIT_TEST(testReplaceNull);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -486,6 +488,23 @@ void ScDataTransformationTest::testNumberSign()
 CPPUNIT_ASSERT_EQUAL(-1.0, m_pDoc->GetValue(2, 3, 0));
 }
 
+void ScDataTransformationTest::testReplaceNull()
+{
+m_pDoc->SetString(2, 0, 0, "Berlin");
+m_pDoc->SetString(2, 1, 0, "");
+m_pDoc->SetString(2, 2, 0, "");
+m_pDoc->SetString(2, 3, 0, "Peking");
+
+sc::ReplaceNullTransformation aTransform({2}, "Empty");
+aTransform.Transform(*m_pDoc);
+
+CPPUNIT_ASSERT_EQUAL(OUString("Berlin"), m_pDoc->GetString(2, 0, 0));
+CPPUNIT_ASSERT_EQUAL(OUString("Empty"), m_pDoc->GetString(2, 1, 0));
+CPPUNIT_ASSERT_EQUAL(OUString("Empty"), m_pDoc->GetString(2, 2, 0));
+CPPUNIT_ASSERT_EQUAL(OUString("Peking"), m_pDoc->GetString(2, 3, 0));
+
+}
+
 ScDataTransformationTest::ScDataTransformationTest() :
 ScBootstrapFixture( "sc/qa/unit/data/dataprovider" ),
 m_pDoc(nullptr)
diff --git a/sc/source/ui/dataprovider/datatransformation.cxx 
b/sc/source/ui/dataprovider/datatransformation.cxx
index 53d6745cb689..9efe3ed447e9 100644
--- a/sc/source/ui/dataprovider/datatransformation.cxx
+++ b/sc/source/ui/dataprovider/datatransformation.cxx
@@ -648,6 +648,55 @@ std::set NumberTransformation::getColumn() const
 {
 return mnCol;
 }
+
+ReplaceNullTransformation::ReplaceNullTransformation(const std::set 
nCol, const OUString sReplaceWith):
+mnCol(nCol),
+msReplaceWith(sReplaceWith)
+{
+}
+
+void ReplaceNullTransformation::Transform(ScDocument& rDoc) const
+{
+if (mnCol.empty())
+return;
+
+SCROW nEndRow = 0;
+for(auto& rCol : mnCol)
+{
+nEndRow = getLastRow(rDoc, rCol);
+}
+
+for(auto& rCol : mnCol)
+{
+for (SCROW nRow = 0; nRow < nEndRow; ++nRow)
+{
+CellType eType;
+rDoc.GetCellType(rCol, nRow, 0, eType);
+if (eType == CELLTYPE_NONE)
+{
+   // OUString aStr = rDoc.GetString(rCol, nRow, 0);
+   // if (aStr == "" || aStr.isEmpty())
+rDoc.SetString(rCol, nRow, 0, msReplaceWith);
+}
+}
+}
+
+}
+
+std::set ReplaceNullTransformation::getColumn() const
+{
+return mnCol;
+}
+
+OUString ReplaceNullTransformation::getReplaceString() const
+{
+return msReplaceWith;
+}
+
+TransformationType ReplaceNullTransformation::getTransformationType() const
+{
+ return TransformationType::REMOVE_NULL_TRANSFORMATION;
+}
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/inc/datatransformation.hxx 
b/sc/source/ui/inc/datatransformation.hxx
index 0096e0c5a623..48651699a4ef 100644
--- a/sc/source/ui/inc/datatransformation.hxx
+++ b/sc/source/ui/inc/datatransformation.hxx
@@ -29,7 +29,8 @@ enum class TransformationType
 SORT_TRANSFORMATION,
 TEXT_TRANSFORMATION,
 AGGREGATE_FUNCTION,
-NUMBER_TRANSFORMATION
+NUMBER_TRANSFORMATION,
+REMOVE_NULL_TRANSFORMATION
 };
 
 enum class TEXT_TRANSFORM_TYPE { TO_LOWER, TO_UPPER, CAPITALIZE, TRIM };
@@ -148,6 +149,19 @@ class SC_DLLPUBLIC NumberTransformation : public 
DataTransformation
 std::set getColumn() const;
 };
 
+class SC_DLLPUBLIC ReplaceNullTransformation : public DataTransformation
+{
+std::set mnCol;
+OUString msReplaceWith;
+
+public:
+ReplaceNullTransformation(const std::set nCol, const OUString 
sReplaceWith);
+virtual void Transform(ScDocument& rDoc) const override;
+virtual TransformationType getTransformationType() const override;
+std::set getColumn() const;
+OUString getReplaceString() const;
+};
+
 }
 
 #endif
___
Libreoffice-commits mailing list

[Libreoffice-bugs] [Bug 107943] [META] Save bugs and enhancements

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107943
Bug 107943 depends on bug 41063, which changed state.

Bug 41063 Summary: Saving/Autosaving (Save/Autosave) while in table causes view 
to jump to cursor position
https://bugs.documentfoundation.org/show_bug.cgi?id=41063

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 106773] [META] Writer document canvas view jump issues

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106773
Bug 106773 depends on bug 41063, which changed state.

Bug 41063 Summary: Saving/Autosaving (Save/Autosave) while in table causes view 
to jump to cursor position
https://bugs.documentfoundation.org/show_bug.cgi?id=41063

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 41063] Saving/Autosaving (Save/Autosave) while in table causes view to jump to cursor position

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

Mike Kaganski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs and enhancements

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103100
Bug 103100 depends on bug 41063, which changed state.

Bug 41063 Summary: Saving/Autosaving (Save/Autosave) while in table causes view 
to jump to cursor position
https://bugs.documentfoundation.org/show_bug.cgi?id=41063

   What|Removed |Added

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

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


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

2018-07-27 Thread Libreoffice Gerrit user
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit e06ec84a80ee7e8f493f0c032f1586cbcd2be533
Author: Stephan Bergmann 
AuthorDate: Fri Jul 27 13:00:40 2018 +0200
Commit: Stephan Bergmann 
CommitDate: Sat Jul 28 00:20:04 2018 +0200

Mark workaround for compiler bug as such

Change-Id: If024b41e09765f921080b208f166dd2245bc8765
Reviewed-on: https://gerrit.libreoffice.org/58182
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 
b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
index 72679c5a0e30..04484f007413 100644
--- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
@@ -22,6 +22,8 @@ gb_CPUDEFS := -D_X86_=1
 
 include $(GBUILDDIR)/platform/com_MSC_defs.mk
 
+# Work around MSVC 2017 compiler bug (see comments at 

+# "Fix Win32 warning C4702: unreachable code":
 gb_CXXFLAGS += \
 $(if $(filter 0,$(gb_DEBUGLEVEL)),-wd4702) \
 
___
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-27 Thread Libreoffice Gerrit user
 sw/source/uibase/inc/colex.hxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 983664aea83914aa273c07e1e7dd3ddefec86e11
Author: Stephan Bergmann 
AuthorDate: Fri Jul 27 12:57:49 2018 +0200
Commit: Stephan Bergmann 
CommitDate: Sat Jul 28 00:19:12 2018 +0200

Missing include (Windows --disable-pch)

Change-Id: I9e8e5da968c777519a0c3d2b1de6de40b0730900
Reviewed-on: https://gerrit.libreoffice.org/58181
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sw/source/uibase/inc/colex.hxx b/sw/source/uibase/inc/colex.hxx
index 38f534a1e573..b6db861c1829 100644
--- a/sw/source/uibase/inc/colex.hxx
+++ b/sw/source/uibase/inc/colex.hxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -57,8 +58,6 @@ public:
 void UpdateExample( const SfxItemSet& rSet );
 };
 
-class SwTextGridItem;
-
 class SW_DLLPUBLIC SwPageGridExample : public PageExample
 {
 std::unique_ptr pGridItem;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: compilerplugins/clang

2018-07-27 Thread Libreoffice Gerrit user
 compilerplugins/clang/unreffun.cxx |   21 +
 1 file changed, 21 insertions(+)

New commits:
commit 446f1720577db659525e773211e2a1a3a19bb460
Author: Stephan Bergmann 
AuthorDate: Fri Jul 27 12:30:30 2018 +0200
Commit: Stephan Bergmann 
CommitDate: Sat Jul 28 00:18:41 2018 +0200

Prevent loplugin:unreffun on explicitly defaulted special members

...as started to appear (with sufficiently recent Clang versions only, it
appears) after c5fcb476ac8eab18152a7f6d0487daa56231fcf8 "toolkit: avoid
-Werror=deprecated-copy (GCC trunk towards GCC 9)":

> [CXX] toolkit/source/controls/spinningprogress.cxx
> toolkit/source/controls/spinningprogress.cxx:38:5: error: Unreferenced 
externally invisible function definition [loplugin:unreffun]
> SpinningProgressControlModel(SpinningProgressControlModel &&) = 
default;
> 
^~~

Change-Id: Id78cd2d801e9760dde9e0a594e2b62ec20840204
Reviewed-on: https://gerrit.libreoffice.org/58180
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/compilerplugins/clang/unreffun.cxx 
b/compilerplugins/clang/unreffun.cxx
index bfd48b328300..629e369dadc7 100644
--- a/compilerplugins/clang/unreffun.cxx
+++ b/compilerplugins/clang/unreffun.cxx
@@ -51,6 +51,19 @@ Decl const * getPreviousNonFriendDecl(Decl const * decl) {
 }
 }
 
+bool isSpecialMemberFunction(FunctionDecl const * decl) {
+if (auto const ctor = dyn_cast(decl)) {
+return ctor->isDefaultConstructor() || ctor->isCopyOrMoveConstructor();
+}
+if (isa(decl)) {
+return true;
+}
+if (auto const meth = dyn_cast(decl)) {
+return meth->isCopyAssignmentOperator() || 
meth->isMoveAssignmentOperator();
+}
+return false;
+}
+
 class UnrefFun: public RecursiveASTVisitor, public loplugin::Plugin {
 public:
 explicit UnrefFun(loplugin::InstantiationData const & data): Plugin(data) 
{}
@@ -141,6 +154,14 @@ bool UnrefFun::VisitFunctionDecl(FunctionDecl const * 
decl) {
 {
 return true;
 }
+if (canon->isExplicitlyDefaulted() && isSpecialMemberFunction(canon)) {
+// If a special member function is explicitly defaulted on the first 
declaration, assume
+// that its presence is always due to some interface design 
consideration, not to explicitly
+// request a definition that might be worth to flag as unused (and 
C++20 may extend
+// defaultability beyond special member functions to comparison 
operators, therefore
+// explicitly check here for special member functions only):
+return true;
+}
 LinkageInfo info(canon->getLinkageAndVisibility());
 if (info.getLinkage() == ExternalLinkage
 && hasCLanguageLinkageType(canon) && canon->isDefined()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 65463] Writer: Index entry in ToC should be clickable

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

--- Comment #20 from iostrym  ---
Hello, I met the bug in 5.2 version and bug  is still present in 5.4.7 version
on windows.

-- 
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: include/editeng include/svx sw/inc sw/source

2018-07-27 Thread Libreoffice Gerrit user
 include/editeng/colritem.hxx|1 +
 include/editeng/contouritem.hxx |1 +
 include/editeng/crossedoutitem.hxx  |1 +
 include/editeng/fhgtitem.hxx|1 +
 include/editeng/fontitem.hxx|1 +
 include/editeng/formatbreakitem.hxx |1 +
 include/editeng/frmdiritem.hxx  |2 ++
 include/editeng/justifyitem.hxx |2 ++
 include/editeng/keepitem.hxx|1 +
 include/editeng/langitem.hxx|1 +
 include/editeng/lrspitem.hxx|1 +
 include/editeng/opaqitem.hxx|1 +
 include/editeng/postitem.hxx|1 +
 include/editeng/protitem.hxx|1 +
 include/editeng/shaditem.hxx|1 +
 include/editeng/shdditem.hxx|2 +-
 include/editeng/sizeitem.hxx|1 +
 include/editeng/tstpitem.hxx|1 +
 include/editeng/udlnitem.hxx|1 +
 include/editeng/ulspitem.hxx|1 +
 include/editeng/wghtitem.hxx|1 +
 include/svx/algitem.hxx |2 ++
 sw/inc/fmtftntx.hxx |2 ++
 sw/inc/fmtornt.hxx  |2 ++
 sw/inc/paratr.hxx   |1 +
 sw/source/uibase/inc/envimg.hxx |1 +
 sw/source/uibase/inc/labimg.hxx |1 +
 27 files changed, 32 insertions(+), 1 deletion(-)

New commits:
commit dea2c65032eafb0398ffd10bcd3485499be17eb4
Author: Stephan Bergmann 
AuthorDate: Fri Jul 27 10:26:52 2018 +0200
Commit: Stephan Bergmann 
CommitDate: Sat Jul 28 00:12:53 2018 +0200

-Werror=deprecated-copy (GCC trunk towards GCC 9)

...in SfxPoolItem-derived classes that have a user-provided copy assignment 
op
(to override the explicitly deleted one of SfxPoolItem, cf.
727878a7d8ae25342db75173cc314fa330ccc077 "Remove unused copy assignment ops 
of
SfxPoolItem-derived classes"), so GCC 9 would warn about the 
implicitly-defined
copy ctor.  Mark all those with "SfxPoolItem copy function dichotomy" 
comments
so they can be found again should the odd design of SfxPoolItem ever be 
changed.

Change-Id: If206716747c42205ae4822a3f54c9de037c75286
Reviewed-on: https://gerrit.libreoffice.org/58172
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/include/editeng/colritem.hxx b/include/editeng/colritem.hxx
index d58ee5866817..49415c9a7b82 100644
--- a/include/editeng/colritem.hxx
+++ b/include/editeng/colritem.hxx
@@ -61,6 +61,7 @@ public:
 SetValue(rColor.GetValue());
 return *this;
 }
+SvxColorItem(SvxColorItem const &) = default; // SfxPoolItem copy function 
dichotomy
 
 const Color& GetValue() const
 {
diff --git a/include/editeng/contouritem.hxx b/include/editeng/contouritem.hxx
index 34602f575ede..d0514da0d174 100644
--- a/include/editeng/contouritem.hxx
+++ b/include/editeng/contouritem.hxx
@@ -51,6 +51,7 @@ public:
 SetValue(rCont.GetValue());
 return *this;
 }
+SvxContourItem(SvxContourItem const &) = default; // SfxPoolItem copy 
function dichotomy
 };
 
 #endif
diff --git a/include/editeng/crossedoutitem.hxx 
b/include/editeng/crossedoutitem.hxx
index 536d1fd44f03..834f4840fb15 100644
--- a/include/editeng/crossedoutitem.hxx
+++ b/include/editeng/crossedoutitem.hxx
@@ -64,6 +64,7 @@ public:
 SetValue( rCross.GetValue() );
 return *this;
 }
+SvxCrossedOutItem(SvxCrossedOutItem const &) = default; // SfxPoolItem 
copy function dichotomy
 
 // enum cast
 FontStrikeout   GetStrikeout() const
diff --git a/include/editeng/fhgtitem.hxx b/include/editeng/fhgtitem.hxx
index 799c17cc6da3..de6079c221f8 100644
--- a/include/editeng/fhgtitem.hxx
+++ b/include/editeng/fhgtitem.hxx
@@ -72,6 +72,7 @@ public:
 ePropUnit = rSize.ePropUnit;
 return *this;
 }
+SvxFontHeightItem(SvxFontHeightItem const &) = default; // SfxPoolItem 
copy function dichotomy
 
 void SetHeight( sal_uInt32 nNewHeight, const sal_uInt16 nNewProp = 100,
  MapUnit eUnit = MapUnit::MapRelative );
diff --git a/include/editeng/fontitem.hxx b/include/editeng/fontitem.hxx
index ddb974acbea5..224ebf682002 100644
--- a/include/editeng/fontitem.hxx
+++ b/include/editeng/fontitem.hxx
@@ -107,6 +107,7 @@ public:
 }
 
 SvxFontItem& operator=(const SvxFontItem& rFont);
+SvxFontItem(SvxFontItem const &) = default; // SfxPoolItem copy function 
dichotomy
 
 void dumpAsXml(struct _xmlTextWriter* pWriter) const override;
 };
diff --git a/include/editeng/formatbreakitem.hxx 
b/include/editeng/formatbreakitem.hxx
index 2a1292e4e4af..f26f516d72b9 100644
--- a/include/editeng/formatbreakitem.hxx
+++ b/include/editeng/formatbreakitem.hxx
@@ -41,6 +41,7 @@ public:
 inline SvxFormatBreakItem( const SvxBreak eBrk /*= SvxBreak::NONE*/,
 const sal_uInt16 nWhich );
 inline SvxFormatBreakItem& operator=( const SvxFormatBreakItem& rCpy );
+SvxFormatBreakItem(SvxFormatBreakItem const &) = 

[Libreoffice-bugs] [Bug 117781] Hang when copying a sheet to a new document

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

--- Comment #5 from Mike Kaganski  ---
(In reply to Xisco Faulí from comment #4)

:-) the https://gerrit.libreoffice.org/#/c/57725/ is there for some time
already, waiting for review.

-- 
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: include/editeng

2018-07-27 Thread Libreoffice Gerrit user
 include/editeng/numitem.hxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3280281b8f766490688a6e27130418981ee31b05
Author: Stephan Bergmann 
AuthorDate: Fri Jul 27 09:50:14 2018 +0200
Commit: Stephan Bergmann 
CommitDate: Sat Jul 28 00:12:11 2018 +0200

-Werror=deprecated-copy (GCC trunk towards GCC 9)

(the SvxNumberType ctors/dtor update static nRefCount, so the copy ctor 
cannot
be defaulted)

Change-Id: Ibccc8377bf0f226d092cd53917b396fcd19cb4e0
Reviewed-on: https://gerrit.libreoffice.org/58167
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx
index 520e12cfbdc5..9c434419058e 100644
--- a/include/editeng/numitem.hxx
+++ b/include/editeng/numitem.hxx
@@ -65,6 +65,7 @@ public:
 explicit SvxNumberType(SvxNumType nType = SVX_NUM_ARABIC);
 SvxNumberType(const SvxNumberType& rType);
 ~SvxNumberType();
+SvxNumberType & operator =(SvxNumberType const &) = default;
 
 OUStringGetNumStr( sal_Int32 nNo ) const;
 OUStringGetNumStr( sal_Int32 nNo, const css::lang::Locale& rLocale 
) const;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118941] Find not opening in Edit Menu or when using keyboard shortcut (command+F)

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

--- Comment #5 from rjb  ---
1. Restarted LibreOffice in "Safe Mode" and upon opening "Calc" and pressing
"Command+F" the Find search box shows on the bottom left status bar.

2. Restarting in regular mode, the "Find" command no longer works.

3. Restarted LibreOffice in "Safe Mode" again and this time chose "Disable
Hardware Acceleration". The "Find" command no longer works.

4. Restarted LibreOffice in "Safe Mode" again and this time chose "Reset User
Profile". Upon restart the "Find" command now works.

I would like to know what in the user profile was causing this odd behavior.

-- 
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 118970] Writer > Format > Page... > Header/Footer > 'Same content on first page' setting not saving/working as expected

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

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #1 from Regina Henschel  ---
This is a new feature and will be included in ODF 1.3. The current draft of ODF
1.3 has nothing, that would prevent to have a special first header but a common
footer.

There is no such linking for the "same right/left page" setting. Therefore I
consider it as bug to have it linked for "first page".

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


[Libreoffice-bugs] [Bug 118869] Installer claims of MS KB 2919355 for Win 8.1

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

--- Comment #8 from Mike Kaganski  ---
(In reply to Markus Grob from comment #6)
> I opened a DOS-Window *as admin*

Sigh :-) the problem was "as admin". I don't know if the problem would reoccur
if you reinstall now, but if possible, could you please try again as normal
user? If this is not a strange system corruption case that is specific to one
system, then it's highly important to find the root cause and fix asap.

-- 
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 118965] Cannot Edit choices in Writer Input List

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

Regina Henschel  changed:

   What|Removed |Added

Version|6.0.5.2 release |6.0.4.2 release
 CC||rb.hensc...@t-online.de
 Status|NEEDINFO|NEW
   Keywords||bibisectRequest, regression

--- Comment #3 from Regina Henschel  ---
A click on the Edit button should open the field dialog, similar to Edit >
Fields. It was OK in Version: 5.4.7.2 (x64)
Build ID: c838ef25c16710f8838b1faec480ebba495259d0
CPU threads: 8; OS: Windows 6.19; UI render: default; 
Locale: en-US (en_US); Calc: CL

It is broken in Version: 6.0.4.2 (x64)
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (en_US); Calc: CL

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - 2 commits - sc/source

2018-07-27 Thread Libreoffice Gerrit user
 sc/source/core/tool/interpr1.cxx |   48 ++-
 sc/source/core/tool/parclass.cxx |1 
 2 files changed, 48 insertions(+), 1 deletion(-)

New commits:
commit c20eb29560fa9d9e552c799203156c0742451eba
Author: Eike Rathke 
AuthorDate: Thu Jul 26 15:00:09 2018 +0200
Commit: Markus Mohrhard 
CommitDate: Fri Jul 27 21:49:45 2018 +0200

Related: tdf#91502 handle FORMULA() pCur->IsInForceArray() as well

... so using it in SUMPRODUCT() and other ForceArray context works
as expected.

Change-Id: I60197301edcd2c24f8cb0c5fcf4dc4699d9a6165
Reviewed-on: https://gerrit.libreoffice.org/58118
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 2008a520e429bc2581001d61b63ff934c2255be0)
Reviewed-on: https://gerrit.libreoffice.org/58175
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index 3eb8fab7b968..c0558c869ad4 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -2759,7 +2759,7 @@ void ScInterpreter::ScFormula()
 switch ( GetStackType() )
 {
 case svDoubleRef :
-if (bMatrixFormula)
+if (bMatrixFormula || pCur->IsInForceArray())
 {
 SCCOL nCol1, nCol2;
 SCROW nRow1, nRow2;
commit f3b221773c9a1afb88d4675c303f0f03a7ccaaea
Author: Eike Rathke 
AuthorDate: Thu Jul 26 14:47:57 2018 +0200
Commit: Markus Mohrhard 
CommitDate: Fri Jul 27 21:49:30 2018 +0200

Resolves: tdf#91502 handle ISFORMULA() in array context

Obtaining the usual matrix for iterated scalar values doesn't work
here because we don't want the formulas' results but whether there
are formulas at the referenced positions.

Change-Id: I7912f9019d21b803ca327cb022df2014d3cc5c5a
Reviewed-on: https://gerrit.libreoffice.org/58115
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit a44d1b8d47e0ef6645c7c5def1fe5d34d470ae0b)
Reviewed-on: https://gerrit.libreoffice.org/58174
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index c83951d59b79..3eb8fab7b968 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -2691,6 +2691,52 @@ void ScInterpreter::ScIsFormula()
 switch ( GetStackType() )
 {
 case svDoubleRef :
+if (bMatrixFormula || pCur->IsInForceArray())
+{
+SCCOL nCol1, nCol2;
+SCROW nRow1, nRow2;
+SCTAB nTab1, nTab2;
+PopDoubleRef( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2);
+if (nGlobalError != FormulaError::NONE)
+{
+PushError( nGlobalError);
+return;
+}
+if (nTab1 != nTab2)
+{
+PushIllegalArgument();
+return;
+}
+
+ScMatrixRef pResMat = GetNewMat( static_cast(nCol2 - 
nCol1 + 1),
+static_cast(nRow2 - nRow1 + 1), true);
+if (!pResMat)
+{
+PushError( FormulaError::MatrixSize);
+return;
+}
+
+/* TODO: we really should have a gap-aware cell iterator. */
+SCSIZE i=0, j=0;
+ScAddress aAdr( 0, 0, nTab1);
+for (SCCOL nCol = nCol1; nCol <= nCol2; ++nCol)
+{
+aAdr.SetCol(nCol);
+for (SCROW nRow = nRow1; nRow <= nRow2; ++nRow)
+{
+aAdr.SetRow(nRow);
+ScRefCellValue aCell(*pDok, aAdr);
+pResMat->PutBoolean( (aCell.meType == 
CELLTYPE_FORMULA), i,j);
+++j;
+}
+++i;
+j = 0;
+}
+
+PushMatrix( pResMat);
+return;
+}
+SAL_FALLTHROUGH;
 case svSingleRef :
 {
 ScAddress aAdr;
diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx
index 7464dbf9a843..a4c3e7241087 100644
--- a/sc/source/core/tool/parclass.cxx
+++ b/sc/source/core/tool/parclass.cxx
@@ -158,6 +158,7 @@ const ScParameterClassification::RawData 
ScParameterClassification::pRawData[] =
 { ocIndirect,{{ Value, Value   
  }, 0, Reference }},
 { ocIntercept,   {{ ForceArray, ForceArray 
  }, 0, Value }},
 { ocIntersect,   {{ Reference, Reference   
  }, 0, Reference }},
+{ ocIsFormula,   {{ Reference  
  }, 0, Value }},
 { ocIsRef,   {{ Reference   

[Libreoffice-bugs] [Bug 107461] Does not support "file://" scheme with actual hostname

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

--- Comment #3 from Egmont Koblinger  ---
> Looks like this request is somewhat moot, due to thread comment:

Just because we applied a workaround, it doesn't mean that LibreOffice
shouldn't adhere to the standards and shouldn't fix its bugs. In fact, I'd
happily drop our workaround if that's what makes LibreOffice fix this in the
foreseeable future :)

-- 
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 118974] New: Writer Spell check slow

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

Bug ID: 118974
   Summary: Writer Spell check slow
   Product: LibreOffice
   Version: 5.2.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: s.dek...@peutz.nl

Description:
The spell check in writer is very slow. Upon accepting a correction for one
word, it takes multiple seconds before the next word to be checked pops up.

Steps to Reproduce:
1.start spell check in a document with some spell errors
2.accept/propose some other word
3.wait how long it takes before it gives the next spell issue

Actual Results:
it takes about 8 seconds for LO to find the next spelling issue

Expected Results:
it takes about 8 seconds for LO to find the next spelling issue


Reproducible: Always


User Profile Reset: Yes



Additional Info:
take it a little less easy ;)

-- 
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: canvas/source

2018-07-27 Thread Libreoffice Gerrit user
 canvas/source/cairo/cairo_canvas.hxx |2 --
 canvas/source/directx/dx_canvas.hxx  |3 ---
 canvas/source/vcl/canvas.hxx |2 --
 3 files changed, 7 deletions(-)

New commits:
commit 8f817e953e57d2e055c770856dad35ffbdfd7935
Author: Muhammet Kara 
AuthorDate: Fri Jul 27 19:23:52 2018 +0300
Commit: Noel Grandin 
CommitDate: Fri Jul 27 21:21:43 2018 +0200

Remove unused type declaration CanvasRef

Change-Id: Ie40652fbe13c6bc4bd7486ed0a132db62648689c
Reviewed-on: https://gerrit.libreoffice.org/58201
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/canvas/source/cairo/cairo_canvas.hxx 
b/canvas/source/cairo/cairo_canvas.hxx
index 3a5ec2cd0aa9..6de087c61894 100644
--- a/canvas/source/cairo/cairo_canvas.hxx
+++ b/canvas/source/cairo/cairo_canvas.hxx
@@ -141,8 +141,6 @@ namespace cairocanvas
  private:
 css::uno::Sequence< css::uno::Any >maArguments;
 };
-
-typedef ::rtl::Reference< Canvas > CanvasRef;
 }
 
 #endif
diff --git a/canvas/source/directx/dx_canvas.hxx 
b/canvas/source/directx/dx_canvas.hxx
index f4ec2f777122..61974735d1bf 100644
--- a/canvas/source/directx/dx_canvas.hxx
+++ b/canvas/source/directx/dx_canvas.hxx
@@ -99,9 +99,6 @@ namespace dxcanvas
 css::uno::Reference< css::uno::XComponentContext > mxComponentContext;
 };
 
-typedef ::rtl::Reference< Canvas > CanvasRef;
-
-
 typedef ::cppu::WeakComponentImplHelper< css::rendering::XBitmapCanvas,
  css::rendering::XIntegerBitmap,
  css::rendering::XGraphicDevice,
diff --git a/canvas/source/vcl/canvas.hxx b/canvas/source/vcl/canvas.hxx
index 6ce9b5e193b6..957e9c4822f2 100644
--- a/canvas/source/vcl/canvas.hxx
+++ b/canvas/source/vcl/canvas.hxx
@@ -113,8 +113,6 @@ namespace vclcanvas
 private:
 css::uno::Sequence< css::uno::Any >maArguments;
 };
-
-typedef ::rtl::Reference< Canvas > CanvasRef;
 }
 
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-27 Thread Libreoffice Gerrit user
 cui/source/dialogs/zoom.cxx |7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit 59981d24e2aa4bb50c63f1f14deeb80d258fb847
Author: Muhammet Kara 
AuthorDate: Fri Jul 27 18:53:53 2018 +0300
Commit: Noel Grandin 
CommitDate: Fri Jul 27 21:21:27 2018 +0200

Merge identical conditional branches in ViewLayoutUserHdl

Change-Id: I7e4d92dd12b00fa4d60cd667af780201b3246312
Reviewed-on: https://gerrit.libreoffice.org/58200
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/cui/source/dialogs/zoom.cxx b/cui/source/dialogs/zoom.cxx
index 9ff5d03f9ace..a4d3bef88261 100644
--- a/cui/source/dialogs/zoom.cxx
+++ b/cui/source/dialogs/zoom.cxx
@@ -301,12 +301,7 @@ IMPL_LINK_NOARG(SvxZoomDialog, ViewLayoutUserHdl, 
weld::ToggleButton&, void)
 {
 m_bModified = true;
 
-if (m_xAutomaticBtn->get_active())
-{
-m_xColumnsEdit->set_sensitive(false);
-m_xBookModeChk->set_sensitive(false);
-}
-else if (m_xSingleBtn->get_active())
+if (m_xAutomaticBtn->get_active() || m_xSingleBtn->get_active())
 {
 m_xColumnsEdit->set_sensitive(false);
 m_xBookModeChk->set_sensitive(false);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-07-27 Thread Libreoffice Gerrit user
 filter/source/msfilter/svdfppt.cxx  |4 ++--
 include/filter/msfilter/svdfppt.hxx |3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 3e41c06607737e3ab91545644abe2761dcba1157
Author: Noel Grandin 
AuthorDate: Fri Jul 27 15:38:29 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Jul 27 21:17:36 2018 +0200

use boost::optional for OUString instead of std::unique_ptr

Change-Id: I4539380956dad232f3ce92498b8f58a205fe00b1
Reviewed-on: https://gerrit.libreoffice.org/58196
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index d31da869b523..a7f5cd0fab9d 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -6774,7 +6774,7 @@ PPTTextObj::PPTTextObj( SvStream& rIn, 
SdrPowerPointImport& rSdrPowerPointImport
 if 
(rPersistEntry.xHeaderFooterEntry->nAtom & 0x2)// auto date time
 
xEntry->SetDateTime(rPersistEntry.xHeaderFooterEntry->nAtom & 0xff);
 else
-xEntry->xString.reset(new 
OUString(rPersistEntry.xHeaderFooterEntry->pPlaceholder[nVal]));
+xEntry->xString = 
rPersistEntry.xHeaderFooterEntry->pPlaceholder[nVal];
 }
 }
 break;
@@ -6826,7 +6826,7 @@ PPTTextObj::PPTTextObj( SvStream& rIn, 
SdrPowerPointImport& rSdrPowerPointImport
 else if (!n)
 {
 // End of 
format string
-
xEntry->xString.reset(new OUString( aStr ));
+
xEntry->xString = aStr;
 break;
 }
 else if (!inquote)
diff --git a/include/filter/msfilter/svdfppt.hxx 
b/include/filter/msfilter/svdfppt.hxx
index 044ad88b43d2..5600200334d9 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -45,6 +45,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace boost {
 template  class optional;
@@ -495,7 +496,7 @@ struct MSFILTER_DLLPUBLIC PPTFieldEntry
 sal_uInt16  nTextRangeEnd;
 std::unique_ptr xField1;
 std::unique_ptr xField2;
-std::unique_ptr xString;
+boost::optional xString;
 
 PPTFieldEntry()
 : nPos(0)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: desktop/source drawinglayer/source include/ucbhelper sfx2/source ucbhelper/source ucb/source

2018-07-27 Thread Libreoffice Gerrit user
 desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx  |5 -
 desktop/source/deployment/manager/dp_manager.cxx  |   10 --
 desktop/source/deployment/registry/component/dp_component.cxx |   13 --
 desktop/source/deployment/registry/dp_backend.cxx |2 
 desktop/source/deployment/registry/package/dp_package.cxx |   14 +--
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx   |   12 +-
 drawinglayer/source/processor2d/vclpixelprocessor2d.hxx   |2 
 include/ucbhelper/content.hxx |2 
 sfx2/source/doc/docfile.cxx   |   44 +++---
 sfx2/source/doc/doctemplates.cxx  |   11 +-
 ucb/source/core/FileAccess.cxx|2 
 ucbhelper/source/client/content.cxx   |3 
 12 files changed, 48 insertions(+), 72 deletions(-)

New commits:
commit 53491f8a66d72176aab332983f9aff47ecd3d654
Author: Noel Grandin 
AuthorDate: Fri Jul 27 14:15:41 2018 +0200
Commit: Noel Grandin 
CommitDate: Fri Jul 27 21:17:20 2018 +0200

loplugin:returnconstant in ucbhelper,drawinglayer

Change-Id: I4e84c570fe0e555a3aeb1f11632715de466d6e0e
Reviewed-on: https://gerrit.libreoffice.org/58192
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx 
b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
index 4a0090456217..8ab299c8b46a 100644
--- a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
@@ -598,9 +598,10 @@ bool UpdateInstallDialog::Thread::download(OUString const 
& sDownloadURL, Update
 
 const OUString sTitle( StrTitle::getTitle( sourceContent ) );
 
-if (destFolderContent.transferContent(
+destFolderContent.transferContent(
 sourceContent, ::ucbhelper::InsertOperation::Copy,
-sTitle, css::ucb::NameClash::OVERWRITE ))
+sTitle, css::ucb::NameClash::OVERWRITE );
+
 {
 //the user may have cancelled the dialog because downloading took to 
long
 SolarMutexGuard g;
diff --git a/desktop/source/deployment/manager/dp_manager.cxx 
b/desktop/source/deployment/manager/dp_manager.cxx
index 3618ec5cd4eb..3b6e66598c81 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -635,10 +635,9 @@ OUString PackageManagerImpl::insertToActivationLayer(
 sourceContent = ::ucbhelper::Content(
 buf.makeStringAndClear(), xCmdEnv, m_xComponentContext );
 }
-if (! destFolderContent.transferContent(
+destFolderContent.transferContent(
 sourceContent, ::ucbhelper::InsertOperation::Copy,
-title, NameClash::OVERWRITE ))
-throw RuntimeException( "UCB transferContent() failed!", nullptr );
+title, NameClash::OVERWRITE );
 
 
 // write to DB:
@@ -746,11 +745,10 @@ Reference 
PackageManagerImpl::addPackage(
 ::ucbhelper::Content docFolderContent;
 create_folder( , m_context, xCmdEnv );
 // copy into document, first:
-if (! docFolderContent.transferContent(
+docFolderContent.transferContent(
 sourceContent, ::ucbhelper::InsertOperation::Copy,
 OUString(),
-NameClash::ASK /* xxx todo: ASK not needed? */))
-throw RuntimeException("UCB transferContent() failed!", 
nullptr );
+NameClash::ASK /* xxx todo: ASK not needed? */);
 // set media-type:
 ::ucbhelper::Content docContent(
 makeURL( m_context, title_enc ), xCmdEnv, m_xComponentContext 
);
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx 
b/desktop/source/deployment/registry/component/dp_component.cxx
index 40ccfd8f6bef..e92dffe5c52d 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -425,13 +425,9 @@ void BackendImpl::initServiceRdbFiles()
 m_commonRDB = m_commonRDB_orig == "common.rdb" ? OUString("common_.rdb") : 
OUString("common.rdb");
 if (oldRDB.get().is())
 {
-if (! cacheDir.transferContent(
+cacheDir.transferContent(
 oldRDB, ::ucbhelper::InsertOperation::Copy,
-m_commonRDB, NameClash::OVERWRITE ))
-{
-
-throw RuntimeException( "UCB transferContent() failed!", nullptr );
-}
+m_commonRDB, NameClash::OVERWRITE );
 oldRDB = ::ucbhelper::Content();
 }
 // switch native rdb:
@@ -446,10 +442,9 @@ void BackendImpl::initServiceRdbFiles()
 m_nativeRDB = (m_nativeRDB_orig == plt_rdb ) ? plt_rdb_ : plt_rdb;
 if (oldRDB.get().is())
 {
-if (! cacheDir.transferContent(
+

[Libreoffice-bugs] [Bug 107461] Does not support "file://" scheme with actual hostname

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

Justin L  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #2 from Justin L  ---
Looks like this request is somewhat moot, due to thread comment:
> > Given that gnome-terminal verifies that the hostname is the local host and
> > refuses to open otherwise, I'm wondering: Should it work around these
> > problems by removing the hostname before opening the file: URI?

> It would make this work and I don't see a downside so my answer would be yes.

But anyway, code pointer...
soffice file://JL-1804/testFile.docx 
ucb/source/ucp/gio/gio_content.cxx:392: ignoring GError "Failed to mount
Windows share: Connection refused" for 

#include 
osl::SocketAddr::getLocalHostname()

-- 
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 118973] Calc, HLOOKUP function doesn't report correct value in column 20 of 20 columns

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org

--- Comment #1 from Jean-Baptiste Faure  ---
Thank you for your bug report. Please attach a test file so that other
contributors can try to confirm it.

Status set to NEEDINFO, please set it back to UNCONFIRMED once requested
informations are provided.

Best regards. JBF

-- 
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: include/vcl svx/source vcl/source vcl/unx

2018-07-27 Thread Libreoffice Gerrit user
 include/vcl/settings.hxx  |3 +++
 svx/source/unodraw/UnoGraphicExporter.cxx |   14 ++
 vcl/source/app/settings.cxx   |   19 +++
 vcl/unx/generic/gdi/cairotextrender.cxx   |5 -
 4 files changed, 40 insertions(+), 1 deletion(-)

New commits:
commit e6538f5bdd876911ea30f84a6512c03908e620fd
Author: Miklos Vajna 
AuthorDate: Fri Jul 27 17:40:31 2018 +0200
Commit: Miklos Vajna 
CommitDate: Fri Jul 27 20:52:17 2018 +0200

tdf#118966 vcl: add a flag to determine if AA of fonts is used from the 
system

This is on by default (as there are loads of vcl users who expect font
AA working even if the default is off and they don't enable it), but the
svx UnoGraphicExporter disables it to make everyone happy.

The reason in practice AA was on by default is that the gtk backend uses
the system settings in GtkInstance::GetCairoFontOptions() (and not the
AA setting from the UI), and lclGetSystemTextAntiAliasMode() does the
same on Windows (at least in the direct write case). So now these
defaults again have higher priority than leaving the vcl-level default
unchanged.

Change-Id: I81267c0b036211525ac02d3282fa89d75510f4a8
Reviewed-on: https://gerrit.libreoffice.org/58199
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx
index a004b23e8ebc..6eb7be25d438 100644
--- a/include/vcl/settings.hxx
+++ b/include/vcl/settings.hxx
@@ -409,6 +409,9 @@ public:
 voidSetUseSystemUIFonts( bool 
bUseSystemUIFonts );
 boolGetUseSystemUIFonts() const;
 
+void SetUseFontAAFromSystem(bool bUseFontAAFromSystem);
+bool GetUseFontAAFromSystem() const;
+
 voidSetUseFlatBorders( bool bUseFlatBorders );
 boolGetUseFlatBorders() const;
 
diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx 
b/svx/source/unodraw/UnoGraphicExporter.cxx
index e5a410b07f54..fc3fb3b22eb9 100644
--- a/svx/source/unodraw/UnoGraphicExporter.cxx
+++ b/svx/source/unodraw/UnoGraphicExporter.cxx
@@ -1031,12 +1031,26 @@ sal_Bool SAL_CALL GraphicExporter::filter( const 
Sequence< PropertyValue >& aDes
 {
 SvtOptionsDrawinglayer aOptions;
 bool bAntiAliasing = aOptions.IsAntiAliasing();
+AllSettings aAllSettings = Application::GetSettings();
+StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
+bool bUseFontAAFromSystem = aStyleSettings.GetUseFontAAFromSystem();
 if (aSettings.meAntiAliasing != TRISTATE_INDET)
+{
 // This is safe to do globally as we own the solar mutex.
 aOptions.SetAntiAliasing(aSettings.meAntiAliasing == 
TRISTATE_TRUE);
+// Opt in to have AA affect font rendering as well.
+aStyleSettings.SetUseFontAAFromSystem(false);
+aAllSettings.SetStyleSettings(aStyleSettings);
+Application::SetSettings(aAllSettings);
+}
 nStatus = GetGraphic( aSettings, aGraphic, bVectorType ) ? 
ERRCODE_NONE : ERRCODE_GRFILTER_FILTERERROR;
 if (aSettings.meAntiAliasing != TRISTATE_INDET)
+{
 aOptions.SetAntiAliasing(bAntiAliasing);
+aStyleSettings.SetUseFontAAFromSystem(bUseFontAAFromSystem);
+aAllSettings.SetStyleSettings(aStyleSettings);
+Application::SetSettings(aAllSettings);
+}
 }
 
 if( nStatus == ERRCODE_NONE )
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index 4354ff573bee..0dc2558ab36a 100644
--- a/vcl/source/app/settings.cxx
+++ b/vcl/source/app/settings.cxx
@@ -168,6 +168,11 @@ struct ImplStyleData
 StyleSettingsOptionsmnOptions;
 boolmbHighContrast;
 boolmbUseSystemUIFonts;
+/**
+ * Disabling AA doesn't actually disable AA of fonts, instead it is taken
+ * from system settings.
+ */
+bool mbUseFontAAFromSystem;
 boolmbAutoMnemonic;
 TriStatemeUseImagesInMenus;
 boolmnUseFlatBorders;
@@ -582,6 +587,7 @@ ImplStyleData::ImplStyleData( const ImplStyleData& rData ) :
 mnOptions(rData.mnOptions),
 mbHighContrast(rData.mbHighContrast),
 mbUseSystemUIFonts(rData.mbUseSystemUIFonts),
+mbUseFontAAFromSystem(rData.mbUseFontAAFromSystem),
 mbAutoMnemonic(rData.mbAutoMnemonic),
 meUseImagesInMenus(rData.meUseImagesInMenus),
 mnUseFlatBorders(rData.mnUseFlatBorders),
@@ -697,6 +703,7 @@ void ImplStyleData::SetStandardStyles()
 mnFloatTitleHeight  = 13;
 mbHighContrast  = false;
 mbUseSystemUIFonts  = true;
+mbUseFontAAFromSystem = true;
 mnUseFlatBorders= false;
 mnUseFlatMenus  = false;
 

[Libreoffice-bugs] [Bug 118971] Arrow keys doesn't work with images

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #2 from Jean-Baptiste Faure  ---
Indeed :-(
alt + arrow keys still works

Best regards. JBF

-- 
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 118954] XML Form Document: Impossible to save a data type in a second instance in the same model

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

  Component|Writer  |LibreOffice
Version|6.2.0.0.alpha0+ Master  |3.6.7.2 release

--- Comment #1 from rob...@familiegrosskopf.de ---
It's the same buggy behavior in LO 3.6.7.2 - so could be inherited by OOo.

Could be it is better to block to create a second instance (see bug 118862),
because there will be a second bug if this bug has been solved: 
Every time I open the xform-document new bindings for the second instance will
be created automatically ...

-- 
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


[SOLVED]Re: Is there someone who successfully make their own build of LibreOffice with Visual Studio 15.8.0 Preview 3.0 ?

2018-07-27 Thread himajin100000
I've updated my environment to Visual Studio 15.8 Preview 5.0 and now I 
successfully built my own build.

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


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

2018-07-27 Thread Libreoffice Gerrit user
 svl/source/numbers/zforscan.cxx |   47 
 1 file changed, 24 insertions(+), 23 deletions(-)

New commits:
commit e545e16d043cb583156abf9a531b4dd2542959b5
Author: Caolán McNamara 
AuthorDate: Fri Jul 27 12:10:22 2018 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jul 27 19:52:23 2018 +0200

ofz#7960 tight OUString concat loop causes libfuzzer oom

it doesn't get a chance to release memory and falls over with
an oom. Or something like that anyway.

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

diff --git a/svl/source/numbers/zforscan.cxx b/svl/source/numbers/zforscan.cxx
index ea9e24236b4c..debfc1e70370 100644
--- a/svl/source/numbers/zforscan.cxx
+++ b/svl/source/numbers/zforscan.cxx
@@ -815,7 +815,7 @@ short ImpSvNumberformatScan::Next_Symbol( const OUString& 
rStr,
 const LocaleDataWrapper* pLoc = pFormatter->GetLocaleData();
 short eType = 0;
 ScanState eState = SsStart;
-sSymbol.clear();
+OUStringBuffer sSymbolBuffer;
 while ( nPos < rStr.getLength() && eState != SsStop )
 {
 sal_Unicode cToken = rStr[nPos++];
@@ -858,28 +858,28 @@ short ImpSvNumberformatScan::Next_Symbol( const OUString& 
rStr,
 case ':':
 case '-':
 eType = NF_SYMBOLTYPE_DEL;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 eState = SsStop;
 break;
 case '*':
 eType = NF_SYMBOLTYPE_STAR;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 eState = SsGetStar;
 break;
 case '_':
 eType = NF_SYMBOLTYPE_BLANK;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 eState = SsGetBlank;
 break;
 case '"':
 eType = NF_SYMBOLTYPE_STRING;
 eState = SsGetString;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 break;
 case '\\':
 eType = NF_SYMBOLTYPE_STRING;
 eState = SsGetChar;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 break;
 case '$':
 case '+':
@@ -887,7 +887,7 @@ short ImpSvNumberformatScan::Next_Symbol( const OUString& 
rStr,
 case ')':
 eType = NF_SYMBOLTYPE_STRING;
 eState = SsStop;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 break;
 default :
 if (StringEqualsChar( pFormatter->GetNumDecimalSep(), cToken) 
||
@@ -898,7 +898,7 @@ short ImpSvNumberformatScan::Next_Symbol( const OUString& 
rStr,
 {
 // Another separator than pre-known ASCII
 eType = NF_SYMBOLTYPE_DEL;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 eState = SsStop;
 }
 else if ( pChrCls->isLetter( rStr, nPos-1 ) )
@@ -923,7 +923,7 @@ short ImpSvNumberformatScan::Next_Symbol( const OUString& 
rStr,
 if ( bCurrency )
 {
 eState = SsGetWord;
-sSymbol += OUStringLiteral1(cToken);
+sSymbolBuffer.append(OUStringLiteral1(cToken));
 }
 else
 {
@@ -936,13 +936,13 @@ short ImpSvNumberformatScan::Next_Symbol( const OUString& 
rStr,
 {
 nLen = sEnglishKeyword[eType].getLength();
 // Use the locale's General keyword name, not 
uppercase.
-sSymbol = (eType == NF_KEY_GENERAL ? 
sNameStandardFormat : sKeyword[eType]);
+sSymbolBuffer = (eType == NF_KEY_GENERAL ? 
sNameStandardFormat : sKeyword[eType]);
 }
 else
 {
 nLen = sKeyword[eType].getLength();
 // Preserve a locale's keyword's case as 
entered.
-sSymbol = rStr.copy( nPos-1, nLen);
+sSymbolBuffer = rStr.copy( nPos-1, nLen);
 }
 if ((eType == 

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

2018-07-27 Thread Libreoffice Gerrit user
 svx/source/unodraw/UnoGraphicExporter.cxx |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit b197a4488adcf37b5460f5f7a5edc8adff0edabb
Author: Miklos Vajna 
AuthorDate: Fri Jul 27 15:23:18 2018 +0200
Commit: Miklos Vajna 
CommitDate: Fri Jul 27 19:51:25 2018 +0200

svx UnoGraphicExporter: allow a custom AA just for that particular export

This has an effect for text only since the cairo text renderer no longer
ignores the "disable AA" requests.

To use it, instantiate com.sun.star.drawing.GraphicExportFilter, call
its filter() method with an argument that has a FilterData, which has an
AntiAliasing sub-key with a boolean value.

Change-Id: I4f51bc685a97141eb0fdeae5e4afed26787b1fb8
Reviewed-on: https://gerrit.libreoffice.org/58194
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx 
b/svx/source/unodraw/UnoGraphicExporter.cxx
index ffb4675e6500..e5a410b07f54 100644
--- a/svx/source/unodraw/UnoGraphicExporter.cxx
+++ b/svx/source/unodraw/UnoGraphicExporter.cxx
@@ -108,6 +108,8 @@ namespace {
 FractionmaScaleX;
 FractionmaScaleY;
 
+TriState meAntiAliasing = TRISTATE_INDET;
+
 explicit ExportSettings(const SdrModel* pSdrModel);
 };
 
@@ -584,6 +586,12 @@ void GraphicExporter::ParseSettings( const Sequence< 
PropertyValue >& aDescripto
 if( pDataValues->Value >>= nVal )
 rSettings.maScaleY = Fraction( 
rSettings.maScaleY.GetNumerator(), nVal );
 }
+else if (pDataValues->Name == "AntiAliasing")
+{
+bool bAntiAliasing;
+if (pDataValues->Value >>= bAntiAliasing)
+rSettings.meAntiAliasing = bAntiAliasing ? 
TRISTATE_TRUE : TRISTATE_FALSE;
+}
 
 pDataValues++;
 }
@@ -1020,7 +1028,16 @@ sal_Bool SAL_CALL GraphicExporter::filter( const 
Sequence< PropertyValue >& aDes
 
 ErrCode nStatus = ERRCODE_NONE;
 if (!maGraphic)
+{
+SvtOptionsDrawinglayer aOptions;
+bool bAntiAliasing = aOptions.IsAntiAliasing();
+if (aSettings.meAntiAliasing != TRISTATE_INDET)
+// This is safe to do globally as we own the solar mutex.
+aOptions.SetAntiAliasing(aSettings.meAntiAliasing == 
TRISTATE_TRUE);
 nStatus = GetGraphic( aSettings, aGraphic, bVectorType ) ? 
ERRCODE_NONE : ERRCODE_GRFILTER_FILTERERROR;
+if (aSettings.meAntiAliasing != TRISTATE_INDET)
+aOptions.SetAntiAliasing(bAntiAliasing);
+}
 
 if( nStatus == ERRCODE_NONE )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118973] New: Calc, HLOOKUP function doesn't report correct value in column 20 of 20 columns

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

Bug ID: 118973
   Summary: Calc, HLOOKUP function doesn't report correct value in
column 20 of 20 columns
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bert.robb...@yahoo.com

Description:
HLOOKUP reports value in next to last column and not the last column.  Tried to
extend table to 22 columns and all values reported correctly expect column 20.

Steps to Reproduce:
1. Cell contents:B1 is 88F6X378V+MQ, 
G1 is "=MID($B1,5,1)" displayed "X", G2 is "=VALUE(G1) dispalyed "Error:502",
G3 is "=ISERROR(G2)" displayed "TRUE", G4 is
"=IF(G3=0,HLOOKUP(G2,$B17:$U18,2),HLOOKUP(G1,$B17:$U18,2))" displayed "18"
2.Table is Google "Plus Code" lookup table and is rows 17 & 18, columns B
through U

Actual Results:
HLOOKUP reports "18" (in column T).

Expected Results:
Should be "19" (in column U).


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Reported value in cell U18 which is "19".

OpenGL vendor string: nouveau
OpenGL renderer string: NV4C
OpenGL version string: 2.1 Mesa 18.0.5
OpenGL shading language version string: 1.20
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 2.0 Mesa 18.0.5
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 1.0.16
OpenGL ES profile extensions:

Version: 5.1.6.2
Build ID: 1:5.1.6~rc2-0ubuntu1~xenial3
CPU Threads: 2; OS Version: Linux 4.4; UI Render: default; 
Locale: en-US (en_US.UTF-8); 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-bugs] [Bug 85973] FORMATTING: Table of Contents format entry levels not sticking

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

Timur  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #7 from Timur  ---
"FORMATTING:" - no, this is FILESAVE DOCX
"1. Make a writer file in .docx" no, Open new file (and save as ODT to attach
here)... later save as DOCX
"4. Change Formats of Levels of entries" how, directly ot change Contents
styles?
"5. Change Levels to have Tabs and not tab position to paragraph indent" how?
"7. Close and re-open .docx file" OK, this is RT, save and reopen

Is it enough to save ODT as DOCX and reopen? It should be. 

Since there was no response and more important, bug is not clear, I set back to
Needinfo. Please write exact steps and test with master 6.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 118907] Protect Sheet dialog does not warn if CapsLock is on when creating password

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

--- Comment #2 from Jean-Baptiste Faure  ---
I suggest you to extend your enhancement request to all situations where a
password is requested. Do you agree?

Best regards. JBF

-- 
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 118907] Protect Sheet dialog does not warn if CapsLock is on when creating password

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #1 from Jean-Baptiste Faure  ---
We have this behavior each time LO is asking a password, both if defining the
password and providing the registered password. For example when saving a
document with a password or opening it.
Your enhancement proposition is valid and I support it.

Best regards. JBF

-- 
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 118917] black images in impress

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INSUFFICIENTDATA

--- Comment #11 from Jean-Baptiste Faure  ---
(In reply to mgordon from comment #8)
> Unfortunately, I'm not able to do that.  I'm not the content owner and the
> site requires enrollment.  It isn't one presentation though, it's all of
> them.  Any picture image does not show.

Sorry, but without a test file it is not possible to confirm your bug report,
and if it was confirmed to work on a fix.
So I need to close this bug report as Resolved/InsufficientData

Feel free to reopen when you will be able to provide a test-file.

Best regards. JBF

-- 
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 118639] Slow performance to the point of being unuseable

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

--- Comment #8 from Stuart Edwards  ---
The backup files are not too enlightening with no content.  The original used
to be an ods file and suffered from the same problem.  The backup file names
have the style:
test_171109.xls_7436.ods
The only distinguishing feature is that it's the one file I use that's password
protected.  So it's as if LO tries to make a backup, can't access the content
so opens a new file and tries again.

The original is 7 columns, ~350 rows of mixed text and numerical data - sorry
can't share that with you. It's quite unremarkable - no formulae or macros. 
I've occasionally sorted it but that's about 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: Changes to 'private/mst/sw_redlinehide_2'

2018-07-27 Thread Libreoffice Gerrit user
New branch 'private/mst/sw_redlinehide_2' available with the following commits:
commit 4bdc98547c33b74f6451baf854d88a7d32f06ce3
Author: Michael Stahl 
Date:   Fri Jul 27 18:25:59 2018 +0200

sw_redlinehide_2: improve SwRootFrame::SetHideRedlines()

Change-Id: If54585d20bbe0fbf5c071e3a96737015d7d62c05

commit 03077e560d4cec9f074563a907081c522faad948
Author: Michael Stahl 
Date:   Fri Jul 27 18:43:37 2018 +0200

sw_redlinehide_2: fix CanSkipOverRedline crash

Change-Id: Ia7efc0639650af570acc98f62f9f36f683beb1fa

commit 1410f7227a56f16bf79823252863ffd1d11bb4a5
Author: Michael Stahl 
Date:   Fri Jul 27 17:38:43 2018 +0200

sw_redlinehide_2: SwContentNode::DelFrames(): ignore merged...

... frames unless the node is the owner / first node of the frame.

Not sure what should happen if the node *is* the first node of a merged
frame; let's not create a frame for the 2nd... node for now.

Change-Id: I5b105d0745d67012bbbdf778811e417efaae8490

commit cef927195031891359bf87f4042bc7ad58a3555a
Author: Michael Stahl 
Date:   Fri Jul 27 17:35:21 2018 +0200

sw_redlinehide_2: InsertCnt_(): skip merged nodes

Change-Id: I3363c787779364e771e0406b0f9e90b0337bf03d

commit 46548ff3cb0012fd81103d13bee848b70859d586
Author: Michael Stahl 
Date:   Fri Jul 27 17:33:47 2018 +0200

sw_redlinehide_2: assert that SwContentFrame is created only when allowed

Change-Id: I1b42b386eb7323dcbf40d4086276bd0a74d581b9

commit 47430b92c958a057670c5ef8f13117b47c0c5c58
Author: Michael Stahl 
Date:   Fri Jul 27 16:07:15 2018 +0200

sw_redlinehide_2: SetMergedPara must ensure that frame is...

... registered as listener on a node somehow.

Change-Id: I1100726d3dd9cf46e1cc48e992cc5a1a0187b7c5

commit 0dd629ce3e3c35be0a0e1504223da03cc18015eb
Author: Michael Stahl 
Date:   Fri Jul 27 16:04:48 2018 +0200

sw_redlinehide_2: SwView::GetState must be in sync with Execute

Because FN_REDLINE_SHOW is TOGGLE so it reads the existing state to
invert it.

Change-Id: I43053c28085722c869f1e8b0cb989d0956c2e00b

commit 9a7804d2c8d59c8347697d6b439daee94fa62bc0
Author: Michael Stahl 
Date:   Thu Jul 26 16:12:57 2018 +0200

sw: assert in SwFrameFormat::MakeFrames()

This is an oddity, where the base class has an unimplemented
MakeFrames() but an implemented DelFrames(), where the latter is relied
upon by subclasses that do override MakeFrames().

Not sure if there are subclasses that don't override MakeFrames()
but which still require this base class DelFrames().

Change-Id: I5bc8a8d5cb99c9ce80fc14ef33a038e9d88eaecd

commit 7a0fe79b61a168683f89c048c569ab91f23f043f
Author: Michael Stahl 
Date:   Thu Jul 26 14:12:53 2018 +0200

sw_redlinehide_2: add *another* flag to DocumentRedlineManager

Sadly the SwRootFrame is created too late, so we have to store the
"ShowRedlineChanges" value that is imported from ODF settings.xml
somewhere, and we can't store it in SfxBaseModel::setViewData() because
it's not in "Views" map.

Change-Id: I30eefcb0262048f7141a719917aff77182765946

commit 1fa7905733ee1da0c3ed467b66113fbde42bfac8
Author: Michael Stahl 
Date:   Thu Jul 26 14:01:53 2018 +0200

sw: convert some obvious asserts in MakeFrames/InsertCnt_

Those are postconditions of SwNode2Lay

Change-Id: If5af97cb0fb050c95690796bcd708a31a1bdf49f

commit 93c3ab2ce1f32d3e53a15e80a8dcbdaee249fb3f
Author: Michael Stahl 
Date:   Wed Jul 25 15:37:58 2018 +0200

sw: convert obvious asserts in SwNode2Lay

Change-Id: Ib3a4d6071ad03e68385ef5be74427282d374e966

commit c24e49b02028f4c32fc2dc9145c8b9054f05e982
Author: Michael Stahl 
Date:   Tue Jul 24 17:00:10 2018 +0200

sw: disambiguate SwNode2Layout

For the first constructor, only RestoreUpperFrames is ever called, while
all of the other methods are called on instances created by the second
constructor.  Why aren't there 2 distinct classes?

Change-Id: I1c9e8432f127a71732c762104605680089039973

commit eadb64e7c95190d9c69bf27e84fe3bddb9b5ee55
Author: Michael Stahl 
Date:   Tue Jul 24 14:10:13 2018 +0200

sw: rename SwNode MakeFrame overloads

Change-Id: Ida4f6d55801292c509e577056140d9ff7608de9b

commit cbcc1bceefd01b30e47488b01cdfa2f3346dab45
Author: Michael Stahl 
Date:   Mon Jul 23 17:23:32 2018 +0200

sw_redlinehide_2 more invalidations

Change-Id: Ie9d136f58ea4d81d76459663fbb70c9f07203fe2

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118486] Untranslatable string "Show "No offline help installed" popup" in Tools - Options - General" with de_DE langpack installed

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

--- Comment #4 from thack...@nexgo.de ---
Hello Gabor, *,
sorry for the delay, but did not find the time to answer earlier ... :(

(In reply to Gabor Kelemen from comment #3)
> (In reply to Buovjaga from comment #1)
> > In KeyID, the ID is: Cbeuc
> > 
> If it has a KeyId, then it is translatable.
> Still a few things can go wrong... but I just found it:
> 
> https://translations.documentfoundation.org/hu/libo_ui/translate/cui/
> messages.po#unit=158896675
> 
> This seems to be a GSoC student work, so a very new feature - the string
> just did not made it through the pipelines.

If I change your link to
https://translations.documentfoundation.org/de/libo_ui/translate/cui/messages.po#unit=158896675,
I do not see the string "Show "No offline help installed" popup" but just
"LibreOffice" ... :( Is this only fixed in your language but not in other
languages? Should I reopen the bug and set it to new as Buovjaga has already
confirmed it?
Sorry for the inconvenience
Thomas.

-- 
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 113457] "Version" should be pre-filled from 'Help > Send feedback'

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

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||r...@post.cz

--- Comment #2 from raal  ---
Confirm. LO: 6.0.5.2 (x64), win10

-- 
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 54073] CONFIGURATION: Formatting Aids - Options are not stored correctly, unchecked nonprinting characters becoming checked after disable/re-enabling formatting aids

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

--- Comment #19 from Jean-Baptiste Faure  ---
Still reproducible in LO 6.1.1.0.0+ and current master, both built at home
under Ubuntu 16.04 x86-64.

Best regards. JB

-- 
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 'aoo/trunk' - solenv/gbuild

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

New commits:
commit 922f6c6244631cbd61c6a683e88c4040af35a614
Author: Jim Jagielski 
AuthorDate: Fri Jul 27 14:59:56 2018 +
Commit: Jim Jagielski 
CommitDate: Fri Jul 27 14:59:56 2018 +

Force .jnilibs to be folded in. Patch via Damjan.

NOTE: AUXTARGETS is there to add additional targets that must/should
delivered w/ the original libs. Good Tribal Knowledge

diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk
index de50050fce45..5312895fdb7b 100644
--- a/solenv/gbuild/platform/macosx.mk
+++ b/solenv/gbuild/platform/macosx.mk
@@ -387,6 +387,9 @@ $(call gb_Library_get_target,$(1)) \
 $(call gb_Library_get_clean_target,$(1)) : AUXTARGETS +=  \
$(call gb_Library_get_target,$(1)).$(gb_UDK_MAJOR)
 endif
+$(call gb_Library_get_target,$(1)) \
+$(call gb_Library_get_clean_target,$(1)) : AUXTARGETS += \
+   $(patsubst %.dylib,%.jnilib,$(call gb_Library_get_target,$(1)))
 
 endef
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108844] [META] Cut/copy bugs and enhancements

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108844
Bug 108844 depends on bug 60962, which changed state.

Bug 60962 Summary: EDITING: Copy (OLE) object sets "document changed" flag
https://bugs.documentfoundation.org/show_bug.cgi?id=60962

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 39750] [META] General Math formula editor improvements

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39750
Bug 39750 depends on bug 60962, which changed state.

Bug 60962 Summary: EDITING: Copy (OLE) object sets "document changed" flag
https://bugs.documentfoundation.org/show_bug.cgi?id=60962

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486
Bug 90486 depends on bug 60962, which changed state.

Bug 60962 Summary: EDITING: Copy (OLE) object sets "document changed" flag
https://bugs.documentfoundation.org/show_bug.cgi?id=60962

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 60962] EDITING: Copy (OLE) object sets "document changed" flag

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #9 from Jean-Baptiste Faure  ---
Reproducible with LO 6.0.5 but seems to be fixed in LO 6.1.1.0.0+ built at home
under Ubuntu 16.04 x86-64

Closing as WorksForMe. Please feel free to reopen if you still encounter the
bug.

Best regards. JBF

-- 
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 113015] “Online updates” checks the updates of extensions installed too

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

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal  ---
Xisco, what do you mean?


---
/core/scp2/source/onlineupdate/module_onlineupdate.ulf

-- 
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 118639] Slow performance to the point of being unuseable

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

--- Comment #7 from Telesto  ---
Thanks for the investigation :-). A sample document would be nice.
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

-- 
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 118787] Checking for updates after install displays a window with UI elements but nothing works

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

--- Comment #4 from will.brokenbourgh2...@gmail.com ---
(In reply to Alex Thurgood from comment #3)
> @Will : sorry, I misread your report, I see what you mean now, when reading
> it again.
> 
> I wonder if this is how it is now supposed to work, i.e. the download and
> install buttons are not activated if no newer version is available ?

No problem Alex.

If you look at the screenshot, you will see that the the controls all seem to
be in an uninitialized state.  When clicked, non of the buttons work and they
are not disabled either.  It seems that whichever callback or event that should
fire to initialize the update window isn't firing the first time.

This only happens the first time you install LibreOffice on macOS.  After that,
the update window works as expected.

-- 
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' - canvas/Library_vclcanvas.mk canvas/source

2018-07-27 Thread Libreoffice Gerrit user
 canvas/Library_vclcanvas.mk|5 -
 canvas/source/vcl/spritehelper.cxx |6 +-
 2 files changed, 9 insertions(+), 2 deletions(-)

New commits:
commit a44843e8e324e00995dd4be0bd3244c85d91bd85
Author: Miklos Vajna 
AuthorDate: Fri Jul 20 14:09:36 2018 +0200
Commit: Michael Meeks 
CommitDate: Fri Jul 27 17:46:08 2018 +0200

tdf#118107 canvas opengl: avoid assertion failure with negative widths

In case an Impress shape has a "Fade in and Swivel" animation attached,
canvas calls OutputDevice::DrawBitmapEx() with a negative width. This
results in a call to OutputDevice::DrawDeviceAlphaBitmap(), which
asserts that the height/width is not negative.

Fix the problem by transforming the bitmap before calling
OutputDevice::DrawBitmapEx() in the GL case, similarly to how "complex"
transformations are handled already.

(cherry picked from commit 76b43425d764fbc9bf4dac52054b1d94344f26b0)

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

diff --git a/canvas/Library_vclcanvas.mk b/canvas/Library_vclcanvas.mk
index 805cefc43c77..6ff19eba6130 100644
--- a/canvas/Library_vclcanvas.mk
+++ b/canvas/Library_vclcanvas.mk
@@ -21,7 +21,10 @@ $(eval $(call gb_Library_Library,vclcanvas))
 
 $(eval $(call 
gb_Library_set_componentfile,vclcanvas,canvas/source/vcl/vclcanvas))
 
-$(eval $(call gb_Library_use_external,vclcanvas,boost_headers))
+$(eval $(call gb_Library_use_externals,vclcanvas,\
+   boost_headers \
+   epoxy \
+))
 
 $(eval $(call gb_Library_use_sdk_api,vclcanvas))
 
diff --git a/canvas/source/vcl/spritehelper.cxx 
b/canvas/source/vcl/spritehelper.cxx
index 9424d4ec54b9..be70d6e2ff6b 100644
--- a/canvas/source/vcl/spritehelper.cxx
+++ b/canvas/source/vcl/spritehelper.cxx
@@ -37,6 +37,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -182,8 +183,11 @@ namespace vclcanvas
 
 if( !bIdentityTransform )
 {
+// Avoid the trick with the negative width in the OpenGL case,
+// OutputDevice::DrawDeviceAlphaBitmap() doesn't like it.
 if( !::basegfx::fTools::equalZero( aTransform.get(0,1) ) ||
-!::basegfx::fTools::equalZero( aTransform.get(1,0) ) )
+!::basegfx::fTools::equalZero( aTransform.get(1,0) ) ||
+OpenGLHelper::isVCLOpenGLEnabled())
 {
 // "complex" transformation, employ affine
 // transformator
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118917] black images in impress

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

--- Comment #10 from mgor...@medlineschool.com ---
No, the files don't belong to me.

-- 
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/CppunitTest_sc_headerfootercontentobj.mk

2018-07-27 Thread Libreoffice Gerrit user
 sc/CppunitTest_sc_headerfootercontentobj.mk |   31 
 1 file changed, 1 insertion(+), 30 deletions(-)

New commits:
commit 36e1f6ebf0c74b4b90bbf1aab8d9ab69b8746f3a
Author: Jens Carl 
AuthorDate: Fri Jul 27 03:25:10 2018 +
Commit: Jens Carl 
CommitDate: Fri Jul 27 17:39:00 2018 +0200

Remove obsolete (cargo-cult copied) dependencies

Change-Id: I035eb9803631e7e8fffb49723c96100b1efda7af
Reviewed-on: https://gerrit.libreoffice.org/58154
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/sc/CppunitTest_sc_headerfootercontentobj.mk 
b/sc/CppunitTest_sc_headerfootercontentobj.mk
index d8f13f4f66d7..a46b53029211 100644
--- a/sc/CppunitTest_sc_headerfootercontentobj.mk
+++ b/sc/CppunitTest_sc_headerfootercontentobj.mk
@@ -18,43 +18,14 @@ $(eval $(call 
gb_CppunitTest_add_exception_objects,sc_headerfootercontentobj, \
 ))
 
 $(eval $(call gb_CppunitTest_use_libraries,sc_headerfootercontentobj, \
-   basegfx \
-   comphelper \
cppu \
-   cppuhelper \
-   drawinglayer \
-   editeng \
-   for \
-   forui \
-   i18nlangtag \
-   msfilter \
-   oox \
sal \
-   salhelper \
-   sax \
-   sb \
-   sc \
-   sfx \
-   sot \
subsequenttest \
-   svl \
-   svt \
-   svx \
-   svxcore \
test \
-   tk \
-   tl \
-   ucbhelper \
unotest \
-   utl \
-   vbahelper \
-   vcl \
-   xo \
 ))
 
 $(eval $(call gb_CppunitTest_set_include,sc_headerfootercontentobj,\
-   -I$(SRCDIR)/sc/source/ui/inc \
-   -I$(SRCDIR)/sc/inc \
$$(INCLUDE) \
 ))
 
@@ -64,7 +35,7 @@ $(eval $(call 
gb_CppunitTest_use_ure,sc_headerfootercontentobj))
 $(eval $(call gb_CppunitTest_use_vcl,sc_headerfootercontentobj))
 
 $(eval $(call gb_CppunitTest_use_components,sc_headerfootercontentobj,\
-$(sc_unoapi_common_components) \
+   $(sc_unoapi_common_components) \
 ))
 
 $(eval $(call gb_CppunitTest_use_configuration,sc_headerfootercontentobj))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 111920] Cells no automatically recalculated when formula is dependent of language and this is changed

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

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
Version|5.4.0.3 release |4.1.0.4 release
 OS|Windows (All)   |All
 CC||r...@post.cz

--- Comment #5 from raal  ---

I can confirm with Version: 6.2.0.0.alpha0+
Build ID: b7e139fa21607f488465fd87333db757ad0c91a2
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3; 
and 4.1

When the lenguage of cell is English (decimal separator is ".") the formula
TEXT(12345/10,"#.000") returns "1234.500"
but when the lenguage of cell is Spanish (decimal separator is ",") the formula
TEXT(12345/10,"#.000") return "1.235"
When you change cell language in the "Format cells" dialog or when you change
locale settings in Tools -> Options... -> Language Settings -> Languages and
the result of the function is diferent, the cell is not automatically
recalculated

---
informational message:
Because the current formula separator settings conflict with the locale, the
formula separators have been reset to their default values.

can be tweaked or we should trigger recalculation.

-- 
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 112862] [META] DOC (binary) Table of Contents (ToC) and Index related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||118972


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118972
[Bug 118972] Writer should recognize ToC entries structure from MSO DOC/X (test
with Update index)
-- 
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 104524] [META] DOCX (OOXML) Table of Contents (ToC) and Index related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||118972


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118972
[Bug 118972] Writer should recognize ToC entries structure from MSO DOC/X (test
with Update index)
-- 
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 118972] Writer should recognize ToC entries structure from MSO DOC/X (test with Update index)

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

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Blocks|89606   |104524, 112862


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=104524
[Bug 104524] [META] DOCX (OOXML) Table of Contents (ToC) and Index related
issues
https://bugs.documentfoundation.org/show_bug.cgi?id=112862
[Bug 112862] [META] DOC (binary) Table of Contents (ToC) and Index related
issues
-- 
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 89606] [META] Table of Contents and Indexes bugs and enhancements

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

Aron Budea  changed:

   What|Removed |Added

 Depends on|118972  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118972
[Bug 118972] Writer should recognize ToC entries structure from MSO DOC/X (test
with Update index)
-- 
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: lotuswordpro/source

2018-07-27 Thread Libreoffice Gerrit user
 lotuswordpro/source/filter/lwplayout.cxx |   31 ---
 lotuswordpro/source/filter/lwplayout.hxx |   12 ++--
 2 files changed, 26 insertions(+), 17 deletions(-)

New commits:
commit d97dd0d7e9075f5cdb5f3b6a62256d0fdca6d425
Author: Caolán McNamara 
AuthorDate: Fri Jul 27 08:58:56 2018 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jul 27 17:15:10 2018 +0200

ofz#9603 infinite recursion

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

diff --git a/lotuswordpro/source/filter/lwplayout.cxx 
b/lotuswordpro/source/filter/lwplayout.cxx
index 487058cbb08b..5e548d1a6019 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -588,6 +588,7 @@ void LwpLayoutMisc::Read(LwpObjectStream* pStrm)
 LwpMiddleLayout::LwpMiddleLayout( LwpObjectHeader const , LwpSvStream* 
pStrm )
 : LwpVirtualLayout(objHdr, pStrm)
 , m_bGettingGeometry(false)
+, m_bGettingBackgroundStuff(false)
 {
 }
 
@@ -655,21 +656,28 @@ rtl::Reference 
LwpMiddleLayout::GetBasedOnStyle()
 * @descr:   Get the geometry of current layout
 *
 */
-LwpLayoutGeometry* LwpMiddleLayout::Geometry()
+LwpLayoutGeometry* LwpMiddleLayout::GetGeometry()
 {
+if (m_bGettingGeometry)
+throw std::runtime_error("recursion in layout");
+m_bGettingGeometry = true;
+
+LwpLayoutGeometry* pRet = nullptr;
 if( !m_LayGeometry.IsNull() )
 {
-return dynamic_cast (m_LayGeometry.obj().get());
+pRet = dynamic_cast (m_LayGeometry.obj().get());
 }
 else
 {
 rtl::Reference xBase(GetBasedOnStyle());
 if (LwpMiddleLayout* pLay = 
dynamic_cast(xBase.get()))
 {
-return pLay->GetGeometry();
+pRet = pLay->GetGeometry();
 }
 }
-return nullptr;
+
+m_bGettingGeometry = false;
+return pRet;
 }
 
 /**
@@ -818,21 +826,30 @@ LwpBorderStuff* LwpMiddleLayout::GetBorderStuff()
 */
 LwpBackgroundStuff* LwpMiddleLayout::GetBackgroundStuff()
 {
+if (m_bGettingBackgroundStuff)
+throw std::runtime_error("recursion in layout");
+m_bGettingBackgroundStuff = true;
+
+LwpBackgroundStuff* pRet = nullptr;
+
 if(m_nOverrideFlag & OVER_BACKGROUND)
 {
 LwpLayoutBackground* pLayoutBackground = 
dynamic_cast(m_LayBackgroundStuff.obj().get());
-return pLayoutBackground ? >GetBackgoudStuff() : 
nullptr;
+pRet = pLayoutBackground ? >GetBackgoudStuff() : 
nullptr;
 }
 else
 {
 rtl::Reference xBase(GetBasedOnStyle());
 if (LwpMiddleLayout* pLay = 
dynamic_cast(xBase.get()))
 {
-return pLay->GetBackgroundStuff();
+pRet = pLay->GetBackgroundStuff();
 }
 }
-return nullptr;
+
+m_bGettingBackgroundStuff = false;
+return pRet;
 }
+
 /**
  * @descr:  create xfborder.
 */
diff --git a/lotuswordpro/source/filter/lwplayout.hxx 
b/lotuswordpro/source/filter/lwplayout.hxx
index 2d0694b67864..98d7ca515906 100644
--- a/lotuswordpro/source/filter/lwplayout.hxx
+++ b/lotuswordpro/source/filter/lwplayout.hxx
@@ -347,19 +347,11 @@ class LwpMiddleLayout : public LwpVirtualLayout
 public:
 LwpMiddleLayout( LwpObjectHeader const , LwpSvStream* pStrm );
 virtual ~LwpMiddleLayout() override;
-LwpLayoutGeometry* GetGeometry()
-{
-if (m_bGettingGeometry)
-throw std::runtime_error("recursion in layout");
-m_bGettingGeometry = true;
-auto pRet = Geometry();
-m_bGettingGeometry = false;
-return pRet;
-}
 double GetGeometryHeight();
 double GetGeometryWidth();
 LwpBorderStuff* GetBorderStuff();
 LwpBackgroundStuff* GetBackgroundStuff();
+LwpLayoutGeometry* GetGeometry();
 enumXFTextDir GetTextDirection();
 XFBorders* GetXFBorders();
 LwpColor* GetBackColor();
@@ -402,7 +394,6 @@ protected:
 virtual bool IsAutoGrowDown() override;
 private:
 LwpObjectID m_BasedOnStyle;
-LwpLayoutGeometry* Geometry();
 protected:
 enum
 {
@@ -422,6 +413,7 @@ protected:
 LwpObjectID m_LayBackgroundStuff;
 LwpObjectID m_LayExtBorderStuff;
 boolm_bGettingGeometry;
+boolm_bGettingBackgroundStuff;
 public:
 LwpObjectID& GetContent() { return m_Content; }
 LwpTabOverride* GetTabOverride();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108948] Crash using UNO java to show dialog and close document afterwards (vcl::Window::SetWindowPeer())

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

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal  ---
How should I run your program?
Tried
java CrashExample.java
Error: Could not find or load main class CrashExample.java

-- 
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 118639] Slow performance to the point of being unuseable

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

--- Comment #6 from Stuart Edwards  ---
I do have the auto recovery setting turned on - with a 10 min interval, but not
the 'always create a backup copy'. When I delete all 2 files, LO functions
normally - at least for the short term.

I suspect that while LO has been non responsive it was keeping busy creating
empty backup files for this one spreadsheet.  This morning for example it was
generating one every 3 seconds (21/min).  I have had the offending file open
for an hour or so now and no new backups have been created - so it seems to be
an intermittent 'feature'.

I did see in a 4/user/backup-old directory for LO that there were another 17000
copies dating back to 2016. This has been occurring with both LO and LODev.

-- 
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 118972] Writer should recognize ToC entries structure from MSO DOC/X (test with Update index)

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

--- Comment #1 from Timur  ---
Created attachment 143805
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143805=edit
Test MSO DOC with ToC

-- 
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 118966] LibreOffice doesn't use antialiasing? in gtk/gtk3

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

Miklos Vajna  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |
 Status|NEW |ASSIGNED

-- 
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 118972] Writer should recognize ToC entries structure from MSO DOC/X (test with Update index)

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

Timur  changed:

   What|Removed |Added

 Blocks||89606


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
-- 
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 89606] [META] Table of Contents and Indexes bugs and enhancements

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

Timur  changed:

   What|Removed |Added

 Depends on||118972


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118972
[Bug 118972] Writer should recognize ToC entries structure from MSO DOC/X (test
with Update index)
-- 
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 118972] New: Writer should recognize ToC entries structure from MSO DOC/X (test with Update index)

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

Bug ID: 118972
   Summary: Writer should recognize ToC entries structure from MSO
DOC/X (test with Update index)
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

Created attachment 143804
  --> https://bugs.documentfoundation.org/attachment.cgi?id=143804=edit
Test MSO DOCX with ToC

Writer and Word seem to be mutually not interoperable on import to recognize
entries set in Table of Contents (ToC).
While ToC looks fine on import, Update index shows that they don't really
recognize and import ToC structure.

To test, open in LO attached Test DOCX with ToC created in MSO and right-click
Update index. Structure is changed and that is obvious because default tab
stops are set differently. That doesn't happen with custom ToC saved in ODT. 

I'll set as Enhancement. 
This is Fileopen. Filesave to DOC and DOCX is another issue. Update index on
fileopen of RT file loses structure.

-- 
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-27 Thread Libreoffice Gerrit user
 sw/source/filter/xml/xmlimp.cxx |   11 +--
 1 file changed, 1 insertion(+), 10 deletions(-)

New commits:
commit aca1bcb5a28c35de1b893388ec6327a66ce97ef7
Author: Caolán McNamara 
AuthorDate: Fri Jul 27 12:20:35 2018 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jul 27 16:37:33 2018 +0200

ofz#9607 Abrt

Change-Id: I42a4cba41df0e20ef20984b18bfb605009aae1cb
Reviewed-on: https://gerrit.libreoffice.org/58186
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sw/source/filter/xml/xmlimp.cxx b/sw/source/filter/xml/xmlimp.cxx
index 7370eba1f353..598d12fead74 100644
--- a/sw/source/filter/xml/xmlimp.cxx
+++ b/sw/source/filter/xml/xmlimp.cxx
@@ -1893,16 +1893,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool 
TestImportDOCX(SvStream )
 {
 ret = xFilter->filter(aArgs);
 }
-catch (const css::io::IOException&)
-{
-}
-catch (const css::lang::IllegalArgumentException&)
-{
-}
-catch (const css::lang::WrappedTargetRuntimeException&)
-{
-}
-catch (const std::exception&)
+catch (...)
 {
 }
 xDocSh->SetLoading(SfxLoadedFlags::ALL);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108769] [META] DOCX (OOXML) character-related issues

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108769
Bug 108769 depends on bug 117988, which changed state.

Bug 117988 Summary: FILEOPEN An empty line is too tall in the attached DOCX
https://bugs.documentfoundation.org/show_bug.cgi?id=117988

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108760] [META] DOCX (OOXML) style bugs and enhancements

2018-07-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108760
Bug 108760 depends on bug 117988, which changed state.

Bug 117988 Summary: FILEOPEN An empty line is too tall in the attached DOCX
https://bugs.documentfoundation.org/show_bug.cgi?id=117988

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 118049] Style "Title" doubles text if selected after writing the text. The problem disappears after pressing the Enter key

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

Xisco Faulí  changed:

   What|Removed |Added

Version|6.1.0.0.beta1+  |6.2.0.0.alpha0+ Master

-- 
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 118725] UI: No visual change after applying a paragraph style, until scrolling (no redraw)

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

Xisco Faulí  changed:

   What|Removed |Added

Version|6.1.0.0.alpha1+ |6.2.0.0.alpha0+ Master

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


  1   2   3   4   >