[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=10
Bug 10 depends on bug 64264, which changed state.

Bug 64264 Summary: FILEOPEN: Table in docx is not rendered correctly due 
"repeat heading" (bad handling of isolated tblHeader row settings)
https://bugs.documentfoundation.org/show_bug.cgi?id=64264

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

2018-09-19 Thread Libreoffice Gerrit user
 sw/qa/extras/ooxmlexport/data/tdf64264.docx  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx   |   17 +++
 writerfilter/source/dmapper/DomainMapperTableManager.cxx |2 -
 3 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit ace6bbf3da9ae27aca87865b6be887a3aed341fc
Author: László Németh 
AuthorDate: Wed Sep 19 13:36:57 2018 +0200
Commit: László Németh 
CommitDate: Thu Sep 20 07:54:22 2018 +0200

tdf#64264 DOCX import: fix row count of repeating table header

by ignoring isolated tblHeader settings, according to the standard.
(OOXML 17.4.49 tblHeader (Repeat Table Row on Every New Page)
"...if this row [with tblHeader property] is not contiguously connected
with the first row of the table (that is, if this table row is not
either the first row, or all rows between this row and the first row
are not marked as header rows) then this property shall be ignored.")

Note: with this fix, in a mixed environment, LibreOffice is able to
fix the known problems of MS Word 2013/2016 by removing the isolated
tblHeaders during DOCX import/export (such problems in MSO: missing
repeating headers in a few pages or in the whole table, despite the
correct settings; and non-modifiable repeat header row property in
the table settings).

Change-Id: I73e8394a75b77c937a4bac37d99ff747ad95a06e
Reviewed-on: https://gerrit.libreoffice.org/60765
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf64264.docx 
b/sw/qa/extras/ooxmlexport/data/tdf64264.docx
new file mode 100644
index ..e2fea64dada7
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf64264.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index 1849d05cb008..7aa03eb79cc2 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -743,6 +743,23 @@ DECLARE_OOXMLEXPORT_TEST(testTdf118691, "tdf118691.docx")
 CPPUNIT_ASSERT_EQUAL(OUString("Before\nAfter"), xCell->getString());
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf64264, "tdf64264.docx")
+{
+// DOCX table rows with tblHeader setting mustn't modify the count of the
+// repeated table header rows, when there is rows before them without 
tblHeader settings.
+xmlDocPtr pDump = parseLayoutDump();
+CPPUNIT_ASSERT_EQUAL(2, getPages());
+
+// table starts on page 1 and finished on page 2
+// and it has got only a single repeating header line
+assertXPath(pDump, "/root/page[2]/body/tab", 1);
+assertXPath(pDump, "/root/page[2]/body/tab/row", 47);
+CPPUNIT_ASSERT_EQUAL(OUString("Repeating Table Header"),
+ 
parseDump("/root/page[2]/body/tab/row[1]/cell[1]/txt/text()"));
+CPPUNIT_ASSERT_EQUAL(OUString("Text"),
+ 
parseDump("/root/page[2]/body/tab/row[2]/cell[1]/txt/text()"));
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.cxx 
b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
index 37f07f21a556..ed7dfebe97c4 100644
--- a/writerfilter/source/dmapper/DomainMapperTableManager.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
@@ -200,7 +200,7 @@ bool DomainMapperTableManager::sprm(Sprm & rSprm)
 case NS_ooxml::LN_CT_TrPrBase_tblHeader:
 // if nIntValue == 1 then the row is a repeated header line
 // to prevent later rows from increasing the repeating 
m_nHeaderRepeat is set to NULL when repeating stops
-if( nIntValue > 0 && m_nHeaderRepeat >= 0 )
+if( nIntValue > 0 && m_nHeaderRepeat == 
static_cast(m_nRow) )
 {
 ++m_nHeaderRepeat;
 TablePropertyMapPtr pPropMap( new TablePropertyMap );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 119966] Support file URI scheme in format of 'file:///' from HTML clipboard content. This is a format generated from MSO 2007-2013

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119966

raal  changed:

   What|Removed |Added

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

--- Comment #3 from raal  ---
Confirm with Version: 6.2.0.0.alpha0+
Build ID: a27ae800fed5a974c9b255f7ce2b38ec2dbaa426
CPU threads: 4; OS: Windows 6.1; UI render: default;   and MSOffice 2010

-- 
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 119999] Request Calc Function: A vlookup/sumif type of function that will access the Libreoffice base table or query

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=11

perie_...@hotmail.com changed:

   What|Removed |Added

   Keywords||accessibility, filter:ods,
   ||needsDevAdvice,
   ||needsDevEval, perf,
   ||topicDesign, topicUI

-- 
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 119999] New: Request Calc Function: A vlookup/sumif type of function that will access the Libreoffice base table or query

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=11

Bug ID: 11
   Summary: Request Calc Function: A vlookup/sumif type of
function that will access the Libreoffice base table
or query
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: perie_...@hotmail.com

Created attachment 145049
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145049=edit
workflow

Requesting for a Calc Function that is similar to a lookup or sumif that can
access the libreoffice Base tables or query (once defined as data source). 

Having this functionality would be a great help to individuals who deals with
huge amount of data (since Base is far more efficient  than excel when it comes
to calculations and other stuffs )

-- 
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 119998] Enhancement: Inactive toolbar behavior

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119998

perie_...@hotmail.com changed:

   What|Removed |Added

   Keywords||accessibility, perf,
   ||topicCleanup, topicDesign,
   ||topicUI

-- 
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 119998] New: Enhancement: Inactive toolbar behavior

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119998

Bug ID: 119998
   Summary: Enhancement: Inactive toolbar behavior
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: perie_...@hotmail.com

Created attachment 145048
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145048=edit
screenshots with text

Any inactive toolbars should remain hidden unless otherwise locked by the
users. Sidebar should be the only facility to access any features that is not
enabled by users.

OR 

Keep them on a floating mode (dont include it in the UI).

example: 
Text Formatting is not part of my active toolbars but whenever I type, the said
toolbar appears even though I have my Sidebar already.

-- 
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 70638] ENHANCEMENT: Protect the *.odb-file by setting a password to the file

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70638

perie_...@hotmail.com changed:

   What|Removed |Added

   Keywords||accessibility,
   ||needsDevAdvice, topicDesign

-- 
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 70638] ENHANCEMENT: Protect the *.odb-file by setting a password to the file

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70638

--- Comment #6 from perie_...@hotmail.com ---
any update on this feature?

-- 
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 119997] UI FILEOPEN Slide toolbars not visible when opening a slideshow saved in slide sorter view

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119997

--- Comment #2 from Daniel Collins  ---
Created attachment 145047
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145047=edit
Four slides: saved in Slide Sorter view

-- 
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 92616] PIVOTTABLE: Grouped Column Fields problems including with drill to details

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92616

--- Comment #8 from a...@patternjugglers.co.nz ---
Hi - have taken the time to test using 
Version: 6.0.5.2
Build ID: 00m0(Build:2)
CPU threads: 4; OS: Linux 4.12; UI render: default; VCL: kde4; 
Locale: en-NZ (en_US.UTF-8); Calc: group

I can confirm that Issue 4 in my original report is now fixed - Thanks!
Issues 1-3 remain.

Thanks, Alex

-- 
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 119997] UI FILEOPEN Slide toolbars not visible when opening a slideshow saved in slide sorter view

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119997

--- Comment #1 from Daniel Collins  ---
Also checked in 6.1.1.2, still there.

-- 
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 119997] New: UI FILEOPEN Slide toolbars not visible when opening a slideshow saved in slide sorter view

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119997

Bug ID: 119997
   Summary: UI FILEOPEN Slide toolbars not visible when opening a
slideshow saved in slide sorter view
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dcoll...@superdan.net

Description:
Say we open a slideshow that was saved in Slide Sorter view. It opens again in
Slide Sorter view, but the Slide Sorter and Slide View toolbars fail to appear.
(Esp. troubling because the "Slides per Row" widget is only available from that
toolbar). If we switch to Normal view, and then back to Slide Sorter, then the
associated toolbars appear. 

I believe this is new behavior. In Version 5 I was accustomed to opening
slideshows in this format and have the Slide Sorter (and so Slides per Row
widget) immediately available. 

Steps to Reproduce:
1. Open a slideshow saved in Slide Sorter format.

Actual Results:
Slide View/Slide Sorter toolbars are not visible.

Expected Results:
Slide View/Slide Sorter toolbars should be visible.


Reproducible: Always


User Profile Reset: No



Additional Info:

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


[Libreoffice-bugs] [Bug 119971] Calc Update Link (from sources) issue

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119971

perie_...@hotmail.com changed:

   What|Removed |Added

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

--- Comment #4 from perie_...@hotmail.com ---


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

-- 
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 80649] Frame context menu appears on picture when anchored as character, when context menu is started immediately after another picture was selected

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80649

--- Comment #12 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 112480] ODF: wrong attribute 'enhanced-path' is saved

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112480

--- 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 106238] UI - pivot table - Custom sorting list dialog doesn't appear

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106238

--- 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 107989] EDITING: Some sort of artifacts in the corners of a shape when using line styles

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107989

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 100244] CRASH: Pivot table seems to cause massive memory leak

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100244

--- 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 84425] PIVOTTABLE: Dynamic Table column field filter drop down menu not activated

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84425

--- Comment #17 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 73845] PIVOTTABLE: Filter incorrectly restored after FILEOPEN

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73845

--- 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 92616] PIVOTTABLE: Grouped Column Fields problems including with drill to details

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92616

--- 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 106622] PIVOT TABLE: wrong selected fields of Page Fields after updating table

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106622

--- 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 94487] Pivot Table: Fields list doesn't update

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94487

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 71111] PIVOTTABLE: Possible confusions with pivot table function names

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=7

--- 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 119318] PRINTING Impress handouts ignores selected slide order if "According to layout"

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119318

--- Comment #3 from Daniel Collins  ---
I agree this looks to be nicely fixed in LO 6.1. (Apparently I got a partial
fix in 6.0.) Feel free to close this; thanks for the update.

-- 
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 119996] New: Remove support for GNOME Shell application menu

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119996

Bug ID: 119996
   Summary: Remove support for GNOME Shell application menu
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Keywords: needsDevEval
  Severity: minor
  Priority: low
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@libreoffice.org

This was a cool little feature added by Caolán in [1], but from GNOME 3.32 on,
it will effectively become dead code.

>From GNOME 3.30’s release notes:

“From 3.32, application menus will no longer be shown in the GNOME 3 top bar,
and application developers are recommended to remove their application menus in
time for GNOME 3.32” [1]

GNOME designers have *finally* realized what an usability nightmare this design
was.


[1]: https://cgit.freedesktop.org/libreoffice/core/log/?qt=grep=fdo%2348835
[2]: https://help.gnome.org/misc/release-notes/3.30/developers.html.en

-- 
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 98500] Multiple animated GIFs cause 100% CPU utilization in Impress

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98500

--- Comment #28 from rickpr...@live.com ---
This bug still happens for me. 

Maybe it's computer specific? Only happens on certain computers?

-- 
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 119832] Animated Gif's Cause Libreoffice Impress to Hang / Crash / Become Very Unstable Under Windows 7 / 10

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119832

--- Comment #5 from rickpr...@live.com ---
Considering this bug is pretty much the same as the one Tolesto mentions when
are these bugs going to get fixed?

Having images such as animated gifs causing machines to hang is a pretty
serious bug and isn't something you i'd imagine having running on software that
was deemed an alternative to commercial software.

-- 
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 74317] Aligning items could be simpler

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74317

--- Comment #5 from eternalt...@gmail.com ---
(In reply to Tin Man from comment #0)
> alignment guides. To see how alignment guides work, see
> http://www.pixelmator.com/tutorials/featured/alignment-guides/ .

Link is no longer valid, I think.

-- 
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 76070] Implement Live layout

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76070

eternalt...@gmail.com changed:

   What|Removed |Added

 CC||eternalt...@gmail.com

--- Comment #2 from eternalt...@gmail.com ---
This is similar to Bug #74317.

Came here looking to file a bug about live-alignment guides. This is lacking in
all of the LO Suite.

Description:

When clicking and dragging an element like an image or a table across the
canvas, live guides automatically show and allow for the element being dragged
to snap against it. Sometimes the guides show top lines against nearby elements
like paragraph; sometimes the guides show up bisecting the canvas in the middle
or center (or both); better still, guides may be shown at 25%, 50% and 75% of
the length or the breadth of the canvas too.

The easiest implementation IMO is to show all the guides by default whenever an
element is being dragged. The more intuitive option is to show (vertical /
horizontal) guides depending on the direction of the drag and depending on the
position relative to nearby elements.

Projects:

Writer, Impress and Draw.

-- 
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 74317] Aligning items could be simpler

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74317

eternalt...@gmail.com changed:

   What|Removed |Added

 CC||eternalt...@gmail.com

--- Comment #4 from eternalt...@gmail.com ---
This is similar to Bug #76070.

Came here looking to file a bug about live-alignment guides. This is lacking in
all of the LO Suite.

Description:

When clicking and dragging an element like an image or a table across the
canvas, live guides automatically show and allow for the element being dragged
to snap against it. Sometimes the guides show top lines against nearby elements
like paragraph; sometimes the guides show up bisecting the canvas in the middle
or center (or both); better still, guides may be shown at 25%, 50% and 75% of
the length or the breadth of the canvas too.

The easiest implementation IMO is to show all the guides by default whenever an
element is being dragged. The more intuitive option is to show (vertical /
horizontal) guides depending on the direction of the drag and depending on the
position relative to nearby elements.

Projects:

Writer, Impress and Draw.

-- 
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' - xmlsecurity/inc xmlsecurity/source

2018-09-19 Thread Libreoffice Gerrit user
 xmlsecurity/inc/documentsignaturehelper.hxx   |3 ++-
 xmlsecurity/source/helper/documentsignaturehelper.cxx |   10 +-
 xmlsecurity/source/helper/ooxmlsecexporter.cxx|6 +++---
 xmlsecurity/source/helper/xsecctl.cxx |2 +-
 4 files changed, 11 insertions(+), 10 deletions(-)

New commits:
commit 59cdc0023f2429be6fe25f4570e07fd81a8f5d00
Author: Samuel Mehrbrodt 
AuthorDate: Tue Sep 18 09:59:08 2018 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Sep 20 01:54:01 2018 +0200

tdf#118567 Signature Line: Fix ooxml signing

Change-Id: Ie2467db7ab209f10e92b6db1f5680e7a9be614ab
Reviewed-on: https://gerrit.libreoffice.org/60676
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 
(cherry picked from commit c3de0478fbcbe1dc22ab5dea42b423bb8e45fcba)
Reviewed-on: https://gerrit.libreoffice.org/60735
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/xmlsecurity/inc/documentsignaturehelper.hxx 
b/xmlsecurity/inc/documentsignaturehelper.hxx
index 1c5d1b97a972..bacef66746cd 100644
--- a/xmlsecurity/inc/documentsignaturehelper.hxx
+++ b/xmlsecurity/inc/documentsignaturehelper.hxx
@@ -102,7 +102,8 @@ namespace DocumentSignatureHelper
 void writeSignedProperties(
 const css::uno::Reference& 
xDocumentHandler,
 const SignatureInformation& signatureInfo,
-const OUString& sDate);
+const OUString& sDate,
+const bool bWriteSignatureLineData);
 };
 
 #endif // INCLUDED_XMLSECURITY_INC_DOCUMENTSIGNATUREHELPER_HXX
diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx 
b/xmlsecurity/source/helper/documentsignaturehelper.cxx
index 8bb06b84e92a..37342b536349 100644
--- a/xmlsecurity/source/helper/documentsignaturehelper.cxx
+++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx
@@ -548,7 +548,7 @@ void DocumentSignatureHelper::writeDigestMethod(
 void DocumentSignatureHelper::writeSignedProperties(
 const uno::Reference& xDocumentHandler,
 const SignatureInformation& signatureInfo,
-const OUString& sDate)
+const OUString& sDate, const bool bWriteSignatureLineData)
 {
 {
 rtl::Reference pAttributeList(new 
SvXMLAttributeList());
@@ -587,8 +587,8 @@ void DocumentSignatureHelper::writeSignedProperties(
 xDocumentHandler->endElement("xd:SignaturePolicyImplied");
 xDocumentHandler->endElement("xd:SignaturePolicyIdentifier");
 
-if (!signatureInfo.ouSignatureLineId.isEmpty() && 
signatureInfo.aValidSignatureImage.is()
-&& signatureInfo.aInvalidSignatureImage.is())
+if (bWriteSignatureLineData && !signatureInfo.ouSignatureLineId.isEmpty()
+&& signatureInfo.aValidSignatureImage.is() && 
signatureInfo.aInvalidSignatureImage.is())
 {
 rtl::Reference pAttributeList(new 
SvXMLAttributeList());
 pAttributeList->AddAttribute(
@@ -607,7 +607,7 @@ void DocumentSignatureHelper::writeSignedProperties(
 }
 
 {
-// Write SignatureLineId element
+// Write SignatureLineValidImage element
 xDocumentHandler->startElement(
 "loext:SignatureLineValidImage",
 Reference(new SvXMLAttributeList()));
@@ -622,7 +622,7 @@ void DocumentSignatureHelper::writeSignedProperties(
 }
 
 {
-// Write SignatureLineId element
+// Write SignatureLineInvalidImage element
 xDocumentHandler->startElement(
 "loext:SignatureLineInvalidImage",
 Reference(new SvXMLAttributeList()));
diff --git a/xmlsecurity/source/helper/ooxmlsecexporter.cxx 
b/xmlsecurity/source/helper/ooxmlsecexporter.cxx
index 6f9b2eb946dc..08cf2788f554 100644
--- a/xmlsecurity/source/helper/ooxmlsecexporter.cxx
+++ b/xmlsecurity/source/helper/ooxmlsecexporter.cxx
@@ -353,9 +353,9 @@ void OOXMLSecExporter::Impl::writeSignatureInfo()
 pAttributeList->AddAttribute("xmlns", 
"http://schemas.microsoft.com/office/2006/digsig;);
 m_xDocumentHandler->startElement("SignatureInfoV1", 
uno::Reference(pAttributeList.get()));
 
-m_xDocumentHandler->startElement("SetupId", 
uno::Reference(new SvXMLAttributeList()));
+m_xDocumentHandler->startElement("SetupID", 
uno::Reference(new SvXMLAttributeList()));
 m_xDocumentHandler->characters(m_rInformation.ouSignatureLineId);
-m_xDocumentHandler->endElement("SetupId");
+m_xDocumentHandler->endElement("SetupID");
 m_xDocumentHandler->startElement("SignatureText", 
uno::Reference(new SvXMLAttributeList()));
 m_xDocumentHandler->endElement("SignatureText");
 m_xDocumentHandler->startElement("SignatureImage", 
uno::Reference(new SvXMLAttributeList()));
@@ -410,7 +410,7 @@ void OOXMLSecExporter::Impl::writePackageSignature()
 m_xDocumentHandler->startElement("xd:QualifyingProperties", 
uno::Reference(pAttributeList.get()));
 }
 
-DocumentSignatureHelper::writeSignedProperties(m_xDocumentHandler, 
m_rInformation, 

[Libreoffice-bugs] [Bug 118567] Signature Line: Signing ooxml produces invalid signature

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118567

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.2.0|target:6.2.0 target:6.1.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 118567] Signature Line: Signing ooxml produces invalid signature

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118567

--- Comment #4 from Commit Notification 
 ---
Samuel Mehrbrodt committed a patch related to this issue.
It has been pushed to "libreoffice-6-1":

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

tdf#118567 Signature Line: Fix ooxml signing

It will be available in 6.1.2.

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

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

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


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

2018-09-19 Thread Libreoffice Gerrit user
 comphelper/source/xml/xmltools.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4ceefe7c66f19e16e8e4414419e38f75c55ec6fd
Author: Samuel Mehrbrodt 
AuthorDate: Wed Sep 19 08:16:42 2018 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Sep 20 01:52:39 2018 +0200

generateGUIDString: Fix incorrect string length

This bug caused signature line IDs in OOXML to be written
with an appended "_x_".

Change-Id: If219279a5d5177ec5fac2d9dd747dc015c16b6bc
Reviewed-on: https://gerrit.libreoffice.org/60736
Reviewed-by: Noel Grandin 
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit 8c7e64cd3854a912ef33b5a717a9f36856925c7c)
Reviewed-on: https://gerrit.libreoffice.org/60766
Reviewed-by: Thorsten Behrens 

diff --git a/comphelper/source/xml/xmltools.cxx 
b/comphelper/source/xml/xmltools.cxx
index e9df23c73e1e..24919ae35044 100644
--- a/comphelper/source/xml/xmltools.cxx
+++ b/comphelper/source/xml/xmltools.cxx
@@ -102,7 +102,7 @@ namespace comphelper
 aSeq[0], aSeq[1], aSeq[2], aSeq[3], aSeq[4], aSeq[5], 
aSeq[6], aSeq[7], aSeq[8],
 aSeq[9], aSeq[10], aSeq[11], aSeq[12], aSeq[13], aSeq[14], 
aSeq[15]);
 
-return OString(str, SAL_N_ELEMENTS(str));
+return OString(str);
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 119697] FILEOPEN DOCX Text box Shape (with absolute position to column in Word?) is positioned incorrectly

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119697

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||ba...@caesar.elte.hu

--- Comment #2 from Aron Budea  ---
Confirmed with LO 6.1.1.2 / Windows 7.

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


[Libreoffice-bugs] [Bug 119940] Bolding a Hebrew word in a sentence with some embedded Hebrew fonts changes the intra-word spacing of surrounding words

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119940

--- Comment #10 from Khaled Hosny  ---
No idea what would be going here, but might be rounding errors duo to lack of
subpixel glyph positioning.

-- 
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 119642] Writer: Solid fill in 2007 DOCX text box shape imported separately and overlies the text (also if resaved in new MSO)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119642

Aron Budea  changed:

   What|Removed |Added

 Attachment #144604|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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


[Libreoffice-bugs] [Bug 99507] Paste Individual Image From MS Office fails (Paste special as GDI image works and should be default)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99507

--- Comment #15 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #12)
> The sequences are different between the two--the PowerPoint clip will paste
> image to Writer; while the Word clip will not. Looks like Word hits the
> empty CF_BITMAP bitmap first while the PowerPoint hits the PNG stream.
> 
> Is that why the paste from PowerPoint clip works and the paste from Word
> fails?
> 

@Miklos, *

If that is issue, would there be some way to guard against zero length
CF_BITMAP, or other "standard" clipboard formats that could trip things up?

Also, for interoperability, would it be worth creating a module to handle the
Art::GVML Clipformat? Its been around forever [1]

=-ref-=
[1] https://bugs.documentfoundation.org/show_bug.cgi?id=35176#c2

-- 
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 119642] Writer: Solid fill in 2007 DOCX text box shape imported separately and overlies the text (also if resaved in new MSO)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119642

Aron Budea  changed:

   What|Removed |Added

 Attachment #144603|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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


[Libreoffice-bugs] [Bug 99507] Paste Individual Image From MS Office fails (Paste special as GDI image works and should be default)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99507

--- Comment #14 from V Stuart Foote  ---
Created attachment 145045
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145045=edit
Windows clipboard PNG image clipped from Word

-- 
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 99507] Paste Individual Image From MS Office fails (Paste special as GDI image works and should be default)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99507

--- Comment #13 from V Stuart Foote  ---
Created attachment 145044
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145044=edit
Windows clipboard PNG image clipped from PowerPoint

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


[Libreoffice-bugs] [Bug 99507] Paste Individual Image From MS Office fails (Paste special as GDI image works and should be default)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99507

V Stuart Foote  changed:

   What|Removed |Added

 CC||vmik...@collabora.co.uk

--- Comment #12 from V Stuart Foote  ---
So here is an oddity--the same image pasted into PowerPoint 2016 and into Word
2016 has different results on image copy and paste, +V into empty Writer
6.1.1.2 document.

Attaching clips of NirSoft InsideClipboard stack of what PowerPoint, and then
what Word place onto clipboard.

The sequences are different between the two--the PowerPoint clip will paste
image to Writer; while the Word clip will not. Looks like Word hits the empty
CF_BITMAP bitmap first while the PowerPoint hits the PNG stream.

Is that why the paste from PowerPoint clip works and the paste from Word fails?

The Art::GVML Clipformat -- ID 49962 is an internal non-OOXML MS-ODRAWXML [1]
holding a ZIP of the embedded image.

=-ref-=
http://interoperability.blob.core.windows.net/files/MS-ODRAWXML/[MS-ODRAWXML]-150904.pdf

-- 
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 119367] UI / german translation: dialogues in english

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119367

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #12 from Thomas Lendo  ---
Have you renamed or deleted your user profile directory for LibreOffice? Only
with a fresh installation and a fresh profile we can exclude a profile problem.

What's your OS language?

Does the issue still exist when you go back to an older version of LibreOffice
that worked in the past before your update to 6.0.6?

-- 
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 42905] Wizard table: Remove autovalue from step2 which doesn't work since there's already autovalue in step3 which works.

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42905

--- Comment #17 from Julien Nabet  ---
I tried to find the code location in Java part, since it should be easy to
disable/remove the elems from Java part, so I started from
wizards/com/sun/star/wizards/table/TableWizard.java, got some elems from step 3
in PrimaryKeyHandler.java of the same directory.
Then FieldFormatter.java gives some elems too but nothing about autovalue,
entry required, ... fields. It seems wrapped into something but don't know how
and where.

I tried to get a bt from OFieldDescControl::ActivateAggregate but it can't go
up to java sources, gdb goes until
/home/julien/lo/libreoffice/bridges/source/jni_uno/jni_java2uno.cxx
but nothing more.
So I tried to display jo_method but gdb doesn't know how to deal with jstring.
(+ nothing about gdb and jstring on Google)

In brief, completely stuck.

-- 
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 84913] Repagination on PDF export changes page number in master document with hidden sections

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84913

--- Comment #31 from Roman Kuznetsov <79045_79...@mail.ru> ---
still present in

Version: 6.1.1.2 (x64)
Build ID: 5d19a1bfa650b796764388cd8b33a5af1f5baa1b
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: ru-RU (ru_RU); 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-bugs] [Bug 119971] Calc Update Link (from sources) issue

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119971

--- Comment #3 from perie_...@hotmail.com ---
(In reply to Oliver Brinzing from comment #2)
> your attached *.zip is empty, it's only 22 bytes ...
> 
> have you tried to use a hard recalc with "(Ctrl)+(Shift)+F9"  *)
> to update the files ?
> 
> *) New: UI: Add "Calculate All" to menu "Data\Calculate"
>https://bugs.documentfoundation.org/show_bug.cgi?id=119671

Thanks! It did work.

-- 
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 119900] After Scrolling a Long Chapter List in the Navigator, the Focus Jumps Back to Chapter with the Cursor in Content Navigation View

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119900

--- Comment #6 from Jim Raykowski  ---

(In reply to Xisco Faulí from comment #5)
> Regression introduced by:
> 
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=3a9877b74e1730424a41319a03f5b56a6102a76b
> 
> authorJim Raykowski2017-12-28 08:46:00 
> -0900
> committer Miklos Vajna   2018-01-05 17:55:06 
> +0100
> commit3a9877b74e1730424a41319a03f5b56a6102a76b (patch)
> tree  fb442b99960b5824960044365590014295aff1cf
> parent52bab68b384309d618b03373b247401c9bcfd3de (diff)
> tdf#114724 fix headings outline tracking highlight in Navigator
> 
> Bisected with: bibisect-linux64-6.1
> 
> Adding Cc: to Jim Raykowski

Reproducible when patch is removed. Reproducible in windows version 5.4.7.2
much before tdf#114724 patch merge. Not reproducible in Linux version 5.1.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 119985] EDITING The Graphics alignment property of the check box, option button and push button form controls can’t be modified

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119985

Drew Jensen  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 CC||qui...@gmail.com

--- Comment #2 from Drew Jensen  ---
Bibisect isn't being all that helpful.

I ran it using three different repositories 6.1, 6.2 and daily build each has
iterations the are good and most are bad. 

The commits listed from Daily build and 6.2 repos show changes that are only
fixes to typos in comments, but here are the comitt numbers anyway.

daily build: id=c814036604810e84d2b20f1407020cf6f003ab78

6.2 repo: id=133da6ed83b278b9e6059c5c1a3d49f9f402792e


and the 6.1 repo reports that the anomaly arrived with commit:

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

XGraphicObject: remove construct. with uniqueID
Also make getUniqueID return empty string.

author  Tomaž Vajngerl 

Last one looks like perhaps it has something to do with this. Still though
seems not that likely, but will add Tomaz to CC just in case.

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


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

2018-09-19 Thread Libreoffice Gerrit user
 sw/PythonTest_sw_python.mk |1 
 sw/qa/python/testdocuments/xscriptprovider.odt |binary
 sw/qa/python/xscriptprovider.py|   74 +
 3 files changed, 75 insertions(+)

New commits:
commit 62cd86977ca41677c56fb2d1f97bb1c5cbdbd416
Author: Vasily Melenchuk 
AuthorDate: Mon Sep 17 21:57:26 2018 +0300
Commit: Thorsten Behrens 
CommitDate: Wed Sep 19 23:50:01 2018 +0200

sw: new unit test for XScriptProvider

Change-Id: I2954bff51d6a507fef4d8a22ff5964735f1cee60
Reviewed-on: https://gerrit.libreoffice.org/60640
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/sw/PythonTest_sw_python.mk b/sw/PythonTest_sw_python.mk
index c47c5cbcbbd3..b9d8d509ced3 100644
--- a/sw/PythonTest_sw_python.mk
+++ b/sw/PythonTest_sw_python.mk
@@ -28,6 +28,7 @@ $(eval $(call 
gb_PythonTest_add_modules,sw_python,$(SRCDIR)/sw/qa/python,\
set_expression \
text_portion_enumeration_test \
var_fields \
+   xscriptprovider \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/sw/qa/python/testdocuments/xscriptprovider.odt 
b/sw/qa/python/testdocuments/xscriptprovider.odt
new file mode 100644
index ..fa3b8ec75229
Binary files /dev/null and b/sw/qa/python/testdocuments/xscriptprovider.odt 
differ
diff --git a/sw/qa/python/xscriptprovider.py b/sw/qa/python/xscriptprovider.py
new file mode 100644
index ..b79b379ad16d
--- /dev/null
+++ b/sw/qa/python/xscriptprovider.py
@@ -0,0 +1,74 @@
+#! /usr/bin/env python
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This file is part of the LibreOffice project.
+#
+# 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/.
+#
+import unittest
+import unohelper
+from org.libreoffice.unotest import UnoInProcess
+from com.sun.star.script.provider import ScriptFrameworkErrorException
+import uno
+
+
+class TestXScriptProvider(unittest.TestCase):
+
+@classmethod
+def setUpClass(cls):
+cls._uno = UnoInProcess()
+cls._uno.setUp()
+
+@classmethod
+def tearDownClass(cls):
+cls._uno.tearDown()
+
+def test_getScriptApplication(self):
+# getScript for built-in StarBasic function
+xMasterScriptProviderFactory = self.createMasterScriptProviderFactory()
+xScriptProvider = xMasterScriptProviderFactory.createScriptProvider("")
+xScript = xScriptProvider.getScript(
+"vnd.sun.star.script:Tools.Misc.CreateNewDocument?language=Basic&"
+"location=application")
+self.assertIsNotNone(xScript, "xScript was not loaded")
+
+def test_getScriptDocument(self):
+# getScript for StarBasic function in loaded document
+xDoc = self.__class__._uno.openTemplateFromTDOC("xscriptprovider.odt")
+xMasterScriptProviderFactory = self.createMasterScriptProviderFactory()
+xScriptProvider = 
xMasterScriptProviderFactory.createScriptProvider(xDoc)
+xScript = xScriptProvider.getScript(
+"vnd.sun.star.script:Standard.Module1.Main?language=Basic&"
+"location=document")
+self.assertIsNotNone(xScript, "xScript was not loaded")
+xDoc.close(True)
+
+def test_getScriptInvalidURI(self):
+# getScript fails with invalid URI
+xMasterScriptProviderFactory = self.createMasterScriptProviderFactory()
+xScriptProvider = xMasterScriptProviderFactory.createScriptProvider("")
+with self.assertRaises(ScriptFrameworkErrorException):
+xScript = xScriptProvider.getScript("invalid URI, isn't it?")
+
+def test_getScriptNotFound(self):
+# getScript fails when script not found
+xMasterScriptProviderFactory = self.createMasterScriptProviderFactory()
+xScriptProvider = xMasterScriptProviderFactory.createScriptProvider("")
+with self.assertRaises(ScriptFrameworkErrorException):
+xScript = xScriptProvider.getScript(
+"vnd.sun.star.script:NotExisting.NotExisting.NotExisting?"
+"language=Basic=document")
+
+def createMasterScriptProviderFactory(self):
+xServiceManager = uno.getComponentContext().ServiceManager
+return xServiceManager.createInstanceWithContext(
+"com.sun.star.script.provider.MasterScriptProviderFactory",
+uno.getComponentContext())
+
+
+if __name__ == '__main__':
+unittest.main()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 106228] [META] Icon theme issues

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106228

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||93866


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93866
[Bug 93866] ICONS: Parent icon theme links.txt duplicate records not inherited
in child themes
-- 
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 93866] ICONS: Parent icon theme links.txt duplicate records not inherited in child themes

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93866

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||106228


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106228
[Bug 106228] [META] Icon theme 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 45381] Inherit font for Western punctuation in CTL text.

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45381

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||113300


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113300
[Bug 113300] [META] Language detection 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 113300] [META] Language detection bugs and enhancements

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113300

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||45381


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=45381
[Bug 45381] Inherit font for Western punctuation in CTL text.
-- 
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 119903] 6.1.1 calc Format Cellule (SPREADSHEET FORMATTING CELL)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119903

Xisco Faulí  changed:

   What|Removed |Added

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

-- 
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 119995] Libreoffice Crash on Format Cells command

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119995

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||9903
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
it seems the same bug as bug 119903 but I can't reproduce it...

Could you please paste the info from Help - about LibreOffice ?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the information has been provided

-- 
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 119903] 6.1.1 calc Format Cellule (SPREADSHEET FORMATTING CELL)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119903

--- Comment #8 from Xisco Faulí  ---
Could you please paste the info from Help - about 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 119989] Crash in: SwIndex::SwIndex(SwIndexReg * const, long)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119989

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Thanks for reporting the issue.
Do you reproduce it with a blank document or with a specific document? If so,
could you please attach it.
OTOH, Could you please create and attach a screencast showing the steps?
There are various free screencast software available for use, including
Camstudio (Windows), Jing (Mac), Simple Screen Recorder (Linux) or
screencast-o-matic.com (Web).

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested screencast is provided.

-- 
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 119989] Crash in: SwIndex::SwIndex(SwIndexReg * const, long)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119989

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
   See Also||https://crashreport.libreof
   ||fice.org/stats/signature/Sw
   ||Index::SwIndex(SwIndexReg%2
   ||0*%20const,long)

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


[ANN] orcus 0.14.1 lands on master

2018-09-19 Thread Kohei Yoshida
Hi there,

So, as I hinted in my previous email, I've updated the orcus library[1]
to 0.14.1 on the master branch as of several hours ago.

The changes are mostly to address coverity issues, and to address minor
improvement on numerical precision during unit conversion, which caused
unit test failure on Debian i386 platform.

Also, this does not affect LibreOffice directly, but ixion also has a
new patch release of 0.14.1.  This may be of interest for those of you
who package orcus for distros.

Thanks,

Kohei

[1] https://gitlab.com/orcus/orcus

-- 
Kohei Yoshida, LibreOffice Calc volunteer hacker
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 119903] 6.1.1 calc Format Cellule (SPREADSHEET FORMATTING CELL)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119903

--- Comment #7 from Xisco Faulí  ---
I can't reproduce it in

Versión: 6.1.1.2
Id. de compilación: 5d19a1bfa650b796764388cd8b33a5af1f5baa1b
Subprocs. CPU: 1; SO: Windows 6.1; Repres. IU: predet.; 
Configuración regional: es-ES (es_ES); Calc: group threaded

To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

-- 
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 108014] [META] Writer character style bugs and enhancements

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108014
Bug 108014 depends on bug 56745, which changed state.

Bug 56745 Summary: EDITING: Character style (Western) sets size when other 
attributes are specified (Default Western font size may also be related)
https://bugs.documentfoundation.org/show_bug.cgi?id=56745

   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 56745] EDITING: Character style (Western) sets size when other attributes are specified (Default Western font size may also be related)

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56745

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #13 from Thomas Lendo  ---
(In reply to Harald Koester from comment #12)
> Checked bug again according to comment 3. (Win10)
Thanks, Harald, for testing.
> But the general problem, how inherited characteristics should be displayed
> in style dialogues is not solved with version 6.1.x. It's still not
> transparent how characteristics get their values if you use styles. Users
> will still be at least irritated.
This is covered by Bug 88559 - Display of inherited attributes from parent
styles in Styles dialog.

So I close this as WFM until somebody post the relevant commit.

-- 
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 99146] Duplication of footer

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99146

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #10 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to i.am.stack+LibreOffice from comment #9)
> Greetings,
> I can confirm that in every version I've used since, this frustrating bug
> still exists. I do not have the time at the moment to test on the absolute
> latest version, however, I do have two versions of Ubuntu that I can easily
> test on. The bug exists on both.
> 
> 16.04
> Version: 5.1.6.2
> Build ID: 1:5.1.6~rc2-0ubuntu1~xenial4
> CPU Threads: 4; OS Version: Linux 4.4; UI Render: default; 
> Locale: en-US (en_US.UTF-8); Calc: group
> 
> 
> 18.04
> Version: 6.0.3.2
> Build ID: 1:6.0.3-0ubuntu1
> CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: x11; 
> Locale: en-US (en_US.UTF-8); Calc: group

I can't repro in 

Version: 6.1.1.2 (x64)
Build ID: 5d19a1bfa650b796764388cd8b33a5af1f5baa1b
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: ru-RU (ru_RU); Calc: CL

please retest in LO 6.1

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


[Libreoffice-bugs] [Bug 112179] SLIDESHOW: black-out and white-out not working properly in fullscreen presenter mode

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112179

Piotr Porada  changed:

   What|Removed |Added

Version|5.4.1.2 release |Inherited From OOo

-- 
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 112179] SLIDESHOW: black-out and white-out not working properly in fullscreen presenter mode

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112179

--- Comment #5 from Piotr Porada  ---
As per instructions from Comment#4:

This bug is still present in the following version:

Version: 6.1.1.2
Build ID: 5d19a1bfa650b796764388cd8b33a5af1f5baa1b
CPU threads: 4; OS: Mac OS X 10.13.6; UI render: default; 
Locale: pl-PL (pl_PL.UTF-8); Calc: group threaded

The "About..." window also contains the link to the following commit:
https://gerrit.libreoffice.org/gitweb?p=core.git=log=5d19a1bfa650b796764388cd8b33a5af1f5baa1b

I also tested with version 3.3.0.4 - the bug is present there, so I will mark
the version, as inherited from OOo. The oldest version from the archive is:

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

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


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

2018-09-19 Thread Libreoffice Gerrit user
 sw/source/uibase/uiview/viewling.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit af8c304b8f984066d80d64f9a821ee9433e97781
Author: Caolán McNamara 
AuthorDate: Wed Sep 19 12:52:18 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 19 22:25:40 2018 +0200

null parent is a bad idea

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

diff --git a/sw/source/uibase/uiview/viewling.cxx 
b/sw/source/uibase/uiview/viewling.cxx
index 6824ea96bca9..1cb076a471d3 100644
--- a/sw/source/uibase/uiview/viewling.cxx
+++ b/sw/source/uibase/uiview/viewling.cxx
@@ -405,8 +405,8 @@ void SwView::HyphenateDocument()
 // do not hyphenate if interactive hyphenation is active elsewhere
 if (SwEditShell::HasHyphIter())
 {
-std::unique_ptr 
xBox(Application::CreateMessageDialog(nullptr, VclMessageType::Warning,
-VclButtonsType::Ok, SwResId(STR_MULT_INTERACT_HYPH_WARN)));
+std::unique_ptr 
xBox(Application::CreateMessageDialog(GetEditWin().GetFrameWeld(),
+VclMessageType::Warning, VclButtonsType::Ok, 
SwResId(STR_MULT_INTERACT_HYPH_WARN)));
 xBox->set_title(SwResId(STR_HYPH_TITLE));
 xBox->run();
 return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-09-19 Thread Libreoffice Gerrit user
 starmath/inc/dialog.hxx |   11 ---
 starmath/inc/pch/precompiled_sm.hxx |2 --
 starmath/inc/utility.hxx|4 
 starmath/source/dialog.cxx  |2 --
 starmath/source/utility.cxx |4 
 5 files changed, 23 deletions(-)

New commits:
commit 8d40a23aafc4c0972e052fbb58862228839cc7ef
Author: Caolán McNamara 
AuthorDate: Wed Sep 19 08:54:42 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 19 22:20:21 2018 +0200

drop some unnecessary headers

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

diff --git a/starmath/inc/dialog.hxx b/starmath/inc/dialog.hxx
index bd1c0d4bdd40..7c3f70c2d8e1 100644
--- a/starmath/inc/dialog.hxx
+++ b/starmath/inc/dialog.hxx
@@ -19,20 +19,9 @@
 #ifndef INCLUDED_STARMATH_INC_DIALOG_HXX
 #define INCLUDED_STARMATH_INC_DIALOG_HXX
 
-#include 
-#include 
-#include 
-#include 
-#include 
 #include 
-#include 
 #include 
 #include 
-#include 
-#include 
-#include 
-#include 
-#include 
 #include 
 #include 
 #include 
diff --git a/starmath/inc/pch/precompiled_sm.hxx 
b/starmath/inc/pch/precompiled_sm.hxx
index 38380c516ef8..2ce98e092949 100644
--- a/starmath/inc/pch/precompiled_sm.hxx
+++ b/starmath/inc/pch/precompiled_sm.hxx
@@ -58,7 +58,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -96,7 +95,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/starmath/inc/utility.hxx b/starmath/inc/utility.hxx
index e6346d4dc6e4..bcd5736a27a5 100644
--- a/starmath/inc/utility.hxx
+++ b/starmath/inc/utility.hxx
@@ -23,14 +23,10 @@
 
 #include 
 #include 
-#include 
-#include 
-#include 
 #include 
 #include 
 #include 
 
-
 inline long SmPtsTo100th_mm(long nNumPts)
 // returns the length (in 100th of mm) that corresponds to the length
 // 'nNumPts' (in units points).
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index 748ad51575f0..127bcaac30d5 100644
--- a/starmath/source/dialog.cxx
+++ b/starmath/source/dialog.cxx
@@ -26,10 +26,8 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/starmath/source/utility.cxx b/starmath/source/utility.cxx
index 1018bad60c04..c82b5ec6b7aa 100644
--- a/starmath/source/utility.cxx
+++ b/starmath/source/utility.cxx
@@ -17,15 +17,11 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
-
 #include 
-
 #include 
 #include 
 #include 
 
-
 // return pointer to active SmViewShell, if this is not possible
 // return 0 instead.
 //!! Since this method is based on the current focus it is somewhat
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: extras/source solenv/sanitizers starmath/inc starmath/source starmath/uiconfig

2018-09-19 Thread Libreoffice Gerrit user
 extras/source/glade/libreoffice-catalog.xml.in |3 
 solenv/sanitizers/ui/modules/smath.suppr   |1 
 starmath/inc/dialog.hxx|   31 ++
 starmath/source/dialog.cxx |  112 -
 starmath/uiconfig/smath/ui/fontdialog.ui   |   93 +++-
 5 files changed, 138 insertions(+), 102 deletions(-)

New commits:
commit 98e45269e4d9f276a27c065dbd00614436856b20
Author: Caolán McNamara 
AuthorDate: Tue Sep 18 21:41:31 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 19 22:01:19 2018 +0200

weld SmFontDialog

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

diff --git a/extras/source/glade/libreoffice-catalog.xml.in 
b/extras/source/glade/libreoffice-catalog.xml.in
index 92eb0fdefdeb..8c4ce8b7d652 100644
--- a/extras/source/glade/libreoffice-catalog.xml.in
+++ b/extras/source/glade/libreoffice-catalog.xml.in
@@ -206,9 +206,6 @@
 
-
 
diff --git a/solenv/sanitizers/ui/modules/smath.suppr 
b/solenv/sanitizers/ui/modules/smath.suppr
index 075009ab02db..e9bebb698cb7 100644
--- a/solenv/sanitizers/ui/modules/smath.suppr
+++ b/solenv/sanitizers/ui/modules/smath.suppr
@@ -3,6 +3,7 @@ 
starmath/uiconfig/smath/ui/catalogdialog.ui://GtkComboBoxText[@id='symbolset'] n
 starmath/uiconfig/smath/ui/catalogdialog.ui://GtkLabel[@id='symbolname'] 
orphan-label
 
starmath/uiconfig/smath/ui/catalogdialog.ui://GtkDrawingArea[@id='symbolsetdisplay']
 no-labelled-by
 starmath/uiconfig/smath/ui/catalogdialog.ui://GtkDrawingArea[@id='preview'] 
no-labelled-by
+starmath/uiconfig/smath/ui/fontdialog.ui://GtkEntry[@id='font'] no-labelled-by
 
starmath/uiconfig/smath/ui/printeroptions.ui://GtkSpinButton[@id='scalingspin'] 
no-labelled-by
 starmath/uiconfig/smath/ui/smathsettings.ui://GtkSpinButton[@id='zoom'] 
no-labelled-by
 starmath/uiconfig/smath/ui/spacingdialog.ui://GtkLabel[@id='1label1'] 
orphan-label
diff --git a/starmath/inc/dialog.hxx b/starmath/inc/dialog.hxx
index 68b56efdb4d9..bd1c0d4bdd40 100644
--- a/starmath/inc/dialog.hxx
+++ b/starmath/inc/dialog.hxx
@@ -77,41 +77,36 @@ public:
 
 /**/
 
-class SmShowFont : public vcl::Window
+class SmShowFont : public weld::CustomWidgetController
 {
 virtual void Paint(vcl::RenderContext& rRenderContext, const 
tools::Rectangle&) override;
 
 vcl::Font maFont;
 
 public:
-SmShowFont(vcl::Window *pParent, WinBits nStyle)
-: Window(pParent, nStyle)
+SmShowFont()
 {
 }
-virtual Size GetOptimalSize() const override;
+virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
 void SetFont(const vcl::Font& rFont);
 };
 
-class SmFontDialog : public ModalDialog
+class SmFontDialog : public weld::GenericDialogController
 {
-VclPtr   m_pFontBox;
-VclPtr   m_pAttrFrame;
-VclPtr   m_pBoldCheckBox;
-VclPtr   m_pItalicCheckBox;
-VclPtr m_pShowFont;
-
 vcl::Font maFont;
+SmShowFont m_aShowFont;
+std::unique_ptr m_xFontBox;
+std::unique_ptr m_xAttrFrame;
+std::unique_ptr m_xBoldCheckBox;
+std::unique_ptr m_xItalicCheckBox;
+std::unique_ptr m_xShowFont;
 
-DECL_LINK(FontSelectHdl, ComboBox&, void);
-DECL_LINK(FontModifyHdl, Edit&, void);
-DECL_LINK(AttrChangeHdl, Button *, void);
-
-virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
+DECL_LINK(FontSelectHdl, weld::ComboBox&, void);
+DECL_LINK(AttrChangeHdl, weld::ToggleButton&, void);
 
 public:
-SmFontDialog(vcl::Window * pParent, OutputDevice *pFntListDevice, bool 
bHideCheckboxes);
+SmFontDialog(weld::Window* pParent, OutputDevice *pFntListDevice, bool 
bHideCheckboxes);
 virtual ~SmFontDialog() override;
-virtual void dispose() override;
 
 const vcl::Font& GetFont() const
 {
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index 7c46a234edb6..748ad51575f0 100644
--- a/starmath/source/dialog.cxx
+++ b/starmath/source/dialog.cxx
@@ -226,10 +226,8 @@ VclPtr 
SmPrintOptionsTabPage::Create(TabPageParent pParent, const Sf
 return VclPtr::Create(pParent, rSet).get();
 }
 
-void SmShowFont::Paint(vcl::RenderContext& rRenderContext, const 
tools::Rectangle& rRect)
+void SmShowFont::Paint(vcl::RenderContext& rRenderContext, const 
tools::Rectangle& /*rRect*/)
 {
-Window::Paint(rRenderContext, rRect);
-
 Color aBackColor;
 Color aTextColor;
 lclGetSettingColors(aBackColor, aTextColor);
@@ -249,11 +247,11 @@ void SmShowFont::Paint(vcl::RenderContext& 
rRenderContext, const tools::Rectangl
   (rRenderContext.GetOutputSize().Height() - 
aTextSize.Height()) / 2), sText);
 }
 
-VCL_BUILDER_FACTORY_CONSTRUCTOR(SmShowFont, 0)
-
-Size SmShowFont::GetOptimalSize() const

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

2018-09-19 Thread Libreoffice Gerrit user
 sw/uiconfig/swriter/ui/templatedialog1.ui  |1 +
 sw/uiconfig/swriter/ui/templatedialog16.ui |1 +
 sw/uiconfig/swriter/ui/templatedialog2.ui  |1 +
 sw/uiconfig/swriter/ui/templatedialog4.ui  |1 +
 sw/uiconfig/swriter/ui/templatedialog8.ui  |1 +
 5 files changed, 5 insertions(+)

New commits:
commit c1ad998afeef0238f1b823fec8aea4eed7187fcf
Author: Caolán McNamara 
AuthorDate: Tue Sep 18 17:19:07 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 19 22:00:48 2018 +0200

set modal flags

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

diff --git a/sw/uiconfig/swriter/ui/templatedialog1.ui 
b/sw/uiconfig/swriter/ui/templatedialog1.ui
index b00290b5bac6..fa348adf1ac2 100644
--- a/sw/uiconfig/swriter/ui/templatedialog1.ui
+++ b/sw/uiconfig/swriter/ui/templatedialog1.ui
@@ -7,6 +7,7 @@
 6
 Character Style
 False
+True
 dialog
 
   
diff --git a/sw/uiconfig/swriter/ui/templatedialog16.ui 
b/sw/uiconfig/swriter/ui/templatedialog16.ui
index 815970c71fe1..e0f6aaeb47c4 100644
--- a/sw/uiconfig/swriter/ui/templatedialog16.ui
+++ b/sw/uiconfig/swriter/ui/templatedialog16.ui
@@ -7,6 +7,7 @@
 6
 Numbering Style
 False
+True
 dialog
 
   
diff --git a/sw/uiconfig/swriter/ui/templatedialog2.ui 
b/sw/uiconfig/swriter/ui/templatedialog2.ui
index 7b4527418ede..6959e31c2e65 100644
--- a/sw/uiconfig/swriter/ui/templatedialog2.ui
+++ b/sw/uiconfig/swriter/ui/templatedialog2.ui
@@ -7,6 +7,7 @@
 6
 Paragraph Style
 False
+True
 dialog
 
   
diff --git a/sw/uiconfig/swriter/ui/templatedialog4.ui 
b/sw/uiconfig/swriter/ui/templatedialog4.ui
index 3f26a7034d6c..860eaef7104e 100644
--- a/sw/uiconfig/swriter/ui/templatedialog4.ui
+++ b/sw/uiconfig/swriter/ui/templatedialog4.ui
@@ -7,6 +7,7 @@
 6
 Frame Style
 False
+True
 dialog
 
   
diff --git a/sw/uiconfig/swriter/ui/templatedialog8.ui 
b/sw/uiconfig/swriter/ui/templatedialog8.ui
index 0e8a16c7f99d..e9fde34480db 100644
--- a/sw/uiconfig/swriter/ui/templatedialog8.ui
+++ b/sw/uiconfig/swriter/ui/templatedialog8.ui
@@ -7,6 +7,7 @@
 6
 Page Style
 False
+True
 dialog
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: cui/source cui/uiconfig include/vcl vcl/source vcl/unx

2018-09-19 Thread Libreoffice Gerrit user
 cui/source/dialogs/cuigaldlg.cxx  |   65 
 cui/source/inc/cuigaldlg.hxx  |   22 +++--
 cui/uiconfig/ui/gallerygeneralpage.ui |   37 ++--
 include/vcl/weld.hxx  |7 +++
 vcl/source/app/salvtables.cxx |   25 +++
 vcl/unx/gtk3/gtk3gtkinst.cxx  |   77 +++---
 6 files changed, 119 insertions(+), 114 deletions(-)

New commits:
commit af60b15af12bbb0cda2b48b99fde632f1532e1aa
Author: Caolán McNamara 
AuthorDate: Tue Sep 18 17:13:33 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 19 22:00:27 2018 +0200

weld TPGalleryThemeGeneral

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

diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx
index 18e39c8ae267..a04340bbc80e 100644
--- a/cui/source/dialogs/cuigaldlg.cxx
+++ b/cui/source/dialogs/cuigaldlg.cxx
@@ -574,7 +574,6 @@ GalleryThemeProperties::GalleryThemeProperties(vcl::Window* 
pParent,
 SetText( aText );
 }
 
-
 void GalleryThemeProperties::PageCreated( sal_uInt16 nId, SfxTabPage  )
 {
 if (nId == m_nGeneralPageId)
@@ -583,39 +582,18 @@ void GalleryThemeProperties::PageCreated( sal_uInt16 nId, 
SfxTabPage  )
 static_cast( rPage ).SetXChgData( pData );
 }
 
-
-TPGalleryThemeGeneral::TPGalleryThemeGeneral(vcl::Window* pParent, const 
SfxItemSet& rSet)
-: SfxTabPage(pParent, "GalleryGeneralPage",
-"cui/ui/gallerygeneralpage.ui", )
+TPGalleryThemeGeneral::TPGalleryThemeGeneral(TabPageParent pParent, const 
SfxItemSet& rSet)
+: SfxTabPage(pParent, "cui/ui/gallerygeneralpage.ui", 
"GalleryGeneralPage", )
 , pData(nullptr)
+, m_xFiMSImage(m_xBuilder->weld_image("image"))
+, m_xEdtMSName(m_xBuilder->weld_entry("name"))
+, m_xFtMSShowType(m_xBuilder->weld_label("type"))
+, m_xFtMSShowPath(m_xBuilder->weld_label("location"))
+, m_xFtMSShowContent(m_xBuilder->weld_label("contents"))
+, m_xFtMSShowChangeDate(m_xBuilder->weld_label("modified"))
 {
-get(m_pFiMSImage, "image");
-get(m_pEdtMSName, "name");
-get(m_pFtMSShowType, "type");
-get(m_pFtMSShowPath, "location");
-get(m_pFtMSShowContent, "contents");
-get(m_pFtMSShowChangeDate, "modified");
-}
-
-
-TPGalleryThemeGeneral::~TPGalleryThemeGeneral()
-{
-disposeOnce();
-}
-
-
-void TPGalleryThemeGeneral::dispose()
-{
-m_pFiMSImage.clear();
-m_pEdtMSName.clear();
-m_pFtMSShowType.clear();
-m_pFtMSShowPath.clear();
-m_pFtMSShowContent.clear();
-m_pFtMSShowChangeDate.clear();
-SfxTabPage::dispose();
 }
 
-
 void TPGalleryThemeGeneral::SetXChgData( ExchangeData* _pData )
 {
 pData = _pData;
@@ -627,19 +605,15 @@ void TPGalleryThemeGeneral::SetXChgData( ExchangeData* 
_pData )
 OUStringaType( SvxResId( RID_SVXSTR_GALLERYPROPS_GALTHEME ) );
 boolbReadOnly = pThm->IsReadOnly();
 
-m_pEdtMSName->SetText( pThm->GetName() );
-m_pEdtMSName->SetReadOnly( bReadOnly );
-
-if( bReadOnly )
-m_pEdtMSName->Disable();
-else
-m_pEdtMSName->Enable();
+m_xEdtMSName->set_text(pThm->GetName());
+m_xEdtMSName->set_editable(!bReadOnly);
+m_xEdtMSName->set_sensitive(!bReadOnly);
 
 if( pThm->IsReadOnly() )
 aType += CuiResId( RID_SVXSTR_GALLERY_READONLY );
 
-m_pFtMSShowType->SetText( aType );
-m_pFtMSShowPath->SetText( pThm->GetSdgURL().GetMainURL( 
INetURLObject::DecodeMechanism::Unambiguous ) );
+m_xFtMSShowType->set_label(aType);
+
m_xFtMSShowPath->set_label(pThm->GetSdgURL().GetMainURL(INetURLObject::DecodeMechanism::Unambiguous));
 
 // singular or plural?
 if ( 1 == pThm->GetObjectCount() )
@@ -649,7 +623,7 @@ void TPGalleryThemeGeneral::SetXChgData( ExchangeData* 
_pData )
 
 aOutStr += " " + aObjStr;
 
-m_pFtMSShowContent->SetText( aOutStr );
+m_xFtMSShowContent->set_label(aOutStr);
 
 // get locale wrapper (singleton)
 const SvtSysLocale aSysLocale;
@@ -657,7 +631,7 @@ void TPGalleryThemeGeneral::SetXChgData( ExchangeData* 
_pData )
 
 // ChangeDate/Time
 aAccess = aLocaleData.getDate( pData->aThemeChangeDate ) + ", " + 
aLocaleData.getTime( pData->aThemeChangeTime );
-m_pFtMSShowChangeDate->SetText( aAccess );
+m_xFtMSShowChangeDate->set_label(aAccess);
 
 // set image
 OUString sId;
@@ -669,21 +643,20 @@ void TPGalleryThemeGeneral::SetXChgData( ExchangeData* 
_pData )
 else
 sId = RID_SVXBMP_THEME_NORMAL_BIG;
 
-m_pFiMSImage->SetImage(Image(BitmapEx(sId)));
+m_xFiMSImage->set_from_icon_name(sId);
 }
 
 bool TPGalleryThemeGeneral::FillItemSet( SfxItemSet* /*rSet*/ )
 {
-pData->aEditedTitle = m_pEdtMSName->GetText();
+pData->aEditedTitle = m_xEdtMSName->get_text();
 return true;
 }
 
-VclPtr 

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

2018-09-19 Thread Libreoffice Gerrit user
 cui/source/inc/grfpage.hxx |   91 ++--
 cui/source/tabpages/grfpage.cxx|  523 ++---
 cui/uiconfig/ui/croppage.ui|  134 --
 extras/source/glade/libreoffice-catalog.xml.in |4 
 4 files changed, 360 insertions(+), 392 deletions(-)

New commits:
commit dbf355e5dbffe97b64a98005d1b84edddc472e4f
Author: Caolán McNamara 
AuthorDate: Tue Sep 18 16:23:59 2018 +0100
Commit: Caolán McNamara 
CommitDate: Wed Sep 19 22:00:03 2018 +0200

weld SvxGrfCropPage

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

diff --git a/cui/source/inc/grfpage.hxx b/cui/source/inc/grfpage.hxx
index 887a93789eb6..e1b15e2c1520 100644
--- a/cui/source/inc/grfpage.hxx
+++ b/cui/source/inc/grfpage.hxx
@@ -20,31 +20,30 @@
 #ifndef INCLUDED_CUI_SOURCE_INC_GRFPAGE_HXX
 #define INCLUDED_CUI_SOURCE_INC_GRFPAGE_HXX
 
-#include 
-#include 
-#include 
+#include 
 #include 
 #include 
 
-class SvxCropExample : public vcl::Window
+class SvxCropExample : public weld::CustomWidgetController
 {
-SizeaFrameSize;
-Point   aTopLeft, aBottomRight;
-Graphic aGrf;
+MapMode m_aMapMode;
+Sizem_aFrameSize;
+Point   m_aTopLeft, m_aBottomRight;
+Graphic m_aGrf;
 
 public:
-SvxCropExample( vcl::Window* pPar, WinBits nStyle );
+SvxCropExample();
 
 virtual void Paint(vcl::RenderContext& rRenderContext, const 
::tools::Rectangle& rRect) override;
 virtual void Resize() override;
-virtual Size GetOptimalSize() const override;
+virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
 
-void SetTop( long nVal ){ aTopLeft.setX(nVal); }
-void SetBottom( long nVal ) { aBottomRight.setX(nVal); }
-void SetLeft( long nVal )   { aTopLeft.setY(nVal); }
-void SetRight( long nVal)   { aBottomRight.setY(nVal); }
+void SetTop( long nVal ){ m_aTopLeft.setX(nVal); }
+void SetBottom( long nVal ) { m_aBottomRight.setX(nVal); }
+void SetLeft( long nVal )   { m_aTopLeft.setY(nVal); }
+void SetRight( long nVal)   { m_aBottomRight.setY(nVal); }
 void SetFrameSize( const Size& rSz );
-void SetGraphic( const Graphic& rGrf )  { aGrf = rGrf; }
+void SetGraphic( const Graphic& rGrf )  { m_aGrf = rGrf; }
 };
 
 class SvxGrfCropPage : public SfxTabPage
@@ -54,53 +53,48 @@ class SvxGrfCropPage : public SfxTabPage
 using TabPage::ActivatePage;
 using TabPage::DeactivatePage;
 
-VclPtr   m_pCropFrame;
-VclPtrm_pZoomConstRB;
-VclPtrm_pSizeConstRB;
-VclPtrm_pLeftMF;
-VclPtrm_pRightMF;
-VclPtrm_pTopMF;
-VclPtrm_pBottomMF;
-
-VclPtr   m_pScaleFrame;
-VclPtrm_pWidthZoomMF;
-VclPtrm_pHeightZoomMF;
-
-VclPtr   m_pSizeFrame;
-VclPtrm_pWidthMF;
-VclPtrm_pHeightMF;
-
-VclPtr   m_pOrigSizeGrid;
-VclPtr  m_pOrigSizeFT;
-VclPtr m_pOrigSizePB;
-
-// Example
-VclPtr m_pExampleWN;
-
-
-Timer   aTimer;
 OUStringaGraphicName;
 SizeaOrigSize;
 SizeaOrigPixelSize;
 SizeaPageSize;
-VclPtr  pLastCropField;
 longnOldWidth;
 longnOldHeight;
 boolbReset;
 boolbSetOrigSize;
 
+SvxCropExample m_aExampleWN;
 
-SvxGrfCropPage( vcl::Window *pParent, const SfxItemSet  );
+std::unique_ptr m_xCropFrame;
+std::unique_ptr m_xZoomConstRB;
+std::unique_ptr m_xSizeConstRB;
+std::unique_ptr m_xLeftMF;
+std::unique_ptr m_xRightMF;
+std::unique_ptr m_xTopMF;
+std::unique_ptr m_xBottomMF;
+
+std::unique_ptr m_xScaleFrame;
+std::unique_ptr m_xWidthZoomMF;
+std::unique_ptr m_xHeightZoomMF;
+
+std::unique_ptr m_xSizeFrame;
+std::unique_ptr m_xWidthMF;
+std::unique_ptr m_xHeightMF;
+
+std::unique_ptr m_xOrigSizeGrid;
+std::unique_ptr m_xOrigSizeFT;
+std::unique_ptr m_xOrigSizePB;
+
+// Example
+std::unique_ptr m_xExampleWN;
+
+SvxGrfCropPage(TabPageParent pParent, const SfxItemSet );
 virtual ~SvxGrfCropPage() override;
 virtual void dispose() override;
 
-DECL_LINK( ZoomHdl, Edit&, void );
-DECL_LINK( SizeHdl, Edit&, void );
-DECL_LINK( CropHdl, SpinField&, void );
-DECL_LINK( CropLoseFocusHdl, Control&, void );
-DECL_LINK( CropModifyHdl, Edit&, void );
-DECL_LINK( OrigSizeHdl, Button*, void );
-DECL_LINK( Timeout, Timer *, void );
+DECL_LINK(ZoomHdl, weld::MetricSpinButton&, void);
+DECL_LINK(SizeHdl, weld::MetricSpinButton&, void);
+DECL_LINK(CropModifyHdl, weld::MetricSpinButton&, void);
+DECL_LINK(OrigSizeHdl, weld::Button&, void);
 
 voidCalcZoom();
 

[Libreoffice-bugs] [Bug 119877] WRITER, NAVIGATOR -- easy access (right click) to "send outline to clipboard" functionality, PLZ

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119877

--- Comment #7 from Dieter Praas  ---
Created attachment 145043
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145043=edit
Screenshot from online help

(In reply to Thomas Lendo from comment #6)
> Peter, is there the need to improve the help files? Have you searched in the
> help or online?

I'm not really familiar with the structure of the new help, but when I search
for outline I would expect a keyword "outline - send to clipboard" or something
like that. But I don't get the result (see screenshot). So I think this could
be improved.

-- 
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 119995] New: Libreoffice Crash on Format Cells command

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119995

Bug ID: 119995
   Summary: Libreoffice Crash on Format Cells command
   Product: LibreOffice
   Version: 6.1.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jon.zuc...@gmail.com

Description:
When I select a column, a group of cells or a single cell and call for Format
Cells Libreoffice crashes. With a plan with data ou in an empty plan, doesnt
matter. It happens every time.

Steps to Reproduce:
1.Create a new file
2.Select a Cell
3.Select Format Cell, Popup Menu ou Normal Menu

Actual Results:
As above, there's no way to format a cell.
I tried to reinstall the software.


Expected Results:
Nothing


Reproducible: Always


User Profile Reset: No



Additional Info:

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


[Libreoffice-bugs] [Bug 119877] WRITER, NAVIGATOR -- easy access (right click) to "send outline to clipboard" functionality, PLZ

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119877

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #6 from Thomas Lendo  ---
Peter, is there the need to improve the help files? Have you searched in the
help or online?

-- 
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 119950] Photos disappear in saved documents

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119950

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #4 from Jean-Baptiste Faure  ---
Do you encounter the same problem if you save your document in OpenDocument
Format (native document format of LibreOffice)?

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-bugs] [Bug 119950] Photos disappear in saved documents

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119950

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Attachment #144979|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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


[Libreoffice-bugs] [Bug 119994] New: No filled selection highlight; only outer borders

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119994

Bug ID: 119994
   Summary: No filled selection highlight; only outer borders
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
No filled selection highlight; only outer borderss

Steps to Reproduce:
1. Open Writer
2. Type something
3. CTRL+A

Actual Results:
Only the outer borders are highlighted

Expected Results:
Regular selection


Reproducible: Always


User Profile Reset: No



Additional Info:
Found in:
Version: 6.2.0.0.alpha0+
Build ID: 7d242f3bd7277236046f90d3f32b9792fd8ea97b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-09-18_23:43:19
Locale: nl-NL (nl_NL); Calc: threaded

but not in
Version: 6.2.0.0.alpha0+
Build ID: d5a2202f955657e427670a87c2d4e5638884517b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-09-12_02:38:23
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-bugs] [Bug 119966] Support file URI scheme in format of 'file:///' from HTML clipboard content. This is a format generated from MSO 2007-2013

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119966

--- Comment #2 from Luke  ---
One more datapoint. With Paste Special -> "HTML format"
WPS Writer: PASS

-- 
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 119978] Save dialog incorrectly selects first document in directory and pre-fills the filename with it

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119978

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #2 from Jean-Baptiste Faure  ---
Not reproducible for me with LireOffice 6.1.1 from Ubuntu PPA under Ubuntu
18.04.

What is your window manager ?

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-bugs] [Bug 115322] FORMATTING: Drawing object size values change to near value when object is deselected/reselected, units are millimeters and values are changed through sidebar

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115322

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #2 from Buovjaga  ---
Hmh, noticed there is an older report (which I had confirmed in 2016).

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

-- 
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 104809] [META] Position and Size content panel of the Properties deck/tab of the sidebar

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104809
Bug 104809 depends on bug 115322, which changed state.

Bug 115322 Summary: FORMATTING: Drawing object size values change to near value 
when object is deselected/reselected, units are millimeters and values are 
changed through sidebar
https://bugs.documentfoundation.org/show_bug.cgi?id=115322

   What|Removed |Added

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

-- 
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 99711] Sidebar Position and Size displays incorrect width and height when units in mm

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99711

Buovjaga  changed:

   What|Removed |Added

 CC||dooq...@gmail.com

--- Comment #20 from Buovjaga  ---
*** Bug 115322 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 118837] EDITING size change of rectangles is sometimes ignored

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=99 |
   |711 |
 Resolution|--- |DUPLICATE
 CC||todven...@suomi24.fi

--- Comment #3 from Buovjaga  ---
I think we can close this as dupe

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

-- 
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 99711] Sidebar Position and Size displays incorrect width and height when units in mm

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99711

Buovjaga  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=11 |
   |8837|
 CC||uwesto...@web.de

--- Comment #19 from Buovjaga  ---
*** Bug 118837 has been marked as a duplicate of this bug. ***

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


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

2018-09-19 Thread Libreoffice Gerrit user
 include/sal/types.h   |   14 ++
 sd/source/ui/inc/unokywds.hxx |  238 +-
 2 files changed, 135 insertions(+), 117 deletions(-)

New commits:
commit ed510993d7db9a8ca9a3822d107af063aab5b637
Author: Stephan Bergmann 
AuthorDate: Wed Sep 19 11:06:13 2018 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Sep 19 21:01:48 2018 +0200

Make compilers combine sUNO_* vars across TUs

...by changing them from internal linkage to being inline (where available).
The net effect is that compilers (that HAVE_CPP_INLINE_VARIABLES) are 
required
to combine all uses of a given sUNO_* var across a Library, where before 
that
was only possible if the compiler could prove that placing multiple such 
vars
across TUs at the same address didn't change the program's behavior.

(And

> $ diff <(nm --def instdir/program/libsdlo.so | grep sUNO_ | cut -d ' ' -f 
3 | LC_ALL=C sort) <(nm --def instdir/program/libsdlo.so | grep sUNO_ | cut -d 
' ' -f 3 | LC_ALL=C sort | uniq)
> 2d1
> < _ZL16sUNO_View_ViewId
> 8d6
> < _ZL18sUNO_View_PageKind
> 23d20
> < _ZL22sUNO_View_LockedLayers
> 30d26
> < _ZL23sUNO_View_VisibleLayers
> 39d34
> < _ZL25sUNO_View_PrintableLayers

showed that there were duplicates, while

> $ nm --def instdir/program/libsdlo.so | grep sUNO_ | cut -d ' ' -f 3 | 
LC_ALL=C sort | uniq | wc -l
> 71

shows that only 71 of the 117 sUNO_* vars are actually used at all---there's
still room for clean up.)

Introduces LIBO_INTERNAL_ONLY SAL_INLINE_VARIABLE.

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

diff --git a/include/sal/types.h b/include/sal/types.h
index 474a223a2ff2..08751c33cd53 100644
--- a/include/sal/types.h
+++ b/include/sal/types.h
@@ -697,6 +697,20 @@ template< typename T1, typename T2 > inline T1 
static_int_cast(T2 n) {
 #endif
 /// @endcond
 
+/// @cond INTERNAL
+/** Inline variables, where supported.
+
+@since LibreOffice 6.2
+*/
+#if defined LIBO_INTERNAL_ONLY
+#if HAVE_CPP_INLINE_VARIABLES
+#define SAL_INLINE_VARIABLE inline
+#else
+#define SAL_INLINE_VARIABLE
+#endif
+#endif
+/// @endcond
+
 #endif // INCLUDED_SAL_TYPES_H
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/source/ui/inc/unokywds.hxx b/sd/source/ui/inc/unokywds.hxx
index 9becfc0bd328..1e190e4f592d 100644
--- a/sd/source/ui/inc/unokywds.hxx
+++ b/sd/source/ui/inc/unokywds.hxx
@@ -20,137 +20,141 @@
 #ifndef INCLUDED_SD_SOURCE_UI_INC_UNOKYWDS_HXX
 #define INCLUDED_SD_SOURCE_UI_INC_UNOKYWDS_HXX
 
+#include 
+
+#include 
+
 // SdUnoPseudoStyleFamily
-const char sUNO_PseudoSheet_Title[] = "title";
-const char sUNO_PseudoSheet_SubTitle[] = "subtitle";
-const char sUNO_PseudoSheet_Background[] = "background";
-const char sUNO_PseudoSheet_Background_Objects[] = "backgroundobjects";
-const char sUNO_PseudoSheet_Notes[] = "notes";
-const char sUNO_PseudoSheet_Outline1[] = "outline1";
-const char sUNO_PseudoSheet_Outline2[] = "outline2";
-const char sUNO_PseudoSheet_Outline3[] = "outline3";
-const char sUNO_PseudoSheet_Outline4[] = "outline4";
-const char sUNO_PseudoSheet_Outline5[] = "outline5";
-const char sUNO_PseudoSheet_Outline6[] = "outline6";
-const char sUNO_PseudoSheet_Outline7[] = "outline7";
-const char sUNO_PseudoSheet_Outline8[] = "outline8";
-const char sUNO_PseudoSheet_Outline9[] = "outline9";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Title[] = "title";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_SubTitle[] = "subtitle";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Background[] = "background";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Background_Objects[] = 
"backgroundobjects";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Notes[] = "notes";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline1[] = "outline1";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline2[] = "outline2";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline3[] = "outline3";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline4[] = "outline4";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline5[] = "outline5";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline6[] = "outline6";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline7[] = "outline7";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline8[] = "outline8";
+SAL_INLINE_VARIABLE const char sUNO_PseudoSheet_Outline9[] = "outline9";
 
 // SdLayer
-const char sUNO_LayerName_background[] = "background";
-const char sUNO_LayerName_background_objects[] = "backgroundobjects";
-const char sUNO_LayerName_layout[] = "layout";
-const char sUNO_LayerName_controls[] = "controls";
-const char sUNO_LayerName_measurelines[] = "measurelines";
+SAL_INLINE_VARIABLE const char sUNO_LayerName_background[] = "background";
+SAL_INLINE_VARIABLE 

[Libreoffice-bugs] [Bug 113440] [META] Font size combobox and related issues

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113440

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||119847


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119847
[Bug 119847] Autoselect font size to change it quicker
-- 
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 119847] Autoselect font size to change it quicker

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119847

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||113440
 CC||thomas.le...@gmail.com

--- Comment #5 from Thomas Lendo  ---
+1 for this enhancement request and for Maxim's comment to improve font name
and font size selection behavior.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113440
[Bug 113440] [META] Font size combobox and 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 119993] New: Memory usage keeps increasing for every change in the column width

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119993

Bug ID: 119993
   Summary: Memory usage keeps increasing for every change in the
column width
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Memory usage keeps increasing for every change in the column width

Steps to Reproduce:
1. Open attachment 144815 [details]
2. Set the undo steps to 0
2. Drag the border multiple times to left or right (small changes are enough)

Actual Results:
Memory usage keeps increasing quite heavily


Expected Results:
A bit less perhaps


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.0.0.alpha0+
Build ID: 7d242f3bd7277236046f90d3f32b9792fd8ea97b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-09-18_23:43:19
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-bugs] [Bug 119992] New: Lots of CPU time needed reducing for reducing the column width

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119992

Bug ID: 119992
   Summary: Lots of CPU time needed reducing for reducing the
column width
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Lots of CPU time needed reducing for reducing the column width

Steps to Reproduce:
1. Open attachment 144815
2. Change the column width to 15

Actual Results:
Time taking to process: 1:30 

Expected Results:
Around 20 seconds or less?


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.0.0.alpha0+
Build ID: 7d242f3bd7277236046f90d3f32b9792fd8ea97b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-09-18_23:43:19
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-ux-advise] [Bug 119676] CTRL+ALT+E isn't opening the extension dialog but inserts a "é"

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119676

Heiko Tietze  changed:

   What|Removed |Added

   Severity|minor   |normal
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
   Keywords|needsUXEval |regression

--- Comment #6 from Heiko Tietze  ---
(In reply to Xisco Faulí from comment #5)
> So, just for the record, the behaviour changed after
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=f53b3b547b04dc112076d8323b5b24ae178d6260

So we have to treat this as a regression. Manfred, what do you think?

-- 
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 119676] CTRL+ALT+E isn't opening the extension dialog but inserts a "é"

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119676

Heiko Tietze  changed:

   What|Removed |Added

   Severity|minor   |normal
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
   Keywords|needsUXEval |regression

--- Comment #6 from Heiko Tietze  ---
(In reply to Xisco Faulí from comment #5)
> So, just for the record, the behaviour changed after
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=f53b3b547b04dc112076d8323b5b24ae178d6260

So we have to treat this as a regression. Manfred, what do you think?

-- 
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 119877] WRITER, NAVIGATOR -- easy access (right click) to "send outline to clipboard" functionality, PLZ

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119877

Heiko Tietze  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Keywords|needsUXEval |
 Resolution|--- |WORKSFORME
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|

--- Comment #5 from Heiko Tietze  ---
(In reply to Cor Nouws from comment #4)
> It is on the same place since ages.. 

So let's keep it there. :-)

-- 
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 119877] WRITER, NAVIGATOR -- easy access (right click) to "send outline to clipboard" functionality, PLZ

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119877

Heiko Tietze  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Keywords|needsUXEval |
 Resolution|--- |WORKSFORME
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|

--- Comment #5 from Heiko Tietze  ---
(In reply to Cor Nouws from comment #4)
> It is on the same place since ages.. 

So let's keep it there. :-)

-- 
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 103370] [META] Outline/Chapter numbering bugs and enhancements

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103370
Bug 103370 depends on bug 119877, which changed state.

Bug 119877 Summary: WRITER, NAVIGATOR -- easy access (right click) to "send 
outline to clipboard" functionality, PLZ
https://bugs.documentfoundation.org/show_bug.cgi?id=119877

   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 119847] Autoselect font size to change it quicker

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119847

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |easyHack, needsDevEval
  Component|LibreOffice |UI
 CC|libreoffice-ux-advise@lists |nicksonthand...@msn.com,
   |.freedesktop.org|tietze.he...@gmail.com

--- Comment #4 from Heiko Tietze  ---
So we have to improve the mentioned patch and select all content on enter.
Easyhack?

-- 
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 119847] Autoselect font size to change it quicker

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119847

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |easyHack, needsDevEval
  Component|LibreOffice |UI
 CC|libreoffice-ux-advise@lists |nicksonthand...@msn.com,
   |.freedesktop.org|tietze.he...@gmail.com

--- Comment #4 from Heiko Tietze  ---
So we have to improve the mentioned patch and select all content on enter.
Easyhack?

-- 
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-ux-advise] [Bug 119898] Provisions/strategies for Enriching the Default Dictionaries.

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119898

Heiko Tietze  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
 Status|UNCONFIRMED |RESOLVED
   Keywords|needsUXEval |

--- Comment #3 from Heiko Tietze  ---
Agreeing wit László that our user dictionaries covers special vocabulary.
Otherwise it would be out of scope for an office suite to improve the
dictionaries, IMHO.

-- 
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 119898] Provisions/strategies for Enriching the Default Dictionaries.

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119898

Heiko Tietze  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
 Status|UNCONFIRMED |RESOLVED
   Keywords|needsUXEval |

--- Comment #3 from Heiko Tietze  ---
Agreeing wit László that our user dictionaries covers special vocabulary.
Otherwise it would be out of scope for an office suite to improve the
dictionaries, IMHO.

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