[Libreoffice-bugs] [Bug 117386] EXPORT SVG Text spacing not preserved by SVG export filter

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

--- Comment #4 from Florian Reisinger  ---
Created attachment 142606
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142606=edit
Draw example file (page 2)

Page 2 of this file is the example 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 101704] Allow extensions to register their own button within a tab in the Notebookbar

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

--- Comment #3 from Volga  ---
On this page you will see what happened if a MS Office add-in registered icons
on Ribbon interface in Excel 2016:
https://docs.microsoft.com/en-us/office/dev/add-ins/design/add-in-commands

-- 
You are receiving this mail because:
You 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 'private/swe/libreoffice-5-2+backports' - sc/qa sc/source

2018-06-07 Thread Vasily Melenchuk
Rebased ref, commits from common ancestor:
commit 81edd2a15b7b47264d301a7a4c71e8dee93caebe
Author: Vasily Melenchuk 
Date:   Fri Apr 6 20:19:10 2018 +0300

tdf#62268: allow row height recalculation on document load

During document load rows with style:use-optimal-row-height="true"
should recalculate it's height.

Reviewed-on: https://gerrit.libreoffice.org/52521
Reviewed-by: Katarina Behrens 
Tested-by: Jenkins 
Reviewed-by: Thorsten Behrens 

Conflicts:
sc/qa/unit/subsequent_filters-test.cxx
sc/source/filter/xml/xmlimprt.hxx
sc/source/filter/xml/xmlimprt.cxx
sc/source/filter/xml/xmlrowi.cxx

Change-Id: Ib38b5b753d9ff8352116d77851d228c5d77bd530

diff --git a/sc/qa/unit/data/ods/tdf62268.ods b/sc/qa/unit/data/ods/tdf62268.ods
new file mode 100644
index ..da88adfd25cd
Binary files /dev/null and b/sc/qa/unit/data/ods/tdf62268.ods differ
diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index ac61dc2f9955..7b3c6b57109c 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -731,7 +731,8 @@ void ScBootstrapFixture::miscRowHeightsTest( TestParam* 
aTestValues, unsigned in
 bool bOpt = !(rDoc.GetRowFlags( nRow, nTab ) & 
CR_MANUALSIZE);
 CPPUNIT_ASSERT_EQUAL(aTestValues[ index ].pData[ i 
].bOptimal, bOpt);
 }
-CPPUNIT_ASSERT_EQUAL(nExpectedHeight, nHeight);
+// Due to some minor differences on Mac this comparison is 
made bit fuzzy
+CPPUNIT_ASSERT_LESSEQUAL( 3, abs( nHeight - nExpectedHeight ) 
);
 }
 }
 xShell->DoClose();
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index 4e90034a5f99..ba3e5dc610af 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -800,60 +800,57 @@ void ScExportTest::testOutlineExportXLSX()
 // We expected that exactly 13 unique Nodes will be produced
 assertXPath(pSheet, "/x:worksheet/x:cols/x:col", 13);
 
-// We need to save all 30 rows, as it provides information about 
outLineLevel
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "r", "1");
+// First row is empty and default so it is not written into XML file
+// so we need to save 29 rows, as it provides information about 
outLineLevel
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "r", "2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "outlineLevel", 
"0");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "outlineLevel", 
"1");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "r", "2");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "r", "3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "outlineLevel", 
"1");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "outlineLevel", 
"2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "r", "3");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "r", "4");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "hidden", 
"false");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "outlineLevel", 
"2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "r", "4");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "r", "5");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "outlineLevel", 
"2");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "outlineLevel", 
"3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "r", "5");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "r", "6");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "hidden", 
"false");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "outlineLevel", 
"3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[6]", "r", "6");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[6]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[6]", "outlineLevel", 
"3");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[6]", "r", "7");
+assertXPath(pSheet, 

[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

--- Comment #7 from dud...@yahoo.com ---
Further info:

I have another W10 pc that had been upgraded from w7 when W10 was a free
upgrade a few years ago.

It operates Libre Office 6 right click /paste properly when virtualbox is
running.
So there may be some files that came over from the w7 installation that the
newer w10 unit does not have or uses differently.

So I can understand why it may be difficult to reproduce the problem.

-- 
You are receiving this mail because:
You 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 'feature/print_revamp' - vcl/inc vcl/source vcl/uiconfig

2018-06-07 Thread Daniel
 vcl/inc/printdlg.hxx   |  208 +---
 vcl/source/gdi/print3.cxx  |   11 
 vcl/source/window/printdlg.cxx | 1562 +++---
 vcl/uiconfig/ui/printdialog.ui | 2069 +++--
 4 files changed, 1225 insertions(+), 2625 deletions(-)

New commits:
commit 1d5edc87667625d8b97c7cc9f59cbd2c8c96fe36
Author: Daniel 
Date:   Sat Jun 2 19:40:52 2018 -0300

New Print Dialog Design

Change-Id: Ib92a16ccfab70b84ffea07970a694800ecc16d07
Reviewed-on: https://gerrit.libreoffice.org/55237
Tested-by: Jenkins 
Reviewed-by: Daniel Silva 

diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx
index 0a5b09fd366a..03e01b840003 100644
--- a/vcl/inc/printdlg.hxx
+++ b/vcl/inc/printdlg.hxx
@@ -17,8 +17,8 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_VCL_INC_PRINTDLG_HXX
-#define INCLUDED_VCL_INC_PRINTDLG_HXX
+#ifndef VCL_INC_NEWPRINTDLG_HXX
+#define VCL_INC_NEWPRINTDLG_HXX
 
 #include 
 
@@ -91,168 +91,106 @@ namespace vcl
 }
 };
 
-private:
-
-class NUpTabPage
-{
-public:
-VclPtr mpPagesBtn;
-VclPtr mpBrochureBtn;
-VclPtr   mpPagesBoxTitleTxt;
-VclPtr mpNupPagesBox;
-
-// controls for "Custom" page mode
-VclPtr   mpNupNumPagesTxt;
-VclPtrmpNupColEdt;
-VclPtr   mpNupTimesTxt;
-VclPtrmpNupRowsEdt;
-VclPtr   mpPageMarginTxt1;
-VclPtr mpPageMarginEdt;
-VclPtr   mpPageMarginTxt2;
-VclPtr   mpSheetMarginTxt1;
-VclPtr mpSheetMarginEdt;
-VclPtr   mpSheetMarginTxt2;
-VclPtr   mpNupOrientationTxt;
-VclPtr mpNupOrientationBox;
-
-// page order ("left to right, then down")
-VclPtr   mpNupOrderTxt;
-VclPtr mpNupOrderBox;
-VclPtr  mpNupOrderWin;
-/// border around each page
-VclPtrmpBorderCB;
-
-NUpTabPage( VclBuilder* );
-
-void initFromMultiPageSetup( const 
vcl::PrinterController::MultiPageSetup& );
-void enableNupControls( bool bEnable );
-
-void showAdvancedControls( bool );
-};
-
-class JobTabPage
-{
-public:
-VclPtr mpPrinters;
-VclPtr   mpStatusTxt;
-VclPtr   mpLocationTxt;
-VclPtr   mpCommentTxt;
-
-VclPtr  mpSetupButton;
-
-VclPtrmpCopyCountField;
-VclPtrmpCollateBox;
-VclPtr  mpCollateImage;
-VclPtrmpReverseOrderBox;
-
-BitmapExmaCollateBmp;
-BitmapExmaNoCollateBmp;
-
-longmnCollateUIMode;
-
-JobTabPage( VclBuilder* );
-
-void readFromSettings();
-void storeToSettings();
-};
-
-class OutputOptPage
-{
-public:
-VclPtrmpCollateSingleJobsBox;
-VclPtrmpPapersizeFromSetup;
+PrintDialog( vcl::Window*, const std::shared_ptr< PrinterController >& 
);
+virtual ~PrintDialog() override;
+virtual void dispose() override;
 
-OutputOptPage( VclBuilder* );
+bool isPrintToFile();
+bool isCollate();
+bool hasPreview();
 
-void readFromSettings();
-void storeToSettings();
-};
+void previewForward();
+void previewBackward();
 
-std::unique_ptr mpCustomOptionsUIBuilder;
+private:
 
 std::shared_ptr  maPController;
-VclPtr  mpTabCtrl;
-NUpTabPage  maNUpPage;
-JobTabPage  maJobPage;
-OutputOptPage   maOptionsPage;
-VclPtr  mpPreviewWindow;
-VclPtrmpPageEdit;
 
-VclPtr   mpNumPagesText;
-VclPtr  mpBackwardBtn;
-VclPtr  mpForwardBtn;
-VclPtrmpPreviewBox;
+VclPtr  mpTabCtrl;
+VclPtr 

[Libreoffice-bugs] [Bug 70759] Apply Style toolbar "Clear formatting" action sets "Text Body" instead of "Default Style" from LO 4.1+

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

--- Comment #27 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-ux-advise] [Bug 70759] Apply Style toolbar "Clear formatting" action sets "Text Body" instead of "Default Style" from LO 4.1+

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

--- Comment #27 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 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 35151] Print comments at the end of the page doesn't work

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 76526] [writer] loading styles from file corrupts existing styles

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

--- 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 46185] VIEWING: Display of Non-Printing Characters is Wrong after Alignment Change

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107820] FORMATTING: Load styles from another document or template is not working

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

--- 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 95375] Vastly incorrect font size in footnotes (direct formatting mess..) (docx import)

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 45471] Sorting of Rows in Calc does not sort contained objects

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 117881] FILEOPEN DOCX:Linefeed or pagebreak is missing from imported word DOCX document in libreoffice writer.

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

--- Comment #12 from Marco Diego Aurélio Mesquita 
 ---
Created attachment 142605
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142605=edit
How the file is rendered by LO 5.2.7.2

How Libreoffice 5.2.7.2 renders the file.

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


[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

--- Comment #6 from dud...@yahoo.com ---
Are you telling me that the problem is not repeatable on your test systems?

I am not sure how much more specific I can get to describe the problem.  I do
not have a clipboard viewer, but 

1. using the same circumstances when the rightclick paste fails, I have done a
control-v and the paste succeeds. 
2. I can also rightclick /paste with any other app and it works
3. I have since tested with the LO Spreadsheet program and the problem exists
there.
4. And in the  Open office app which LO is forked from,  they appear to have a
similar issue.

This indicates that the problem has existed a long time, but has not been
properly identified.

I cannot install a clipboard viewer.

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


[Libreoffice-bugs] [Bug 117881] FILEOPEN DOCX:Linefeed or pagebreak is missing from imported word DOCX document in libreoffice writer.

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

--- Comment #11 from Marco Diego Aurélio Mesquita 
 ---
>From https://bugs.documentfoundation.org/show_bug.cgi?id=118050 it is possible
to see that spacing between items was already broken in LO 5.2. I didn't test
the state immediately after 34d7602954d4483b3bc9db700e7df2c15348947a, but in
LO6 spacing between list items even smaller. To fix the bug, line spacing
between list items should be as big as in MSO.

Now, I think 34d7602954d4483b3bc9db700e7df2c15348947a actually makes thing
better. All the text before the list is exactly where it should be. So, I think
the problem was there already, changes between LO 5.2 and LO 6 improved most of
the text except for the spacing between list items. I'm not sure what may be
causing this. Maybe this is caused by the rounding of the "ascent", "descent"
or "external leading" font metrics.

I really don't think this is hard to fix, but someone is needed to point where
spacing between list items are calculated. This way we can make more
experiments and get closer to the cause of this bug, possibly finding a
solution in the end.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sw/source

2018-06-07 Thread Caolán McNamara
 sw/source/uibase/dbui/dbmgr.cxx |   20 
 1 file changed, 20 insertions(+)

New commits:
commit 9ae93085c90bdd00bcbf796ab399154bb7ab9e39
Author: Caolán McNamara 
Date:   Wed Jun 6 12:59:58 2018 +0100

tdf#117824 switch embedded database storage away from doc on revoke

otherwise the database document still has the embedded storage
open when the attempt to remove the storage is made

Change-Id: Ie313923b969bdbc53b27b00e379ac20240ffb6e3
Reviewed-on: https://gerrit.libreoffice.org/55388
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 
(cherry picked from commit a432a2e481baffa77e6f25584efbfbb3b68bc9a6)
Reviewed-on: https://gerrit.libreoffice.org/55407
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 5132a0b75e3b..bb1bdf760efb 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -100,6 +100,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -2915,11 +2916,30 @@ OUString SwDBManager::LoadAndRegisterDataSource(const 
OUString , const OUSt
 return LoadAndRegisterDataSource_Impl( DBConnURIType::UNKNOWN, nullptr, 
INetURLObject(rURI), nullptr, pDestDir, nullptr );
 }
 
+namespace
+{
+// tdf#117824 switch the embedded database away from using its current 
storage and point it to temporary storage
+// which allows the original storage to be deleted
+void switchEmbeddedDatabaseStorage(uno::Reference& 
rDatabaseContext, const OUString& rName)
+{
+uno::Reference 
xDS(rDatabaseContext->getByName(rName), uno::UNO_QUERY);
+if (!xDS)
+return;
+uno::Reference 
xStorageDoc(xDS->getDatabaseDocument(), uno::UNO_QUERY);
+if (!xStorageDoc)
+return;
+
xStorageDoc->switchToStorage(comphelper::OStorageHelper::GetTemporaryStorage());
+}
+}
+
 void SwDBManager::RevokeDataSource(const OUString& rName)
 {
 uno::Reference xDatabaseContext = 
sdb::DatabaseContext::create(comphelper::getProcessComponentContext());
 if (xDatabaseContext->hasByName(rName))
+{
+switchEmbeddedDatabaseStorage(xDatabaseContext, rName);
 xDatabaseContext->revokeObject(rName);
+}
 }
 
 void SwDBManager::LoadAndRegisterEmbeddedDataSource(const SwDBData& rData, 
const SwDocShell& rDocShell)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118050] FILEOPEN DOCX: Bullet list spacing is different from MS-Word

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

--- Comment #7 from Marco Diego Aurélio Mesquita  
---
Now an interesting finding: spacing between list items was already broken in LO
5.2!

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


[Libreoffice-bugs] [Bug 118050] FILEOPEN DOCX: Bullet list spacing is different from MS-Word

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

--- Comment #6 from Marco Diego Aurélio Mesquita  
---
Created attachment 142604
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142604=edit
How LO 5.2.7.2 renders the document

PDF showing how Libreoffice 5.2.7.2 renders the document.

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


[Libreoffice-bugs] [Bug 77278] Rewrite old Pocket Word (PWI) file format import filter.

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

--- Comment #7 from Urmas  ---
Here's some code to dump the file contents:

https://pastebin.com/A6EZuSYT

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


[Libreoffice-bugs] [Bug 116987] FIREBIRD : Migration : error on importing tables or queries with names longer than 30 characters

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

--- Comment #20 from Drew Jensen  ---
Also, neither the attached budget.odb file nor the file on my local disc
trigger the 30 character error message any longer. However, they do seem to
have a common denominator, they both have table with more than 1 space in the
name. But that is a different (currently closed) 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 116987] FIREBIRD : Migration : error on importing tables or queries with names longer than 30 characters

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

--- Comment #19 from Drew Jensen  ---
I'd agree. Just close this as fixed. 

I think an issues for the UI parts (table vs column vs view) is appropriate,
even if minor, and I'll go ahead and do that.

I think is would be worth while to open a RFE for a simple automatic name
change, the added task of sweeping through sql statements to replace the old
name for new name is IMO a reasonably straight forward coding task. 

An RFE because it would be a 'like' over a 'must have' type of feature.

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


[Libreoffice-commits] core.git: chart2/qa chart2/source comphelper/source connectivity/source dbaccess/qa dbaccess/source embeddedobj/source extensions/source filter/source forms/source framework/sour

2018-06-07 Thread Noel Grandin
 chart2/qa/extras/chart2_trendcalculators.cxx  |1 
 chart2/qa/extras/chart2dump/chart2dump.cxx|   19 -
 chart2/qa/extras/chart2export.cxx |3 
 chart2/qa/extras/chart2import.cxx |   12 
 chart2/qa/extras/charttest.hxx|   28 -
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx |   42 --
 chart2/source/model/main/ChartModel_Persistence.cxx   |1 
 chart2/source/model/template/StockDataInterpreter.cxx |1 
 chart2/source/tools/AxisHelper.cxx|   75 +--
 chart2/source/tools/ChartTypeHelper.cxx   |3 
 chart2/source/tools/DiagramHelper.cxx |2 
 chart2/source/view/main/ChartView.cxx |3 
 comphelper/source/misc/documentinfo.cxx   |1 
 connectivity/source/commontools/dbtools.cxx   |   15 
 connectivity/source/drivers/component/CDatabaseMetaData.cxx   |1 
 connectivity/source/drivers/hsqldb/HConnection.cxx|3 
 dbaccess/qa/extras/dialog-save.cxx|9 
 dbaccess/qa/extras/empty-stdlib-save.cxx  |9 
 dbaccess/qa/extras/nolib-save.cxx |9 
 dbaccess/source/ui/misc/databaseobjectview.cxx|   13 
 dbaccess/source/ui/tabledesign/TableController.cxx|1 
 embeddedobj/source/msole/olepersist.cxx   |3 
 extensions/source/abpilot/datasourcehandling.cxx  |   15 
 filter/source/svg/svgwriter.cxx   |  189 
--
 forms/source/runtime/formoperations.cxx   |1 
 framework/source/dispatch/closedispatcher.cxx |   11 
 oox/source/export/chartexport.cxx |3 
 oox/source/export/drawingml.cxx   |2 
 oox/source/ppt/slidepersist.cxx   |2 
 package/source/xstor/xstorage.cxx |3 
 pyuno/source/module/pyuno_module.cxx  |1 
 reportdesign/source/core/api/FormattedField.cxx   |   15 
 reportdesign/source/filter/xml/xmlExport.cxx  |3 
 reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx   |2 
 reportdesign/source/filter/xml/xmlfilter.cxx  |   13 
 reportdesign/source/ui/dlg/Navigator.cxx  |1 
 sc/qa/extras/check_data_pilot_field.cxx   |1 
 sc/qa/extras/check_data_pilot_table.cxx   |1 
 sc/qa/extras/check_xcell_ranges_query.cxx |1 
 sc/qa/extras/new_cond_format.cxx  |1 
 sc/qa/extras/regression-test.cxx  |8 
 sc/qa/extras/scannotationobj.cxx  |2 
 sc/qa/extras/scannotationshapeobj.cxx |1 
 sc/qa/extras/scannotationsobj.cxx |3 
 sc/qa/extras/scarealinkobj.cxx|1 
 sc/qa/extras/scarealinksobj.cxx   |1 
 sc/qa/extras/scautoformatobj.cxx  |1 
 sc/qa/extras/sccellcursorobj.cxx  |2 
 sc/qa/extras/sccellobj.cxx|1 
 sc/qa/extras/sccellrangeobj.cxx   |9 
 sc/qa/extras/sccellrangesobj.cxx  |1 
 sc/qa/extras/scconsolidationdescriptorobj.cxx |1 
 sc/qa/extras/scdatabaserangeobj.cxx   |1 
 sc/qa/extras/scdatabaserangesobj.cxx  |1 
 sc/qa/extras/scdatapilotfieldobj.cxx  |4 
 sc/qa/extras/scdatapilotitemobj.cxx   |1 
 sc/qa/extras/scdatapilottableobj.cxx  |5 
 sc/qa/extras/scdatapilottablesobj.cxx |2 
 sc/qa/extras/scddelinkobj.cxx |1 
 sc/qa/extras/scdocumentconfigurationobj.cxx   |2 
 sc/qa/extras/scfilterdescriptorbaseobj.cxx|1 
 sc/qa/extras/scfunctiondescriptionobj.cxx |1 
 sc/qa/extras/scfunctionlistobj.cxx|2 
 sc/qa/extras/scheaderfootercontentobj.cxx |1 
 sc/qa/extras/scimportdescriptorbaseobj.cxx|2 
 sc/qa/extras/sclabelrangeobj.cxx  |1 
 

[Libreoffice-bugs] [Bug 117704] Word Count - Line Asian characters and Korean syllabes is missing

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

--- Comment #9 from Xisco Faulí  ---
I found the way to make that line disappear...
Go to Tools - Options - Language Settings - Language and disable Asian in
Default Language for document.

@raal, @Jacques Guilleron, do you have it disabled ?

-- 
You are receiving this mail because:
You 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 'private/swe/libreoffice-5-2+backports' - sc/qa sc/source

2018-06-07 Thread Vasily Melenchuk
 sc/qa/unit/data/ods/tdf62268.ods   |binary
 sc/qa/unit/helper/qahelper.cxx |3 +
 sc/qa/unit/subsequent_export-test.cxx  |   59 +++--
 sc/qa/unit/subsequent_filters-test.cxx |   28 +--
 sc/source/filter/xml/xmlimprt.cxx  |   21 +++
 sc/source/filter/xml/xmlimprt.hxx  |5 ++
 sc/source/filter/xml/xmlrowi.cxx   |   16 
 7 files changed, 96 insertions(+), 36 deletions(-)

New commits:
commit 7cedab6a9c5b771d2cb54acecb6ec86792821cdd
Author: Vasily Melenchuk 
Date:   Fri Apr 6 20:19:10 2018 +0300

tdf#62268: allow row height recalculation on document load

During document load rows with style:use-optimal-row-height="true"
should recalculate it's height.

Reviewed-on: https://gerrit.libreoffice.org/52521
Reviewed-by: Katarina Behrens 
Tested-by: Jenkins 
Reviewed-by: Thorsten Behrens 

Conflicts:
sc/qa/unit/subsequent_filters-test.cxx
sc/source/filter/xml/xmlimprt.hxx
sc/source/filter/xml/xmlrowi.cxx

Change-Id: Ib38b5b753d9ff8352116d77851d228c5d77bd530

diff --git a/sc/qa/unit/data/ods/tdf62268.ods b/sc/qa/unit/data/ods/tdf62268.ods
new file mode 100644
index ..da88adfd25cd
Binary files /dev/null and b/sc/qa/unit/data/ods/tdf62268.ods differ
diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index ac61dc2f9955..7b3c6b57109c 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -731,7 +731,8 @@ void ScBootstrapFixture::miscRowHeightsTest( TestParam* 
aTestValues, unsigned in
 bool bOpt = !(rDoc.GetRowFlags( nRow, nTab ) & 
CR_MANUALSIZE);
 CPPUNIT_ASSERT_EQUAL(aTestValues[ index ].pData[ i 
].bOptimal, bOpt);
 }
-CPPUNIT_ASSERT_EQUAL(nExpectedHeight, nHeight);
+// Due to some minor differences on Mac this comparison is 
made bit fuzzy
+CPPUNIT_ASSERT_LESSEQUAL( 3, abs( nHeight - nExpectedHeight ) 
);
 }
 }
 xShell->DoClose();
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index 4e90034a5f99..ba3e5dc610af 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -800,60 +800,57 @@ void ScExportTest::testOutlineExportXLSX()
 // We expected that exactly 13 unique Nodes will be produced
 assertXPath(pSheet, "/x:worksheet/x:cols/x:col", 13);
 
-// We need to save all 30 rows, as it provides information about 
outLineLevel
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "r", "1");
+// First row is empty and default so it is not written into XML file
+// so we need to save 29 rows, as it provides information about 
outLineLevel
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "r", "2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "outlineLevel", 
"0");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "outlineLevel", 
"1");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "r", "2");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "r", "3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "outlineLevel", 
"1");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "outlineLevel", 
"2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "r", "3");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "r", "4");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "hidden", 
"false");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "outlineLevel", 
"2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "r", "4");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "r", "5");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "outlineLevel", 
"2");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "outlineLevel", 
"3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "r", "5");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "r", "6");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "hidden", 
"false");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "outlineLevel", 
"3");
 assertXPath(pSheet, 

[Libreoffice-bugs] [Bug 117704] Word Count - Line Asian characters and Korean syllabes is missing

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

--- Comment #8 from Xisco Faulí  ---
Created attachment 142603
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142603=edit
I can't reproduce it in master

I can't reproduce it in master

Version: 6.2.0.0.alpha0+
Build ID: 2a7f74900fb646235b74d4c9bd4690e44edc3ed4
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group threaded

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


[Libreoffice-bugs] [Bug 118060] Selected cells always displays the result for the first selection in Calc.

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

--- Comment #1 from c.r.brown...@gmail.com ---
Created attachment 142602
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142602=edit
Example screenshot of bug 118060

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


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

2018-06-07 Thread Vasily Melenchuk
 sc/qa/unit/data/ods/tdf62268.ods   |binary
 sc/qa/unit/helper/qahelper.cxx |3 +
 sc/qa/unit/subsequent_export-test.cxx  |   59 +++--
 sc/qa/unit/subsequent_filters-test.cxx |   26 --
 sc/source/filter/xml/xmlimprt.cxx  |   21 +++
 sc/source/filter/xml/xmlimprt.hxx  |5 ++
 sc/source/filter/xml/xmlrowi.cxx   |   16 
 7 files changed, 94 insertions(+), 36 deletions(-)

New commits:
commit 1e55a47e89a9d9d6cf9cb3993484022aaf2c097b
Author: Vasily Melenchuk 
Date:   Fri Apr 6 20:19:10 2018 +0300

tdf#62268: allow row height recalculation on document load

During document load rows with style:use-optimal-row-height="true"
should recalculate it's height.

Change-Id: Ib38b5b753d9ff8352116d77851d228c5d77bd530
Reviewed-on: https://gerrit.libreoffice.org/52521
Reviewed-by: Katarina Behrens 
Tested-by: Jenkins 
Reviewed-by: Thorsten Behrens 

diff --git a/sc/qa/unit/data/ods/tdf62268.ods b/sc/qa/unit/data/ods/tdf62268.ods
new file mode 100644
index ..da88adfd25cd
Binary files /dev/null and b/sc/qa/unit/data/ods/tdf62268.ods differ
diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx
index 8aa9cc883568..ed660cfa7928 100644
--- a/sc/qa/unit/helper/qahelper.cxx
+++ b/sc/qa/unit/helper/qahelper.cxx
@@ -754,7 +754,8 @@ void ScBootstrapFixture::miscRowHeightsTest( TestParam 
const * aTestValues, unsi
 bool bOpt = !(rDoc.GetRowFlags( nRow, nTab ) & 
CRFlags::ManualSize);
 CPPUNIT_ASSERT_EQUAL(aTestValues[ index ].pData[ i 
].bOptimal, bOpt);
 }
-CPPUNIT_ASSERT_EQUAL(nExpectedHeight, nHeight);
+// Due to some minor differences on Mac this comparison is 
made bit fuzzy
+CPPUNIT_ASSERT_LESSEQUAL( 3, abs( nHeight - nExpectedHeight ) 
);
 }
 }
 xShell->DoClose();
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index bf1813ee7edd..3ff3c4301e3d 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -1026,60 +1026,57 @@ void ScExportTest::testOutlineExportXLSX()
 // We expected that exactly 13 unique Nodes will be produced
 assertXPath(pSheet, "/x:worksheet/x:cols/x:col", 13);
 
-// We need to save all 30 rows, as it provides information about 
outLineLevel
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "r", "1");
+// First row is empty and default so it is not written into XML file
+// so we need to save 29 rows, as it provides information about 
outLineLevel
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "r", "2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "outlineLevel", 
"0");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "outlineLevel", 
"1");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[1]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "r", "2");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "r", "3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "outlineLevel", 
"1");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "outlineLevel", 
"2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[2]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "r", "3");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "r", "4");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "hidden", 
"false");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "outlineLevel", 
"2");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[3]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "r", "4");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "r", "5");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "hidden", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "outlineLevel", 
"2");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "outlineLevel", 
"3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "r", "5");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "r", "6");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "hidden", 
"false");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "outlineLevel", 
"3");
 assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[5]", "collapsed", 
"false");
-assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[6]", "r", "6");
-assertXPath(pSheet, 

[Libreoffice-bugs] [Bug 118060] Selected cells always displays the result for the first selection in Calc.

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

c.r.brown...@gmail.com changed:

   What|Removed |Added

Summary|Selected cells only works   |Selected cells always
   |the first time in Calc. |displays the result for the
   ||first selection in Calc.

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


[Libreoffice-bugs] [Bug 118060] New: Selected cells only works the first time in Calc.

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

Bug ID: 118060
   Summary: Selected cells only works the first time in Calc.
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c.r.brown...@gmail.com

Description:
When the user selects several cells, there is a UI text on the bottom edge of
the screen (second from left) which displays the number of rows and columns
currently selected.


Observed Behaviour:

For example:
User selects 2x7 cells, display says "2 Rows, 7 columns selected".
User de-selects cells.
User selects 5x2 cells, display says "2 Rows, 7 columns selected".
User de-selects cells.
User selects 50x267 cells, display says "2 Rows, 7 columns selected".
etc

Steps to Reproduce:
1. Open Calc. Start new spreadsheet.
2. With mouse, click and drag to select several cells. Observe correct UI
output.
3. With mouse, click and drag to select several different cells. Observe
incorrect UI output, result as for first selection.

Actual Results:  
This field correctly shows the current number of selected cells and rows the
first time some calls are selected.
For all subsequent multiple cell selections, the display does not update. It
always shows the result for the first selection.


Expected Results:
This field should update to show the current number of selected cells and rows.
When a new set of cells is selected, this UI info should update correctly.



Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36

-- 
You are receiving this mail because:
You are the 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

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

Xisco Faulí  changed:

   What|Removed |Added

   Keywords|bibisectRequest |preBibisect
Version|4.1 all versions|3.5 all versions

--- Comment #10 from Xisco Faulí  ---
Also reproduced in

LibreOffice 3.5.0 
Build ID: d6cde02

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


[Libreoffice-bugs] [Bug 117704] Word Count - Line Asian characters and Korean syllabes is missing

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

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 117704] Word Count - Line Asian characters and Korean syllabes is missing

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #7 from Xisco Faulí  ---
The problem with 'Characters excluding spaces' has been reported in bug

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


[Libreoffice-bugs] [Bug 117703] Word Count: Wrong result for "Characters excluding spaces"

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

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 118059] new entries in the toolbar appear without the icon just the name

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

--- Comment #1 from BRANDT  ---
Created attachment 142601
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142601=edit
image of the definitions

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


[Libreoffice-bugs] [Bug 117704] Word Count - Line Asian characters and Korean syllabes is missing

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #6 from Xisco Faulí  ---
(In reply to Buovjaga from comment #5)
> I don't understand why in bibisect-win32-6.1, with 6.1 beta1 (master), I see
> the line, but in latest 6.2 dev install I don't see it :(

Most likely because the commit causing that problem hasn't been backported to
6-1

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


[Libreoffice-bugs] [Bug 118059] New: new entries in the toolbar appear without the icon just the name

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

Bug ID: 118059
   Summary: new entries in the toolbar appear without the icon
just the name
   Product: LibreOffice
   Version: 5.3.6.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rbr...@yahoo.fr

Created attachment 142600
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142600=edit
image with the tools bar with the new entries for my macroes

Configuration : 
I Added some Macroes in the tools bar but the icons did not appear on the line
just the name. In previous version it works fine.

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


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

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

Xisco Faulí  changed:

   What|Removed |Added

   Severity|trivial |major
   Keywords|bibisectRequest |bibisected, bisected
   Priority|medium  |high
   Hardware|x86-64 (AMD64)  |All
 CC||bjoern.michaelsen@libreoffi
   ||ce.org,
   ||xiscofa...@libreoffice.org
 OS|Windows (All)   |All

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

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

Bisected with: bibisect-linux64-6.1

Adding Cc: to Bjoern Michaelsen

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - solenv/flatpak-manifest.in

2018-06-07 Thread Stephan Bergmann
 solenv/flatpak-manifest.in |   15 +++
 1 file changed, 15 insertions(+)

New commits:
commit 4ebaf1e69bf73a756af9b80c8bbd05c4ae308231
Author: Stephan Bergmann 
Date:   Thu Jun 7 17:36:37 2018 +0200

Merge in Flatpak improvements

...from :

commit 0242fa00493c0521d75c60cc4987fb8c7f3abeb1
Author: Robert McQueen 
Date:   Tue May 15 11:08:30 2018 +0100

add missing share of dconf runtime dir

This breaks dconf change notifications, including the GSettings used 
for Gtk+
themes. Could also cause other weird settings problems.

https://github.com/flathub/org.libreoffice.LibreOffice/issues/31

commit 800d0d553fec6bd093f813cb4aa2f10dcbe10aee
Author: Stephan Bergmann 
Date:   Thu May 31 18:02:13 2018 +0200

Re-enable GIO support

...that was inadvertently lost when switching from the GNOME to the
freedesktop.org runtime.  For one, LO configure's --disable-gtk 
erroneously
implied --disable-gio, even under --enable-gtk3.  For another, gvfs is 
missing
from the freedesktop.org runtime; the recipe is copied from
.

This hopefully fixes
 
"Again unable
to open files on network shares".

Change-Id: Ib0a3680dc4eb2595eb2d8b0bb30c54082651686c
Reviewed-on: https://gerrit.libreoffice.org/55431
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 
(cherry picked from commit 67aaa98600269e6b8fa631146c3649a261369471)
Reviewed-on: https://gerrit.libreoffice.org/55438

diff --git a/solenv/flatpak-manifest.in b/solenv/flatpak-manifest.in
index 1bc50cf67a37..42d2189935c2 100644
--- a/solenv/flatpak-manifest.in
+++ b/solenv/flatpak-manifest.in
@@ -59,6 +59,19 @@
 ]
 },
 {
+"name": "gvfs",
+"cleanup": [ "/libexec/*", "/share/dbus-1/services/*", 
"/share/gvfs/mounts" ],
+"config-opts": [ "--disable-hal", "--disable-gdu", 
"--disable-gcr", "--disable-obexftp",
+ "--disable-avahi", "--disable-documentation", 
"--disable-admin" ],
+"sources": [
+{
+"type": "archive",
+"url": 
"https://download.gnome.org/sources/gvfs/1.36/gvfs-1.36.1.tar.xz;,
+"sha256": 
"3840dff386c2c8a445337bea4ade0eb71339efaff8602767659fa2896792f026"
+}
+]
+},
+{
 "name": "libreoffice",
 "sources": [
 {
@@ -597,7 +610,9 @@
 "--socket=pulseaudio",
 "--device=dri",
 "--filesystem=host",
+"--filesystem=xdg-run/dconf",
 "--env=DCONF_USER_CONFIG_DIR=.config/dconf",
+"--env=GIO_EXTRA_MODULES=/app/lib/gio/modules",
 "--env=JAVA_HOME=/app/jre",
 "--env=LIBO_FLATPAK=1",
 "--own-name=org.libreoffice.LibreOfficeIpc0",
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - solenv/gbuild

2018-06-07 Thread Stephan Bergmann
 solenv/gbuild/AllLangHelp.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit f902094de5567c460013561e473dec302a651824
Author: Stephan Bergmann 
Date:   Thu Jun 7 13:55:25 2018 +0200

Missing dependency on directory

Change-Id: Icaf0f54d3487c8286486d265ebb9790f6b9e0910
Reviewed-on: https://gerrit.libreoffice.org/55419
Tested-by: Jenkins 
Reviewed-by: Stephan Bergmann 
(cherry picked from commit 8ab697786e29865953c3a725256f3b1eb1160ea6)
Reviewed-on: https://gerrit.libreoffice.org/55437

diff --git a/solenv/gbuild/AllLangHelp.mk b/solenv/gbuild/AllLangHelp.mk
index b42dc692296a..c84714231507 100644
--- a/solenv/gbuild/AllLangHelp.mk
+++ b/solenv/gbuild/AllLangHelp.mk
@@ -104,7 +104,8 @@ endif
 endef
 
 ifneq ($(ENABLE_HTMLHELP),)
-$(call gb_AllLangHelp_get_helpfiles_target,%):
+$(call gb_AllLangHelp_get_helpfiles_target,%): | \
+$(dir $(call gb_AllLangHelp_get_helpfiles_target,%)).dir
touch $@
 endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117314] UI: Viewport jumps to far when one edits a line end that is not in the current view

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

Micha  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #3 from Micha  ---
Hello Buovjaga,
Indeed, it works as expected on a recent master.
I'm marking it as closed.
Regards, Micha

Version: 6.2.0.0.alpha0+
Build ID: b292a27698e85fd9d60c03613c3b0c67835c4dc1
CPU threads: 4; OS: Linux 4.9; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-06-07_02:03:56

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


[Libreoffice-bugs] [Bug 97778] Inserting a linked SVG creates a PNG copy embedded on the file

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

--- Comment #8 from João Paulo  ---
On LibreOffice 6.0.4.2 (x64), build ID
9b0d9b32d5dcda91d2f1a96dc04c645c450872bf, this bug is still present, but
worsened:

If I link the same SVG image into a document (again, I don't embedd, just
link), if I save as Flat ODT (*.fodt), LibreOffice makes **two or more** copies
of the SVG file converted to PNG inside  elements.

There is no need to embedd the file data inside the *.odt and *.fodt files.

Instead of:


 
  
[binary data here corresponding to a PNG file]
  
 

There should be only:



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


[Libreoffice-bugs] [Bug 117568] 6.0.4.2 locks up when checking for updates

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

--- Comment #4 from Carlo  ---
It works correctly for me.

Versione: 6.0.4.2 (x64)
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
Thread CPU: 8; SO: Windows 10.0; Resa interfaccia: predefinito; 
Versione locale: it-IT (it_IT); Calc: group

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


[Libreoffice-bugs] [Bug 118058] Writer 6.0.4.2 freezes opening ODT document created in Writer 5

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

edonick  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 118058] Writer 6.0.4.2 freezes opening ODT document created in Writer 5

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

edonick  changed:

   What|Removed |Added

 CC||edo_n...@azet.sk

--- Comment #1 from edonick  ---
Created attachment 142599
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142599=edit
ODT

When I remove paragraph from document a leave other part of document unchanged,
document can be opened in Writer 6

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


[Libreoffice-bugs] [Bug 118058] New: Writer 6.0.4.2 freezes opening ODT document created in Writer 5

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

Bug ID: 118058
   Summary: Writer 6.0.4.2 freezes opening ODT document created in
Writer 5
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: edo_n...@azet.sk

Description:
I created ODT two years ago in Writer 5. I have updated Libre Office
continually and I edited document last year. Nowadays I use Libre Office 6. I
have tried to open this document but I cannot. Writer freezes immediately after
it starts and hangs out for such long time so I never wait while it open.

Steps to Reproduce:
1. Open document
2.
3.

Actual Results:  
Writer 6 freezes

Expected Results:
Open document


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.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 118057] On Saving or Exporting a Archive LibreOffice could save my last preference!

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

--- Comment #1 from Rafael Barbosa Luiz  ---
Created attachment 142598
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142598=edit
Save the preferences of this two screens

Just to clarify the location!

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


[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #5 from V Stuart Foote  ---
Find a clipboard viewing utility (I prefer Nirsoft's InsideClipboard [1]) and
install to both the Windows 10 host and to the XP guest VM. Then peek at what
is held in clipboard both on the XP virtual machine and on the host Windows
system.

The Windows system clipboard is not a stack--just one application has control
and it should release it when finished or another application makes a clipboard
call. The release may or may-not purge the clipboard.

Suspect the VirtualBox VM framework is holding the clipboard mouse context menu
actions--although it is possible some other application is blocking. 

But frankly LO's clipboard management internally, and our crossplatform
integration with the OS "system clipboard" has problems.

Good solid steps to reproduce are needed for these kinds of issues.

=ref-=
[1] https://www.nirsoft.net/utils/inside_clipboard.html

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


[Libreoffice-bugs] [Bug 118057] New: On Saving or Exporting a Archive LibreOffice could save my last preference!

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

Bug ID: 118057
   Summary: On Saving or Exporting a Archive LibreOffice could
save my last preference!
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: promocaocampa...@gmail.com

Description:
Everytime I need to export a image file, Lbreoffice automaticaly select GIF
with 32 dpi.
I always need to change to my preference in every archive I need export.
I do that like... 170 times per day. I that consume a lot of time.

If Libreoffice could just save my last save/export preference or had someplace
to configurate that previously.

That would be great!

Thanks for the great work!

Actual Results:  
It's not a problem. It's a enchancement!

Expected Results:
I need to repeat the process to export the file with my preferences.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/66.0.3359.181 Safari/537.36

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


[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

--- Comment #4 from Telesto  ---
Similar reports: bug 116014, bug 113220  bug 57147

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - helpcontent2

2018-06-07 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f70e98cbe75996cccf4842dc2d60f3b33be3bf9b
Author: Olivier Hallot 
Date:   Sat Jun 2 13:11:59 2018 -0300

Updated core
Project: help  dc25f00e499d4ece26fab2e17427583e99e45adf

Better use of embed for similar contents

Save translation work for 'IFS functions

Change-Id: I7e9c9fa9d84419f4faf28622be818eb7f2fe6d2a
Reviewed-on: https://gerrit.libreoffice.org/55211
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 
(cherry picked from commit 3e5bd012ebefd160ff4d7070b6e1794e44d91ae5)
Reviewed-on: https://gerrit.libreoffice.org/55448
Tested-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 8ae83bb638d6..dc25f00e499d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 8ae83bb638d652d80fef5b449c43cc6f577cfa24
+Subproject commit dc25f00e499d4ece26fab2e17427583e99e45adf
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-6-1' - source/text

2018-06-07 Thread Olivier Hallot
 source/text/scalc/01/ex_data_stat_func.xhp |   17 +
 source/text/scalc/01/func_averageifs.xhp   |   24 +---
 source/text/scalc/01/func_countifs.xhp |   18 +-
 source/text/scalc/01/func_maxifs.xhp   |   21 ++---
 source/text/scalc/01/func_minifs.xhp   |   21 ++---
 source/text/scalc/01/func_sumifs.xhp   |   22 ++
 source/text/shared/optionen/01060500.xhp   |2 ++
 7 files changed, 55 insertions(+), 70 deletions(-)

New commits:
commit dc25f00e499d4ece26fab2e17427583e99e45adf
Author: Olivier Hallot 
Date:   Sat Jun 2 13:11:59 2018 -0300

Better use of embed for similar contents

Save translation work for 'IFS functions

Change-Id: I7e9c9fa9d84419f4faf28622be818eb7f2fe6d2a
Reviewed-on: https://gerrit.libreoffice.org/55211
Tested-by: Jenkins 
Reviewed-by: Olivier Hallot 
(cherry picked from commit 3e5bd012ebefd160ff4d7070b6e1794e44d91ae5)
Reviewed-on: https://gerrit.libreoffice.org/55448
Tested-by: Olivier Hallot 

diff --git a/source/text/scalc/01/ex_data_stat_func.xhp 
b/source/text/scalc/01/ex_data_stat_func.xhp
index bc87524d9..a0f2bc98d 100644
--- a/source/text/scalc/01/ex_data_stat_func.xhp
+++ b/source/text/scalc/01/ex_data_stat_func.xhp
@@ -119,6 +119,23 @@
 
   
 
+In all 
examples below, ranges for calculation contain the row #6, which is ignored 
because it contains text.
+
+Func_Range; Range1; Criterion1 [ ; Range2; 
Criterion2 [;...]])
+
+The 
logical relation between criteria can be defined as logical AND (conjunction). 
In other words, if and only if all given criteria are met, a value from the 
corresponding cell of the given Func_Range is taken into 
calculation.
+
+
+Func_Range and Range1, Range2... 
must have the same size, otherwise the function returns err:502 - Invalid 
argument.
+
+
+Criterion1 – required argument. A string 
expression representing a logical condition or a cell reference to such string 
expression. The expression can contain text, numbers, regular expressions or 
wildcards (if enabled in calculation options).
+Range2 – Optional. Range2 and all the following 
mean the same as Range1.
+Criterion2 – Optional. Criterion2 and all the 
following mean the same as Criterion1.
+
+
+The function can have up to 255 arguments, meaning that you 
can specify 127 criteria ranges and criteria for them.
+If a 
cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 
(zero).
 
 
 
diff --git a/source/text/scalc/01/func_averageifs.xhp 
b/source/text/scalc/01/func_averageifs.xhp
index a0a94c292..6a38f4e4d 100644
--- a/source/text/scalc/01/func_averageifs.xhp
+++ b/source/text/scalc/01/func_averageifs.xhp
@@ -27,22 +27,16 @@
 Returns the arithmetic mean of all cells 
in a range that satisfy given multiple criteria. The AVERAGEIFS function sums 
up all the results that match the logical tests and divides this sum by the 
quantity of selected values.
 
 Syntax
-AVERAGEIFS(Average_range; Criterion_range1; Criterion1 [; 
Criterion_range2; Criterion2 [; ...]])
-Average_range – required argument. It is a range 
of cells, a name of a named range or a label of a column or a row containing 
values for calculating the mean.
-Criterion_range1 – required argument. It is a 
range of cells, a name of a named range or a label of a column or a row 
containing values for finding the corresponding criterion.
-Criterion1 – required argument. A condition in 
the form of expression or a cell reference to expression that defines what 
cells should be used to calculate the mean. The expression can contain text, 
numbers, regular expressions (if enabled in calculation options) or wildcards 
(if enabled in calculation options). 
-Criterion_range2 – Optional. Criterion_range2 and 
all the following mean the same as Criterion_range1.
-Criterion2 – Optional. Criterion2 and all the 
following mean the same as Criterion1.
-The logical 
relation between criteria can be defined as logical AND (conjunction). In other 
words, if and only if all given criteria are met, a value from the 
corresponding cell of the given Average_range is taken into calculation of the 
mean.
-The Criterion needs to be a string expression, in particular, the 
Criterion needs to be enclosed in quotation marks ("Criterion") 
with the exception of the names of functions, cell references and the operator 
of a string concatenation ().
-The operators equal to (=), not equal to (>), greater than (>), greater 
than or equal to (>=), less than (), and less than or equal to (=) can 
be used in criterion arguments for comparison of numbers.
-The function can have up to 255 arguments, meaning that you can specify 127 
criteria ranges and criteria for it.
-If a cell 
in a range of values for calculating the mean is empty or contains text, the 
function AVERAGEIFS ignores this cell.
-If a cell contains TRUE, it is treated as 1, if a cell contains 

[Libreoffice-commits] help.git: Branch 'libreoffice-6-1' - AllLangHelp_scalc.mk source/text

2018-06-07 Thread Olivier Hallot
 AllLangHelp_scalc.mk |2 
 source/text/scalc/01/func_averageifs.xhp |2 
 source/text/scalc/01/func_countifs.xhp   |2 
 source/text/scalc/01/func_maxifs.xhp |   70 +++
 source/text/scalc/01/func_minifs.xhp |   70 +++
 source/text/scalc/01/func_sumifs.xhp |2 
 6 files changed, 145 insertions(+), 3 deletions(-)

New commits:
commit 8ae83bb638d652d80fef5b449c43cc6f577cfa24
Author: Olivier Hallot 
Date:   Thu May 31 15:11:59 2018 -0300

tdf#117933 help pages for MAXIFS,MINIFS

Change-Id: Ib0b27e4f00468b33a9a112ac0dc0967750570b18
Reviewed-on: https://gerrit.libreoffice.org/55144
Tested-by: Jenkins 
Reviewed-by: Sophia Schröder 
Reviewed-by: Olivier Hallot 

diff --git a/AllLangHelp_scalc.mk b/AllLangHelp_scalc.mk
index ad9218de2..eba3ef23b 100644
--- a/AllLangHelp_scalc.mk
+++ b/AllLangHelp_scalc.mk
@@ -219,6 +219,8 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,scalc,\
 helpcontent2/source/text/scalc/01/func_imsinh \
 helpcontent2/source/text/scalc/01/func_imtan \
 helpcontent2/source/text/scalc/01/func_isoweeknum \
+helpcontent2/source/text/scalc/01/func_maxifs \
+helpcontent2/source/text/scalc/01/func_minifs \
 helpcontent2/source/text/scalc/01/func_minute \
 helpcontent2/source/text/scalc/01/func_month \
 helpcontent2/source/text/scalc/01/common_func_workdaysintl \
diff --git a/source/text/scalc/01/func_averageifs.xhp 
b/source/text/scalc/01/func_averageifs.xhp
index 749a8641e..a0a94c292 100644
--- a/source/text/scalc/01/func_averageifs.xhp
+++ b/source/text/scalc/01/func_averageifs.xhp
@@ -58,7 +58,7 @@ If the range of values for calculating the mean and any range 
for finding criter
 =AVERAGEIFS(C2:C6;A2:A6;E2".*";B2:B6;""MAX(B2:B6))
 If E2 = 
pen, the function returns 65, because the link to the cell is substituted with 
its content.
 
-AVERAGE, AVERAGEA, , , , MAX, MIN
+AVERAGE, AVERAGEA, , , , , , MAX, MIN
 
 
 
diff --git a/source/text/scalc/01/func_countifs.xhp 
b/source/text/scalc/01/func_countifs.xhp
index b5d10dc22..bb0280dc4 100644
--- a/source/text/scalc/01/func_countifs.xhp
+++ b/source/text/scalc/01/func_countifs.xhp
@@ -58,7 +58,7 @@ If ranges for arguments Range and 
Criterion have unequ
 =COUNTIFS(A2:A6;E2".*";B2:B6;""MAX(B2:B6))
 If E2 = 
pen, the function returns 1, because the link to the cell is substituted with 
its content and it works as a function above.
 
-COUNT, COUNTIF, COUNTA, , , MAX, MIN
+COUNT, 
COUNTIF, COUNTA, , , , , MAX, MIN
 
 
 
diff --git a/source/text/scalc/01/func_maxifs.xhp 
b/source/text/scalc/01/func_maxifs.xhp
new file mode 100644
index 0..238f9cfb4
--- /dev/null
+++ b/source/text/scalc/01/func_maxifs.xhp
@@ -0,0 +1,70 @@
+
+
+
+
+
+  
+MAXIFS function
+/text/scalc/01/func_maxifs.xhp
+  
+
+
+
+
+
+
+  MAXIFS function
+  maximum;satisfying conditions
+
+MAXIFS 
function
+Returns the maximum of the values of cells in 
a range that meets multiple criteria in multiple 
ranges.
+
+
+Syntax
+MAXIFS( 
Max_Range ; Criterion_range1 ; Criterion1 [ ; Criterion_range2 ; Criterion2 
[;...]])
+
+Max_Range – required argument. A range of cells, 
a name of a named range or a label of a column or a row containing values for 
calculating the maximum.
+Criterion_range1 – required argument. A range of 
cells, a named range or a label of a column or a row containing values for 
finding the corresponding criterion.
+Criterion1 – required argument. A string 
expression of the conditon that defines what cells should be used to calculate 
the maximum. The expression can contain text, numbers, regular expressions (if 
enabled in calculation options) or wildcards (if enabled in calculation 
options).
+Criterion_range2 – Optional. Criterion_range2 and 
all the following mean the same as Criterion_range1.
+Criterion2 – Optional. Criterion2 and all the 
following mean the same as Criterion1.
+Max_Range and Criterion_range1, 
Criterion_range2... must have the same size, otherwise the function 
returns err:502 - Invalid argument.
+
+The logical 
relation between criteria can be defined as logical AND (conjunction). In other 
words, if and only if all given criteria are met, a value from the 
corresponding cell of the given Max_Range is taken into 
calculation of the maximum.
+
+The 
function can have up to 255 arguments, meaning that you can specify 127 
criteria ranges and criteria for them.
+
+
+
+If a 
cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 
(zero).
+
+
+In all 
examples below, ranges for maximum calculation contain the row #6, but it is 
ignored, because it contains text.
+
+Simple usage
+=MAXIFS(B2:B6;B2:B6;"35")
+Calculates the maximum of values of the range B2:B6 that are 
greater than or equal to 20. Returns 35. The fifth row does not meet the 
criterion.
+=MAXIFS(C2:C6;B2:B6;"=20";C2:C6;"90")
+Calculates the maximum of values of the range C2:C6 that are 
lower than 90 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - helpcontent2

2018-06-07 Thread Olivier Hallot
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5d5fe7c48a8213b6b955b801acde8073690073c7
Author: Olivier Hallot 
Date:   Thu May 31 15:11:59 2018 -0300

Updated core
Project: help  8ae83bb638d652d80fef5b449c43cc6f577cfa24

tdf#117933 help pages for MAXIFS,MINIFS

Change-Id: Ib0b27e4f00468b33a9a112ac0dc0967750570b18
Reviewed-on: https://gerrit.libreoffice.org/55144
Tested-by: Jenkins 
Reviewed-by: Sophia Schröder 
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 156af0219ea2..8ae83bb638d6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 156af0219ea25704b386d6c16dca7e1ce8386995
+Subproject commit 8ae83bb638d652d80fef5b449c43cc6f577cfa24
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-06-07 Thread Marco Cecchetti
 sc/source/ui/inc/viewdata.hxx  |4 +-
 sc/source/ui/unoobj/docuno.cxx |   25 +++---
 sc/source/ui/view/viewdata.cxx |   69 +++--
 3 files changed, 55 insertions(+), 43 deletions(-)

New commits:
commit 2a7f74900fb646235b74d4c9bd4690e44edc3ed4
Author: Marco Cecchetti 
Date:   Tue May 8 18:36:00 2018 +0200

lok: sc: scroll issue

Problem:

users A and B open the same empty document, and the initial document
height is the same for both views, say 100 rows;
user A goes to row 1000 and enters some text
user B is not able to scroll below row 100

Change-Id: I68efe03473c6f82d68182a951034d2e95ffa7765
Reviewed-on: https://gerrit.libreoffice.org/53996
Tested-by: Jenkins 
Reviewed-by: Marco Cecchetti 

diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/source/ui/inc/viewdata.hxx
index 6bc447966c1e..4efc30615852 100644
--- a/sc/source/ui/inc/viewdata.hxx
+++ b/sc/source/ui/inc/viewdata.hxx
@@ -134,10 +134,11 @@ private:
 bool operator() (const value_type& rValue1, const value_type& rValue2) 
const;
 };
 
+const index_type MAX_INDEX;
 std::set mData;
 
 public:
-ScPositionHelper();
+ScPositionHelper(bool bColumn);
 
 void insert(index_type nIndex, long nPos);
 void removeByIndex(index_type nIndex);
@@ -146,6 +147,7 @@ public:
 const value_type& getNearestByIndex(index_type nIndex) const;
 const value_type& getNearestByPosition(long nPos) const;
 long getPosition(index_type nIndex) const;
+long computePosition(index_type nIndex, const std::function& getSizePx);
 };
 
 class ScBoundsProvider
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index 8120b782547a..968439bfdcf0 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -607,14 +607,29 @@ Size ScModelObj::getDocumentSize()
 
 rDoc.GetTiledRenderingArea(nTab, nEndCol, nEndRow);
 
-pViewData->SetMaxTiledCol(nEndCol);
-pViewData->SetMaxTiledRow(nEndRow);
+const ScDocument* pThisDoc = 
 
-if (pViewData->GetLOKDocWidthPixel() > 0 && 
pViewData->GetLOKDocHeightPixel() > 0)
+auto GetColWidthPx = [pThisDoc, nTab](SCCOL nCol) {
+const sal_uInt16 nSize = pThisDoc->GetColWidth(nCol, nTab);
+return ScViewData::ToPixel(nSize, 1.0 / TWIPS_PER_PIXEL);
+};
+
+long nDocWidthPixel = 
pViewData->GetLOKWidthHelper().computePosition(nEndCol, GetColWidthPx);
+
+
+auto GetRowHeightPx = [pThisDoc, nTab](SCROW nRow) {
+const sal_uInt16 nSize = pThisDoc->GetRowHeight(nRow, nTab);
+return ScViewData::ToPixel(nSize, 1.0 / TWIPS_PER_PIXEL);
+};
+
+long nDocHeightPixel = 
pViewData->GetLOKHeightHelper().computePosition(nEndRow, GetRowHeightPx);
+
+
+if (nDocWidthPixel > 0 && nDocHeightPixel > 0)
 {
 // convert to twips
-aSize.setWidth(pViewData->GetLOKDocWidthPixel() * TWIPS_PER_PIXEL);
-aSize.setHeight(pViewData->GetLOKDocHeightPixel() * TWIPS_PER_PIXEL);
+aSize.setWidth(nDocWidthPixel * TWIPS_PER_PIXEL);
+aSize.setHeight(nDocHeightPixel * TWIPS_PER_PIXEL);
 }
 else
 {
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index 69fce5476d8f..eacb5d5dc087 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -104,7 +104,8 @@ bool ScPositionHelper::Comp::operator() (const value_type& 
rValue1, const value_
 }
 }
 
-ScPositionHelper::ScPositionHelper()
+ScPositionHelper::ScPositionHelper(bool bColumn)
+: MAX_INDEX(bColumn ? MAXCOL : MAXTILEDROW)
 {
 mData.insert(std::make_pair(-1, 0));
 }
@@ -231,6 +232,32 @@ long ScPositionHelper::getPosition(index_type nIndex) const
 return it->second;
 }
 
+long ScPositionHelper::computePosition(index_type nIndex, const 
std::function& getSizePx)
+{
+if (nIndex < 0) nIndex = 0;
+if (nIndex > MAX_INDEX) nIndex = MAX_INDEX;
+
+const auto& rNearest = getNearestByIndex(nIndex);
+index_type nStartIndex = rNearest.first;
+long nTotalPixels = rNearest.second;
+
+if (nStartIndex < nIndex)
+{
+for (index_type nIdx = nStartIndex + 1; nIdx <= nIndex; ++nIdx)
+{
+nTotalPixels += getSizePx(nIdx);
+}
+}
+else
+{
+for (index_type nIdx = nStartIndex; nIdx > nIndex; --nIdx)
+{
+nTotalPixels -= getSizePx(nIdx);
+}
+}
+return nTotalPixels;
+}
+
 ScBoundsProvider::ScBoundsProvider(ScDocument* pD, SCTAB nT, bool bColHeader)
 : pDoc(pD)
 , nTab(nT)
@@ -448,6 +475,8 @@ ScViewDataTable::ScViewDataTable() :
 nOldCurY( 0 ),
 nLOKOldCurX( 0 ),
 nLOKOldCurY( 0 ),
+aWidthHelper(true),
+aHeightHelper(false),
 nMaxTiledCol( 20 ),
 nMaxTiledRow( 50 ),
 bShowGrid( true ),
@@ -1384,24 +1413,7 @@ void ScViewData::SetMaxTiledCol( SCCOL 

[Libreoffice-commits] online.git: loleaflet/css

2018-06-07 Thread Jan Holesovsky
 loleaflet/css/toolbar.css |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 814d266eca01b38e69b6467a4a413421954e83a0
Author: Jan Holesovsky 
Date:   Thu Jun 7 22:05:13 2018 +0200

Make sure we have enough space for the insert table grid.

Change-Id: I9c6cf2b038663bc68098b6abf4c7c69599ebe070

diff --git a/loleaflet/css/toolbar.css b/loleaflet/css/toolbar.css
index 2eed67d4c..437be143a 100644
--- a/loleaflet/css/toolbar.css
+++ b/loleaflet/css/toolbar.css
@@ -475,11 +475,12 @@ button.leaflet-control-search-next
 position: relative;
 padding: 2px;
 display: block;
-height: 232px;
+width: 243px;
 }
 
 .inserttable-grid .row {
 height: 20px;
+margin: 3px;
 }
 
 .inserttable-grid .col {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

dud...@yahoo.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from dud...@yahoo.com ---
I installed Version: 6.0.4.2 (x64) Libre office and the
Issue still persists.
Unable to right click/paste when virtualbox is running an XP machine
I can CTRL-V without a problem.

I also checked Open GL.  It was off, but the problem still persists whether its
on or off.

I also notice that if I immediately close LOffice and right click/paste the
data in the clipboard will paste, but then on the next try the rightclick paste
is again inactive.

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 113131] Paragraph style: "Next-style"-rule is ignored if paragraph break is at the beginning of or within a paragraph

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

Dieter Praas  changed:

   What|Removed |Added

Summary|Paragraph style:|Paragraph style:
   |"Next-style"-rule is|"Next-style"-rule is
   |ignored |ignored if paragraph break
   ||is at the beginning of or
   ||within a paragraph

--- Comment #10 from Dieter Praas  ---
Now the behaviour is more clear to me. If you
a) Press Enter at the end of a paragraph, the "next-style-rule" is applied
b) Press Enter at the beginning or within the paragraph "next-style-rule" is
ignored (=> I changed the bug summary)

I would expect, that the "next-style-rule" is applied always, if you add a new
paragraph.

-- 
You are receiving this mail because:
You 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' - sc/source

2018-06-07 Thread Marco Cecchetti
 sc/source/ui/inc/viewdata.hxx  |4 +-
 sc/source/ui/unoobj/docuno.cxx |   25 +++---
 sc/source/ui/view/viewdata.cxx |   69 +++--
 3 files changed, 55 insertions(+), 43 deletions(-)

New commits:
commit f5a04c97478feea3b8269e997992989ebdb78cce
Author: Marco Cecchetti 
Date:   Tue May 8 18:36:00 2018 +0200

lok: sc: scroll issue

Problem:

users A and B open the same empty document, and the initial document
height is the same for both views, say 100 rows;
user A goes to row 1000 and enters some text
user B is not able to scroll below row 100

Change-Id: I68efe03473c6f82d68182a951034d2e95ffa7765
Reviewed-on: https://gerrit.libreoffice.org/53995
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 

diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/source/ui/inc/viewdata.hxx
index e9f8767aea90..7b58edc13736 100644
--- a/sc/source/ui/inc/viewdata.hxx
+++ b/sc/source/ui/inc/viewdata.hxx
@@ -134,10 +134,11 @@ private:
 bool operator() (const value_type& rValue1, const value_type& rValue2) 
const;
 };
 
+const index_type MAX_INDEX;
 std::set mData;
 
 public:
-ScPositionHelper();
+ScPositionHelper(bool bColumn);
 
 void insert(index_type nIndex, long nPos);
 void removeByIndex(index_type nIndex);
@@ -146,6 +147,7 @@ public:
 const value_type& getNearestByIndex(index_type nIndex) const;
 const value_type& getNearestByPosition(long nPos) const;
 long getPosition(index_type nIndex) const;
+long computePosition(index_type nIndex, const std::function& getSizePx);
 };
 
 class ScBoundsProvider
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index e9382d8ab2ee..b42179663858 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -595,14 +595,29 @@ Size ScModelObj::getDocumentSize()
 
 rDoc.GetTiledRenderingArea(nTab, nEndCol, nEndRow);
 
-pViewData->SetMaxTiledCol(nEndCol);
-pViewData->SetMaxTiledRow(nEndRow);
+const ScDocument* pThisDoc = 
 
-if (pViewData->GetLOKDocWidthPixel() > 0 && 
pViewData->GetLOKDocHeightPixel() > 0)
+auto GetColWidthPx = [pThisDoc, nTab](SCCOL nCol) {
+const sal_uInt16 nSize = pThisDoc->GetColWidth(nCol, nTab);
+return ScViewData::ToPixel(nSize, 1.0 / TWIPS_PER_PIXEL);
+};
+
+long nDocWidthPixel = 
pViewData->GetLOKWidthHelper().computePosition(nEndCol, GetColWidthPx);
+
+
+auto GetRowHeightPx = [pThisDoc, nTab](SCROW nRow) {
+const sal_uInt16 nSize = pThisDoc->GetRowHeight(nRow, nTab);
+return ScViewData::ToPixel(nSize, 1.0 / TWIPS_PER_PIXEL);
+};
+
+long nDocHeightPixel = 
pViewData->GetLOKHeightHelper().computePosition(nEndRow, GetRowHeightPx);
+
+
+if (nDocWidthPixel > 0 && nDocHeightPixel > 0)
 {
 // convert to twips
-aSize.setWidth(pViewData->GetLOKDocWidthPixel() * TWIPS_PER_PIXEL);
-aSize.setHeight(pViewData->GetLOKDocHeightPixel() * TWIPS_PER_PIXEL);
+aSize.setWidth(nDocWidthPixel * TWIPS_PER_PIXEL);
+aSize.setHeight(nDocHeightPixel * TWIPS_PER_PIXEL);
 }
 else
 {
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index 43cee43b34da..c144256df7a7 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -104,7 +104,8 @@ bool ScPositionHelper::Comp::operator() (const value_type& 
rValue1, const value_
 }
 }
 
-ScPositionHelper::ScPositionHelper()
+ScPositionHelper::ScPositionHelper(bool bColumn)
+: MAX_INDEX(bColumn ? MAXCOL : MAXTILEDROW)
 {
 mData.insert(std::make_pair(-1, 0));
 }
@@ -231,6 +232,32 @@ long ScPositionHelper::getPosition(index_type nIndex) const
 return it->second;
 }
 
+long ScPositionHelper::computePosition(index_type nIndex, const 
std::function& getSizePx)
+{
+if (nIndex < 0) nIndex = 0;
+if (nIndex > MAX_INDEX) nIndex = MAX_INDEX;
+
+const auto& rNearest = getNearestByIndex(nIndex);
+index_type nStartIndex = rNearest.first;
+long nTotalPixels = rNearest.second;
+
+if (nStartIndex < nIndex)
+{
+for (index_type nIdx = nStartIndex + 1; nIdx <= nIndex; ++nIdx)
+{
+nTotalPixels += getSizePx(nIdx);
+}
+}
+else
+{
+for (index_type nIdx = nStartIndex; nIdx > nIndex; --nIdx)
+{
+nTotalPixels -= getSizePx(nIdx);
+}
+}
+return nTotalPixels;
+}
+
 ScBoundsProvider::ScBoundsProvider(ScDocument* pD, SCTAB nT, bool bColHeader)
 : pDoc(pD)
 , nTab(nT)
@@ -448,6 +475,8 @@ ScViewDataTable::ScViewDataTable() :
 nOldCurY( 0 ),
 nLOKOldCurX( 0 ),
 nLOKOldCurY( 0 ),
+aWidthHelper(true),
+aHeightHelper(false),
 nMaxTiledCol( 20 ),
 nMaxTiledRow( 50 ),
 bShowGrid( true ),
@@ -1382,24 +1411,7 @@ void ScViewData::SetMaxTiledCol( 

[Libreoffice-bugs] [Bug 117418] Specific file causing LibreOffice to freeze completely when loading (FILEOPEN)

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

--- Comment #7 from gregg@gmail.com ---
I only had the single copy of the file, and as I believe I said in my initial
posting, I was using it for less than 24hrs before this issue occurred.

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


[Libreoffice-bugs] [Bug 118054] Writer doesn't show the initial image before cropping in the background (like Calc/Impress/Draw)

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

--- Comment #2 from Telesto  ---
Created attachment 142597
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142597=edit
Example 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-commits] core.git: Branch 'libreoffice-6-1' - sw/source

2018-06-07 Thread Julien Nabet
 sw/source/core/unocore/unomap.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 243b73546c0c0b291f5e05405ad24e48df625d64
Author: Julien Nabet 
Date:   Thu Jun 7 18:53:30 2018 +0200

tdf#118042: fix crash on Target box in Hyperlink dialog

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

diff --git a/sw/source/core/unocore/unomap.cxx 
b/sw/source/core/unocore/unomap.cxx
index 8445e08f935d..3dffbe6859fc 100644
--- a/sw/source/core/unocore/unomap.cxx
+++ b/sw/source/core/unocore/unomap.cxx
@@ -683,7 +683,7 @@ const SfxItemPropertyMapEntry* 
SwUnoPropertyMapProvider::GetPropertyMapEntries(s
 {
 static SfxItemPropertyMapEntry const aLinkTargetMap_Impl[] =
 {
-{ OUString(UNO_LINK_DISPLAY_BITMAP), 0, 
cppu::UnoType::get(), PropertyAttribute::READONLY, 0xff},
+{ OUString(UNO_LINK_DISPLAY_BITMAP), 0, 
cppu::UnoType::get(), PropertyAttribute::READONLY, 0xbf},
 { OUString(UNO_LINK_DISPLAY_NAME), 0,   
cppu::UnoType::get(), PropertyAttribute::READONLY, 0xbf},
 { OUString(), 0, css::uno::Type(), 0, 0 }
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 116253] With MariaDB JDBC connection & Filter property set, an empty Combo Box shows 'NULL' when record inserted

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

--- Comment #12 from Howard Johnson  ---
@ Xisco Faulí, The bug reappeared, and so I dug back in to it, and have now
provided you with the example you previously requested.  Thanks for the help w/
this.

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


[Libreoffice-bugs] [Bug 116253] With MariaDB JDBC connection & Filter property set, an empty Combo Box shows 'NULL' when record inserted

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

--- Comment #11 from Howard Johnson  ---
Created attachment 142596
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142596=edit
A similar simple database using embedded HSQLDB which does not fail

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


[Libreoffice-bugs] [Bug 116253] With MariaDB JDBC connection & Filter property set, an empty Combo Box shows 'NULL' when record inserted

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

--- Comment #10 from Howard Johnson  ---
Created attachment 142595
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142595=edit
A simple bug demonstration database; (must connect to included MariaDB tables)

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


[Libreoffice-bugs] [Bug 116253] With MariaDB JDBC connection & Filter property set, an empty Combo Box shows 'NULL' when record inserted

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

Howard Johnson  changed:

   What|Removed |Added

Summary|'NULL' appears as default   |With MariaDB JDBC
   |text in text and combo  |connection & Filter
   |boxes when editing a newly  |property set, an empty
   |inserted record in a form's |Combo Box shows 'NULL' when
   |table control   |record inserted

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


[Libreoffice-bugs] [Bug 116253] 'NULL' appears as default text in text and combo boxes when editing a newly inserted record in a form's table control

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

Howard Johnson  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED

--- Comment #9 from Howard Johnson  ---
STEPS TO RECREATE THIS BUG:

1) Load the SQL (please cut and paste from bottom of this description) into a
MariaDB database.  This creates a simple database called 'journal' with two
tables.

2) Open 'NULL bug - mariadb.odb' (attached).  

3) Right click on one of the tables and set the database properties so you can
connect to, and then view the tables.  

I use the following setup but yours may vary:

  -
  Advanced Properties tab:
General
Name of the MySQL database:   journal

User Authentication
User name: _
x Password required
  -
  Additional Settings tab:
  Host name: localhost
  Port number: 3306
  MySQL JDBC driver class: org.mariadb.jdbc.Driver

  Data Conversion
  Character set:   System
  -


4) In Forms, open the form named 'JOURNAL'.  

5) In the Table Control, in the white space under 'Debit' enter any number and
then save the record (either by clicking down arrow, Return-Return (twice), or
the save icon).


BUGGY RESULT: 'NULL' appears just to the right of the number you just entered,
(same line but under the 'To (in Combo Box)' column header).

Expected result: This box should have remained empty, as nothing was entered in
it.

Notes:

* Embedded HSQLDB 1.8 doesn't fail this way.  Test with 'NULL bug - hsqldb.odb'
(also attached).

* Setting the Filter property seems to make this bug become visible.  If you
edit the 'JOURNAL' form and open the Form Navigator, then right click on
'Main', and open properties, and then select the Data tab, you'll notice that
the Filter property is set to '( `journal`.`Account ID` = 11 )' which is used
to provide a sub-set of the table to edit.  



=
=== Cut and use this SQL below to create your MariaDB test database =
=

-- 
-- Host: 127.0.0.1
-- Server version:   10.2.15-MariaDB-10.2.15+maria~stretch-log -
mariadb.org binary distribution
-- Server OS:debian-linux-gnu
-- HeidiSQL Version: 9.5.0.5196
-- 

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0
*/;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;


-- Dumping database structure for journal
CREATE DATABASE IF NOT EXISTS `journal` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `journal`;

-- Dumping structure for table journal.journal
CREATE TABLE IF NOT EXISTS `journal` (
  `Journal ID` int(11) NOT NULL AUTO_INCREMENT,
  `Account ID` int(11) DEFAULT NULL COMMENT 'Financial account',
  `Debit` decimal(19,2) DEFAULT NULL,
  `To` varchar(50) DEFAULT NULL COMMENT 'For debits who the money goes to.  For
credits who the money goes from.',
  PRIMARY KEY (`Journal ID`),
  KEY `Account ID` (`Account ID`),
  KEY `To` (`To`)
) ENGINE=InnoDB AUTO_INCREMENT=22364 DEFAULT CHARSET=utf8;

-- Dumping data for table journal.journal: ~10 rows (approximately)
/*!4 ALTER TABLE `journal` DISABLE KEYS */;
/*!4 ALTER TABLE `journal` ENABLE KEYS */;

-- Dumping structure for table journal.tos
CREATE TABLE IF NOT EXISTS `tos` (
  `To ID` int(11) NOT NULL AUTO_INCREMENT,
  `To` varchar(50) NOT NULL,
  PRIMARY KEY (`To`),
  KEY `To ID` (`To ID`)
) ENGINE=InnoDB AUTO_INCREMENT=715 DEFAULT CHARSET=utf8;

-- Dumping data for table journal.tos: ~2 rows (approximately)
/*!4 ALTER TABLE `tos` DISABLE KEYS */;
/*!4 ALTER TABLE `tos` ENABLE KEYS */;

/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1,
@OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

-- 
You are receiving this mail because:
You 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: 2 commits - configure.ac ios/CustomTarget_iOS_setup.mk README.md

2018-06-07 Thread Tor Lillqvist
 README.md |4 ++--
 configure.ac  |2 +-
 ios/CustomTarget_iOS_setup.mk |2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit b9dde4a74cba5a771cbc85880d518f6717d19216
Author: Tor Lillqvist 
Date:   Thu Jun 7 21:51:14 2018 +0300

We use ICU 61 now

Change-Id: I7faf23de08db680599658206faaf302563f6

diff --git a/ios/CustomTarget_iOS_setup.mk b/ios/CustomTarget_iOS_setup.mk
index a9f98850c6d8..a0d1a18823ab 100644
--- a/ios/CustomTarget_iOS_setup.mk
+++ b/ios/CustomTarget_iOS_setup.mk
@@ -54,7 +54,7 @@ $(IOSGEN)/native-code.h: $(BUILDDIR)/config_host.mk \
> $(IOSGEN)/native-code.h
 
# copy resource files used to start/run LibreOffice
-   cp $(WORKDIR)/UnpackedTarball/icu/source/data/in/icudt60l.dat 
$(IOSRES)/icudt60l.dat
+   cp $(WORKDIR)/UnpackedTarball/icu/source/data/in/icudt61l.dat 
$(IOSRES)/icudt61l.dat
cp $(INSTDIR)/program/types.rdb $(IOSRES)/udkapi.rdb
cp $(INSTDIR)/program/types/offapi.rdb  $(IOSRES)
cp $(INSTDIR)/program/types/oovbaapi.rdb$(IOSRES)
commit 6961b7509122b6e829ec2b72e1bde68c615a0a2f
Author: Tor Lillqvist 
Date:   Thu Jun 7 17:15:07 2018 +0300

Bump iOS SDK version to the current one, 11.4

Not sure why we at some stage lost the possibiliy to build against any
of several recent versions, but require one specific. But yeah, no big
deal, anybody working on iOS code is expected to keep ther Xcode (and
thus SDKs) updated.

diff --git a/README.md b/README.md
index c59f68122473..3bcd70716e00 100644
--- a/README.md
+++ b/README.md
@@ -42,8 +42,8 @@ run and compile LibreOffice, also used by the TDF builds:
 * Runtime: RHEL 6 or CentOS 6
 * Build: GCC 4.8.1 or Clang
 * iOS (only for LibreOfficeKit):
-* Runtime: 11.3 (only support for newer i devices == 64 bit)
-* Build: Xcode 9.3 and iPhone SDK 11.3
+* Runtime: 11.4 (only support for newer i devices == 64 bit)
+* Build: Xcode 9.3 and iPhone SDK 11.4
 
 At least Clang 3.4.2 is known to be too old to pass the configure.ac check 
"whether $CXX supports
 C++17, C++14, or C++11" in its current form (due to the #pragma GCC diagnostic 
ignored "-Wpragmas"
diff --git a/configure.ac b/configure.ac
index c045e6fb7340..0f236c885723 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2932,7 +2932,7 @@ dnl 
===
 
 if test $_os = iOS; then
 AC_MSG_CHECKING([what iOS SDK to use])
-current_sdk_ver=11.3
+current_sdk_ver=11.4
 if test "$enable_ios_simulator" = "yes"; then
 platform=iPhoneSimulator
 versionmin=-mios-simulator-version-min=$current_sdk_ver
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117418] Specific file causing LibreOffice to freeze completely when loading (FILEOPEN)

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
Version|5.4.6.2 release |Inherited From OOo
 OS|Windows (All)   |All

--- Comment #6 from Buovjaga  ---
Already freezes 3.3.0

Arch Linux 64-bit
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

Gregg: ODS files are actually ZIP files. I unzipped the file and to my horror I
noticed content.xml is over 500 megabytes!

It would be interesting to see, if you have a copy of the file from the era
when it still opened.

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


[Libreoffice-bugs] [Bug 117486] Preview image of videos not shown if path to video contains a space (works on Windows)

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

Buovjaga  changed:

   What|Removed |Added

   Severity|normal  |minor
 OS|All |Linux (All)
 Ever confirmed|0   |1
 Blocks||107322
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Summary|Preview image of videos not |Preview image of videos not
   |shown if path to video  |shown if path to video
   |contains a space|contains a space (works on
   ||Windows)

--- Comment #1 from Buovjaga  ---
Repro on Linux, but not on Windows.

Version: 6.2.0.0.alpha0+ (x64)
Build ID: 288878045e54651ffe96e5faa879ab3bbabf9510
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-06-04_23:12:13
Locale: fi-FI (fi_FI); Calc: group threaded

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: 67aaa98600269e6b8fa631146c3649a261369471
CPU threads: 8; OS: Linux 4.16; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group threaded
Built on June 7th 2018


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107322
[Bug 107322] [META] Media (audio / video) 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 107322] [META] Media (audio / video) bugs and enhancements

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

Buovjaga  changed:

   What|Removed |Added

 Depends on||117486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117486
[Bug 117486] Preview image of videos not shown if path to video contains a
space (works on Windows)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114699] File Open Icons corrupted on high DPI displays

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

--- Comment #21 from dan...@favoredform.com ---
Changed title in hope that keyword searches might find this bug better.

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


[Libreoffice-bugs] [Bug 107733] [META] Hyperlink bugs and enhancements

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

Bug 118042 Summary: LibreOffice crashes after clicking "Target in document" 
button in the Hyperlink dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=118042

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 114699] File Open Icons corrupted on high DPI displays

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

dan...@favoredform.com changed:

   What|Removed |Added

Summary|FileOpen Icons corrupted on |File Open Icons corrupted
   |HiDPI Display   |on high DPI displays

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


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

2018-06-07 Thread Julien Nabet
 sw/source/core/unocore/unomap.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fccc7aebb5285e36530b14001e37b33b586365f9
Author: Julien Nabet 
Date:   Thu Jun 7 18:53:30 2018 +0200

tdf#118042: fix crash on Target box in Hyperlink dialog

Change-Id: I493faf6e94c1a130b2bd88b6b8c33d6deb6bc268
Reviewed-on: https://gerrit.libreoffice.org/55440
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/sw/source/core/unocore/unomap.cxx 
b/sw/source/core/unocore/unomap.cxx
index 8445e08f935d..3dffbe6859fc 100644
--- a/sw/source/core/unocore/unomap.cxx
+++ b/sw/source/core/unocore/unomap.cxx
@@ -683,7 +683,7 @@ const SfxItemPropertyMapEntry* 
SwUnoPropertyMapProvider::GetPropertyMapEntries(s
 {
 static SfxItemPropertyMapEntry const aLinkTargetMap_Impl[] =
 {
-{ OUString(UNO_LINK_DISPLAY_BITMAP), 0, 
cppu::UnoType::get(), PropertyAttribute::READONLY, 0xff},
+{ OUString(UNO_LINK_DISPLAY_BITMAP), 0, 
cppu::UnoType::get(), PropertyAttribute::READONLY, 0xbf},
 { OUString(UNO_LINK_DISPLAY_NAME), 0,   
cppu::UnoType::get(), PropertyAttribute::READONLY, 0xbf},
 { OUString(), 0, css::uno::Type(), 0, 0 }
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117485] Clicking on the table border will select the full table content instead of only selecting the border (used for cut/paste)

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||todven...@suomi24.fi
   Severity|normal  |minor
   Keywords||bibisectRequest, regression

--- Comment #1 from Buovjaga  ---
Repro.

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: 67aaa98600269e6b8fa631146c3649a261369471
CPU threads: 8; OS: Linux 4.16; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group threaded
Built on June 7th 2018

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


[Libreoffice-bugs] [Bug 117482] The default (outline) textbox in Impress has various conversion options in normal mode which shouldn't be shown

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   Priority|medium  |low

--- Comment #1 from Buovjaga  ---
Yep.

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: 67aaa98600269e6b8fa631146c3649a261369471
CPU threads: 8; OS: Linux 4.16; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group threaded
Built on June 7th 2018

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


[Libreoffice-bugs] [Bug 115467] Unticking "Master background" in slide properties makes formatted background go away

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

Buovjaga  changed:

   What|Removed |Added

 CC||uwesto...@web.de

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

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


[Libreoffice-bugs] [Bug 117358] background color of slides is not shown

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #5 from Buovjaga  ---


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

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


[Libreoffice-bugs] [Bug 117447] FILEOPEN Floating table in attached DOC(X) is lost during import

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

Buovjaga  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||todven...@suomi24.fi
 Status|UNCONFIRMED |NEW

--- Comment #3 from Buovjaga  ---
Confirmed.

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: 67aaa98600269e6b8fa631146c3649a261369471
CPU threads: 8; OS: Linux 4.16; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group threaded
Built on June 7th 2018

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


[Libreoffice-bugs] [Bug 117438] LO x64 - Remote Connection crashes with Exception in "mscx_uno.dll"

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Buovjaga  ---
Does it also crash with latest master?
https://dev-builds.libreoffice.org/daily/master/Win-x86_64@42/current/?C=M=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 108816] [META] Writer toolbar bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||54412


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54412
[Bug 54412] UI: Navigation bar does not get activated when I jump using
cross-reference
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107905] [META] Cross-references bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||54412


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54412
[Bug 54412] UI: Navigation bar does not get activated when I jump using
cross-reference
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54412] UI: Navigation bar does not get activated when I jump using cross-reference

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks|103239  |108816, 107905


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=107905
[Bug 107905] [META] Cross-references bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108816
[Bug 108816] [META] Writer toolbar 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 103239] [META] Toolbars bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on|54412   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54412
[Bug 54412] UI: Navigation bar does not get activated when I jump using
cross-reference
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108816] [META] Writer toolbar bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||74604


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=74604
[Bug 74604] UI: Make Navigation toolbar work on Hyperlinks and (Field)
Cross-references too.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 74604] UI: Make Navigation toolbar work on Hyperlinks and (Field) Cross-references too.

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108816
[Bug 108816] [META] Writer toolbar 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 117257] Exporting to SVG makes hidden layer visible

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

Buovjaga  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||6942
Version|6.0.2.1 release |3.5.0 release
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Summary|The LibreOffice Draw export |Exporting to SVG makes
   |to svg failed with  |hidden layer visible
   |unvisible layer |
 OS|Linux (All) |All

--- Comment #3 from Buovjaga  ---
Repro, already in 3.5.0 (Win)

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: 67aaa98600269e6b8fa631146c3649a261369471
CPU threads: 8; OS: Linux 4.16; UI render: default; VCL: gtk3; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group threaded
Built on June 7th 2018

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


[Libreoffice-bugs] [Bug 116942] Hidden elements from master slide apperas in svg

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

Buovjaga  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108816] [META] Writer toolbar bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||98469


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98469
[Bug 98469] The Navigation toolbar in Writer started from the Navigator has no
name
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98469] The Navigation toolbar in Writer started from the Navigator has no name

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103030, 108816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103030
[Bug 103030] [META] Navigator sidebar deck and floating window
https://bugs.documentfoundation.org/show_bug.cgi?id=108816
[Bug 108816] [META] Writer toolbar 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 103030] [META] Navigator sidebar deck and floating window

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||98469


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98469
[Bug 98469] The Navigation toolbar in Writer started from the Navigator has no
name
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118056] New: Recovery dialog keeps opening and failing after closing to password prompt at the first recovery

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

Bug ID: 118056
   Summary: Recovery dialog keeps opening and failing after
closing to password prompt at the first recovery
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+ Master
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Recovery dialog keeps opening and failing after closing to password prompt at
the first recovery

Steps to Reproduce:
1. Open attachment 142548: Password: helicopter 
2. Make a change
3. Kill it through task manager
4. Reopen calc to initiate recovery
5. Press Start
6. Cancel the password prompt or close the dialog with red cross
7. Press Finish
8. Close LibO (CTRL+Q)
9. Launch LibO -> Recovery dialog popups up.. 
10. Press Start -> No Password prompt c.q. failing recovery
11. It keeps looping through the recovery dialog until using Discard




1. Open the file
 (currently using windows 10). Killing the task is as close as I can come to
reproducing libre office crashing/needing to be ended due to being non
responsive.

5. it will ask for the password
6. if you just save it after recovery the file will no longer have a password.

Actual Results:  
Recovery dialog loop until using discard

Expected Results:
Probably a password prompt or a loop detection


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.0.0.alpha0+
Build ID: b292a27698e85fd9d60c03613c3b0c67835c4dc1
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-06-07_00:23:34
Locale: nl-NL (nl_NL); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.0) Gecko/20100101
Firefox/52.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 118011] Libre Office Crash (calc) prompts document recovery which, when completed, removes the password and requires save as to re-establish the password.

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

--- Comment #4 from Telesto  ---
(In reply to nathanfishercontact from comment #3)

STR
1. Open the file with password: helicopter
2. Make a change
3. Kill it through task manager 
4. Reopen calc to initiate recovery
5. Press "Start" & Enter password: helicopter
6. Save the file again
7. File -> Reload -> No password prompt (or password)

Not sure if this intended or not..

Repro
Version: 6.2.0.0.alpha0+
Build ID: b292a27698e85fd9d60c03613c3b0c67835c4dc1
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-06-07_00:23:34
Locale: nl-NL (nl_NL); Calc: CL

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


[Libreoffice-bugs] [Bug 117343] FILEOPEN DOCX: On opening an existing or recent listed docx-document in Writer, the paragraph styles (in the styles side-tab) don't take the system theme.

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

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #5 from Buovjaga  ---
Created attachment 142594
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142594=edit
Screenshots

I compressed the pngs and they went from 40MB to 15MB

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


[Libreoffice-bugs] [Bug 118054] Writer doesn't show the initial image before cropping in the background (like Calc/Impress/Draw)

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

Dieter Praas  changed:

   What|Removed |Added

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

--- Comment #1 from Dieter Praas  ---
Attached file is missing.

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


[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

--- Comment #2 from Dieter Praas  ---
> Don't know how to check open gl.

You can disable OpenGL here: Tools => Option => LibreOffice => View => Graphics
Output

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


[Libreoffice-bugs] [Bug 117394] Impress presentation is flashing when slide transition is occurring.

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

Buovjaga  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi

--- Comment #2 from Buovjaga  ---
I don't see the flashing or crashing, tried with GTK3 and KDE4 backends. Maybe
it is related to bug 99685

Please copy and paste here the contents of your Help - About. This allows us to
know more about your system.

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the information.

Also try Safe mode with 6.0.3, Help - Restart in safe mode and then Continue in
safe mode.

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


[Libreoffice-bugs] [Bug 118052] Libreoffice 5.4 cannot copy paste in certain instances.

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

Dieter Praas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter Praas  ---
Thank you for reporting the bug. Could you please try to reproduce it with the
latest version of LibreOffice from
https://www.libreoffice.org/download/libreoffice-fresh/ ? I have set the bug's
status to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' if the bug is
still present in the latest version.

-- 
You are receiving this mail because:
You 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 'private/mst/sw_redlinehide' - 18 commits - sw/inc sw/source

2018-06-07 Thread Michael Stahl
Rebased ref, commits from common ancestor:
commit d960dccb11cb6330a95be7f182cb5bf005a5485f
Author: Michael Stahl 
Date:   Thu Jun 7 19:36:06 2018 +0200

sw_redlinehide: trivial conversions in lcl_DrawLineForWrongListData

Change-Id: I7425bac439df7518b7fe1b62cd6f3fd7a9f88fec

diff --git a/sw/source/core/txtnode/fntcache.cxx 
b/sw/source/core/txtnode/fntcache.cxx
index ed1b86f36218..a0a38aa94364 100644
--- a/sw/source/core/txtnode/fntcache.cxx
+++ b/sw/source/core/txtnode/fntcache.cxx
@@ -639,7 +639,7 @@ static bool lcl_IsFullstopCentered( const 
vcl::RenderContext& rOut )
 /* This helper structure (SwForbidden) contains the already marked parts of 
the string
 to avoid double lines (e.g grammar + spell check error) */
 
-typedef std::vector< std::pair< sal_Int32, sal_Int32 > > SwForbidden;
+typedef std::vector> SwForbidden;
 
 static void lcl_DrawLineForWrongListData(
 SwForbidden ,
@@ -679,23 +679,20 @@ static void lcl_DrawLineForWrongListData(
 {
 nStart -= rInf.GetIdx();
 
-const sal_Int32 nEnd = nStart + nWrLen;
-sal_Int32 nNext = nStart;
+const TextFrameIndex nEnd = nStart + nWrLen;
+TextFrameIndex nNext = nStart;
 while( nNext < nEnd )
 {
 while( pIter != rForbidden.end() && pIter->second <= nNext )
 ++pIter;
 
-const sal_Int32 nNextStart = nNext;
-sal_Int32 nNextEnd = nEnd;
+const TextFrameIndex nNextStart = nNext;
+TextFrameIndex nNextEnd = nEnd;
 
 if( pIter == rForbidden.end() || nNextEnd <= pIter->first )
 {
 // No overlapping mark up found
-std::pair< sal_Int32, sal_Int32 > aNew;
-aNew.first = nNextStart;
-aNew.second = nNextEnd;
-rForbidden.insert( pIter, aNew );
+rForbidden.insert(pIter, std::make_pair(nNextStart, nNextEnd));
 pIter = rForbidden.begin();
 nNext = nEnd;
 }
commit 0f7632aa580a20b9c6305c60b52ce32d170074bb
Author: Michael Stahl 
Date:   Thu Jun 7 18:50:13 2018 +0200

calbck Unwrap fuckup fix

Change-Id: I0075d0a0183aa7ca134092b7a2adfe37c102a726

diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx
index 6d64e3e5781f..967e4be6a314 100644
--- a/sw/inc/calbck.hxx
+++ b/sw/inc/calbck.hxx
@@ -227,10 +227,40 @@ template class
 
 namespace sw
 {
-class ListenerEntry;
-class SW_DLLPUBLIC WriterMultiListener final
+// this should be hidden but sadly SwIterator template needs it...
+class ListenerEntry final : public SwClient
 {
+private:
 template friend class 
::SwIterator;
+SwClient *m_pToTell;
+
+public:
+ListenerEntry(SwClient *const pTellHim, SwModify *const pDepend)
+: SwClient(pDepend), m_pToTell(pTellHim)
+{}
+ListenerEntry(ListenerEntry&) = delete;
+ListenerEntry& operator=(ListenerEntry const&) = delete;
+ListenerEntry(ListenerEntry&& other) noexcept
+: SwClient(std::move(other))
+, m_pToTell(other.m_pToTell)
+{ }
+ListenerEntry& operator=(ListenerEntry&& other) noexcept
+{
+m_pToTell = other.m_pToTell;
+other.GetRegisteredIn()->Add(this);
+other.EndListeningAll();
+return *this;
+}
+
+/** get Client information */
+virtual bool GetInfo( SfxPoolItem& rInfo) const override;
+private:
+virtual void Modify(const SfxPoolItem* pOldValue, const SfxPoolItem 
*pNewValue) override;
+virtual void SwClientNotify(const SwModify& rModify, const SfxHint& 
rHint) override;
+};
+
+class SW_DLLPUBLIC WriterMultiListener final
+{
 SwClient& m_rToTell;
 std::vector m_vDepends;
 public:
@@ -318,9 +348,9 @@ public:
 sw::WriterListener * pCurrent(m_pPosition);
 if (eMode == sw::IteratorMode::UnwrapMulti)
 {
-if (auto const pWL = dynamic_cast(pCurrent))
+if (auto const pLE = dynamic_cast(pCurrent))
 {
-pCurrent = >m_rToTell;
+pCurrent = pLE->m_pToTell;
 }
 }
 if (dynamic_cast(pCurrent) != nullptr)
@@ -339,9 +369,9 @@ public:
 {
 if (eMode == sw::IteratorMode::UnwrapMulti)
 {
-if (auto const pWL = dynamic_cast(m_pPosition))
+if (auto const pLE = dynamic_cast(m_pPosition))
 {
-pCurrent = >m_rToTell;
+pCurrent = pLE->m_pToTell;
 }
 }
 if (dynamic_cast(pCurrent) == nullptr)
@@ -363,9 +393,9 @@ public:
 {
 if (eMode == sw::IteratorMode::UnwrapMulti)
 {
-if (auto const pWL = dynamic_cast(m_pPosition))
+if (auto const pLE = dynamic_cast(m_pPosition))
 {
-   

  1   2   3   4   >