[Libreoffice-bugs] [Bug 108827] [META] Calc functions bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827
Bug 108827 depends on bug 117433, which changed state.

Bug 117433 Summary: COUNTIF() doesn't properly count empty cells for empty ("" 
or "=") criteria
https://bugs.documentfoundation.org/show_bug.cgi?id=117433

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: Branch 'private/Ashod/cd-5.3.3.2' - 88 commits - accessibility/inc basctl/inc basic/inc basic/source chart2/inc chart2/Library_chartcore.mk chart2/qa chart2/source comp

2018-05-13 Thread Ashod Nakashian
Rebased ref, commits from common ancestor:
commit 94400c94c38724881380a7a3ee9c55a6deeea583
Author: Ashod Nakashian 
Date:   Sun Apr 22 17:21:30 2018 -0400

svx: support no fill and no stroke paths in PDF import

Change-Id: Ida5daa71d469805fd52e08e804fb9fa182d7d008

diff --git a/svx/source/svdraw/svdpdf.cxx b/svx/source/svdraw/svdpdf.cxx
index 94804d351f79..2a82b78b8dd6 100644
--- a/svx/source/svdraw/svdpdf.cxx
+++ b/svx/source/svdraw/svdpdf.cxx
@@ -1410,11 +1410,24 @@ void ImpSdrPdfImport::ImportPath(FPDF_PAGEOBJECT 
pPageObject, int nPageObjectInd
 
 float fWidth = 1;
 FPDFPath_GetStrokeWidth(pPageObject, );
-SAL_WARN("sd.filter", "Path Stroke Width: " << fWidth);
-const double dWidth = fabs(sqrt2(a, c) * fWidth);
-SAL_WARN("sd.filter", "Path Stroke Width scaled: " << dWidth);
+const double dWidth = 0.5 * fabs(sqrt2(mCurMatrix.a(), mCurMatrix.c()) * 
fWidth);
 mnLineWidth = lcl_ToLogic(lcl_PointToPixel(dWidth));
 mnLineWidth /= 2;
+SAL_WARN("sd.filter", "Path Stroke Width: " << fWidth << ",  scaled: " << 
dWidth
+<< ", Logical: " << 
mnLineWidth);
+
+int nFillMode = FPDF_FILLMODE_ALTERNATE;
+FPDF_BOOL bStroke = true;
+if (FPDFPath_GetDrawMode(pPageObject, , ))
+{
+SAL_WARN("sd.filter", "Got PATH FillMode: " << nFillMode << ", Storke: 
" << bStroke);
+if (nFillMode == FPDF_FILLMODE_ALTERNATE)
+mpVD->SetDrawMode(DrawModeFlags::Default);
+else if (nFillMode == FPDF_FILLMODE_WINDING)
+mpVD->SetDrawMode(DrawModeFlags::Default);
+else
+mpVD->SetDrawMode(DrawModeFlags::NoFill);
+}
 
 unsigned int nR;
 unsigned int nG;
@@ -1424,15 +1437,15 @@ void ImpSdrPdfImport::ImportPath(FPDF_PAGEOBJECT 
pPageObject, int nPageObjectInd
 SAL_WARN("sd.filter", "Got PATH fill color: " << nR << ", " << nG << ", " 
<< nB << ", " << nA);
 mpVD->SetFillColor(Color(nR, nG, nB));
 
-FPDFPath_GetStrokeColor(pPageObject, , , , );
-SAL_WARN("sd.filter",
- "Got PATH stroke color: " << nR << ", " << nG << ", " << nB << ", 
" << nA);
-mpVD->SetLineColor(Color(nR, nG, nB));
-
-// int nFillMode = 0; // No fill.
-// bool bStroke = false;
-// FPDFPath_GetDrawMode(pPageObject, , );
-// mpVD->Setstroke(Color(r, g, b));
+if (bStroke)
+{
+FPDFPath_GetStrokeColor(pPageObject, , , , );
+SAL_WARN("sd.filter",
+ "Got PATH stroke color: " << nR << ", " << nG << ", " << nB 
<< ", " << nA);
+mpVD->SetLineColor(Color(nR, nG, nB));
+}
+else
+mpVD->SetLineColor(COL_TRANSPARENT);
 
 // if(!mbLastObjWasPolyWithoutLine || 
!CheckLastPolyLineAndFillMerge(basegfx::B2DPolyPolygon(aSource)))
 
commit ae1c99eed4d2fb130e7f99afb409625c1389
Author: Ashod Nakashian 
Date:   Sun Apr 22 17:01:18 2018 -0400

svx: support sub-paths in PDF import

Change-Id: Ibcfd30383db6846e791aea7609ab196c4f3f2da4

diff --git a/svx/source/svdraw/svdpdf.cxx b/svx/source/svdraw/svdpdf.cxx
index c5d50642e32b..94804d351f79 100644
--- a/svx/source/svdraw/svdpdf.cxx
+++ b/svx/source/svdraw/svdpdf.cxx
@@ -1313,17 +1313,19 @@ void ImpSdrPdfImport::ImportImage(FPDF_PAGEOBJECT 
pPageObject, int nPageObjectIn
 
 void ImpSdrPdfImport::ImportPath(FPDF_PAGEOBJECT pPageObject, int 
nPageObjectIndex)
 {
-SAL_WARN("sd.filter", "Got page object PATH: " << nPageObjectIndex);
-
 double a, b, c, d, e, f;
 FPDFPath_GetMatrix(pPageObject, , , , , , );
 Matrix aPathMatrix(a, b, c, d, e, f);
 aPathMatrix.Concatinate(mCurMatrix);
 
+basegfx::B2DPolyPolygon aPolyPoly;
 basegfx::B2DPolygon aPoly;
 std::vector aBezier;
 
 const int nSegments = FPDFPath_CountSegments(pPageObject);
+SAL_WARN("sd.filter",
+ "Got page object PATH: " << nPageObjectIndex << " with " << 
nSegments << " segments.");
+
 for (int nSegmentIndex = 0; nSegmentIndex < nSegments; ++nSegmentIndex)
 {
 FPDF_PATHSEGMENT pPathSegment = FPDFPath_GetPathSegment(pPageObject, 
nSegmentIndex);
@@ -1338,16 +1340,16 @@ void ImpSdrPdfImport::ImportPath(FPDF_PAGEOBJECT 
pPageObject, int nPageObjectInd
 
 double x = fx;
 double y = fy;
-SAL_WARN("sd.filter", "Got point (" << x << ", " << y << ") matrix 
(" << a << ", " << b
-<< ", " << c << ", " << d << 
", " << e << ", " << f
-<< ')');
 aPathMatrix.Transform(x, y);
-
 const bool bClose = FPDFPathSegment_GetClose(pPathSegment);
 if (bClose)
 aPoly.setClosed(bClose); // TODO: Review
-SAL_WARN("sd.filter",
- "Point corrected (" << x << ", " << y << "): " << (bClose 
? "CLOSE" : "OPEN"));
+
+SAL_WARN("sd.filter", "Got " << (bClose ? "CLOSE" : 

[Libreoffice-bugs] [Bug 117187] DOCX import -> ODF export moves paragraph

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117187

Patrick Jaap  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |patrick.j...@tu-dresden.de
   |desktop.org |

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


[Libreoffice-bugs] [Bug 117187] DOCX import -> ODF export moves paragraph

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117187

Patrick Jaap  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #12 from Patrick Jaap  ---
Hi, thanks for the feedback and other test files!
I will try to figure out why my commit introduces this regression.

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


[Libreoffice-bugs] [Bug 117605] New: EDITING, UI - Calc distorted cell during numbers entry

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117605

Bug ID: 117605
   Summary: EDITING, UI - Calc distorted cell during numbers entry
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: k...@arhont.com

Created attachment 142085
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142085=edit
screenshot of a problem

I am experiencing a problem with the numbers entry in Calc on HighDPI screen.
It seems that the text simply overtypes the previous number and happens during
several scenarios.

The issue only occurs
1. when the numbers are entered and appear from right to left. When i press F2
on an empty cell and start typing numbers all looks fine.
2. when the entered numbers are different
3. when i press F2 on the cell with numbers in it.
4. when i type numbers over the cell that already contains numbers.

can be seen on the attached picture, the cell contains 11 and i enter 888.
opengl is turned off
the problem exists on two laptops, both with highdpi screens

os: kubuntu 18.04

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


[Libreoffice-bugs] [Bug 117603] Text At LibreOffice "Startup" Screen Not Entirely Accurate

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117603

Tom  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 117604] LibreOffice lose list element after conversion to HTML

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117604

--- Comment #1 from zhiganoff...@yandex.ru ---
Created attachment 142084
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142084=edit
file that is converted wrongly with LibreOffice

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


[Libreoffice-bugs] [Bug 117604] New: LibreOffice lose list element after conversion to HTML

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117604

Bug ID: 117604
   Summary: LibreOffice lose list element after conversion to HTML
   Product: LibreOffice
   Version: 6.0.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: zhiganoff...@yandex.ru

Description:
After conversion to HTML lists element's content appears out of list

Steps to Reproduce:
1. Open attached document
2. Save it as html
3. Reopen html file

Actual Results:  
List with two elements:
1 First.First
2 First.Second

Expected Results:
List with open element which represent list with two elements
 1.1  First.First
 1.2  First.Second


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; 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-commits] core.git: o3tl/qa

2018-05-13 Thread Andrea Gelmini
 o3tl/qa/test-sorted_vector.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d07f9e4d4ac6fb4d9074605b034e81cb7353f417
Author: Andrea Gelmini 
Date:   Sun May 13 21:01:33 2018 +0200

Fix typo

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

diff --git a/o3tl/qa/test-sorted_vector.cxx b/o3tl/qa/test-sorted_vector.cxx
index 2a1f87d93dc8..3de3f005f6c6 100644
--- a/o3tl/qa/test-sorted_vector.cxx
+++ b/o3tl/qa/test-sorted_vector.cxx
@@ -44,7 +44,7 @@ public:
 SwContent *p3 = new SwContent(3);
 std::unique_ptr p4( new SwContent(4) );
 
-// insert p3, p1 -> not presernt -> second is true
+// insert p3, p1 -> not present -> second is true
 CPPUNIT_ASSERT( aVec.insert(p3).second );
 CPPUNIT_ASSERT( aVec.insert(p1.get()).second );
 // insert p3 again -> already present -> second is false
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108580] Cannot run LibreOffice, api-ms-win-crt-runtime-l1-1-0.dll is missing ( for local solution see comment 7)

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108580

--- Comment #59 from Kumāra  ---
(In reply to Mike Kaganski from comment #58)

Thanks for taking the effort to explain. I'm much clearer of the picture.

Meaning, by right, it should work unless something is wrong with the user's
system.

I was misled by your exchange with SpongeBob that the fix was merely to detect
the lack of components the new LO depend on.

Anyway, I'll give LO6.0.4 a shot and report back.

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


[Libreoffice-bugs] [Bug 103303] [META] Desktop integration bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103303

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||67874


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=67874
[Bug 67874] Other: No icon association with MS Office files on OSX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 67874] Other: No icon association with MS Office files on OSX

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67874

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103303


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103303
[Bug 103303] [META] Desktop integration 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 77970] FILEOPEN: I get a macro warning on a spreadsheet with no macros

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77970

--- Comment #8 from listst...@fastmail.com.au ---
This bug is still present on (testedf with the spreadsheet uploaded as an
attachment):
Version: 6.0.3.2
Build ID: 1:6.0.3~rc2-0ubuntu0.16.04.1~lo2
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: kde4; 
Locale: en-AU (en_AU.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 107718] Some of old Hangul not rendering faithfully in vertical layout

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107718

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107735] FILESAVE, ODF: element in needs to reference a style of family type table

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107735

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 77970] FILEOPEN: I get a macro warning on a spreadsheet with no macros

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77970

--- 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 107508] XY Chart auto scaling on X axis with only 1 data point generates excessive number of major units

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107508

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 108897] [META] XLSX (OOXML) bug tracker

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897

Aron Budea  changed:

   What|Removed |Added

 Depends on||73063


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=73063
[Bug 73063] FILESAVE: LibreOffice Calc does not remember locale settings when
saving as .xls or .xlsx
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 73063] FILESAVE: LibreOffice Calc does not remember locale settings when saving as .xls or .xlsx

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73063

Aron Budea  changed:

   What|Removed |Added

   Keywords||filter:xls, filter:xlsx
 CC||ba...@caesar.elte.hu
   Hardware|Other   |All
Version|4.1.4.2 release |Inherited From OOo
 Blocks||109072, 108897

--- Comment #7 from Aron Budea  ---
Bug still in LO 6.1 alpha1.


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 109072] [META] XLS (binary) format bug tracker

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109072

Aron Budea  changed:

   What|Removed |Added

 Depends on||73063


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=73063
[Bug 73063] FILESAVE: LibreOffice Calc does not remember locale settings when
saving as .xls or .xlsx
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117598] Pattern fill goes missing when pasting between LibO applications

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117598

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #1 from Regina Henschel  ---
Created attachment 142083
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142083=edit
Call stack

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

I get the described behavior in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 5e34e3741de8aae10bf30889c227581818276186
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); Calc: CL
and a failed assertion and crash
Ausgelöste Ausnahme: Lesezugriffsverletzung
"this->pImpl._Mypair.**_Myval2**" war "nullptr".
Call stack is attached. 






and a crash in
Version: 6.1.0.0.alpha0+ (x64)
Build ID: 55b9706bea5aa9b654ab39bc7d56339422e17087
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-04-18_06:02:46
Locale: de-DE (de_DE); 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 117455] Add color drawing styles in Draw

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117455

--- Comment #6 from Regina Henschel  ---
Created attachment 142082
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142082=edit
Test for new styles of https://gerrit.libreoffice.org/#/c/54188/

I have tried the patch from https://gerrit.libreoffice.org/#/c/54188/.

I see these problems:
(1) Shapes, which have lighten and darken areas, lose these areas. That is not
a problem of gradient or missing line, as you can see in the page, where I have
applied gradients by toolbar.
(2) If you open the file in an actual release version, the gradients are black
to white. The reason is, that the needed draw:fill-gradient-name is missing in
the style in 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-ux-advise] [Bug 117455] Add color drawing styles in Draw

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117455

--- Comment #6 from Regina Henschel  ---
Created attachment 142082
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142082=edit
Test for new styles of https://gerrit.libreoffice.org/#/c/54188/

I have tried the patch from https://gerrit.libreoffice.org/#/c/54188/.

I see these problems:
(1) Shapes, which have lighten and darken areas, lose these areas. That is not
a problem of gradient or missing line, as you can see in the page, where I have
applied gradients by toolbar.
(2) If you open the file in an actual release version, the gradients are black
to white. The reason is, that the needed draw:fill-gradient-name is missing in
the style in the file.

-- 
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-commits] core.git: Branch 'feature/cib_contract891' - 6 commits - download.lst external/curl Makefile.fetch RepositoryExternal.mk

2018-05-13 Thread Michael Stahl
 Makefile.fetch   |2 
 RepositoryExternal.mk|2 
 download.lst |3 
 external/curl/ExternalPackage_curl.mk|   10 
 external/curl/ExternalProject_curl.mk|   37 +
 external/curl/NSS-support-for-CERTINFO-feature.patch |  391 ---
 external/curl/UnpackedTarball_curl.mk|7 
 external/curl/curl-7.26.0_win-proxy.patch|   97 ++--
 external/curl/curl-msvc-disable-protocols.patch.1|   35 +
 external/curl/curl-msvc-schannel.patch.1 |   22 -
 external/curl/curl-msvc.patch.1  |   48 +-
 11 files changed, 140 insertions(+), 514 deletions(-)

New commits:
commit 596a17b2a616a627c9ab17dc4dd29c7ab6db
Author: Michael Stahl 
Date:   Wed Jan 24 11:44:26 2018 +0100

curl: upgrade to release 7.58.0

* fixes 2 CVEs
* disable some new optional dependencies

Change-Id: If7725d126e68de04b67969a83c0ea08573a43679
Reviewed-on: https://gerrit.libreoffice.org/48493
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 
(cherry picked from commit 5e3799a0c8a92918b9e1868c942f8918ff61c003)
Reviewed-on: https://gerrit.libreoffice.org/48539
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/download.lst b/download.lst
index 2546b381f655..4c8ea886c240 100644
--- a/download.lst
+++ b/download.lst
@@ -2,8 +2,8 @@ ABW_MD5SUM := 40fa48e03b1e28ae0325cc34b35bc46d
 export ABW_TARBALL := libabw-0.0.2.tar.bz2
 CDR_MD5SUM := fbcd8619fc6646f41d527c1329102998
 export CDR_TARBALL := libcdr-0.0.15.tar.bz2
-CURL_MD5SUM := 7ce35f207562674e71dbada6891b37e3f043c1e7a82915cb9c2a17ad3a9d659b
-export CURL_TARBALL := curl-7.57.0.tar.gz
+CURL_MD5SUM := cc245bf9a1a42a45df491501d97d5593392a03f7b4f07b952793518d97666115
+export CURL_TARBALL := curl-7.58.0.tar.gz
 EBOOK_MD5SUM := 2f1ceaf2ac8752ed278e175447d9b978
 export EBOOK_TARBALL := libe-book-0.0.3.tar.bz2
 ETONYEK_MD5SUM := 3c50bc60394d1f2675fbf9bd22581363
diff --git a/external/curl/ExternalProject_curl.mk 
b/external/curl/ExternalProject_curl.mk
index 4efc3ef03cff..457b66239cc2 100644
--- a/external/curl/ExternalProject_curl.mk
+++ b/external/curl/ExternalProject_curl.mk
@@ -40,13 +40,21 @@ $(call gb_ExternalProject_get_state_target,curl,build):
CPPFLAGS="$(curl_CPPFLAGS)" \
LDFLAGS=$(curl_LDFLAGS) \
./configure \
-   $(if $(filter MACOSX IOS,$(OS)),\
-   --with-darwinssl, \
-   --with-nss$(if $(filter 
NO,$(SYSTEM_NSS)),="$(call gb_UnpackedTarball_get_dir,nss)/dist/out")) \
-   --without-ssl \
-   --without-libidn --enable-ftp --enable-ipv6 
--enable-http --disable-gopher \
-   --disable-file --disable-ldap --disable-telnet 
--disable-dict --without-libssh2 \
-   $(if $(filter 
YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \
+   $(if $(filter IOS MACOSX,$(OS)),\
+   --with-darwinssl,\
+   $(if $(ENABLE_NSS),--with-nss$(if 
$(SYSTEM_NSS),,="$(call 
gb_UnpackedTarball_get_dir,nss)/dist/out"),--without-nss)) \
+   --without-ssl --without-gnutls --without-polarssl 
--without-cyassl --without-axtls --without-mbedtls \
+   --enable-ftp --enable-http --enable-ipv6 \
+   --without-libidn2 --without-libpsl --without-librtmp \
+   --without-libssh2 --without-metalink --without-nghttp2 \
+   --without-libssh --without-brotli \
+   --disable-ares \
+   --disable-dict --disable-file --disable-gopher 
--disable-imap \
+   --disable-ldap --disable-ldaps --disable-manual 
--disable-pop3 \
+   --disable-rtsp --disable-smb --disable-smtp 
--disable-telnet  \
+   --disable-tftp  \
+   $(if $(filter LINUX,$(OS)),--without-ca-bundle 
--without-ca-path) \
+   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
$(if $(filter 
TRUE,$(DISABLE_DYNLOADING)),--disable-shared,--disable-static) \
$(if $(filter TRUE,$(ENABLE_DEBUG)),--enable-debug) \
&& cd lib \
commit 8ce5fffd5b57f7303d7df5830de30af870c04660
Author: Michael Stahl 
Date:   Wed Nov 29 11:30:49 2017 +0100

curl: upgrade to release 7.57.0

fixes 3 CVEs

Change-Id: Idf5eee66fac399a2b338c2a9aaea2f56d2cb3a51
Reviewed-on: https://gerrit.libreoffice.org/45480
Tested-by: Jenkins 
Reviewed-by: 

[Libreoffice-bugs] [Bug 117601] Crash in: libstdc++.so.6.0.22 on merge cells

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117601

Samuel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Samuel  ---
There are a lot of crash reports since version 6:
https://crashreport.libreoffice.org/stats/signature/libstdc++.so.6.0.22

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


[Libreoffice-bugs] [Bug 117601] Crash in: libstdc++.so.6.0.22 on merge cells

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117601

--- Comment #4 from Samuel Wolf  ---
This user has the same issue:
https://superuser.com/questions/1315717/libre-office-writer-crashes-when-merging-table-cells

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


[Libreoffice-bugs] [Bug 100366] [META] Impress/Draw table bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100366

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117507


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117507
[Bug 117507] The table limit of 75 rows, 75 columns is to high. LibreOffice
gets unresponsive
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117507] The table limit of 75 rows, 75 columns is to high. LibreOffice gets unresponsive

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117507

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||100366


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100366
[Bug 100366] [META] Impress/Draw table 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 112873] [META] Impress/Draw comment bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112873

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117542


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117542
[Bug 117542] Copying/pasting a sheet/page in Impress/Draw doesn't include
comments
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102593] [META] Paste bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102593

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117542


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117542
[Bug 117542] Copying/pasting a sheet/page in Impress/Draw doesn't include
comments
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117542] Copying/pasting a sheet/page in Impress/Draw doesn' t include comments

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117542

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||112873, 102593


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=112873
[Bug 112873] [META] Impress/Draw comment 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 117484] Clicking into a cell of table will select the full table instead of entering the corresponding cell

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117484

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||100366


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100366
[Bug 100366] [META] Impress/Draw table 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 100366] [META] Impress/Draw table bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100366

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117484


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117484
[Bug 117484] Clicking into a cell of table will select the full table instead
of entering the corresponding cell
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117503] FILESAVE: DOC: Incorrect page break added after RT

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117503

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108519, 112762


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108519
[Bug 108519] [META] Page break bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=112762
[Bug 112762] [META] DOC (binary) page-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108519] [META] Page break bugs and enhancements

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108519

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117503


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117503
[Bug 117503] FILESAVE: DOC: Incorrect page break added after RT
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112762] [META] DOC (binary) page-related issues

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112762

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117503


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117503
[Bug 117503] FILESAVE: DOC: Incorrect page break added after RT
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117505] FILESAVE: RTF: header size changes after RT

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117505

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||113423


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113423
[Bug 113423] [META] RTF (text) header and footer-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113423] [META] RTF (text) header and footer-related issues

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113423

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117505


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117505
[Bug 117505] FILESAVE: RTF: header size changes after RT
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 67874] Other: No icon association with MS Office files on OSX

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67874

whocares  changed:

   What|Removed |Added

   Keywords||skillUI

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


[Libreoffice-bugs] [Bug 107830] [META] DOCX (OOXML) paragraph-related issues

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107830

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117504


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117504
[Bug 117504] FILEOPEN: DOCX: Before text indent is ignored
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117601] Crash in: libstdc++.so.6.0.22 on merge cells

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117601

--- Comment #3 from Samuel Wolf  ---
Same with LibreOffice 6.1 Dev.
* open Writer
* create table 3x5
* merge the middle row
--> crash

Version: 6.1.0.0.alpha1
Build ID: cb47f0d320994e001bc38dc2ee9b7d957b15e6ab
CPU threads: 4; OS: Linux 4.9; UI render: default; VCL: gtk2; 
Locale: de-DE (de_DE.UTF-8); Calc: group

http://crashreport.libreoffice.org/stats/crash_details/342f3320-2a62-44e8-98c6-5380e44ea5c0

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


[Libreoffice-bugs] [Bug 67874] Other: No icon association with MS Office files on OSX

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67874

--- Comment #6 from aurkiu...@gmail.com ---
Still present in LO 6.0.3.2 in MacOS 10.13.4. Here is the list of file types
that should show an icon and do not. They show the generic blank icon of the
unknown file types.

LO has been fresh installed and icon cache deleted as well before. LO is the
default application for all those file types.

.xlt, .xls, .xlsm, .xlsx (both variants), .pps, .pot, .ppt, .ppsx (both
variants), .potm (both variants), .pptx (both variants), .dot, .doc, .docx
(both variants), .docm, .pptm.

Suggested bug fix. I suggest those MS Office documents files to show
oasis-text.icns, oasis-spreadsheet.icns, oasis-presentation.icns and MS
document templates to show oasis-text-template.icns,
oasis-spreadsheet-template.icns and oasis-presentation-template.icns.

Operative System:MacOS 10.13.4
Version: 6.0.3.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 112969] [META] DOCX (OOXML) field-related issues

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112969

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117501


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 117501] FILEOPEN: DOCX: Incorrect field character style

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117501

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||112969


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 117601] Crash in: libstdc++.so.6.0.22 on merge cells

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117601

--- Comment #2 from Samuel Wolf  ---
Created attachment 142081
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142081=edit
Example Table

I try to merge the marked row and LibreOffice 6.0 crash reproducible 5-6 times.
Now same document (never recovered after crash) do not crash LibreOffice.

See this on minimum three Debian 9.4 workstations (Intel, Nvidia GPU).
Not sure what's the root cause of this issue, but sometimes it need longer to
reproduce.

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


[Libreoffice-bugs] [Bug 117524] Impress moving shapes of it's own accord

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117524

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #3 from Jean-Baptiste Faure  ---
(In reply to secondarymc from comment #2)
> It occured in stable version (5.4.x) on Win 7 Pro machine.
> 
> Obviously I won't reinstall the 5.4.x version just to reproduce the error.

Ok, closing as WorksForME;

Best regards. JBF

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


[Libreoffice-bugs] [Bug 117539] Crash after cut and paste operation of a chart stick

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117539

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||ba...@caesar.elte.hu
 Blocks||105537
 Ever confirmed|0   |1

--- Comment #2 from Aron Budea  ---
Repeating the steps from the description in a debug build, after the first cut
and paste, there is an assert:
Expression: eType == OBJECTTYPE_DATA_SERIES
https://opengrok.libreoffice.org/xref/core/chart2/source/controller/sidebar/ChartSeriesPanel.cxx#271

This also appears to be a regression, as there's no problem in 6.0. Bibisected
to the following commit using repo bibisect-win32-6.1. Adding Cc: to Noel
Grandin, please take a look.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=3d44b720f58366398e7f59c00dba6339712a670f
author  Noel Grandin  2018-04-12
15:40:12 +0200
committer   Noel Grandin  2018-04-16
08:22:30 +0200

loplugin:useuniqueptr in SfxItemPool_Impl


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 105537] [META] Assertion failed crashes

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105537

Aron Budea  changed:

   What|Removed |Added

 Depends on||117539


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117539
[Bug 117539] Crash after cut and paste operation of a chart stick
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117603] New: Text At LibreOffice "Startup" Screen Not Entirely Accurate

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117603

Bug ID: 117603
   Summary: Text At LibreOffice "Startup" Screen Not Entirely
Accurate
   Product: LibreOffice
   Version: 5.0 all versions
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jmadero@gmail.com

Description:
When you start LibreOffice without selecting an application (what I call the
startup, run dev version like so "/data/libreoffice/instdir/program/soffice") -
then text is not as descriptive as it could be. I think that this is only the
case when you have no recent documents.

Text: 
"Welcome to LibreOfficeDev.
Drop a document here or pick an app from the left side to create one."

Proposed:
"Welcome to LibreOfficeDev
Open an existing document by selecting "Open File" or "Remote Files" on the
left or by dragging and dropping a file onto this screen. Create a new document
by selecting the appropriate app on the left side." 

Obviously trivial.

Steps to Reproduce:
1. Open LibreOffice (not into a specific application)
2. Clear all recent documents
3. Close LibreOffice
4. Open LibreOffice again (not into a specific application)

Read text.

Actual Results:  
Text is accurate but not a fully descriptive set of instructions.

Expected Results:
Clarify everything that can be done from that screen.


Reproducible: Always


User Profile Reset: Yes



Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/66.0.3359.139 Safari/537.36 OPR/53.0.2907.37

-- 
You are receiving this mail because:
You 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 'refs/notes/commits' - 48/28086a389647c04a5854b07587b229c9176269

2018-05-13 Thread Caolán McNamara
 48/28086a389647c04a5854b07587b229c9176269 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit b0f4dfacdb7708e0377050f659a1240b3439e0e2
Author: Caolán McNamara 
Date:   Sun May 13 21:23:54 2018 +0100

Notes added by 'git notes add'

diff --git a/48/28086a389647c04a5854b07587b229c9176269 
b/48/28086a389647c04a5854b07587b229c9176269
new file mode 100644
index ..e95b17218191
--- /dev/null
+++ b/48/28086a389647c04a5854b07587b229c9176269
@@ -0,0 +1 @@
+prefer: f5ca04caca1b6888cdc6b00b8465a53e6d5cf38d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2018-05-13 Thread Caolán McNamara
 source/text/swriter/01/mm_savemergeddoc.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 88fef6367411f87b870369389ac79ce43bcf0d7b
Author: Caolán McNamara 
Date:   Sun May 13 18:06:52 2018 +0100

update helpids

Change-Id: I32fcc7514ed75fcf9c5a140d1a9f70e70001c3d1

diff --git a/source/text/swriter/01/mm_savemergeddoc.xhp 
b/source/text/swriter/01/mm_savemergeddoc.xhp
index 3451bb256..c3b841357 100644
--- a/source/text/swriter/01/mm_savemergeddoc.xhp
+++ b/source/text/swriter/01/mm_savemergeddoc.xhp
@@ -49,11 +49,11 @@
 From
 Selects a range of records starting at the record number in the 
From box and ending at the record number in the To 
box.
 
-
+
 From
 Enter the number of the first record to include in the mail 
merge.
 
-
+
 To
 Enter the number of the last record to include in the mail 
merge.
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-05-13 Thread Caolán McNamara
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 96337c845c026236975d6a8af52867a5e8d28430
Author: Caolán McNamara 
Date:   Sun May 13 18:06:52 2018 +0100

Updated core
Project: help  88fef6367411f87b870369389ac79ce43bcf0d7b

update helpids

Change-Id: I32fcc7514ed75fcf9c5a140d1a9f70e70001c3d1

diff --git a/helpcontent2 b/helpcontent2
index d6cf5222fb61..88fef6367411 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d6cf5222fb6188eed6bad6cb3e0f5ee9bdafb5d2
+Subproject commit 88fef6367411f87b870369389ac79ce43bcf0d7b
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117497] [META] Missing Colibre icons

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #1 from Thomas Lendo  ---
Xisco, can we use this meta for Colibre icons in general?

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


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - solenv/bin svtools/source

2018-05-13 Thread Matthias Seidel
 solenv/bin/modules/ExtensionsLst.pm |2 +-
 svtools/source/dialogs/addresstemplate.cxx  |2 +-
 svtools/source/filter/FilterConfigCache.cxx |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4828086a389647c04a5854b07587b229c9176269
Author: Matthias Seidel 
Date:   Sun May 13 19:38:57 2018 +

Fixed typos (successfull -> successful)

diff --git a/solenv/bin/modules/ExtensionsLst.pm 
b/solenv/bin/modules/ExtensionsLst.pm
index 7b4eaa4f7cf3..8754d8b2e1dc 100644
--- a/solenv/bin/modules/ExtensionsLst.pm
+++ b/solenv/bin/modules/ExtensionsLst.pm
@@ -483,7 +483,7 @@ sub Download (@)
 my $last_was_redirect = 0;
 my $response = $agent->get($URL);
 
-# When download was successfull then check the md5 checksum and rename 
the .part file
+# When download was successful then check the md5 checksum and rename 
the .part file
 # into the actual extension name.
 if ($response->is_success())
 {
diff --git a/svtools/source/dialogs/addresstemplate.cxx 
b/svtools/source/dialogs/addresstemplate.cxx
index 0b73ed8120fc..5771acb22122 100644
--- a/svtools/source/dialogs/addresstemplate.cxx
+++ b/svtools/source/dialogs/addresstemplate.cxx
@@ -834,7 +834,7 @@ void AssignmentPersistentData::Commit()
 
 WaitObject aWaitCursor(this);
 
-// no matter what we do here, we handled the currently selected data 
source (no matter if successfull or not)
+// no matter what we do here, we handled the currently selected data 
source (no matter if successful or not)
 m_aDatasource.SaveValue();
 
 // create an interaction handler (may be needed for connecting)
diff --git a/svtools/source/filter/FilterConfigCache.cxx 
b/svtools/source/filter/FilterConfigCache.cxx
index 08901ce113a8..d18d28902d55 100644
--- a/svtools/source/filter/FilterConfigCache.cxx
+++ b/svtools/source/filter/FilterConfigCache.cxx
@@ -129,7 +129,7 @@ String 
FilterConfigCache::FilterConfigCacheEntry::GetShortName()
 specify, which config package should be opened.
 Must be one of the defined static values TYPEPKG or FILTERPKG.
 
-@return A valid object if open was successfull. The access on opened
+@return A valid object if open was successful. The access on opened
 data will be readonly. It returns NULL in case open failed.
 
 @throws It let pass RuntimeExceptions only.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117497


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 117497] [META] Missing Colibre icons

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||106228
  Alias|Missing-Colibre-Icons   |Icon-Theme-Colibre


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 117468] FILESAVE Writer crashes trying to save image as BMP, PNG, TIFF, JPEG

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117468

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||109323


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109323
[Bug 109323] [META] Graphic export bugs and enhancements (jpg, png, eps, tiff,
gif ...)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 109323] [META] Graphic export bugs and enhancements (jpg, png, eps, tiff, gif ...)

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109323

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117468


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117468
[Bug 117468] FILESAVE Writer crashes trying to save image as BMP, PNG, TIFF,
JPEG
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116968

Thomas Lendo  changed:

   What|Removed |Added

 Blocks|117531  |
 Depends on||117531


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117531
[Bug 117531] Firebird: Migration: Migration function must recognize opening
from Beamer OR Mail Merge Wizard and if started automatically save the file
after successful run
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117531] Firebird: Migration: Migration function must recognize opening from Beamer OR Mail Merge Wizard and if started automatically save the file after successful run

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117531

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||116968
 Depends on|116968  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116968
[Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116968

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117510


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117510
[Bug 117510] Firebird: Migration: Data unavailable when migration is run
against HSQL ODB opened in Beamer (from Writer or 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 117510] Firebird: Migration: Data unavailable when migration is run against HSQL ODB opened in Beamer (from Writer or Calc)

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117510

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||116968


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116968
[Bug 116968] [META] Migrating existing embedded HSQLDB databases to Firebird
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117583] LibreOffice writer on MAC only prints landscape and prints partial of portrait document sideways

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117583

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #1 from Aron Budea  ---
This should be fixed, please try with versions 5.4.6 or 6.0.4.

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

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


[Libreoffice-bugs] [Bug 92190] PRINTs landscape despite configured as portrait (Mac OS)

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92190

Aron Budea  changed:

   What|Removed |Added

 CC||dhei...@cfl.rr.com

--- Comment #115 from Aron Budea  ---
*** Bug 117583 has been marked as a duplicate of this bug. ***

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


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

2018-05-13 Thread Caolán McNamara
 sw/inc/swabstdlg.hxx |2 
 sw/source/ui/dbui/mmresultdialogs.cxx|   87 +++
 sw/source/ui/dialog/swdlgfact.cxx|6 -
 sw/source/ui/dialog/swdlgfact.hxx|2 
 sw/source/ui/inc/mmresultdialogs.hxx |   27 +++-
 sw/source/uibase/app/apphdl.cxx  |2 
 sw/uiconfig/swriter/ui/mmresultsavedialog.ui |   40 +---
 7 files changed, 87 insertions(+), 79 deletions(-)

New commits:
commit 4a1cdfef802deacf119c56ea51d5fddd59aeb17a
Author: Caolán McNamara 
Date:   Sun May 13 19:33:11 2018 +0100

weld SwMMResultSaveDialog

and set a proper parent for it

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

diff --git a/sw/inc/swabstdlg.hxx b/sw/inc/swabstdlg.hxx
index 67aecd817661..5caf37cb4c5b 100644
--- a/sw/inc/swabstdlg.hxx
+++ b/sw/inc/swabstdlg.hxx
@@ -498,7 +498,7 @@ public:
 // for tabpage
 virtual CreateTabPage   GetTabPageCreatorFunc( sal_uInt16 nId 
) = 0;
 
-virtual void ExecuteMMResultSaveDialog() = 0;
+virtual void ExecuteMMResultSaveDialog(weld::Window* pParent) = 0;
 virtual void ExecuteMMResultPrintDialog(weld::Window* pParent) = 0;
 virtual void ExecuteMMResultEmailDialog() = 0;
 
diff --git a/sw/source/ui/dbui/mmresultdialogs.cxx 
b/sw/source/ui/dbui/mmresultdialogs.cxx
index b2f8cb2c3d7e..b0c82cbc2ac5 100644
--- a/sw/source/ui/dbui/mmresultdialogs.cxx
+++ b/sw/source/ui/dbui/mmresultdialogs.cxx
@@ -208,50 +208,36 @@ public:
 void SetBCC(const OUString& rSet) {m_xBCCED->set_text(rSet);}
 };
 
-SwMMResultSaveDialog::SwMMResultSaveDialog()
-: SfxModalDialog(nullptr, "MMResultSaveDialog", 
"modules/swriter/ui/mmresultsavedialog.ui"),
-m_bCancelSaving(false)
+SwMMResultSaveDialog::SwMMResultSaveDialog(weld::Window* pParent)
+: GenericDialogController(pParent, 
"modules/swriter/ui/mmresultsavedialog.ui", "MMResultSaveDialog")
+, m_bCancelSaving(false)
+, m_xSaveAsOneRB(m_xBuilder->weld_radio_button("singlerb"))
+, m_xSaveIndividualRB(m_xBuilder->weld_radio_button("individualrb"))
+, m_xFromRB(m_xBuilder->weld_radio_button("fromrb"))
+, m_xFromNF(m_xBuilder->weld_spin_button("from"))
+, m_xToFT(m_xBuilder->weld_label("toft"))
+, m_xToNF(m_xBuilder->weld_spin_button("to"))
+, m_xOKButton(m_xBuilder->weld_button("ok"))
 {
-get(m_pSaveAsOneRB, "singlerb");
-get(m_pSaveIndividualRB, "individualrb");
-get(m_pFromRB, "fromrb");
-get(m_pFromNF, "from-nospin");
-get(m_pToFT, "toft");
-get(m_pToNF, "to-nospin");
-get(m_pOKButton, "ok");
-
-Link aLink = LINK(this, SwMMResultSaveDialog, 
DocumentSelectionHdl_Impl);
-m_pSaveAsOneRB->SetClickHdl(aLink);
-m_pSaveIndividualRB->SetClickHdl(aLink);
-m_pFromRB->SetClickHdl(aLink);
+Link aLink = LINK(this, SwMMResultSaveDialog, 
DocumentSelectionHdl_Impl);
+m_xSaveAsOneRB->connect_toggled(aLink);
+m_xSaveIndividualRB->connect_toggled(aLink);
+m_xFromRB->connect_toggled(aLink);
 // m_pSaveAsOneRB is the default, so disable m_pFromNF and m_pToNF 
initially.
-aLink.Call(m_pSaveAsOneRB);
+aLink.Call(*m_xSaveAsOneRB);
 SwView* pView = ::GetActiveView();
 std::shared_ptr xConfigItem = 
pView->GetMailMergeConfigItem();
 assert(xConfigItem);
 sal_Int32 nCount = xConfigItem->GetMergedDocumentCount();
-m_pToNF->SetMax(nCount);
-m_pToNF->SetValue(nCount);
+m_xFromNF->set_max(nCount);
+m_xToNF->set_max(nCount);
+m_xToNF->set_value(nCount);
 
-m_pOKButton->SetClickHdl(LINK(this, SwMMResultSaveDialog, 
SaveOutputHdl_Impl));
+m_xOKButton->connect_clicked(LINK(this, SwMMResultSaveDialog, 
SaveOutputHdl_Impl));
 }
 
 SwMMResultSaveDialog::~SwMMResultSaveDialog()
 {
-disposeOnce();
-}
-
-void SwMMResultSaveDialog::dispose()
-{
-m_pSaveAsOneRB.clear();
-m_pSaveIndividualRB.clear();
-m_pFromRB.clear();
-m_pFromNF.clear();
-m_pToFT.clear();
-m_pToNF.clear();
-m_pOKButton.clear();
-
-SfxModalDialog::dispose();
 }
 
 SwMMResultPrintDialog::SwMMResultPrintDialog(weld::Window* pParent)
@@ -440,12 +426,12 @@ void SwMMResultEmailDialog::FillInEmailSettings()
 
 }
 
-IMPL_LINK(SwMMResultSaveDialog, DocumentSelectionHdl_Impl, Button*, pButton, 
void)
+IMPL_LINK(SwMMResultSaveDialog, DocumentSelectionHdl_Impl, 
weld::ToggleButton&, rButton, void)
 {
-bool bEnableFromTo = pButton == m_pFromRB;
-m_pFromNF->Enable(bEnableFromTo);
-m_pToFT->Enable(bEnableFromTo);
-m_pToNF->Enable(bEnableFromTo);
+bool bEnableFromTo =  == m_xFromRB.get();
+m_xFromNF->set_sensitive(bEnableFromTo);
+m_xToFT->set_sensitive(bEnableFromTo);
+

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

2018-05-13 Thread Caolán McNamara
 sw/source/ui/misc/glossary.cxx |  132 +++--
 sw/uiconfig/swriter/ui/renameautotextdialog.ui |   42 +++
 2 files changed, 76 insertions(+), 98 deletions(-)

New commits:
commit 9f55cc13d64b4c8d60b1ff2e93ed854b0dccad46
Author: Caolán McNamara 
Date:   Sun May 13 17:55:03 2018 +0100

weld SwNewGlosNameDlg

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

diff --git a/sw/source/ui/misc/glossary.cxx b/sw/source/ui/misc/glossary.cxx
index b38de3134e14..c62a67a214c6 100644
--- a/sw/source/ui/misc/glossary.cxx
+++ b/sw/source/ui/misc/glossary.cxx
@@ -114,64 +114,54 @@ struct GroupUserData
 };
 
 // dialog for new block name
-class SwNewGlosNameDlg : public ModalDialog
+class SwNewGlosNameDlg : public weld::GenericDialogController
 {
-VclPtrm_pNewName;
 TextFilter  m_aNoSpaceFilter;
-VclPtrm_pNewShort;
-VclPtrm_pOk;
-VclPtrm_pOldName;
-VclPtrm_pOldShort;
+VclPtr  m_pParent;
+
+std::unique_ptr m_xNewName;
+std::unique_ptr m_xNewShort;
+std::unique_ptr m_xOk;
+std::unique_ptr m_xOldName;
+std::unique_ptr m_xOldShort;
 
 protected:
-DECL_LINK( Modify, Edit&, void );
-DECL_LINK(Rename, Button*, void);
+DECL_LINK(Modify, weld::Entry&, void);
+DECL_LINK(Rename, weld::Button&, void);
+DECL_LINK(TextFilterHdl, OUString&, bool);
 
 public:
-SwNewGlosNameDlg( vcl::Window* pParent,
-  const OUString& rOldName,
-  const OUString& rOldShort );
-virtual ~SwNewGlosNameDlg() override;
-virtual void dispose() override;
-
-OUString GetNewName()  const { return m_pNewName->GetText(); }
-OUString GetNewShort() const { return m_pNewShort->GetText(); }
-};
+SwNewGlosNameDlg(SwGlossaryDlg* pParent,
+ const OUString& rOldName,
+ const OUString& rOldShort);
 
-SwNewGlosNameDlg::SwNewGlosNameDlg(vcl::Window* pParent,
-const OUString& rOldName,
-const OUString& rOldShort )
-: ModalDialog(pParent, "RenameAutoTextDialog",
-"modules/swriter/ui/renameautotextdialog.ui")
-{
-get(m_pNewName, "newname");
-get(m_pNewShort, "newsc");
-m_pNewShort->SetTextFilter(_aNoSpaceFilter);
-get(m_pOk, "ok");
-get(m_pOldName, "oldname");
-get(m_pOldShort, "oldsc");
-
-m_pOldName->SetText( rOldName );
-m_pOldShort->SetText( rOldShort );
-m_pNewName->SetModifyHdl(LINK(this, SwNewGlosNameDlg, Modify ));
-m_pNewShort->SetModifyHdl(LINK(this, SwNewGlosNameDlg, Modify ));
-m_pOk->SetClickHdl(LINK(this, SwNewGlosNameDlg, Rename ));
-m_pNewName->GrabFocus();
-}
+OUString GetNewName()  const { return m_xNewName->get_text(); }
+OUString GetNewShort() const { return m_xNewShort->get_text(); }
+};
 
-SwNewGlosNameDlg::~SwNewGlosNameDlg()
+IMPL_LINK(SwNewGlosNameDlg, TextFilterHdl, OUString&, rTest, bool)
 {
-disposeOnce();
+rTest = m_aNoSpaceFilter.filter(rTest);
+return true;
 }
 
-void SwNewGlosNameDlg::dispose()
+SwNewGlosNameDlg::SwNewGlosNameDlg(SwGlossaryDlg* pParent, const OUString& 
rOldName, const OUString& rOldShort)
+: GenericDialogController(pParent->GetFrameWeld(), 
"modules/swriter/ui/renameautotextdialog.ui", "RenameAutoTextDialog")
+, m_pParent(pParent)
+, m_xNewName(m_xBuilder->weld_entry("newname"))
+, m_xNewShort(m_xBuilder->weld_entry("newsc"))
+, m_xOk(m_xBuilder->weld_button("ok"))
+, m_xOldName(m_xBuilder->weld_entry("oldname"))
+, m_xOldShort(m_xBuilder->weld_entry("oldsc"))
 {
-m_pNewName.clear();
-m_pNewShort.clear();
-m_pOk.clear();
-m_pOldName.clear();
-m_pOldShort.clear();
-ModalDialog::dispose();
+m_xNewShort->connect_insert_text(LINK(this, SwNewGlosNameDlg, 
TextFilterHdl));
+
+m_xOldName->set_text(rOldName);
+m_xOldShort->set_text(rOldShort);
+m_xNewName->connect_changed(LINK(this, SwNewGlosNameDlg, Modify ));
+m_xNewShort->connect_changed(LINK(this, SwNewGlosNameDlg, Modify ));
+m_xOk->connect_clicked(LINK(this, SwNewGlosNameDlg, Rename ));
+m_xNewName->grab_focus();
 }
 
 // query / set currently set group
@@ -503,17 +493,15 @@ IMPL_LINK( SwGlossaryDlg, MenuHdl, Menu *, pMn, bool )
 else if (sItemIdent == "rename")
 {
 
m_pShortNameEdit->SetText(pGlossaryHdl->GetGlossaryShortName(m_pNameED->GetText()));
-ScopedVclPtrInstance pNewNameDlg(this, 
m_pNameED->GetText(),
-   
m_pShortNameEdit->GetText());
-if( RET_OK == pNewNameDlg->Execute() &&
-pGlossaryHdl->Rename( m_pShortNameEdit->GetText(),
-

[Libreoffice-bugs] [Bug 117524] Impress moving shapes of it's own accord

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117524

--- Comment #2 from secondar...@gmail.com ---
It occured in stable version (5.4.x) on Win 7 Pro machine.

Obviously I won't reinstall the 5.4.x version just to reproduce the error.

Kind regards,
MC

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


[Libreoffice-bugs] [Bug 51780] [META] Default to Firebird not HSQLDB in Base (for _new_ files )

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51780

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117513


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117513
[Bug 117513] Firebird: DATALOSS Data entered into embedded firebird table in
the Beamer window is lost
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117513] Firebird: DATALOSS Data entered into embedded firebird table in the Beamer window is lost

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117513

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||51780


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51780
[Bug 51780] [META] Default to Firebird not HSQLDB in Base (for _new_ files)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117527] Firebird: EDIT: Table wizard does not set field properties " AutoValue" to "Yes" for user selected primary key field.

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117527

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||51780


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51780
[Bug 51780] [META] Default to Firebird not HSQLDB in Base (for _new_ files)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51780] [META] Default to Firebird not HSQLDB in Base (for _new_ files )

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51780

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117527


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117527
[Bug 117527] Firebird: EDIT: Table wizard does not set field properties
"AutoValue" to "Yes" for user selected primary key field.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112706] [META] DOC (binary) bullet and numbering list-related issues

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112706

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117564


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117564
[Bug 117564] text garbled in a bulleted list item in a DOC
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117564] text garbled in a bulleted list item in a DOC

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117564

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||112706


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112706
[Bug 112706] [META] DOC (binary) bullet and numbering list-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104945] Problems copying paragraphs, like the questions of an examination

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104945

Jonathan Fisher  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #13 from Jonathan Fisher  ---
Thank you for reporting the bug. I can confirm that the bug is present in:

Version: 6.0.4.2 (x64)
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: CL

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


Fwd: Gsoc 2018 Introduction

2018-05-13 Thread Raghav Lalvani
-- Forwarded message --
From: Raghav Lalvani 
Date: Mon, May 14, 2018 at 12:04 AM
Subject: Gsoc 2018 Introduction
To: libreoffice@lists.freedesktop.org


Hello Everyone,



Let me introduce myself: I am Raghav Lalvani currently pursuing Btech in
CSE from Christ University, Bengaluru, India.



My project aims at improving the LibreOffice Android Client by fixing its
most annoying bugs.



Adding new features to document viewer and experimental editing part,
Enhancing overall UI/UX, performance and Making it more developer friendly
by improving documentation and inline commands.

https://summerofcode.withgoogle.com/projects/#4871954650103808



I am in the middle of LO Build on windows.



Thanks for the opportunity and I look forward to a great summer working
with LibreOffice.



Regard,

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


Gsoc 2018 Introduction

2018-05-13 Thread Raghav Lalvani
Hello Everyone,

 

Let me introduce myself: I am Raghav Lalvani currently pursuing Btech in CSE
from Christ University, Bengaluru, India.

 

My project aims at improving the LibreOffice Android Client by fixing its
most annoying bugs.

 

Adding new features to document viewer and experimental editing part,
Enhancing overall UI/UX, performance and Making it more developer friendly
by improving documentation and inline commands.

https://summerofcode.withgoogle.com/projects/#4871954650103808

 

I am in the middle of LO Build on windows.

 

Thanks for the opportunity and I look forward to a great summer working with
LibreOffice.

 

Regard,

Raghav

 

 

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


[Libreoffice-bugs] [Bug 117214] Printing of text in black does not work with A5 pages

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117214

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
Summary|Impressão de texto em preto |Printing of text in black
   |apenas não funciona se  |does not work with A5 pages
   |utilizar o tamanho do papel |
   |em A5   |
 Ever confirmed|0   |1

--- Comment #2 from Buovjaga  ---
What printer model are you using?
Please describe step 5 in more detail.
Please also test with LibreOffice version 6.0.4.

Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists. Change to RESOLVED
WORKSFORME, if the problem went away.

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


[Libreoffice-bugs] [Bug 117572] Ubuntu upgrade to 18.04 adversely affecting some Libreoffice programs

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117572

--- Comment #3 from Roger Jarvis  ---
Following MM's suggestion:
are 
1.  The only Desktop options the gear mechanism offers are Wayland (default),
Ubuntu and LXPt, and I haven't been able to discover how to import
alternatives.  LXPt simply gives me a desktop from which I can go nowhere (have
to shut down with the computer's power button), but Ubuntu looks the same as
Wayland.

2.  On Ubuntu, Writer, Calc and Base will respond correctly to the superkey +
arrow commands if any other LibreOffice program is running, but not if they are
open alone.  Otherwise, things are exactly as described for Wayland.

3.  However, since achieving this on Ubuntu, Wayland is now responding in
exactly the same way!

4.  Whichever desktop I select from the gear mechanism I usually now have to
put the password in least twice, and sometimes it seems to be loading up but
then freezes; I have to use the power button and start again.  Closing down and
restarting processes also much longer that 17.10 was.

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


[Libreoffice-bugs] [Bug 117333] FIREBIRD: Migration: After first SQL-error nothing else will be imported

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117333

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 117333] FIREBIRD: Migration: After first SQL-error nothing else will be imported

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117333

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Created attachment 142080
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142080=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today + enable-dbgutil, I got
an assert.
Here are the main lines of bt:
#4  0x7fffc9e8845c in (anonymous
namespace)::lcl_getDataTypeFromHsql(rtl::OUString const&) (sTypeName="OBJECT")
at
/home/julien/lo/libreoffice/dbaccess/source/filter/hsqldb/createparser.cxx:140
#5  0x7fffc9e88893 in
dbahsql::CreateStmtParser::parseColumnPart(rtl::OUString const&)
(this=0x7fff0710, sColumnPart="\"ID\" INTEGER NOT NULL PRIMARY
KEY,\"JaNein\" BOOLEAN,\"Binary_fix\" BINARY,\"BinVar\"
VARBINARY,\"BildLongVar\" LONGVARBINARY,\"Other\" OBJECT")
at
/home/julien/lo/libreoffice/dbaccess/source/filter/hsqldb/createparser.cxx:191

I attached the whole bt.

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


[Libreoffice-bugs] [Bug 99156] Text in rotated rectangle is always horizontal

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99156

--- Comment #5 from Alexey Khrulev  ---
Not reproduced in LibreOffice Draw 6.0.3.2 on Windows 10 x64

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


[Libreoffice-bugs] [Bug 117579] [NEWHELP] Translations of collateral file imtrigon.ods for help pages

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117579

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 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 117602] Calc freezes Linux X-Window on Excel-Macro

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117602

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
I can not confirm with Version: 6.1.0.0.alpha0+
Build ID: 783ebd697beec674d64e831615c022a97681a4dc
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3;

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


[Libreoffice-bugs] [Bug 101083] Insert SVG causes LibreOffice to hang, consuming 100% cpu

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101083

--- Comment #11 from Regina Henschel  ---
Not fixed for me with Version: 6.1.0.0.alpha1+ (x64)
Build-ID: 439f17c5cf43b38092b1b834bb006420220262e1
CPU-Threads: 8; BS: Windows 10.0; UI-Render: GL; 
Gebietsschema: de-DE (de_DE); Calc: CL

The problem is the patternTransform attribute in the  element. If I
set the scaling factor to 0.163399, there are no problems. With scaling factor
0.0163399 I get high computer workload, but in the end it is rendered and on
high zoom the circles are visible.

factor 0.163399 means about 30×30=900 circles to be rendered.
factor 0.0163399 means about 300×300=9 circles to be rendered.
factor 0.00163399 as in the attached "simplifier sample" file means about
3000×3000=900 circles to be rendered.

I think, there need to be a cut, so that if the to be drawn circle becomes
smaller then a threshold, it is no longer drawn as circle. Ersatz might be
solid filling with a color with transparency, which considers the percentage of
the filled area.

I cannot confirm, that it worked before version 3.6. In version LibreOffice
3.5.1.2 Build ID: dc9775d-05ecbee-0851ad3-1586698-727bf66 the graphic is not
rendered at all.

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


[Libreoffice-bugs] [Bug 117593] [NEWHELP] Translations of collateral file pivot.ods for help pages

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117593

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 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 117592] [NEWHELP] Translations of collateral file trigon.ods for help pages

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117592

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 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-commits] core.git: include/svx sd/inc sd/qa sd/source sd/uiconfig

2018-05-13 Thread Caolán McNamara
 include/svx/langbox.hxx |2 
 sd/inc/sdabstdlg.hxx|2 
 sd/qa/unit/dialogs-test.cxx |5 
 sd/source/ui/dlg/dlgfield.cxx   |  190 
 sd/source/ui/dlg/sddlgfact.cxx  |   14 +-
 sd/source/ui/dlg/sddlgfact.hxx  |   11 +-
 sd/source/ui/inc/dlgfield.hxx   |   25 +---
 sd/source/ui/view/drviews2.cxx  |3 
 sd/source/ui/view/outlnvs2.cxx  |3 
 sd/uiconfig/simpress/ui/dlgfield.ui |   23 +++-
 10 files changed, 144 insertions(+), 134 deletions(-)

New commits:
commit 1bbc741c078899a16cedd78def6d4107f3ed4c96
Author: Caolán McNamara 
Date:   Fri May 11 16:11:47 2018 +0100

weld SdModifyFieldDlg

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

diff --git a/include/svx/langbox.hxx b/include/svx/langbox.hxx
index b64f5d28fc3f..3b91701f8df9 100644
--- a/include/svx/langbox.hxx
+++ b/include/svx/langbox.hxx
@@ -170,6 +170,8 @@ public:
 voidSelectEntryPos(int nPos) { m_xControl->set_active(nPos); }
 
 void connect_changed(const Link& rLink) { 
m_aChangeHdl = rLink; }
+void save_value() { m_xControl->save_value(); }
+bool get_value_changed_from_saved() const { return 
m_xControl->get_value_changed_from_saved(); }
 void hide() { m_xControl->hide(); }
 };
 
diff --git a/sd/inc/sdabstdlg.hxx b/sd/inc/sdabstdlg.hxx
index 27fb17ddd9ed..076555758960 100644
--- a/sd/inc/sdabstdlg.hxx
+++ b/sd/inc/sdabstdlg.hxx
@@ -177,7 +177,7 @@ public:
 virtual VclPtr
CreateSdCustomShowDlg(weld::Window* pWindow, SdDrawDocument& rDrawDoc) = 0;
 virtual VclPtr   
CreateSdTabCharDialog(vcl::Window* pWindow, const SfxItemSet* pAttr, 
SfxObjectShell* pDocShell) = 0;
 virtual VclPtr   
CreateSdTabPageDialog(vcl::Window* pWindow, const SfxItemSet* pAttr, 
SfxObjectShell* pDocShell, bool bAreaPage) = 0;
-virtual VclPtr   
CreateSdModifyFieldDlg(vcl::Window* pWindow, const SvxFieldData* pInField, 
const SfxItemSet& rSet) = 0;
+virtual VclPtr   
CreateSdModifyFieldDlg(weld::Window* pWindow, const SvxFieldData* pInField, 
const SfxItemSet& rSet) = 0;
 virtual VclPtr  
CreateSdSnapLineDlg(weld::Window* pParent, const SfxItemSet& rInAttrs, 
::sd::View* pView) = 0;
 virtual VclPtr   
CreateSdInsertLayerDlg(weld::Window* pParent, const SfxItemSet& rInAttrs, bool 
bDeletable, const OUString& rStr) = 0;
 virtual VclPtr 
CreateSdInsertPagesObjsDlg(vcl::Window* pParent, const SdDrawDocument* pDoc, 
SfxMedium* pSfxMedium, const OUString& rFileName) = 0;
diff --git a/sd/qa/unit/dialogs-test.cxx b/sd/qa/unit/dialogs-test.cxx
index 8a2d6603ac55..d68ef7e4b5e1 100644
--- a/sd/qa/unit/dialogs-test.cxx
+++ b/sd/qa/unit/dialogs-test.cxx
@@ -338,9 +338,10 @@ VclPtr 
SdDialogsTest::createDialogByID(sal_uInt32 nID)
 }
 case 6:
 {
-// CreateSdModifyFieldDlg(vcl::Window* pWindow, const 
SvxFieldData* pInField, const SfxItemSet& rSet) override;
+// CreateSdModifyFieldDlg(weld::Window* pWindow, const 
SvxFieldData* pInField, const SfxItemSet& rSet) override;
+auto const parent = getViewShell()->GetActiveWindow();
 pRetval = getSdAbstractDialogFactory()->CreateSdModifyFieldDlg(
-Application::GetDefDialogParent(),
+parent == nullptr ? nullptr : parent->GetFrameWeld(),
 nullptr,
 getEmptySfxItemSet());
 break;
diff --git a/sd/source/ui/dlg/dlgfield.cxx b/sd/source/ui/dlg/dlgfield.cxx
index b20291547764..0f185c25813f 100644
--- a/sd/source/ui/dlg/dlgfield.cxx
+++ b/sd/source/ui/dlg/dlgfield.cxx
@@ -38,36 +38,24 @@
 /**
  * dialog to edit field commands
  */
-SdModifyFieldDlg::SdModifyFieldDlg( vcl::Window* pWindow, const SvxFieldData* 
pInField, const SfxItemSet& rSet ) :
-ModalDialog ( pWindow, "EditFieldsDialog", 
"modules/simpress/ui/dlgfield.ui" ),
-maInputSet  ( rSet ),
-pField  ( pInField )
+SdModifyFieldDlg::SdModifyFieldDlg(weld::Window* pWindow, const SvxFieldData* 
pInField, const SfxItemSet& rSet)
+: GenericDialogController(pWindow, "modules/simpress/ui/dlgfield.ui", 
"EditFieldsDialog")
+, m_aInputSet(rSet)
+, m_pField(pInField)
+, m_xRbtFix(m_xBuilder->weld_radio_button("fixedRB"))
+, m_xRbtVar(m_xBuilder->weld_radio_button("varRB"))
+, m_xLbLanguage(new 
LanguageBox(m_xBuilder->weld_combo_box_text("languageLB")))
+, m_xLbFormat(m_xBuilder->weld_combo_box_text("formatLB"))
 {
-get(m_pRbtFix, "fixedRB");
-get(m_pRbtVar, "varRB");
-get(m_pLbLanguage, "languageLB");
-get(m_pLbFormat, "formatLB");
-
-m_pLbLanguage->SetLanguageList( 
SvxLanguageListFlags::ALL|SvxLanguageListFlags::ONLY_KNOWN, false );
-

[Libreoffice-bugs] [Bug 117602] Calc freezes Linux X-Window on Excel-Macro

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117602

--- Comment #1 from Xavier Van Wijmeersch  ---
no repro

Version: 6.1.0.0.alpha1+
Build ID: ecf50fe71596c3edba8ce437481ab80ae1cd8935
CPU threads: 8; OS: Linux 4.14; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-05-08_00:13:13
Locale: nl-BE (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 117601] Crash in: libstdc++.so.6.0.22 on merge cells

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117601

--- Comment #1 from raal  ---
Cannot reproduce with Version: 6.1.0.0.alpha0+
Build ID: 783ebd697beec674d64e831615c022a97681a4dc
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3; 
Did 6 merges.

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


[Libreoffice-bugs] [Bug 117586] Numbering is wrong for ordinal indicators and names for Russian text

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117586

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #1 from Mike Kaganski  ---
Both this and bug 117584 are the same issue (missing locale data in
libnumbertext) - which is handled by pull request
https://github.com/Numbertext/libnumbertext/pull/10.

Closing NOTOURBUG.

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


[Libreoffice-bugs] [Bug 117584] Numbering preview is wrong for ordinal indicators and names

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117584

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #3 from Mike Kaganski  ---
Both this and bug 117586 are the same issue (missing locale data in
libnumbertext) - which is handled by pull request
https://github.com/Numbertext/libnumbertext/pull/10.

Closing NOTOURBUG.

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


[Libreoffice-bugs] [Bug 117536] PARAGRAPH STYLES dropdown -- heading name partly covered in the "box"

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117536

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #3 from Jean-Baptiste Faure  ---
Please, answer questions in comment #2.

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

Best regards. JBF

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


[Libreoffice-bugs] [Bug 94662] Clicking on one table of contents jumps to the other one in master document

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94662

--- Comment #5 from Milan Bouchet-Valat  ---
Still present in 6.0.3.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 93823] EDITING: Numbering mixed between different levels in master document

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93823

--- Comment #5 from Milan Bouchet-Valat  ---
Still present in 6.0.3.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 117086] Writer crashes when opening odt from the attached document

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117086

--- Comment #9 from kostas  ---
Hi,

Is anyone looking into this? Or can someone, please, tell me how to fix the
document so that it will usable again?

BR

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


[Libreoffice-bugs] [Bug 117490] lo_startmain aborts by sigabrt while editing texts

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117490

--- Comment #3 from yova  ---
Last try was with 

libreoffice_1  | office version details: { "ProductName": "Collabora
OfficeDev", "ProductVersion": "6.0", "Produc
tExtension": ".10.2", "BuildId": "45c83371948f33738effa0ceffd3fc3758b5c2ea" }   

Last commit on 2nd may.


make run completes without error, but have no setup for further testing it
locally.

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


[Libreoffice-bugs] [Bug 117553] Footnote navigation when in footnote text is inconsistent

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117553

Jim Raykowski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |rayk...@gmail.com
   |desktop.org |

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


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

2018-05-13 Thread Johnny_M
 extensions/test/ole/EventListenerSample/EventListener/EventListener.rc |4 
++--
 sc/source/ui/docshell/docsh8.cxx   |2 
+-
 svx/source/form/fmmodel.cxx|4 
++--
 3 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit b8a51074ae8dd40549947b7239a80ee6b9731e2f
Author: Johnny_M 
Date:   Thu May 10 13:46:13 2018 +0200

Translate German comments

Change-Id: I6a03e921b28da5ac26235f32f547f36e00a47e46
Reviewed-on: https://gerrit.libreoffice.org/54079
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git 
a/extensions/test/ole/EventListenerSample/EventListener/EventListener.rc 
b/extensions/test/ole/EventListenerSample/EventListener/EventListener.rc
index 532ff23f2666..2de599591d67 100644
--- a/extensions/test/ole/EventListenerSample/EventListener/EventListener.rc
+++ b/extensions/test/ole/EventListenerSample/EventListener/EventListener.rc
@@ -31,7 +31,7 @@
 #undef APSTUDIO_READONLY_SYMBOLS
 
 
-// Deutsch (Deutschland) resources
+// German (Germany) resources
 
 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
 #ifdef _WIN32
@@ -118,7 +118,7 @@ BEGIN
 IDS_PROJNAME"EventListener"
 END
 
-#endif// Deutsch (Deutschland) resources
+#endif// German (Germany) resources
 
 
 
diff --git a/sc/source/ui/docshell/docsh8.cxx b/sc/source/ui/docshell/docsh8.cxx
index d9781310ebdd..d9631c8443e2 100644
--- a/sc/source/ui/docshell/docsh8.cxx
+++ b/sc/source/ui/docshell/docsh8.cxx
@@ -912,7 +912,7 @@ ErrCode ScDocShell::DBaseExport( const OUString& 
rFullFileName, rtl_TextEncoding
 if (!aCell.isEmpty())
 {
 if (aCell.meType == CELLTYPE_EDIT)
-{   // Paragraphs erhalten
+{   // preserve paragraphs
 lcl_getLongVarCharEditString(aString, aCell, 
aEditEngine);
 }
 else
diff --git a/svx/source/form/fmmodel.cxx b/svx/source/form/fmmodel.cxx
index 1fc2b4844f59..ef5f56e09c41 100644
--- a/svx/source/form/fmmodel.cxx
+++ b/svx/source/form/fmmodel.cxx
@@ -100,7 +100,7 @@ SdrPage* FmFormModel::AllocPage(bool bMasterPage)
 
 void FmFormModel::InsertPage(SdrPage* pPage, sal_uInt16 nPos)
 {
-// hack solange method intern
+// hack for as long as the method is internal
 if (m_pObjShell && !m_pImpl->mxUndoEnv->IsListening( *m_pObjShell ))
 SetObjectShell(m_pObjShell);
 
@@ -126,7 +126,7 @@ SdrPage* FmFormModel::RemovePage(sal_uInt16 nPgNum)
 
 void FmFormModel::InsertMasterPage(SdrPage* pPage, sal_uInt16 nPos)
 {
-// hack solange method intern
+// hack for as long as the method is internal
 if (m_pObjShell && !m_pImpl->mxUndoEnv->IsListening( *m_pObjShell ))
 SetObjectShell(m_pObjShell);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 115786] Unable to open styles window when sidebar is undocked

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115786

V Stuart Foote  changed:

   What|Removed |Added

 CC||gmx...@gmail.com

--- Comment #11 from V Stuart Foote  ---
*** Bug 117571 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 117571] RTL: F11 Styles Hotkey and Sidebar Docking Removal

2018-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117571

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||rayk...@gmail.com,
   ||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---


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

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


  1   2   >