[Libreoffice-bugs] [Bug 122431] FILESAVE: DOC: Header/Footer are gone in MSO2010 with a protected file

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122431

--- Comment #2 from Justin L  ---
confirmed with Word 2003 - the header is missing.
Note: if saved as .docx, it is not missing, and LO itself DOES see the header
in all cases.

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


[Libreoffice-bugs] [Bug 122441] New: Axe X position return to 0 after saving file

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122441

Bug ID: 122441
   Summary: Axe X position return to 0 after saving file
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fwojci...@gmail.com

Description:
Hi,
When you set, for example, Axe X position to 15 and  save and close the file,
then when you re-open the file Axe X position return to 0.
Thank you.


Actual Results:
When you set, for example, Axe X position to 15 and  save and close the file,
then when you re-open the file Axe X position return to 0.

Expected Results:
When you set, for example, Axe X position to 15 and  save and close the file,
then when you re-open the file Axe X position should return to 15.


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 122282] SectPr nextColumn section break doesn't connect to the previous columns

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122282

--- Comment #2 from Justin L  ---
Created attachment 147968
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147968=edit
n652364.pdf: as seen by Word 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 104980] Notebookbar contextual groups: no indication if document modified/to be saved

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104980

--- Comment #7 from Helmut Leininger  ---
Problem still present in

Version: 6.2.0.1 (x64)
Build-ID: 0412ee99e862f384c1106d0841a950c4cfaa9df1
CPU-Threads: 4; BS: Windows 10.0; UI-Render: Standard; VCL: win; 
Gebietsschema: de-AT (de_AT); UI-Sprache: de-DE
Calc: threaded

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - 6 commits - desktop/qa desktop/source include/LibreOfficeKit include/sfx2 sfx2/Library_sfx.mk sfx2/source xmlsecurity/inc xmlsecurity

2019-01-02 Thread Libreoffice Gerrit user
 desktop/qa/data/blank_text.docx   |binary
 desktop/qa/desktop_lib/test_desktop_lib.cxx   |  242 ++
 desktop/source/lib/init.cxx   |   78 +++
 include/LibreOfficeKit/LibreOfficeKit.h   |   10 
 include/LibreOfficeKit/LibreOfficeKit.hxx |   12 
 include/sfx2/DocumentSigner.hxx   |   41 +
 sfx2/Library_sfx.mk   |1 
 sfx2/source/appl/appopen.cxx  |   16 
 sfx2/source/doc/DocumentSigner.cxx|  125 +
 xmlsecurity/Library_xsec_xmlsec.mk|1 
 xmlsecurity/inc/documentsignaturemanager.hxx  |2 
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx|   21 
 xmlsecurity/source/helper/documentsignaturehelper.cxx |6 
 xmlsecurity/source/helper/documentsignaturemanager.cxx|   77 ++-
 xmlsecurity/source/xmlsec/nss/nssinitializer.cxx  |  131 -
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |   56 +-
 xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx |   23 
 xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.hxx |2 
 18 files changed, 664 insertions(+), 180 deletions(-)

New commits:
commit 277f4e186ce4a3f109c470b54a0accdb6c74e8cb
Author: Tomaž Vajngerl 
AuthorDate: Mon Dec 31 12:27:39 2018 +0100
Commit: Tomaž Vajngerl 
CommitDate: Thu Jan 3 07:34:39 2019 +0100

lok: add signDocument to "Office" iface - to sign not opened docs.

LOKit function "signDocument" can sign document without the need
to open them. This is useful to sign PDF documents after they are
created from a currently opened (ODF, DOCX) document.

This adds DocumentDigner to sfx2, which could also be used in
desktop LibreOffice without opening them and in further tests.

Reviewed-on: https://gerrit.libreoffice.org/65767
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit a8cb7cf68ff661b502e7c006fe4330098b5b0944)

Change-Id: Id6f242e817f594aa672f94f9c6f9b34e4035d46a

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 78f064a49c0a..27070b4440a3 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -125,6 +125,7 @@ public:
 void testInsertCertificate_DER_ODT();
 void testInsertCertificate_PEM_ODT();
 void testInsertCertificate_PEM_DOCX();
+void testSignDocument_PEM_PDF();
 void testABI();
 
 CPPUNIT_TEST_SUITE(DesktopLOKTest);
@@ -173,6 +174,7 @@ public:
 CPPUNIT_TEST(testInsertCertificate_DER_ODT);
 CPPUNIT_TEST(testInsertCertificate_PEM_ODT);
 CPPUNIT_TEST(testInsertCertificate_PEM_DOCX);
+CPPUNIT_TEST(testSignDocument_PEM_PDF);
 CPPUNIT_TEST(testABI);
 CPPUNIT_TEST_SUITE_END();
 
@@ -2484,6 +2486,66 @@ void DesktopLOKTest::testInsertCertificate_PEM_DOCX()
 comphelper::LibreOfficeKit::setActive(false);
 }
 
+void DesktopLOKTest::testSignDocument_PEM_PDF()
+{
+comphelper::LibreOfficeKit::setActive();
+
+// Load the document, save it into a temp file and load that file again
+LibLODocument_Impl* pDocument = loadDoc("blank_text.odt");
+utl::TempFile aTempFile;
+aTempFile.EnableKillingFile();
+
+Scheduler::ProcessEventsToIdle();
+CPPUNIT_ASSERT(mxComponent.is());
+pDocument->m_pDocumentClass->initializeForRendering(pDocument, "{}");
+Scheduler::ProcessEventsToIdle();
+
+std::vector aCertificate;
+std::vector aPrivateKey;
+
+{
+readFileIntoByteVector("test-cert-chain-1.pem", aCertificate);
+
+bool bResult = pDocument->m_pDocumentClass->addCertificate(
+pDocument, aCertificate.data(), 
int(aCertificate.size()));
+CPPUNIT_ASSERT(bResult);
+}
+
+{
+readFileIntoByteVector("test-cert-chain-2.pem", aCertificate);
+
+bool bResult = pDocument->m_pDocumentClass->addCertificate(
+pDocument, aCertificate.data(), 
int(aCertificate.size()));
+CPPUNIT_ASSERT(bResult);
+}
+
+{
+readFileIntoByteVector("test-cert-chain-3.pem", aCertificate);
+
+bool bResult = pDocument->m_pDocumentClass->addCertificate(
+pDocument, aCertificate.data(), 
int(aCertificate.size()));
+CPPUNIT_ASSERT(bResult);
+}
+
+CPPUNIT_ASSERT(pDocument->pClass->saveAs(pDocument, 
aTempFile.GetURL().toUtf8().getStr(), "pdf", nullptr));
+
+closeDoc();
+
+Scheduler::ProcessEventsToIdle();
+
+readFileIntoByteVector("test-cert-signing.pem", aCertificate);
+readFileIntoByteVector("test-PK-signing.pem", aPrivateKey);
+
+LibLibreOffice_Impl aOffice;
+bool bResult = aOffice.m_pOfficeClass->signDocument(, 

[Libreoffice-bugs] [Bug 122440] New: "Snap to grid" or "Snap to lines" do not work

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122440

Bug ID: 122440
   Summary: "Snap to grid" or "Snap to lines" do not work
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zhangwe...@realss.com

Description:
As demonstrated in this video, a user can drop a box anywhere 푛표푡 on the snap
line and 푛표푡 on the grid line. It had little impact to the user's operation
with the snap distance set to either 5 pixels or 50 pixels.

The video was shot when this option is checked:

https://youtu.be/j3X1ylCNkRo

View -> Snap Guides -> Snap to Snap Guides


Steps to Reproduce:
Check the vide

Actual Results:
Snap to lines and Snap to grid both have little impact to the user's operation
with the snap distance set to either 5 pixels or 50 pixels.

Expected Results:
With snap to line turned on, the object would be snapped onto the line while
moving 50 pixels near to it, as is configured in the video. When snap to grid
is turned on, the object will always be placed to a grid boundary.


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 122439] Wrong usage missed font (Example using Sakkal Majalla font)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122439

seven  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 122439] Wrong usage missed font (Example using Sakkal Majalla font)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122439

--- Comment #4 from seven  ---
Created attachment 147967
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147967=edit
Font Sakkal Majalla

Install this font fix issue with display, but not fizzy issue with inform user

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


[Libreoffice-bugs] [Bug 122439] Wrong usage missed font (Example using Sakkal Majalla font)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122439

--- Comment #3 from seven  ---
Created attachment 147966
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147966=edit
Example in writer - not correct and need to fix

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


[Libreoffice-bugs] [Bug 122439] Wrong usage missed font (Example using Sakkal Majalla font)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122439

--- Comment #2 from seven  ---
Created attachment 147965
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147965=edit
Example in word - correct

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


[Libreoffice-bugs] [Bug 122439] Wrong usage missed font (Example using Sakkal Majalla font)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122439

--- Comment #1 from seven  ---
Created attachment 147964
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147964=edit
Source for example

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


[Libreoffice-bugs] [Bug 122439] New: Wrong usage missed font (Example using Sakkal Majalla font)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122439

Bug ID: 122439
   Summary: Wrong usage missed font (Example using Sakkal Majalla
font)
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: seve...@mail.ru

Description:
In operation system not installed front and when open document in MS Office and
libreoffice displayed font is different.

Install font fix this issue, but better to use good font without installing or
inform user about missed font and requirements to install it.

Steps to Reproduce:
1. Download and open file with example 
2. Open it on MS Office and LibreOffice and compare

Actual Results:
Font look different 

Expected Results:
Font look like some or like original font


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 122438] Wrong position in text for RTL (right to left)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122438

--- Comment #4 from seven  ---
Also when will be fixed show text in correct position need to check save file
and reopen in 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 122438] Wrong position in text for RTL (right to left)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122438

--- Comment #3 from seven  ---
Created attachment 147963
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147963=edit
Example in writer - not correct and need to fix

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


[Libreoffice-bugs] [Bug 122438] Wrong position in text for RTL (right to left)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122438

--- Comment #2 from seven  ---
Created attachment 147962
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147962=edit
Example in word - correct

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


[Libreoffice-bugs] [Bug 122438] Wrong position in text for RTL (right to left)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122438

--- Comment #1 from seven  ---
Created attachment 147961
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147961=edit
Source for example

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


[Libreoffice-bugs] [Bug 122438] New: Wrong position in text for RTL (right to left)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122438

Bug ID: 122438
   Summary: Wrong position in text for RTL (right to left)
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: seve...@mail.ru

Description:
Text in writer show wrong position and it very bad for continue usage
libreoffice 

Steps to Reproduce:
1. Open file in attachment in libreoffice and Microsoft office and compare.

Actual Results:
Libreoffice show text "&" in wrong position

Expected Results:
Show text "&" between two emails


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 118112] Parameter index out of range (1 > number of parameters, which is 0).

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118112

--- Comment #35 from Dan Lewis  ---
(In reply to Dan Lewis from comment #33)
> (In reply to tim from comment #32)
> > I just noticed that using MYSQL(Native) avoids this problem.  I was using
> > MYSQL(JDBC) when I came across it.
> 
> I have recently installed MySQL and MySQL workbook. I use LibreOffice
> 6.0.6.2 and 6.1.4.1 downloaded from LibreOffice website. I also have two
> Java connectors for MySQL (8.0.13 and 5.1.23) which I downloaded from the
> MySQL website in the last couple of days. Both of them work with LO 6.0.6.2
> but give the same error message with 6.1.4.1.

I have recently downloaded and installed LO 6.2.0.1 RC1. When using the native
MySQL connector, I still get this error message. I also get it when using both
JDBC connectors (8.0.13, 5.1.23).

Both of them work properly for LO 6.0.6.3 and 6.0.7.3.

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


[Libreoffice-bugs] [Bug 104980] Notebookbar contextual groups: no indication if document modified/to be saved

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104980

--- 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 77652] Highlight, cut, & paste word in a bullet list line to same line changes indent of line (moving word)

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77652

--- 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 98479] Exported PDF Form Text box containing punctuation / diacritic not displaying/printing some characters

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98479

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


Bug #122437 MySQL foreign keys and the native MySQL connector

2019-01-02 Thread Dan Lewis
When I connect to MySQL using the native connector on LO 6.2.1 RC1, I 
can not successfully create a primary-foreign key pair. Instead of 
pairing the two fields, the foreign key pairs with itself. I have also 
connected to the same database on LO 6.2.0.1 RC1 using 
mysql-connector-java-5.1.45, and the relationships appear normal.


In this case I connected to the database first using the native 
connector. But this does not really matter. When I use 
mysql-connector-java-5.1.45 first and then the native connector, the 
results are the same. The native connector shows the foreign key related 
to itself. The mysql-connector-java-5.1.45 shows the relationships as 
they should be.


I attached two snapshots to show the difference. These were taken from 
Tools > Relationships


This is definitely a show stopper.

Dan

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


[Libreoffice-bugs] [Bug 122437] creating foreign key creates a relationship to the foreign key itself

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122437

--- Comment #2 from Dan Lewis  ---
Created attachment 147960
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147960=edit
Actual snapshot using native MySQL connector: Tools>Relationships

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


[Libreoffice-bugs] [Bug 122437] creating foreign key creates a relationship to the foreign key itself

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122437

--- Comment #1 from Dan Lewis  ---
Comment on attachment 147959
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147959
It's the relationship created by the native MySQL connector

The title of the snapshot is wrong. It was taken using
mysql-connector-java-5.1.45 for the same database.

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


[Libreoffice-bugs] [Bug 122437] New: creating foreign key creates a relationship to the foreign key itself

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122437

Bug ID: 122437
   Summary: creating foreign key creates a relationship to the
foreign key itself
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: elderdanle...@gmail.com

Created attachment 147959
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147959=edit
It's the relationship created by the native MySQL connector

I am using the new built in native MySQL Connector. When creating a new
relationship between two tables, rather than relating the foreign key of one
table to the primary key of the other; a relationship is created between the
foreign key and itself! This is seen in Tools > Relationship in the main
database window where every primary-foreign relationship shows this.

Example: "tableA"."primary key" should be related to "tableB"."foreign key"
Instead:
  "tableB"."foreign key: is related to "tableB"."foreign key"

 The problems seems to be in the new MySQL connector. When connecting to the
same database using either MySQL(JDBC) [mysql-connector-java-5.1.45,
mysql-connector-java-8.0.13], Tools > Relationships shows the proper
primary-foreign key pairs.

The database was created in the following way: 
1) Using the database wizard, I selected "Connect to an existing database and
selected "MySQL from the drop down menu.
2) Selected "Connect directly"
3) I entered the database name and listed localhost as the server.
4) I entered my user name and checked "password required"
5) Selected "Yes, register the database for me." I checked "Open the database
for editing."

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


[Libreoffice-bugs] [Bug 122419] AutoFilter Search Freezes Calc in the Attached Spreadsheet

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122419

Kevin Suo  changed:

   What|Removed |Added

   Keywords||regression

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


[Libreoffice-bugs] [Bug 122436] Writer can't display or export eps with preview correctly

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122436

--- Comment #1 from medmedin2014  ---
Created attachment 147958
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147958=edit
eps file ugly in writer

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


[Libreoffice-bugs] [Bug 122436] New: Writer can't display or export eps with preview correctly

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122436

Bug ID: 122436
   Summary: Writer can't display or export eps with preview
correctly
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: med.medin.2...@gmail.com

Description:
I import some eps created by geogebra, but they are not displayed correctly. I
found that eps without preview can be displayed and exported to pdf correctly
but the ones with preview are badly displayed and looks ugly.

Steps to Reproduce:
1.Open Writer
2.Insert eps image
3.Export to pdf

Actual Results:
eps is displayed ugly inside Writer, and also inside exported pdf.

Expected Results:
eps should be displayed and exported correctly.


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-commits] core.git: Branch 'aoo/trunk' - extensions.lst

2019-01-02 Thread Libreoffice Gerrit user
 extensions.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 82e826656492af6a682ab2a7f086a9ec6b7022f6
Author: Matthias Seidel 
AuthorDate: Wed Jan 2 22:19:02 2019 +
Commit: Matthias Seidel 
CommitDate: Wed Jan 2 22:19:02 2019 +

Updated English dictionary

diff --git a/extensions.lst b/extensions.lst
index 65d12e2d913f..05a97f1b20cf 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -73,7 +73,7 @@
 
 # English dictionary
 [ language=en.* || language=de || language=it ]
-89b86d3a0c237b9aec88a9c7f9e33fda 
https://sourceforge.net/projects/aoo-extensions/files/17102/44/dict-en-20181101.oxt/download
 "dict-en.oxt"
+2cbbc79431794a0a00527e122d460743 
https://sourceforge.net/projects/aoo-extensions/files/17102/45/dict-en-20190101.oxt/download
 "dict-en.oxt"
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122405] Calc Editing - Right click on cell, cuts cell many times.

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122405

--- Comment #3 from Rich  ---
I installed 6.1.4.2 yesterday and have had no  failures. So I concur with
closing.

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


[Libreoffice-bugs] [Bug 122424] FILEOPEN RTF space character after table moves to the first cell of next row

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122424

Gabor Kelemen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Gabor Kelemen  ---
(In reply to Dieter Praas from comment #3)
> I confirm the results, but I don't think, that it is the right description,
> because when you open the file in Word you can't delete, those "space
> characters". So I'm not sure what it is. And I won't expect an additional
> space character behind the table in LO.

In a newly inserted table in Word there is no space after the last column and
before the row end character, but in this particular document there is one.

Also if you type something at that position then the characters move to the
first cell of the next row.

It may be true that this is some sort of malformed document that is not
possible to create with Word, yet it seems to tolerate it.

This is used by a third party application, which generates a page long summary
from some data it maintains. This document is the first few rows of that
summary.

The small row height growth caused by the 12 pt TNR "space" being inserted into
the 7 pt Tahoma + 11 pt Arial Narrow rows causes the last two rows of the page
slip to the next page, to the frustration of users.

All in all, we kinda *really* need this sort of document to work. 
Let me confirm this, half of my workday was spent on understanding this doc :D.

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


[Libreoffice-bugs] [Bug 122415] When i open a document, the document load a very long time and doesn't open...

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122415

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
Hello,

Thank you for filing the bug. Please send us a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
Thank you

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


[Libreoffice-bugs] [Bug 122420] FILESAVE: VBA Worksheet_Change Listener lost on saving .xlsm in LO

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122420

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
Version|6.1.4.2 release |6.0.0.3 release
 CC||btom...@gmail.com,
   ||r...@post.cz

--- Comment #2 from raal  ---
Confirm with Version: 6.3.0.0.alpha0+
Build ID: ef58bf56ad292656ad2de0a417eda72cc170f782
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: cs-CZ (cs_CZ.UTF-8); UI-Language: en-US

Version: 6.0.3.0.0+
Build ID: a1b3ae95e35fe0669bcc9df020fa606e6a3cca75


In version Version: 5.4.0.0.beta2+
Build ID: 721efbeb117962e9b0cd547b51ede4a6736042a6  this Worksheet_Change()
Macro doesn't work. Macro started to work after commit:

author  Tamas Bunth2017-07-06 10:46:48
+0200
committer   Tamás Bunth  2017-07-06 22:37:12 +0200
commit  5ee6862ee420f13133ade382d7ef2be319414d40 (patch)
treedc255b1cf96f9e8f99d77c3a92b488af87c938db
parent  388041695d9626970b0d4dce89241c849eeffd0e (diff)
Create vba library if it did not exist before

Adding Cc: to Tamás Bunth ; Could you possibly take a look at this one?
Thanks

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


[Libreoffice-bugs] [Bug 122405] Calc Editing - Right click on cell, cuts cell many times.

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122405

--- Comment #2 from Durgapriyanka  ---
Thank you for reporting the bug. Unfortunately I can not reproduce the bug in

Version: 6.3.0.0.alpha0+
Build ID: 3c964980da07892a02d5ac721d80558c459532d0
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-12-12_02:07:45
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 122413] Changes to Impress not saved

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122413

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can not reproduce the bug in

Version: 6.3.0.0.alpha0+
Build ID: 3c964980da07892a02d5ac721d80558c459532d0
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-12-12_02:07:45
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 122408] Form with subforms isnt working any more

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122408

--- Comment #5 from Ulf  ---
Created attachment 147957
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147957=edit
Example Database

try the Forms to see the differnz.

Thanks

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


[Libreoffice-bugs] [Bug 122420] FILESAVE: VBA Worksheet_Change Listener lost on saving .xlsm in LO

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122420

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can not confirm the bug with 

Version: 6.3.0.0.alpha0+
Build ID: 3c964980da07892a02d5ac721d80558c459532d0
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-12-12_02:07:45
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-ux-advise] [Bug 60242] TABLE: Split cell default choice

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60242

--- Comment #5 from Rizal Muttaqin  ---
(In reply to Martin van Zijl from comment #3)
> (In reply to Martin van Zijl from comment #2)
> > Created attachment 147816 [details]
> > A video demo of my patch.
> > 
> > I've created a patch which lets you select whether to split cells vertically
> > by default. 
> > 
> > Attached is a demo.
> > 
> > I'm planning to submit the code for review later today.
> 
> In case the video isn't clear, to activate the option you would do the
> following:
> 
> 1. Select "Tools --> Options".
> 2. Expand the "LibreOffice Writer" section.
> 3. Click "Table".
> 4. Check the box at the bottom labelled "Split cells vertically by default".
> 5. Click "OK".
> 
> Now when you open the Split Cells dialog, vertically will be selected by
> default.
> 
> I also added a similar option for "LibreOffice Writer/Web".

Cool. Would be nice if the option is provided by the split cell dialogue
itself. For example add a extra cheklist "Set as default".

-- 
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 60242] TABLE: Split cell default choice

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60242

--- Comment #5 from Rizal Muttaqin  ---
(In reply to Martin van Zijl from comment #3)
> (In reply to Martin van Zijl from comment #2)
> > Created attachment 147816 [details]
> > A video demo of my patch.
> > 
> > I've created a patch which lets you select whether to split cells vertically
> > by default. 
> > 
> > Attached is a demo.
> > 
> > I'm planning to submit the code for review later today.
> 
> In case the video isn't clear, to activate the option you would do the
> following:
> 
> 1. Select "Tools --> Options".
> 2. Expand the "LibreOffice Writer" section.
> 3. Click "Table".
> 4. Check the box at the bottom labelled "Split cells vertically by default".
> 5. Click "OK".
> 
> Now when you open the Split Cells dialog, vertically will be selected by
> default.
> 
> I also added a similar option for "LibreOffice Writer/Web".

Cool. Would be nice if the option is provided by the split cell dialogue
itself. For example add a extra cheklist "Set as default".

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


[Libreoffice-bugs] [Bug 122423] DOCX Import Tab settings in bulleted lists with custom style and direct formatting look different when opened in Writer

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122423

Durgapriyanka  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm that the bug is present in

Version: 6.3.0.0.alpha0+
Build ID: 3c964980da07892a02d5ac721d80558c459532d0
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-12-12_02:07:45
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 122421] text in table wasn't aligned when opening a RTF file

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122421

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
 OS|Windows (All)   |All
Version|4.4.7.2 release |4.1.0.4 release

--- Comment #3 from raal  ---
repro with Version 4.1.0.0.alpha0+ (Build ID:
efca6f15609322f62a35619619a6d5fe5c9bd5a)

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


[Libreoffice-bugs] [Bug 122435] LibreOffice hangs when in Calc copying formula while in edit mode then leaving field with escape

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122435

--- Comment #1 from Maddes  ---
Created attachment 147956
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147956=edit
Sheets file to reproduce issue

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


[Libreoffice-bugs] [Bug 122435] New: LibreOffice hangs when in Calc copying formula while in edit mode then leaving field with escape

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122435

Bug ID: 122435
   Summary: LibreOffice hangs when in Calc copying formula while
in edit mode  then leaving field with escape
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: maddes+docfoundat...@maddes.net

Description:
LibreOffice hangs when in Calc copying a formula in edit mode  and then
leaving the field via 


Steps to Reproduce:
1. Load attached sheet
2. COPY A1:F3 to A8
3. Change formulas in B10:E10 via  and replace each $2 with $10
4. Again edit E10 via 
5. Copy the whole formula via CTRL+C
6. Leave the field via . Result: LibreOffice hangs

3.

Actual Results:
LibreOffice hangs (Calc, Write, etc.)

Expected Results:
It should plain work


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 122260] EDITING Autofilters not properly cleared

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122260

Maddes  changed:

   What|Removed |Added

 OS|Android |Windows (All)

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


[Libreoffice-bugs] [Bug 122434] New: AltSearch extension does not work in a Table in LO Writer

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122434

Bug ID: 122434
   Summary: AltSearch extension does not work in a Table in LO
Writer
   Product: LibreOffice
   Version: 6.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adalbert.hans...@gmx.de

Description:
I often use batch command to exchange ‘\p‘ (paragraph marks) by  ‘\n‘ (forced
line feed).
However, If I apply AltSearch 1.4.2 in LibreOffice Writer Version Version
6.1.4.2 under Xubuntu 16.04.5 LTS (x86-64) and replace the batch command to
replace paragraph marks by forced linefeeds, it simply replaces the marked
portion in a table by the sequence of a line feed .
The same batch applied to some marked portion of a LO Writer document which
does not comprise any table works as expected.
This seems to be a bug in AltSearch.

Steps to Reproduce:
1.insert a table into a LO Writer document.
2.Paste some text into any field of that table, e.g. copied output of ls -l.
3.Mark several lines in this text spanning some paragraph marks.
4.Use AltSearch to rexchange (as a regular search) \p by \n.

Actual Results:
The marked portion in the LO Writer document's table gets replaced by a single
forced line feed (\n) rather than all \p are replaced by \n.

Expected Results:
just the paragraph marks replaced by forced line feeds.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

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 122428] Comments of Tracked Changes are not Displayed at once

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122428

Durgapriyanka  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm that the bug is present in

Version: 6.3.0.0.alpha0+
Build ID: 3c964980da07892a02d5ac721d80558c459532d0
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-12-12_02:07:45
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-commits] translations.git: Branch 'libreoffice-6-2' - source/sl

2019-01-02 Thread Libreoffice Gerrit user
 source/sl/helpcontent2/source/text/scalc/00.po |   24 +-
 source/sl/helpcontent2/source/text/scalc/01.po |   38 +--
 source/sl/helpcontent2/source/text/scalc/02.po |   10 
 source/sl/helpcontent2/source/text/scalc/guide.po  |8 
 source/sl/helpcontent2/source/text/shared.po   |   22 -
 source/sl/helpcontent2/source/text/shared/00.po|  112 
++
 source/sl/helpcontent2/source/text/shared/01.po|   22 -
 source/sl/helpcontent2/source/text/shared/02.po|   10 
 source/sl/helpcontent2/source/text/shared/04.po|   10 
 source/sl/helpcontent2/source/text/shared/explorer/database.po |   14 -
 source/sl/helpcontent2/source/text/shared/guide.po |   38 +--
 source/sl/helpcontent2/source/text/swriter.po  |   22 -
 source/sl/sw/messages.po   |   10 
 13 files changed, 142 insertions(+), 198 deletions(-)

New commits:
commit a07d2a278260311d531fe47e2176eb6c261ed033
Author: Martin Srebotnjak 
AuthorDate: Wed Jan 2 21:56:04 2019 +0100
Commit: Andras Timar 
CommitDate: Wed Jan 2 21:56:04 2019 +0100

Updated Slovenian translation

Change-Id: I1cf435f39e5e67ad6838d8c594cc00eb935ed1ae

diff --git a/source/sl/helpcontent2/source/text/scalc/00.po 
b/source/sl/helpcontent2/source/text/scalc/00.po
index 8d7ce556b50..6342288b747 100644
--- a/source/sl/helpcontent2/source/text/scalc/00.po
+++ b/source/sl/helpcontent2/source/text/scalc/00.po
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 6.2\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2018-12-04 21:53+0100\n"
-"PO-Revision-Date: 2018-11-26 23:20+0200\n"
+"POT-Creation-Date: 2019-01-02 13:33+0100\n"
+"PO-Revision-Date: 2019-01-02 21:13+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
+"Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n"
 "X-Generator: Virtaal 0.7.1\n"
 "X-Accelerator-Marker: ~\n"
@@ -270,16 +270,16 @@ msgctxt ""
 "0404.xhp\n"
 "par_id3149784\n"
 "help.text"
-msgid "Choose Insert - Cells."
-msgstr "Izberite Vstavi – Celice."
+msgid "Choose Sheet - Insert Cells."
+msgstr "Izberite Delovni list – Vstavi celice."
 
 #: 0404.xhp
 msgctxt ""
 "0404.xhp\n"
 "par_id3154514\n"
 "help.text"
-msgid "Open Insert Cells toolbar from Tools bar:"
-msgstr "Odprite orodno vrstico Vstavi celice v vrstici 
Orodja:"
+msgid "Choose View - Toolbars and select  Insert 
Cells toolbar:"
+msgstr "Izberite Pogled – Orodne vrstice in izberite orodno 
vrstico Vstavi celice:"
 
 #: 0404.xhp
 msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
 "0404.xhp\n"
 "par_id3153250\n"
 "help.text"
-msgid "Choose Insert - Named Ranges and 
Expressions."
+msgid "Choose Insert - Named Range or 
Expression."
 msgstr "Izberite Vstavi – Imenovani obseg ali 
izraz."
 
 #: 0404.xhp
@@ -806,8 +806,8 @@ msgctxt ""
 "0405.xhp\n"
 "par_id3154618\n"
 "help.text"
-msgid "Choose Format - Conditional 
Formatting."
-msgstr "Izberite Oblika – Pogojno 
oblikovanje."
+msgid "Choose Format - 
Conditional."
+msgstr "Izberite Oblika – 
Pogojno."
 
 #: 0406.xhp
 msgctxt ""
@@ -1158,8 +1158,8 @@ msgctxt ""
 "0412.xhp\n"
 "par_id3155308\n"
 "help.text"
-msgid "Choose Data - Filter."
-msgstr "Izberite Podatki – 
Filtriraj."
+msgid "Choose Data - More 
Filters."
+msgstr "Izberite Podatki – Več 
filtrov."
 
 #: 0412.xhp
 msgctxt ""
diff --git a/source/sl/helpcontent2/source/text/scalc/01.po 
b/source/sl/helpcontent2/source/text/scalc/01.po
index 6cceb0cedff..7f7e9d6dac0 100644
--- a/source/sl/helpcontent2/source/text/scalc/01.po
+++ b/source/sl/helpcontent2/source/text/scalc/01.po
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LibreOffice 6.2\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2018-12-18 10:11+0100\n"
-"PO-Revision-Date: 2018-12-06 17:22+0200\n"
+"POT-Creation-Date: 2019-01-02 13:33+0100\n"
+"PO-Revision-Date: 2019-01-02 21:29+0200\n"
 "Last-Translator: Martin Srebotnjak \n"
 "Language-Team: sl.libreoffice.org\n"
+"Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n"
 "X-Generator: Virtaal 0.7.1\n"
 "X-Accelerator-Marker: ~\n"
@@ -3430,8 +3430,8 @@ msgctxt ""
 "0406.xhp\n"
 "par_id8007446\n"
 "help.text"
-msgid "You can download the complete ODFF (OpenDocument Format Formula) 
specification from the 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - translations

2019-01-02 Thread Libreoffice Gerrit user
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 12bb88b244c4a25d449e5d09a9f0d9a598119c4e
Author: Martin Srebotnjak 
AuthorDate: Wed Jan 2 21:56:04 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Wed Jan 2 21:56:10 2019 +0100

Update git submodules

* Update translations from branch 'libreoffice-6-2'
  - Updated Slovenian translation

Change-Id: I1cf435f39e5e67ad6838d8c594cc00eb935ed1ae

diff --git a/translations b/translations
index fd59108ae3e9..a07d2a278260 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit fd59108ae3e93444ac0a6608bff4d063db9bdd4a
+Subproject commit a07d2a278260311d531fe47e2176eb6c261ed033
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122282] SectPr nextColumn section break doesn't connect to the previous columns

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122282

Durgapriyanka  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm that the bug is present in 

Version: 6.3.0.0.alpha0+
Build ID: 3c964980da07892a02d5ac721d80558c459532d0
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-12-12_02:07:45
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 117480] Mailmerge crash when saving merged document ( only the first time the connection is done )

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117480

--- Comment #12 from Szymon Kłos  ---
Current status: crash is fixed but result is not as expected (error occurs
during printing) and output file is empty.

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


[Libreoffice-bugs] [Bug 122433] New: LO Draw seems to limit export of PNGs to a width of 1000 pixels regardless of the size of the content

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122433

Bug ID: 122433
   Summary: LO Draw seems to limit export of PNGs to a width of
1000 pixels regardless of the size of the content
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mwtjunkm...@gmail.com

Description:
I have images, which, at 96 dots per inch, are 1500 pixels wide by 900 pixels
high. The content is used for displaying on a monitor only, not printed.

These exported PNG images in past versions of LO Draw accommodated a width of
1500 pixels, but now, regardless of printer settings and export settings, snap
to a fixed maximum width of 1000 pixels.  With 4k monitors, this limitation is
ridiculously small.

Steps to Reproduce:
1. Create content consuming a width of 1500 pixels wide and 900 pixels high
2. Attempt to export the content as a PNG.


Actual Results:
Export reduces the width to 1000 pixels wide, making the image small and hard
to read.

Expected Results:
Width of export should be width of content.


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 117480] Mailmerge crash when saving merged document ( only the first time the connection is done )

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117480

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.3.0

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


[Libreoffice-bugs] [Bug 117480] Mailmerge crash when saving merged document ( only the first time the connection is done )

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117480

--- Comment #11 from Commit Notification 
 ---
Szymon Kłos committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/92edea090128839f54a7f628662529e66d657ab4%5E%21

tdf#117480 fix crash in mailmerge

It will be available in 6.3.0.

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

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

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


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

2019-01-02 Thread Libreoffice Gerrit user
 sw/source/uibase/dbui/dbmgr.cxx |  736 
 1 file changed, 373 insertions(+), 363 deletions(-)

New commits:
commit 92edea090128839f54a7f628662529e66d657ab4
Author: Szymon Kłos 
AuthorDate: Wed Jan 2 19:03:25 2019 +0100
Commit: Szymon Kłos 
CommitDate: Wed Jan 2 21:42:32 2019 +0100

tdf#117480 fix crash in mailmerge

Catch exceptions and hide progress dialog.

Change-Id: Ie63c8d7e001c90f40cf7504fd8248a6742e9d244
Reviewed-on: https://gerrit.libreoffice.org/65815
Reviewed-by: Szymon Kłos 
Tested-by: Szymon Kłos 

diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 46f16f07f198..7162c70b0b45 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -1269,453 +1269,463 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* 
pSourceShell,
 vcl::Window *pSourceWindow = nullptr;
 std::shared_ptr xProgressDlg;
 
-if( !bIsMergeSilent )
+try
 {
-// construct the process dialog
-pSourceWindow = >GetView().GetEditWin();
-if (!bMT_PRINTER)
-xProgressDlg.reset(new 
CreateMonitor(pSourceWindow->GetFrameWeld()));
-else
+if( !bIsMergeSilent )
 {
-xProgressDlg.reset(new 
PrintMonitor(pSourceWindow->GetFrameWeld()));
-static_cast(xProgressDlg.get())->set_title(
-pSourceDocSh->GetTitle(22));
-}
-weld::DialogController::runAsync(xProgressDlg, [this, 
](sal_Int32 nResult){
-if (nResult == RET_CANCEL)
-MergeCancel();
-xProgressDlg.reset();
-});
-
-Application::Reschedule( true );
-}
-
-if( bCreateSingleFile && !pTargetView )
-{
-// create a target docshell to put the merged document into
-xTargetDocShell = lcl_CreateWorkingDocument( WorkingDocType::TARGET,
-*pSourceShell, bMT_SHELL ? pSourceWindow : nullptr,
-nullptr, , ,  );
+// construct the process dialog
+pSourceWindow = >GetView().GetEditWin();
+if (!bMT_PRINTER)
+xProgressDlg.reset(new 
CreateMonitor(pSourceWindow->GetFrameWeld()));
+else
+{
+xProgressDlg.reset(new 
PrintMonitor(pSourceWindow->GetFrameWeld()));
+static_cast(xProgressDlg.get())->set_title(
+pSourceDocSh->GetTitle(22));
+}
+weld::DialogController::runAsync(xProgressDlg, [this, 
](sal_Int32 nResult){
+if (nResult == RET_CANCEL)
+MergeCancel();
+xProgressDlg.reset();
+});
 
-// import current print settings
-const SwPrintData  = 
pSourceShell->getIDocumentDeviceAccess().getPrintData();
-pTargetDoc->getIDocumentDeviceAccess().setPrintData(rPrintData);
+Application::Reschedule( true );
+}
 
-if (nMaxDumpDocs)
-lcl_SaveDebugDoc( xTargetDocShell.get(), "MergeDoc" );
-}
-else if( pTargetView )
-{
-pTargetShell = pTargetView->GetWrtShellPtr();
-pTargetDoc = pTargetShell->GetDoc();
-xTargetDocShell = pTargetView->GetDocShell();
-}
+if( bCreateSingleFile && !pTargetView )
+{
+// create a target docshell to put the merged document into
+xTargetDocShell = lcl_CreateWorkingDocument( 
WorkingDocType::TARGET,
+*pSourceShell, bMT_SHELL ? pSourceWindow : nullptr,
+nullptr, , ,  );
 
-if( bCreateSingleFile )
-{
-// determine the page style and number used at the start of the source 
document
-pSourceShell->SttEndDoc(true);
-nStartingPageNo = pSourceShell->GetVirtPageNum();
-}
+// import current print settings
+const SwPrintData  = 
pSourceShell->getIDocumentDeviceAccess().getPrintData();
+pTargetDoc->getIDocumentDeviceAccess().setPrintData(rPrintData);
 
-// Progress, to prohibit KeyInputs
-SfxProgress aProgress(pSourceDocSh, OUString(), 1);
+if (nMaxDumpDocs)
+lcl_SaveDebugDoc( xTargetDocShell.get(), "MergeDoc" );
+}
+else if( pTargetView )
+{
+pTargetShell = pTargetView->GetWrtShellPtr();
+pTargetDoc = pTargetShell->GetDoc();
+xTargetDocShell = pTargetView->GetDocShell();
+}
 
-// lock all dispatchers
-SfxViewFrame* pViewFrame = SfxViewFrame::GetFirst(pSourceDocSh);
-while (pViewFrame)
-{
-pViewFrame->GetDispatcher()->Lock(true);
-pViewFrame = SfxViewFrame::GetNext(*pViewFrame, pSourceDocSh);
-}
+if( bCreateSingleFile )
+{
+// determine the page style and number used at the start of the 
source document
+pSourceShell->SttEndDoc(true);
+nStartingPageNo = pSourceShell->GetVirtPageNum();
+}
 
-

[Libreoffice-bugs] [Bug 122432] Accessible row headers not obtainable via AT-SPI2 for Writer tables

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122432

--- Comment #1 from Joanmarie Diggs  ---
Created attachment 147955
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147955=edit
test case

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


[Libreoffice-bugs] [Bug 122432] New: Accessible row headers not obtainable via AT-SPI2 for Writer tables

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122432

Bug ID: 122432
   Summary: Accessible row headers not obtainable via AT-SPI2 for
Writer tables
   Product: LibreOffice
   Version: 6.0.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jdi...@igalia.com

Description:
Using the Table Heading style for column headers results in those headers being
retrievable via the accessible table interface. Unfortunately, using that same
style for row headers does not render row headers accessible.

Impact: Orca does not present row headers automatically to the user.

Steps to Reproduce:
1. Open the attached test case in Writer
2. Launch Accerciser and select Table1-1 in its list of accessible objects
3. In Accerciser's iPython console type the following:

t = acc.queryTable()
t.getColumnDescription(1)
t.getColumnHeader(1).name
t.getRowDescription(1)
t.getRowHeader(1).name


Actual Results:
Results:
GOOD: t.getColumnHeader(1).name returns "B1"
GOOD: t.getColumnDescription(1) returns "Foo"
BAD: t.getRowDescription(1) returns "" (should be "A2")
BAD: t.getRowHeader(1).name results in an AttributeError because null is
returned (should be "Baz")

Expected Results:
(See above)


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 122421] text in table wasn't aligned when opening a RTF file

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122421

Telesto  changed:

   What|Removed |Added

Version|6.1.4.2 release |4.4.7.2 release
 CC||tele...@surfxs.nl

-- 
You are receiving this mail because:
You 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: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg

2019-01-02 Thread Libreoffice Gerrit user
 icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/lc_attributepagesize.png|binary
 icon-themes/breeze/cmd/lc_changepicture.png|binary
 icon-themes/breeze/cmd/lc_defineprintarea.png  |binary
 icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/sc_changepicture.png|binary
 icon-themes/breeze/cmd/sc_defineprintarea.png  |binary
 icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/sc_showcolumn.png   |binary
 icon-themes/breeze/links.txt   |   14 +
 icon-themes/breeze_dark/cmd/lc_acceptalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/lc_attributepagesize.png   |binary
 icon-themes/breeze_dark/cmd/lc_changepicture.png   |binary
 icon-themes/breeze_dark/cmd/lc_defineprintarea.png |binary
 icon-themes/breeze_dark/cmd/lc_rejectalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/sc_acceptalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/sc_changepicture.png   |binary
 icon-themes/breeze_dark/cmd/sc_defineprintarea.png |binary
 icon-themes/breeze_dark/cmd/sc_rejectalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/sc_showcolumn.png  |binary
 icon-themes/breeze_svg/cmd/lc_acceptalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/lc_attributepagesize.svg|6 +
 icon-themes/breeze_svg/cmd/lc_changepicture.svg|   10 +
 icon-themes/breeze_svg/cmd/lc_defineprintarea.svg  |6 -
 icon-themes/breeze_svg/cmd/lc_rejectalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_acceptalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_changepicture.svg|   10 +
 icon-themes/breeze_svg/cmd/sc_defineprintarea.svg  |7 ++
 icon-themes/breeze_svg/cmd/sc_rejectalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_showcolumn.svg   |   10 +
 31 files changed, 82 insertions(+), 5 deletions(-)

New commits:
commit 6b6abf4eb759e279be03627b11ed144901f4ed71
Author: andreas kainz 
AuthorDate: Sat Dec 29 22:10:34 2018 +0100
Commit: andreas_kainz 
CommitDate: Wed Jan 2 20:31:34 2019 +0100

Breeze icon theme update

Change-Id: I7250234203b8500a588b7cfa2c83c4abacd35c42
Reviewed-on: https://gerrit.libreoffice.org/65787
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png 
b/icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png
new file mode 100644
index ..a3be0333d032
Binary files /dev/null and 
b/icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png differ
diff --git a/icon-themes/breeze/cmd/lc_attributepagesize.png 
b/icon-themes/breeze/cmd/lc_attributepagesize.png
index a81149b1b9af..6abbf5fd8c06 100644
Binary files a/icon-themes/breeze/cmd/lc_attributepagesize.png and 
b/icon-themes/breeze/cmd/lc_attributepagesize.png differ
diff --git a/icon-themes/breeze/cmd/lc_changepicture.png 
b/icon-themes/breeze/cmd/lc_changepicture.png
new file mode 100644
index ..69f4d0f83259
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_changepicture.png differ
diff --git a/icon-themes/breeze/cmd/lc_defineprintarea.png 
b/icon-themes/breeze/cmd/lc_defineprintarea.png
index 0dfbb1aa5589..32ae424e75d2 100644
Binary files a/icon-themes/breeze/cmd/lc_defineprintarea.png and 
b/icon-themes/breeze/cmd/lc_defineprintarea.png differ
diff --git a/icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png 
b/icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png
new file mode 100644
index ..d8f42719e047
Binary files /dev/null and 
b/icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png differ
diff --git a/icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png 
b/icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png
new file mode 100644
index ..802a98c8971c
Binary files /dev/null and 
b/icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png differ
diff --git a/icon-themes/breeze/cmd/sc_changepicture.png 
b/icon-themes/breeze/cmd/sc_changepicture.png
new file mode 100644
index ..0170de984734
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_changepicture.png differ
diff --git a/icon-themes/breeze/cmd/sc_defineprintarea.png 
b/icon-themes/breeze/cmd/sc_defineprintarea.png
new file mode 100644
index ..725a46244ab9
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_defineprintarea.png 
differ
diff --git a/icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png 
b/icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png
new file mode 100644
index ..7b651496de30
Binary files /dev/null and 
b/icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png differ
diff --git 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg

2019-01-02 Thread Libreoffice Gerrit user
 icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/lc_attributepagesize.png|binary
 icon-themes/breeze/cmd/lc_changepicture.png|binary
 icon-themes/breeze/cmd/lc_defineprintarea.png  |binary
 icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/sc_changepicture.png|binary
 icon-themes/breeze/cmd/sc_defineprintarea.png  |binary
 icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png  |binary
 icon-themes/breeze/cmd/sc_showcolumn.png   |binary
 icon-themes/breeze/links.txt   |   14 +
 icon-themes/breeze_dark/cmd/lc_acceptalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/lc_attributepagesize.png   |binary
 icon-themes/breeze_dark/cmd/lc_changepicture.png   |binary
 icon-themes/breeze_dark/cmd/lc_defineprintarea.png |binary
 icon-themes/breeze_dark/cmd/lc_rejectalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/sc_acceptalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/sc_changepicture.png   |binary
 icon-themes/breeze_dark/cmd/sc_defineprintarea.png |binary
 icon-themes/breeze_dark/cmd/sc_rejectalltrackedchanges.png |binary
 icon-themes/breeze_dark/cmd/sc_showcolumn.png  |binary
 icon-themes/breeze_svg/cmd/lc_acceptalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/lc_attributepagesize.svg|6 +
 icon-themes/breeze_svg/cmd/lc_changepicture.svg|   10 +
 icon-themes/breeze_svg/cmd/lc_defineprintarea.svg  |6 -
 icon-themes/breeze_svg/cmd/lc_rejectalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_acceptalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_changepicture.svg|   10 +
 icon-themes/breeze_svg/cmd/sc_defineprintarea.svg  |7 ++
 icon-themes/breeze_svg/cmd/sc_rejectalltrackedchanges.svg  |6 +
 icon-themes/breeze_svg/cmd/sc_showcolumn.svg   |   10 +
 31 files changed, 82 insertions(+), 5 deletions(-)

New commits:
commit c873c0ad7bd0ebb5561adea33c8fdec3e49d234a
Author: andreas kainz 
AuthorDate: Sat Dec 29 22:10:34 2018 +0100
Commit: andreas_kainz 
CommitDate: Wed Jan 2 20:31:42 2019 +0100

Breeze icon theme update

Change-Id: I7250234203b8500a588b7cfa2c83c4abacd35c42
Reviewed-on: https://gerrit.libreoffice.org/65788
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png 
b/icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png
new file mode 100644
index ..a3be0333d032
Binary files /dev/null and 
b/icon-themes/breeze/cmd/lc_acceptalltrackedchanges.png differ
diff --git a/icon-themes/breeze/cmd/lc_attributepagesize.png 
b/icon-themes/breeze/cmd/lc_attributepagesize.png
index a81149b1b9af..6abbf5fd8c06 100644
Binary files a/icon-themes/breeze/cmd/lc_attributepagesize.png and 
b/icon-themes/breeze/cmd/lc_attributepagesize.png differ
diff --git a/icon-themes/breeze/cmd/lc_changepicture.png 
b/icon-themes/breeze/cmd/lc_changepicture.png
new file mode 100644
index ..69f4d0f83259
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_changepicture.png differ
diff --git a/icon-themes/breeze/cmd/lc_defineprintarea.png 
b/icon-themes/breeze/cmd/lc_defineprintarea.png
index 0dfbb1aa5589..32ae424e75d2 100644
Binary files a/icon-themes/breeze/cmd/lc_defineprintarea.png and 
b/icon-themes/breeze/cmd/lc_defineprintarea.png differ
diff --git a/icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png 
b/icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png
new file mode 100644
index ..d8f42719e047
Binary files /dev/null and 
b/icon-themes/breeze/cmd/lc_rejectalltrackedchanges.png differ
diff --git a/icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png 
b/icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png
new file mode 100644
index ..802a98c8971c
Binary files /dev/null and 
b/icon-themes/breeze/cmd/sc_acceptalltrackedchanges.png differ
diff --git a/icon-themes/breeze/cmd/sc_changepicture.png 
b/icon-themes/breeze/cmd/sc_changepicture.png
new file mode 100644
index ..0170de984734
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_changepicture.png differ
diff --git a/icon-themes/breeze/cmd/sc_defineprintarea.png 
b/icon-themes/breeze/cmd/sc_defineprintarea.png
new file mode 100644
index ..725a46244ab9
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_defineprintarea.png 
differ
diff --git a/icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png 
b/icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png
new file mode 100644
index ..7b651496de30
Binary files /dev/null and 
b/icon-themes/breeze/cmd/sc_rejectalltrackedchanges.png differ
diff --git 

[Libreoffice-bugs] [Bug 122427] WRITER should handle templates in a clear manner -- IMPORT and Copy to template Directory

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122427

Dieter Praas  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Blocks||101435
 OS|Linux (All) |All


Referenced Bugs:

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

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101435

Dieter Praas  changed:

   What|Removed |Added

 Depends on||122427


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122427
[Bug 122427] WRITER should handle templates in a clear manner -- IMPORT and
Copy to template Directory
-- 
You are receiving this mail because:
You 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 122427] WRITER should handle templates in a clear manner -- IMPORT and Copy to template Directory

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122427

Dieter Praas  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Blocks||101435
 OS|Linux (All) |All


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101435
[Bug 101435] [META] Template manager bugs and enhancements
-- 
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 120671] Incorrect display of combined Tibetan letter Hung

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120671

--- Comment #7 from Serge  ---
Created attachment 147954
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147954=edit
correct on 6.2.0 RC1 Linux

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


[Libreoffice-bugs] [Bug 120671] Incorrect display of combined Tibetan letter Hung

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120671

--- Comment #6 from Serge  ---
> This bug looks disappeared on 6.2.0 RC1

Confirm. On Linux version the letter looks correct. Screenshot has been
attached.

Version: 6.2.0.1
Build ID: 1:6.2.0~rc1-1
CPU threads: 1; OS: Linux 4.19; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 122424] FILEOPEN RTF space character after table moves to the first cell of next row

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122424

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #3 from Dieter Praas  ---
I confirm the results, but I don't think, that it is the right description,
because when you open the file in Word you can't delete, those "space
characters". So I'm not sure what it is. And I won't expect an additional space
character behind the table in LO.

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


[Libreoffice-bugs] [Bug 122408] Form with subforms isnt working any more

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122408

--- Comment #4 from Ulf  ---
@Robert
This Basefile was created with the embedded HSQLDB. 

If i set the "verknüpfen von" only to the first Filterparameter
 the Subform works.
But if i use only the second parameter , the SubFform contains
again no data.

Could be, that the second "Table fields" don't match anymore?

I have to try to get an example Database.

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


[Libreoffice-bugs] [Bug 121065] [NEWHELP] Update icons/images of Math Help page on Unary/Binary operators

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121065

--- Comment #27 from V Stuart Foote  ---
(In reply to Mark from comment #26)
> V Stuart Foote, in  Comment 23, step 6 you have wideslash b for a slash
> (from lower left to upper right). Is it just 'wideslash'?

No, there actually are two commands 'wideslash' and 'widebslash' -- a wide
forward slash and wide backward (leaning) slash.

Example as in attachment 147950

-- 
You are receiving this mail because:
You 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] online.git: Branch 'distro/collabora/collabora-online-4' - loleaflet/js

2019-01-02 Thread Libreoffice Gerrit user
 loleaflet/js/toolbar.js |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9ff6dac8528016e39b1884dd7b2f6a6bf707d039
Author: Jan Holesovsky 
AuthorDate: Wed Jan 2 18:16:49 2019 +0100
Commit: Andras Timar 
CommitDate: Wed Jan 2 20:02:05 2019 +0100

UI: Show the Insert Chart... toolbar button also in Writer and Impress.

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

diff --git a/loleaflet/js/toolbar.js b/loleaflet/js/toolbar.js
index 187472334..e1050d2f3 100644
--- a/loleaflet/js/toolbar.js
+++ b/loleaflet/js/toolbar.js
@@ -788,7 +788,6 @@ function createToolbar() {
{type: 'button',  id: 'numberformatpercent',  img: 
'numberformatpercent', hint: _UNO('.uno:NumberFormatPercent', 'spreadsheet', 
true), hidden: true, uno: 'NumberFormatPercent', disabled: true},
{type: 'button',  id: 'numberformatdecdecimals',  img: 
'numberformatdecdecimals', hint: _UNO('.uno:NumberFormatDecDecimals', 
'spreadsheet', true), hidden: true, uno: 'NumberFormatDecDecimals', disabled: 
true},
{type: 'button',  id: 'numberformatincdecimals',  img: 
'numberformatincdecimals', hint: _UNO('.uno:NumberFormatIncDecimals', 
'spreadsheet', true), hidden: true, uno: 'NumberFormatIncDecimals', disabled: 
true},
-   {type: 'button',  id: 'insertobjectchart',  img: 
'insertobjectchart', hint: _UNO('.uno:InsertObjectChart', '', true), hidden: 
true, uno: 'InsertObjectChart'},
{type: 'break',   id: 'break-number', hidden: true},
{type: 'button',  id: 'insertannotation', img: 'annotation', 
hint: _UNO('.uno:InsertAnnotation', '', true), hidden: true},
{type: 'drop',  id: 'inserttable',  img: 'inserttable', hint: 
_('Insert table'), hidden: true, overlay: {onShow: insertTable},
@@ -799,6 +798,7 @@ function createToolbar() {
{id: 'localgraphic', text: _('Insert Local 
Image')},
{id: 'remotegraphic', text: 
_UNO('.uno:InsertGraphic', '', true)},
]},
+   {type: 'button',  id: 'insertobjectchart',  img: 
'insertobjectchart', hint: _UNO('.uno:InsertObjectChart', '', true), uno: 
'InsertObjectChart'},
{type: 'drop',  id: 'insertshapes',  img: 
'basicshapes_ellipse', hint: _('Insert shapes'), overlay: {onShow: 
insertShapes},
html: ''},
 
@@ -1571,7 +1571,7 @@ function onDocLayerInit() {
switch (docType) {
case 'spreadsheet':
toolbarUp.show('textalign', 'wraptext', 'breakspacing', 
'insertannotation', 'numberformatcurrency', 'numberformatpercent',
-   'numberformatincdecimals', 'numberformatdecdecimals', 
'insertobjectchart', 'sum', 'break-number',
+   'numberformatincdecimals', 'numberformatdecdecimals', 
'sum', 'break-number',
'setborderstyle');
toolbarUp.remove('styles');
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122157] "Open Remote File" silently fails on Win & OSX when using ssh, dav, or smb

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122157

--- Comment #5 from Mark Lehrer  ---

It works for me using the default Ubuntu 18.04 version:

6.0.7-0ubuntu0.18.04.2

I tried with protocols ssh, dav, and smb and all were successful.

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


[Libreoffice-bugs] [Bug 121065] [NEWHELP] Update icons/images of Math Help page on Unary/Binary operators

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121065

--- Comment #26 from Mark  ---
V Stuart Foote, in  Comment 23, step 6 you have wideslash b for a slash (from
lower left to upper right). Is it just 'wideslash'?

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


[Libreoffice-bugs] [Bug 84837] Make show/hide comments UNO command work in Calc

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

--- Comment #143 from Olivrate  ---
http://techygeeks.strikingly.com/blog/why-bumper-stickers-are-important

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


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

2019-01-02 Thread Libreoffice Gerrit user
 oox/source/drawingml/diagram/diagramlayoutatoms.cxx |   14 ++-
 oox/source/drawingml/diagram/layoutatomvisitors.cxx |3 +-
 sd/qa/unit/data/pptx/smartart-org-chart.pptx|binary
 sd/qa/unit/import-tests-smartart.cxx|   24 
 4 files changed, 38 insertions(+), 3 deletions(-)

New commits:
commit dcd378bf614c99d705312259a0a0a25b40d88e2b
Author: Miklos Vajna 
AuthorDate: Wed Jan 2 17:38:07 2019 +0100
Commit: Miklos Vajna 
CommitDate: Wed Jan 2 19:02:06 2019 +0100

oox smartart, org chart: handle multiple elements in hierChild

In case one manager has multiple employees, then we laid out only the
first one. Recognize non-assistant type as the node type (as a start) to
get the correct number of employees (when there are no assistants), and
also render employees on a horizontal (and not on a vertical) path.

With this, the 1 manager and multiple employees case looks reasonable.

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

diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 
b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
index 6af12ed4d26f..056164276283 100644
--- a/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
+++ b/oox/source/drawingml/diagram/diagramlayoutatoms.cxx
@@ -524,6 +524,10 @@ void AlgAtom::layoutShape( const ShapePtr& rShape,
 case XML_hierChild:
 case XML_hierRoot:
 {
+// hierRoot is the manager -> employees vertical linear path,
+// hierChild is the first employee -> last employee horizontal
+// linear path.
+const sal_Int32 nDir = mnType == XML_hierRoot ? XML_fromT : 
XML_fromL;
 if (rShape->getChildren().empty() || rShape->getSize().Width == 0
 || rShape->getSize().Height == 0)
 break;
@@ -531,7 +535,10 @@ void AlgAtom::layoutShape( const ShapePtr& rShape,
 sal_Int32 nCount = rShape->getChildren().size();
 
 awt::Size aChildSize = rShape->getSize();
-aChildSize.Height /= nCount;
+if (nDir == XML_fromT)
+aChildSize.Height /= nCount;
+else
+aChildSize.Width /= nCount;
 
 awt::Point aChildPos(0, 0);
 for (auto& pChild : rShape->getChildren())
@@ -539,7 +546,10 @@ void AlgAtom::layoutShape( const ShapePtr& rShape,
 pChild->setPosition(aChildPos);
 pChild->setSize(aChildSize);
 pChild->setChildSize(aChildSize);
-aChildPos.Y += aChildSize.Height;
+if (nDir == XML_fromT)
+aChildPos.Y += aChildSize.Height;
+else
+aChildPos.X += aChildSize.Width;
 }
 
 break;
diff --git a/oox/source/drawingml/diagram/layoutatomvisitors.cxx 
b/oox/source/drawingml/diagram/layoutatomvisitors.cxx
index 79af89808e36..a73b6566bafe 100644
--- a/oox/source/drawingml/diagram/layoutatomvisitors.cxx
+++ b/oox/source/drawingml/diagram/layoutatomvisitors.cxx
@@ -59,7 +59,8 @@ void ShapeCreationVisitor::visit(ForEachAtom& rAtom)
 const std::vector& rChildren=rAtom.getChildren();
 
 sal_Int32 nChildren=1;
-if( rAtom.iterator().mnPtType == XML_node )
+// Approximate the non-assistant type with the node type.
+if (rAtom.iterator().mnPtType == XML_node || rAtom.iterator().mnPtType == 
XML_nonAsst)
 {
 // count child data nodes - check all child Atoms for "name"
 // attribute that is contained in diagram's
diff --git a/sd/qa/unit/data/pptx/smartart-org-chart.pptx 
b/sd/qa/unit/data/pptx/smartart-org-chart.pptx
index 332d401fa641..3be3473fd6c4 100644
Binary files a/sd/qa/unit/data/pptx/smartart-org-chart.pptx and 
b/sd/qa/unit/data/pptx/smartart-org-chart.pptx differ
diff --git a/sd/qa/unit/import-tests-smartart.cxx 
b/sd/qa/unit/import-tests-smartart.cxx
index 3f644caa8278..98df02de2fc9 100644
--- a/sd/qa/unit/import-tests-smartart.cxx
+++ b/sd/qa/unit/import-tests-smartart.cxx
@@ -705,6 +705,14 @@ void SdImportTestSmartArt::testOrgChart()
 
 awt::Point aManagerPos = xManagerShape->getPosition();
 
+// Make sure that the manager has 2 employees.
+// Without the accompanying fix in place, this test would have failed with
+// 'Expected: 2; Actual  : 1'.
+uno::Reference 
xEmployees(getChildShape(getChildShape(xGroup, 0), 1),
+uno::UNO_QUERY);
+CPPUNIT_ASSERT(xEmployees.is());
+CPPUNIT_ASSERT_EQUAL(static_cast(2), xEmployees->getCount());
+
 uno::Reference xEmployee(
 getChildShape(
 getChildShape(getChildShape(getChildShape(getChildShape(xGroup, 
0), 1), 0), 0), 0),
@@ -723,6 +731,22 @@ void SdImportTestSmartArt::testOrgChart()
 // two shapes were overlapping, i.e. "manager" 

[Libreoffice-bugs] [Bug 120671] Incorrect display of combined Tibetan letter Hung

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120671

--- Comment #5 from Volga  ---
Created attachment 147953
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147953=edit
Screenshot on 6.2.0 RC1

This bug looks disappeared on 6.2.0 RC1.

版本:6.2.0.1 (x64)
Build ID:0412ee99e862f384c1106d0841a950c4cfaa9df1
CPU 线程:4; 操作系统:Windows 10.0; UI 渲染:默认; VCL: win; 
区域语言:zh-CN (zh_CN); UI 语言: zh-CN
Calc: threaded

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


[Libreoffice-bugs] [Bug 122422] Add regular expression filter to Text Import window

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122422

--- Comment #1 from Jacek Pliszka  ---
Also I do have some programming skills so maybe I could add it myself but I
would need guidance:

1. how to get approval for such feature

2. which places to change

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


[Libreoffice-bugs] [Bug 108226] [META] PPTX (OOXML) bug tracker

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108226

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

   What|Removed |Added

 Depends on||118002


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118002
[Bug 118002] Crash in: ntdll.dll saving POTX file
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118002] Crash in: ntdll.dll saving POTX file

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118002

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

   What|Removed |Added

 Blocks||108226

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

Version: 6.3.0.0.alpha0+
Build ID: 9c9558bf9151bff50735b1ca61d2d3de881b24ce
CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: CL


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 116143] [META] Text cursor bugs

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116143

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

   What|Removed |Added

 Depends on||118024


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118024
[Bug 118024] cursor stops moving up under certain conditions
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118024] cursor stops moving up under certain conditions

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118024

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

   What|Removed |Added

 Blocks||116143


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 116154] [META] Cursor bugs and enhancements

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116154

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

   What|Removed |Added

 Depends on||118010


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118010
[Bug 118010] Cursor focus not on text area if Navigator is displayed
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118010] Cursor focus not on text area if Navigator is displayed

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118010

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

   What|Removed |Added

 Blocks||116154


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116154
[Bug 116154] [META] Cursor 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 121065] [NEWHELP] Update icons/images of Math Help page on Unary/Binary operators

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121065

V Stuart Foote  changed:

   What|Removed |Added

 Attachment #147951|0   |1
is obsolete||

--- Comment #25 from V Stuart Foote  ---
Created attachment 147952
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147952=edit
ceiling floor examples needed in SVG

clip changed to show the correct Elements panel - Brackets

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


[Libreoffice-bugs] [Bug 118108] Charts in an XLSX are not linked to their data properly

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118108

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

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] OOXML Chart object 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 75057] [META] OOXML Chart object issues

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

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

   What|Removed |Added

 Depends on||118108


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118108
[Bug 118108] Charts in an XLSX are not linked to their data properly
-- 
You are receiving this mail because:
You 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] online.git: loleaflet/js

2019-01-02 Thread Libreoffice Gerrit user
 loleaflet/js/toolbar.js |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b3e4c42ab9397a57ddb2495a3de3792022a965e9
Author: Jan Holesovsky 
AuthorDate: Wed Jan 2 18:16:49 2019 +0100
Commit: Jan Holesovsky 
CommitDate: Wed Jan 2 18:24:08 2019 +0100

UI: Show the Insert Chart... toolbar button also in Writer and Impress.

Change-Id: I3178d428ddafc4c54e0223f481b8360493f94f18

diff --git a/loleaflet/js/toolbar.js b/loleaflet/js/toolbar.js
index 60d17953c..ab49ed1f6 100644
--- a/loleaflet/js/toolbar.js
+++ b/loleaflet/js/toolbar.js
@@ -792,7 +792,6 @@ function createToolbar() {
{type: 'button',  id: 'numberformatpercent',  img: 
'numberformatpercent', hint: _UNO('.uno:NumberFormatPercent', 'spreadsheet', 
true), hidden: true, uno: 'NumberFormatPercent', disabled: true},
{type: 'button',  id: 'numberformatdecdecimals',  img: 
'numberformatdecdecimals', hint: _UNO('.uno:NumberFormatDecDecimals', 
'spreadsheet', true), hidden: true, uno: 'NumberFormatDecDecimals', disabled: 
true},
{type: 'button',  id: 'numberformatincdecimals',  img: 
'numberformatincdecimals', hint: _UNO('.uno:NumberFormatIncDecimals', 
'spreadsheet', true), hidden: true, uno: 'NumberFormatIncDecimals', disabled: 
true},
-   {type: 'button',  id: 'insertobjectchart',  img: 
'insertobjectchart', hint: _UNO('.uno:InsertObjectChart', '', true), hidden: 
true, uno: 'InsertObjectChart'},
{type: 'break',   id: 'break-number', hidden: true},
{type: 'button',  id: 'insertannotation', img: 'annotation', 
hint: _UNO('.uno:InsertAnnotation', '', true), hidden: true},
{type: 'drop',  id: 'inserttable',  img: 'inserttable', hint: 
_('Insert table'), hidden: true, overlay: {onShow: insertTable},
@@ -803,6 +802,7 @@ function createToolbar() {
{id: 'localgraphic', text: _('Insert Local 
Image')},
{id: 'remotegraphic', text: 
_UNO('.uno:InsertGraphic', '', true)},
]},
+   {type: 'button',  id: 'insertobjectchart',  img: 
'insertobjectchart', hint: _UNO('.uno:InsertObjectChart', '', true), uno: 
'InsertObjectChart'},
{type: 'drop',  id: 'insertshapes',  img: 
'basicshapes_ellipse', hint: _('Insert shapes'), overlay: {onShow: 
insertShapes},
html: ''},
 
@@ -1574,7 +1574,7 @@ function onDocLayerInit() {
switch (docType) {
case 'spreadsheet':
toolbarUp.show('textalign', 'wraptext', 'breakspacing', 
'insertannotation', 'numberformatcurrency', 'numberformatpercent',
-   'numberformatincdecimals', 'numberformatdecdecimals', 
'insertobjectchart', 'sum', 'break-number',
+   'numberformatincdecimals', 'numberformatdecdecimals', 
'sum', 'break-number',
'setborderstyle');
toolbarUp.remove('styles');
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122431] FILESAVE: DOC: Header/Footer are gone in MSO2010 with a protected file

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122431

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

   What|Removed |Added

   Keywords||filter:doc
 Blocks||112702


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112702
[Bug 112702] [META] DOC (binary) header and footer-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 112702] [META] DOC (binary) header and footer-related issues

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112702

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

   What|Removed |Added

 Depends on||122431


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122431
[Bug 122431] FILESAVE: DOC: Header/Footer are gone in MSO2010 with a protected
file
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121065] [NEWHELP] Update icons/images of Math Help page on Unary/Binary operators

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121065

--- Comment #24 from V Stuart Foote  ---
Created attachment 147951
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147951=edit
ceiling floor examples needed in SVG

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


[Libreoffice-bugs] [Bug 121065] [NEWHELP] Update icons/images of Math Help page on Unary/Binary operators

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121065

--- Comment #23 from V Stuart Foote  ---
Created attachment 147950
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147950=edit
circle operators, wide slashes, sub and sup examples needed in SVG

@Mark,

Yes those are all the correct glyphs (look to be from OpenSymbol) so the
conversion to path in SVG looks good. But for the newHelp they'd need to be
worked into examples like the other SVGs you've prepared.

We need an example to use for these entries in the Unary/Binary Operators page:

1) By typing oplus in the Commands window, you insert a circled plus
operator in your document.

2) Type ominus in the Commands window to insert a circled minus operator.

3) Type odot in the Commands window to insert a circled dot operator in
the formula.

4) Type odivide in the Commands window to insert a circled division
operator in the formula.

5) Type a wideslash b in the Commands window to produce two characters with a
slash (from lower left to upper right) between them. The characters are set
such that everything to the left of the slash is up, and everything to the
right is down. This command is also available in the context menu of the
Commands window.

6) Type a widebslash b in the Commands window to produce two characters with a
slash (from upper left to lower right) between them. The characters are set
such that everything to the left of the slash is down, and everything to the
right is up. This command is also available in the context menu of the Commands
window.

7) Type sub or sup in the Commands window to add indexes and powers to the
characters in your formula; for example, a sub 2.


And we need an example to use for each of these entries in Brackets page:

1) To insert floor brackets, type lfloorrfloor directly in the Commands
window.

2) To insert ceiling brackets, type lceilrceil directly in the Commands
window.

3) To insert scalable floor brackets, type left lfloorright rfloor directly
in the Commands window.

4) To insert scalable ceiling brackets, type left lceilright rceil directly
in the Commands window.

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


[Libreoffice-bugs] [Bug 122430] FILEOPEN: RTF: Incorrect font size

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122430

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

   What|Removed |Added

   Keywords||filter:rtf
 Blocks||112749


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112749
[Bug 112749] [META] RTF (text) character-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 112749] [META] RTF (text) character-related issues

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112749

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

   What|Removed |Added

 Depends on||122430


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122430
[Bug 122430] FILEOPEN: RTF: Incorrect font size
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112702] [META] DOC (binary) header and footer-related issues

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112702

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

   What|Removed |Added

 Depends on||122429


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122429
[Bug 122429] FILESAVE: Header/Footer are gone in MSO 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 122429] FILESAVE: Header/Footer are gone in MSO 2010

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122429

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

   What|Removed |Added

   Keywords||filter:doc
 Blocks||112702


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112702
[Bug 112702] [META] DOC (binary) header and footer-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 122426] FILEOPEN: DOC: Page has header when it shouldn't have it

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122426

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

   What|Removed |Added

Summary|FILEOPEN: Page has header   |FILEOPEN: DOC: Page has
   |when it shouldn't have it   |header when it shouldn't
   ||have it
 Blocks||112702


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112702
[Bug 112702] [META] DOC (binary) header and footer-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 112702] [META] DOC (binary) header and footer-related issues

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112702

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

   What|Removed |Added

 Depends on||122426


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122426
[Bug 122426] FILEOPEN: DOC: Page has header when it shouldn't have it
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2019-01-02 Thread Libreoffice Gerrit user
 basctl/source/basicide/macrodlg.cxx |2 +-
 basctl/source/basicide/moduldl2.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0d79068307828c3e447611a52eb36cbf34ea1f23
Author: Stephan Bergmann 
AuthorDate: Wed Jan 2 17:18:08 2019 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Jan 2 18:17:26 2019 +0100

Resolve deprecated implicit capture of *this by reference in C++20

...which got freshly introduced after 
c56a8280bdd605f77f0075a7f2bfa474aa2a26e5
"Resolve deprecated implicit capture of *this by reference in C++20"

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

diff --git a/basctl/source/basicide/macrodlg.cxx 
b/basctl/source/basicide/macrodlg.cxx
index fb2500aad587..7f2ad1fb7d67 100644
--- a/basctl/source/basicide/macrodlg.cxx
+++ b/basctl/source/basicide/macrodlg.cxx
@@ -742,7 +742,7 @@ IMPL_LINK(MacroChooser, ButtonHdl, weld::Button&, rButton, 
void)
 m_xBasicBox->get_selected(m_xBasicBoxIter.get());
 EntryDescriptor aDesc = 
m_xBasicBox->GetEntryDescriptor(m_xBasicBoxIter.get());
 VclPtrInstance< OrganizeDialog > pDlg( nullptr, 0, aDesc ); //TODO
-pDlg->StartExecuteAsync([=](sal_Int32 nRet){
+pDlg->StartExecuteAsync([this](sal_Int32 nRet){
 if ( nRet ) // not only closed
 {
 m_xDialog->response(Macro_Edit);
diff --git a/basctl/source/basicide/moduldl2.cxx 
b/basctl/source/basicide/moduldl2.cxx
index 5bbcd1a5dccd..9e351bac3ff4 100644
--- a/basctl/source/basicide/moduldl2.cxx
+++ b/basctl/source/basicide/moduldl2.cxx
@@ -831,7 +831,7 @@ void LibPage::InsertLib()
 if ( aExtension != aLibExtension && aExtension != aContExtension )
 pLibDlg->EnableReference(false);
 
-pLibDlg->StartExecuteAsync([=](sal_Int32 nResult)
+pLibDlg->StartExecuteAsync([aContExtension, aDlgURLObj, aExtension, 
aLibExtension, aModURLObj, pLibDlg, xDlgLibContImport, xModLibContImp, 
xModLibContImport, this](sal_Int32 nResult)
 {
 if (!nResult )
 return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 112698] [META] DOC (binary) frame-related issues

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112698

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

   What|Removed |Added

 Depends on||122425


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122425
[Bug 122425] FILEOPEN: DOC: Floating frame is displayed with borders
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 122425] FILEOPEN: DOC: Floating frame is displayed with borders

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122425

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

   What|Removed |Added

 Blocks||112698


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112698
[Bug 112698] [META] DOC (binary) frame-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 102946] [META] Styles bugs and enhancements

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102946

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

   What|Removed |Added

 Depends on||115918


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115918
[Bug 115918] LOOL: Cannot create new styles
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115918] LOOL: Cannot create new styles

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115918

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

   What|Removed |Added

 Blocks||102946


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102946
[Bug 102946] [META] Styles 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 115995] FILESAVE PPTX Font changes to 10pt (from 12pt) and Arial when saving as PPTX

2019-01-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115995

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

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||79045_79...@mail.ru
 Status|NEW |RESOLVED

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
in 

Version: 6.3.0.0.alpha0+
Build ID: 9c9558bf9151bff50735b1ca61d2d3de881b24ce
CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: CL

font size don't decrease after export to PPTX (it stays the same 12 pt)

status->WFM

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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   >