[Libreoffice-bugs] [Bug 125585] Filesave: OLE objects corruption and missing (per Comment 12)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125585

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.4.0 target:6.3.3   |target:6.4.0 target:6.3.3
   ||target:6.2.9

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

[Libreoffice-bugs] [Bug 125585] Filesave: OLE objects corruption and missing (per Comment 12)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125585

--- Comment #27 from Commit Notification 
 ---
Regina Henschel committed a patch related to this issue.
It has been pushed to "libreoffice-6-2":

https://git.libreoffice.org/core/commit/44c0b7416d1abee971ef0b4b17e67f6e391dd807

tdf#125585 write default layer status for OLE objects

It will be available in 6.2.9.

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

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

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

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

2019-09-30 Thread Regina Henschel (via logerrit)
 sd/source/ui/unoidl/unolayer.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 44c0b7416d1abee971ef0b4b17e67f6e391dd807
Author: Regina Henschel 
AuthorDate: Fri Sep 27 14:12:39 2019 +0200
Commit: Xisco Faulí 
CommitDate: Mon Sep 30 15:08:38 2019 +0200

tdf#125585 write default layer status for OLE objects

The layer status is taken from the active view, when saving the
document. But embedded documents have no view. Error was, that for
all layers value 'false' was written in that case. With this patch
the defaults (visible, printable, not locked) (true, true, false)
are written.

Change-Id: I2388ce31cc208fba075083889ec1bb2f874ef482
Reviewed-on: https://gerrit.libreoffice.org/79701
Tested-by: Jenkins
Reviewed-by: Regina Henschel 
(cherry picked from commit 12f9a9f341fd8f8a98f7cd98f296a8729d279e0d)
Reviewed-on: https://gerrit.libreoffice.org/79786
Reviewed-by: Michael Stahl 

diff --git a/sd/source/ui/unoidl/unolayer.cxx b/sd/source/ui/unoidl/unolayer.cxx
index 0a42ecdad7b3..2d0d7ab435ce 100644
--- a/sd/source/ui/unoidl/unolayer.cxx
+++ b/sd/source/ui/unoidl/unolayer.cxx
@@ -264,6 +264,15 @@ bool SdLayer::get( LayerAttribute what ) throw()
 case LOCKED:return 
pFrameView->GetLockedLayers().IsSet(pLayer->GetID());
 }
 }
+
+// no view at all, e.g. Draw embedded as OLE in text document, ODF 
default values
+switch(what)
+{
+case VISIBLE:   return true;
+case PRINTABLE: return true;
+case LOCKED:return false;
+}
+
 }
 return false; //TODO: uno::Exception?
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 127884] New: after close document the current directory is lost

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127884

Bug ID: 127884
   Summary: after close document the current directory is lost
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wdeh...@exalondelft.nl

After closing collabora-online the current diretory is lost and the user is
back in it's home directory.

The address bar shows:

Before: 
../nextcloud/index.php/apps/files/?dir=/X/Y=16766

While editing:
.../nextcloud/index.php/apps/files/?dir=/X/Y=16766

After:
.../nextcloud/index.php/apps/files/?dir=/=104

We are using:
nextcloud 16.0.4
collabora-online 4.0.6

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

[Libreoffice-bugs] [Bug 127306] CRASH: Closing LibreOffice after deleting a chart

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127306

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |s.mehrbr...@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: sw/source

2019-09-30 Thread Mike Kaganski (via logerrit)
 sw/source/core/undo/rolbck.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ec580f5ee7b40b9d778cce41fdff08276fecfe54
Author: Mike Kaganski 
AuthorDate: Mon Sep 30 11:57:40 2019 +0200
Commit: Mike Kaganski 
CommitDate: Mon Sep 30 14:47:41 2019 +0200

pNew could be nullptr

Both if branches dereference pNew, so just check for that instead of
useless check for ( pOld || pNew ) which is granted if pOld != pNew

Change-Id: I5654c0a4e12e614d4d2068ddae582c1b86f2d61f
Reviewed-on: https://gerrit.libreoffice.org/79837
Reviewed-by: Michael Stahl 
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/core/undo/rolbck.cxx b/sw/source/core/undo/rolbck.cxx
index 2fbc1356f4cf..a80d270cb81f 100644
--- a/sw/source/core/undo/rolbck.cxx
+++ b/sw/source/core/undo/rolbck.cxx
@@ -1298,7 +1298,7 @@ SwRegHistory::SwRegHistory( const SwNode& rNd, SwHistory* 
pHst )
 
 void SwRegHistory::Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew )
 {
-if ( m_pHistory && ( pOld || pNew ) && pOld != pNew )
+if ( m_pHistory && pNew && pOld != pNew )
 {
 if ( pNew->Which() < POOLATTR_END )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 127862] FILESAVE: DOC: Background colour lost on save in a writer file

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127862

Justin L  changed:

   What|Removed |Added

Version|6.3.1.2 release |6.3.0.0.alpha0+
 OS|Windows (All)   |All
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||1826
   Hardware|x86-64 (AMD64)  |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 107838] [META] Character-level bugs and enhancements

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107838
Bug 107838 depends on bug 120178, which changed state.

Bug 120178 Summary: PDF wide letter spacing (1.5pt) in the footer becomes extra 
space in PDF ouput
https://bugs.documentfoundation.org/show_bug.cgi?id=120178

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378
Bug 103378 depends on bug 120178, which changed state.

Bug 120178 Summary: PDF wide letter spacing (1.5pt) in the footer becomes extra 
space in PDF ouput
https://bugs.documentfoundation.org/show_bug.cgi?id=120178

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 120178] PDF wide letter spacing (1.5pt) in the footer becomes extra space in PDF ouput

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120178

boicot...@yahoo.it changed:

   What|Removed |Added

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

--- Comment #7 from boicot...@yahoo.it ---
solved in
Versione: 6.3.1.2 (x64)
Build ID: b79626edf0065ac373bd1df5c28bd630b4424273
Thread CPU: 8; SO: Windows 10.0; Resa interfaccia: GL; VCL: win; 
Versione locale: it-IT (it_IT); Lingua interfaccia: it-IT
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 48741] [META] Writer's page header and footer issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48741
Bug 48741 depends on bug 120178, which changed state.

Bug 120178 Summary: PDF wide letter spacing (1.5pt) in the footer becomes extra 
space in PDF ouput
https://bugs.documentfoundation.org/show_bug.cgi?id=120178

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-1' - 29 commits - configure.ac forms/source librelogo/source mimo+linagora.png README.md scripting/source sfx2/source solenv/gbuild svx/sourc

2019-09-30 Thread Jean-Sebastien BEVILACQUA (via logerrit)
 README.md |  189 ++
 configure.ac  |2 
 forms/source/richtext/richtextmodel.cxx   |2 
 librelogo/source/LibreLogo/LibreLogo.py   |   51 
 mimo+linagora.png |binary
 scripting/source/pyprov/pythonscript.py   |   17 +
 sfx2/source/doc/objmisc.cxx   |   13 +
 solenv/gbuild/GeneratedPackage.mk |   45 +---
 svx/source/unodraw/unoshape.cxx   |2 
 sw/inc/unosett.hxx|2 
 sw/source/core/doc/doc.cxx|2 
 sw/source/core/text/porfld.cxx|4 
 sw/source/core/text/porfld.hxx|1 
 sw/source/core/text/txtfld.cxx|   12 +
 sw/source/core/unocore/unosett.cxx|   15 +
 sw/source/core/view/viewsh.cxx|   10 
 sw/source/uibase/app/apphdl.cxx   |   38 ---
 sw/source/uibase/config/StoredChapterNumbering.cxx|2 
 wizards/com/sun/star/wizards/db/SQLQueryComposer.java |3 
 writerfilter/source/rtftok/rtfdispatchsymbol.cxx  |   29 +-
 writerfilter/source/rtftok/rtfdispatchvalue.cxx   |7 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx|   13 -
 writerfilter/source/rtftok/rtfdocumentimpl.hxx|2 
 23 files changed, 234 insertions(+), 227 deletions(-)

New commits:
commit 31671adeb09bb5a7234188d1a99bab8c62b9e233
Author: Jean-Sebastien BEVILACQUA 
AuthorDate: Wed Sep 18 14:30:29 2019 +0200
Commit: Jean-Sebastien BEVILACQUA 
CommitDate: Wed Sep 18 14:30:29 2019 +0200

bump product versionto 6.1.6.3.M13

Change-Id: I60dad7c6c861e8439144d346a6ad619d2dba2ea5

diff --git a/README.md b/README.md
index 761b043465b3..d164e4784078 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,13 @@ The most recent version reviewed by MIMO can be downloaded 
at 

[Libreoffice-commits] core.git: Branch 'feature/sc_lok_invalidation' - 0 commits -

2019-09-30 Thread (via logerrit)
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124377] Make better bitmap export quality to PDF for Redaction

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124377

--- Comment #9 from Commit Notification 
 ---
Aron Budea committed a patch related to this issue.
It has been pushed to "libreoffice-6-3":

https://git.libreoffice.org/core/commit/190f0621c2f799e5f44599ae93339aa93c9b9237

tdf#124377: enable anti-aliasing metafile during redaction

It will be available in 6.3.3.

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

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

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

[Libreoffice-bugs] [Bug 125575] Saving a file will later lead to unusable app

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125575

--- Comment #14 from Tor Lillqvist  ---
OK, so a short hangouts session demonstrated that it is using the File:Save
menu entry that is essential to reproducing the bug. I have always just tapped
the save icon, or relied on just closing the document also saving it. Now when
I can reproduce it, fixing it should not be too hard.

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

[Libreoffice-bugs] [Bug 124377] Make better bitmap export quality to PDF for Redaction

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124377

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.4.0|target:6.4.0 target:6.3.3

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - filter/source

2019-09-30 Thread Aron Budea (via logerrit)
 filter/source/pdf/pdfexport.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 190f0621c2f799e5f44599ae93339aa93c9b9237
Author: Aron Budea 
AuthorDate: Fri Sep 20 04:54:00 2019 +0200
Commit: Andras Timar 
CommitDate: Mon Sep 30 14:34:27 2019 +0200

tdf#124377: enable anti-aliasing metafile during redaction

Change-Id: I6c8a0f6ceaad5d9ec47cce1b00b8ccdd77530aaf
Reviewed-on: https://gerrit.libreoffice.org/79266
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 
(cherry picked from commit cd6780aae1392d4c1af0b15b311a4966834a9602)
Reviewed-on: https://gerrit.libreoffice.org/79478
Reviewed-by: Andras Timar 

diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index 175cc4150c4e..7617146338d3 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -239,7 +239,8 @@ bool PDFExport::ExportSelection( vcl::PDFWriter& rPDFWriter,
 try
 {
 Graphic aGraph(aMtf);
-BitmapEx bmp = aGraph.GetBitmapEx();
+// use antialiasing to improve how graphic 
objects look
+BitmapEx bmp = 
aGraph.GetBitmapEx(GraphicConversionParameters(Size(0, 0), false, true, false));
 Graphic bgraph(bmp);
 aMtf = bgraph.GetGDIMetaFile();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - filter/source

2019-09-30 Thread Aron Budea (via logerrit)
 filter/source/pdf/pdfexport.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a20b4e63c74329200bd85b42c57c831fbafca88f
Author: Aron Budea 
AuthorDate: Fri Sep 20 04:54:00 2019 +0200
Commit: Andras Timar 
CommitDate: Mon Sep 30 14:34:11 2019 +0200

tdf#124377: enable anti-aliasing metafile during redaction

Change-Id: I6c8a0f6ceaad5d9ec47cce1b00b8ccdd77530aaf
Reviewed-on: https://gerrit.libreoffice.org/79266
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 
(cherry picked from commit cd6780aae1392d4c1af0b15b311a4966834a9602)
Reviewed-on: https://gerrit.libreoffice.org/79481
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 

diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index 9013c63e2973..1aa6cbd61751 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -235,7 +235,8 @@ bool PDFExport::ExportSelection( vcl::PDFWriter& rPDFWriter,
 try
 {
 Graphic aGraph(aMtf);
-BitmapEx bmp = aGraph.GetBitmapEx();
+// use antialiasing to improve how graphic 
objects look
+BitmapEx bmp = 
aGraph.GetBitmapEx(GraphicConversionParameters(Size(0, 0), false, true, false));
 Graphic bgraph(bmp);
 aMtf = bgraph.GetGDIMetaFile();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-09-30 Thread Caolán McNamara (via logerrit)
 emfio/source/reader/wmfreader.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit f78090e3d5cc21f8b6c110b39d9f2057d2fa24e9
Author: Caolán McNamara 
AuthorDate: Mon Sep 30 09:35:23 2019 +0100
Commit: Caolán McNamara 
CommitDate: Mon Sep 30 14:33:52 2019 +0200

ofz#17817 avoid OOM

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

diff --git a/emfio/source/reader/wmfreader.cxx 
b/emfio/source/reader/wmfreader.cxx
index d1e7f85b1c67..58c4d971cb49 100644
--- a/emfio/source/reader/wmfreader.cxx
+++ b/emfio/source/reader/wmfreader.cxx
@@ -711,10 +711,16 @@ namespace emfio
 bool bOk = nWidth && nHeight && nPlanes == 1 && nBitCount == 1 
&& nBytesPerScan != 0;
 if (bOk)
 {
+// must be enough data to fulfil the request
 bOk = nBytesPerScan <= mpInputStream->remainingSize() / 
nHeight;
 }
 if (bOk)
 {
+// scanline must be large enough to provide all pixels
+bOk = nBytesPerScan >= nWidth / 8;
+}
+if (bOk)
+{
 vcl::bitmap::RawBitmap aBmp( Size( nWidth, nHeight ), 24 );
 for (sal_uInt16 y = 0; y < nHeight && 
mpInputStream->good(); ++y)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 127883] New: wrong key mapping in DE-CH

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127883

Bug ID: 127883
   Summary: wrong key mapping in DE-CH
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: severin.k...@gmail.com

Description:
I am getting absolutely annoyed every time I try to type the ' with my keyboard
layout DE-CH, it will always type ‹ or › respectively.  PLEASE fix this, or I
will throw my keyboard at my monitor!

Actual Results:
‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›‹›

Expected Results:
''


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 127603] "Tools - Macros - Run macro.." help rendering with F1 is inconsistent

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127603

LibreOfficiant  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from LibreOfficiant  ---
(In reply to Xisco Faulí from comment #1)
> Thanks for reporting this issue.
> Could you please check if it's a duplicate of bug 126007 and check whether
> it's fixed in LibreOffice 6.3.2 ?

This is not a duplicate of 126007
It's not fixed with 6.3.2

Displayed help page should be:
help/fr/text/shared/01/0613.html

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

[Libreoffice-bugs] [Bug 104442] [META] DOCX (OOXML) shape (DrawingML and VML) related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442
Bug 104442 depends on bug 127734, which changed state.

Bug 127734 Summary: FILESAVE DOCX Hyperlink does not work when the target is 
section
https://bugs.documentfoundation.org/show_bug.cgi?id=127734

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104442] [META] DOCX (OOXML) shape (DrawingML and VML) related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442
Bug 104442 depends on bug 127735, which changed state.

Bug 127735 Summary: FILESAVE DOCX Hyperlink does not work in Microsoft Word 
when the target is table
https://bugs.documentfoundation.org/show_bug.cgi?id=127735

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125611] [META] DOCX (OOXML) Hyperlink-related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125611
Bug 125611 depends on bug 127735, which changed state.

Bug 127735 Summary: FILESAVE DOCX Hyperlink does not work in Microsoft Word 
when the target is table
https://bugs.documentfoundation.org/show_bug.cgi?id=127735

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125611] [META] DOCX (OOXML) Hyperlink-related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125611
Bug 125611 depends on bug 127733, which changed state.

Bug 127733 Summary: FILESAVE DOCX Hyperlink does not work when the target is 
chart
https://bugs.documentfoundation.org/show_bug.cgi?id=127733

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125611] [META] DOCX (OOXML) Hyperlink-related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125611
Bug 125611 depends on bug 127734, which changed state.

Bug 127734 Summary: FILESAVE DOCX Hyperlink does not work when the target is 
section
https://bugs.documentfoundation.org/show_bug.cgi?id=127734

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104442] [META] DOCX (OOXML) shape (DrawingML and VML) related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442
Bug 104442 depends on bug 127732, which changed state.

Bug 127732 Summary: FILESAVE DOCX Hyperlink does not work in Microsoft Word 
when the target is frame
https://bugs.documentfoundation.org/show_bug.cgi?id=127732

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104442] [META] DOCX (OOXML) shape (DrawingML and VML) related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442
Bug 104442 depends on bug 127733, which changed state.

Bug 127733 Summary: FILESAVE DOCX Hyperlink does not work when the target is 
chart
https://bugs.documentfoundation.org/show_bug.cgi?id=127733

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125611] [META] DOCX (OOXML) Hyperlink-related issues

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125611
Bug 125611 depends on bug 127732, which changed state.

Bug 127732 Summary: FILESAVE DOCX Hyperlink does not work in Microsoft Word 
when the target is frame
https://bugs.documentfoundation.org/show_bug.cgi?id=127732

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

2019-09-30 Thread Mike Kaganski (via logerrit)
 svl/source/items/itemiter.cxx  |3 +--
 sw/source/core/undo/rolbck.cxx |2 --
 2 files changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 227734f528979fb12733d1ea6c4a951fbfa17bd8
Author: Mike Kaganski 
AuthorDate: Mon Sep 30 11:37:40 2019 +0200
Commit: Mike Kaganski 
CommitDate: Mon Sep 30 14:24:20 2019 +0200

Simplify iterating in SwRegHistory::MakeSetWhichIds a little

The IsAtEnd check is redundant here.

Change-Id: Ie576d039ea3db5f98d9c8c3dfd7e77519fcc1e1d
Reviewed-on: https://gerrit.libreoffice.org/79836
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/svl/source/items/itemiter.cxx b/svl/source/items/itemiter.cxx
index 2285122e0d87..aaedcf26ae33 100644
--- a/svl/source/items/itemiter.cxx
+++ b/svl/source/items/itemiter.cxx
@@ -52,10 +52,9 @@ SfxItemIter::~SfxItemIter()
 
 const SfxPoolItem* SfxItemIter::NextItem()
 {
-SfxPoolItem const** ppFnd = m_rSet.m_pItems.get();
-
 if (m_nCurrent < m_nEnd)
 {
+SfxPoolItem const** ppFnd = m_rSet.m_pItems.get();
 do {
 m_nCurrent++;
 } while (m_nCurrent < m_nEnd && !*(ppFnd + m_nCurrent ));
diff --git a/sw/source/core/undo/rolbck.cxx b/sw/source/core/undo/rolbck.cxx
index 77e594e9dafc..2fbc1356f4cf 100644
--- a/sw/source/core/undo/rolbck.cxx
+++ b/sw/source/core/undo/rolbck.cxx
@@ -1450,8 +1450,6 @@ void SwRegHistory::MakeSetWhichIds()
 {
 sal_uInt16 nW = pItem->Which();
 m_WhichIdSet.insert( nW );
-if( aIter.IsAtEnd() )
-break;
 pItem = aIter.NextItem();
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-09-30 Thread Szymon Kłos (via logerrit)
 loleaflet/css/spreadsheet.css   |3 +
 loleaflet/css/toolbar.css   |1 
 loleaflet/src/control/Control.Toolbar.js|   48 ++--
 loleaflet/src/layer/tile/WriterTileLayer.js |1 
 4 files changed, 29 insertions(+), 24 deletions(-)

New commits:
commit 1df1275e3b7b78c5a0b1616c2adec384ec9f9fe1
Author: Szymon Kłos 
AuthorDate: Mon Sep 30 13:56:18 2019 +0200
Commit: Szymon Kłos 
CommitDate: Mon Sep 30 14:13:39 2019 +0200

Show toolbars in edit mode on mobile

- fix position of rows container
- avoid using uninitialized 'toolbar' variable
- fire onUpdatePermission in Writer also...

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

diff --git a/loleaflet/css/spreadsheet.css b/loleaflet/css/spreadsheet.css
index a0059b07f..fe4db5847 100644
--- a/loleaflet/css/spreadsheet.css
+++ b/loleaflet/css/spreadsheet.css
@@ -74,7 +74,8 @@
 }
 
 #spreadsheet-row-column-frame.readonly {
-top: 36px;
+   top: 36px;
+   bottom: 0px;
 }
 
 #spreadsheet-row-column-frame.tablet {
diff --git a/loleaflet/src/control/Control.Toolbar.js 
b/loleaflet/src/control/Control.Toolbar.js
index 0776c8e61..5f98160d0 100644
--- a/loleaflet/src/control/Control.Toolbar.js
+++ b/loleaflet/src/control/Control.Toolbar.js
@@ -2010,23 +2010,25 @@ function onUpdatePermission(e) {
});
}
 
-   presentationButtons.forEach(function(id) {
-   if (id === 'deletepage') {
-   var itemState = 
map['stateChangeHandler'].getItemValue('.uno:DeletePage');
-   } else if (id === 'insertpage') {
-   itemState = 
map['stateChangeHandler'].getItemValue('.uno:InsertPage');
-   } else if (id === 'duplicatepage') {
-   itemState = 
map['stateChangeHandler'].getItemValue('.uno:DuplicatePage');
-   } else {
-   itemState = 'enabled';
-   }
+   if (toolbar) {
+   presentationButtons.forEach(function(id) {
+   if (id === 'deletepage') {
+   var itemState = 
map['stateChangeHandler'].getItemValue('.uno:DeletePage');
+   } else if (id === 'insertpage') {
+   itemState = 
map['stateChangeHandler'].getItemValue('.uno:InsertPage');
+   } else if (id === 'duplicatepage') {
+   itemState = 
map['stateChangeHandler'].getItemValue('.uno:DuplicatePage');
+   } else {
+   itemState = 'enabled';
+   }
 
-   if (itemState === 'enabled') {
-   toolbar.enable(id);
-   } else {
-   toolbar.disable(id);
-   }
-   });
+   if (itemState === 'enabled') {
+   toolbar.enable(id);
+   } else {
+   toolbar.disable(id);
+   }
+   });
+   }
 
toolbar = w2ui['actionbar'];
if (toolbar) {
@@ -2041,15 +2043,15 @@ function onUpdatePermission(e) {
$('#toolbar-down').show();
switch (map._docLayer._docType) {
case 'text':
-   $('#document-container').css('bottom', '33px');
+   $('#document-container').css('bottom', '35px');
break;
case 'spreadsheet':
-   $('#document-container').css('bottom', '68px'); 
// FIXME this and spreadsheet-row-column-frame are supposed to be the same, but 
are not
-   
$('#spreadsheet-row-column-frame').css('bottom', '65px');
+   $('#document-container').css('bottom', '68px');
+   
$('#spreadsheet-row-column-frame').css('bottom', '68px');
$('#spreadsheet-toolbar').show();
break;
case 'presentation':
-   $('#document-container').css('bottom', '33px');
+   $('#document-container').css('bottom', '35px');
break;
}
}
@@ -2098,15 +2100,15 @@ function onUpdatePermission(e) {
$('#toolbar-down').hide();
  

[Libreoffice-bugs] [Bug 127882] New: Libreoffice 6.3.2 crashes on document properties

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127882

Bug ID: 127882
   Summary: Libreoffice 6.3.2 crashes on document properties
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bic...@gmail.com

Description:
Libreoffice 6.3.2 crash when I open the document properties from: File -
Properties.
By pressing the Accept or Cancel button, Libreoffice crash

Steps to Reproduce:
1. Open a document in writer
2.Choose File-Properties
3.Click in "Accept"

Actual Results:
Crash

Expected Results:
Writer open usually.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
Libreoffice

Versión: 6.3.2.2
Id. de compilación: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
Subprocs. CPU: 4; SO: Linux 4.10; Repres. IU: predet.; VCL: gtk3; 
Configuración regional: es-ES (es_ES.UTF-8); Idioma de IU: es-ES
Calc: threaded

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

[Libreoffice-bugs] [Bug 124729] Impress reliably crashes on THIS PowerPoint document in Linux

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124729

--- Comment #16 from Buovjaga  ---
Doesn't crash for me FWIW, with gtk3 or kf5

Timur: if possible and if it crashes with a bibisect repo, would be great to
see a bibisect result. Probably using 5.4 repo:

git clone https://git.libreoffice.org/bibisect-linux-64-5.4

https://wiki.documentfoundation.org/QA/Bibisect/Linux

Arch Linux 64-bit
Version: 6.4.0.0.alpha0+
Build ID: 2e347c94503321c2102c6f78f5f5bcb771727e69
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: kf5; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded
Built on 30 September 2019

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

[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-1' - 109 commits - configure.ac cui/source dbaccess/source dictionaries download.lst editeng/source external/apr external/cairo external/libn

2019-09-30 Thread Christian Lohmaier (via logerrit)
Rebased ref, commits from common ancestor:
commit 47b704879f52819423702f4efa17cbae8d7b7afa
Author: Christian Lohmaier 
AuthorDate: Thu May 2 22:07:21 2019 +0200
Commit: Christian Lohmaier 
CommitDate: Thu May 2 22:07:21 2019 +0200

bump product versionto 6.1.6.3.0+

Change-Id: Ia3540373c2e364f5819845d6c323d94e4c8840c8

diff --git a/configure.ac b/configure.ac
index c5dc39a84f9d..b451603356db 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.1.6.2.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.1.6.3.0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
commit 033804378199f3c19a374333fc3e049549dc1246
Author: Michael Stahl 
AuthorDate: Thu May 2 10:59:01 2019 +0200
Commit: Caolán McNamara 
CommitDate: Thu May 2 16:19:05 2019 +0200

libpng: upgrade to release 1.6.37

Fixes CVE-2019-7317.

Change-Id: I3374f5cbd6552e2c1569d63ee680d0c1d9389621
Reviewed-on: https://gerrit.libreoffice.org/71663
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit e2abbc0062398ea67cb13cb5b0b7bfdce78e652c)
Reviewed-on: https://gerrit.libreoffice.org/71670
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 
Reviewed-by: Christian Lohmaier 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/download.lst b/download.lst
index 24059c694d3c..e84baea4995e 100644
--- a/download.lst
+++ b/download.lst
@@ -204,8 +204,8 @@ export PDFIUM_SHA256SUM := 
80331b48166501a192d65476932f17044eeb5f10faa6ea50f4f17
 export PDFIUM_TARBALL := pdfium-3426.tar.bz2
 export PIXMAN_SHA256SUM := 
21b6b249b51c6800dc9553b65106e1e37d0e25df942c90531d4c3997aa20a88e
 export PIXMAN_TARBALL := e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz
-export LIBPNG_SHA256SUM := 
2f1e960d92ce3b3abd03d06dfec9637dfbd22febf107a536b44f7a47c60659f6
-export LIBPNG_TARBALL := libpng-1.6.34.tar.xz
+export LIBPNG_SHA256SUM := 
505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca
+export LIBPNG_TARBALL := libpng-1.6.37.tar.xz
 export POPPLER_SHA256SUM := 
92e09fd3302567fd36146b36bb707db43ce436e8841219025a82ea9fb0076b2f
 export POPPLER_TARBALL := poppler-0.74.0.tar.xz
 export POSTGRESQL_SHA256SUM := 
db61d498105a7d5fe46185e67ac830c878cdd7dc1f82a87f06b842217924c461
commit 7d3e5d1b273c2004bc231d2673da29d65c911cd0
Author: Christian Lohmaier 
AuthorDate: Thu May 2 13:37:34 2019 +0200
Commit: Gerrit Code Review 
CommitDate: Thu May 2 13:50:21 2019 +0200

Update git submodules

* Update translations from branch 'libreoffice-6-1-6'
  - update translations for 6.1.6 rc3

and force-fix errors using pocheck

Change-Id: I360802d2255a94fe829e15b72f8f388445e8b740
(cherry picked from commit e1047f2e97de220159c6f82ee927dbc0e0b63021)

diff --git a/translations b/translations
index ac4e07a6181e..e09838a84bdb 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit ac4e07a6181e74cdd64b8f84de698a96d6f9f9ff
+Subproject commit e09838a84bdb5603bbf07138517d94b6ba506186
commit e80bac9279564c366691cbd51cf557c7083d37c3
Author: Caolán McNamara 
AuthorDate: Sat Apr 27 11:52:11 2019 +0100
Commit: Caolán McNamara 
CommitDate: Tue Apr 30 16:32:03 2019 +0200

ofz#14469 null deref

since...

commit af84fc9d906626255aaf136eefc5e55236e0e8a6
Date:   Tue Apr 23 15:48:41 2019 +0200

lazy image loading shouldn't read the entire .xls file (tdf#124828)

nLength is just an unchecked value in the dff stream, it might not be sane
so limit it to the max len of the stream

Change-Id: Ia8a2830478952afe1317b5cd795f35059d9b380a
Reviewed-on: https://gerrit.libreoffice.org/71415
Reviewed-by: Michael Stahl 
Tested-by: Xisco Faulí 
Reviewed-by: Noel Grandin 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/vcl/source/filter/graphicfilter.cxx 
b/vcl/source/filter/graphicfilter.cxx
index cad4d4ae1fd5..654393238eba 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -1454,7 +1454,9 @@ Graphic GraphicFilter::ImportUnloadedGraphic(SvStream& 
rIStream, sal_uInt64 size
 ErrCode nStatus = ImpTestOrFindFormat("", rIStream, nFormat);
 
 rIStream.Seek(nStreamBegin);
-const sal_uInt32 nStreamLength( sizeLimit ? sizeLimit : 
rIStream.Seek(STREAM_SEEK_TO_END) - nStreamBegin);
+sal_uInt32 nStreamLength(rIStream.remainingSize());
+if (sizeLimit && sizeLimit < nStreamLength)
+nStreamLength = sizeLimit;
 
 OUString aFilterName = pConfig->GetImportFilterName(nFormat);
 OUString aExternalFilterName = pConfig->GetExternalFilterName(nFormat, 
false);
commit 

[Libreoffice-bugs] [Bug 127723] Calc Slow to open and hangs when sorting or filtering. Version 6.3.1.2

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127723

--- Comment #2 from Rafael  ---
good afternoon

First, sorry for the delay in responding. I am trying to adapt the file to be
able to send a copy, since the information it contains should not be public.

The problem is that when trying to adapt the file, it constantly crashes and
prevents me from being able to perform the adaptation.

A relatively simple operation, such as replacing certain data, may take more
than 5 minutes to complete.

I keep working with the document and, whenever I can, I will send it to you.

Greetings and thanks for attention.

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

[Libreoffice-bugs] [Bug 127839] It is not possible to put border around selected text

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127839

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

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

Version: 6.4.0.0.alpha0+ (x64)
Build ID: d52010013b9cacdd8f71e62fef18c1e679e807f2
CPU threads: 16; OS: Windows 6.3; UI render: default; VCL: win; 
Locale: en-GB (en_GB); UI-Language: en-US
Calc: threaded

Could it be possible it's fixed in master ?

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

[Libreoffice-bugs] [Bug 69932] Toolbar elements flicker on resize (not with GTK3)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69932

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|NEW |RESOLVED

--- Comment #22 from Buovjaga  ---
As gtk3 and kf5 backends do not flicker and gtk2 backend is going away, I don't
see much point keeping this open.

Note re: the preceding comment: this report was about Linux only.

Arch Linux 64-bit
Version: 6.4.0.0.alpha0+
Build ID: 2e347c94503321c2102c6f78f5f5bcb771727e69
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: kf5; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
Calc: threaded
Built on 30 September 2019

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

[Libreoffice-bugs] [Bug 112889] [META] Screen flickering when hovering on items or selecting text with default rendering

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112889
Bug 112889 depends on bug 69932, which changed state.

Bug 69932 Summary: Toolbar elements flicker on resize (not with GTK3)
https://bugs.documentfoundation.org/show_bug.cgi?id=69932

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

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

[Libreoffice-bugs] [Bug 127795] Form fields not shown as form fields in PDF Export

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127795

--- Comment #7 from Oliver Brinzing  ---
not repro with:

Version: 6.3.2.2 (x64)
Build-ID: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
CPU-Threads: 4; BS: Windows 10.0; UI-Render: Standard; VCL: win; 
Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
Calc: 

exported pdf (FDF) is editable with Acrobat Reader DC.

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

[Libreoffice-bugs] [Bug 127806] FILEOPEN RTF: image display position is wrong and very large

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127806

Xisco Faulí  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 CC||xiscofa...@libreoffice.org
   Keywords||bibisectRequest, regression

--- Comment #7 from Xisco Faulí  ---
Not reproducible in

Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

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

[Libreoffice-bugs] [Bug 127881] New: iOS: Writer Sidebar disables Keyboard

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127881

Bug ID: 127881
   Summary: iOS: Writer Sidebar disables Keyboard
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andreas.gruh...@adfinis-sygroup.ch

Description:
The keyboard gets disabled whenever the sidebar is enabled and disabled again
in the iOS app.

The user would expect the keyboard to appear again after a klick into the text,
but the keyboard is only shown again after a press of the buttons in the menu
bar on top (e.g., bold, italics).

A video to demonstrate the issue:
https://cloud.test.base4kids.ch/index.php/s/gLqriMiRTrFTxa3

Steps to Reproduce:
1. Click sidebar icon to open the sidebar
2. Close the sidebar again
2. Tap somewhere into the text

Actual Results:
1. The sidebar opens
2. The sidebar is closed
3. The virtual keyboard is hidden and typing is not possible (even with a
hardware keyboard)

Expected Results:
1. The sidebar opens
2. The sidebar is closed
3. The keyboard should show and typing in the text should be possible


Reproducible: Always


User Profile Reset: No



Additional Info:
iOS version: 12.3.1
Collabora iOS version: 4.1.61

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

[Libreoffice-bugs] [Bug 127804] copy/paste using alt key reverses lines

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127804

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #2 from Xisco Faulí  ---
Hi, Using alt key + up/down arrows moves the line up or down, but I can't
select the text.
How can you select it using the alt key ?

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

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

2019-09-30 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf115719.docx  |binary
 sw/qa/extras/ooxmlimport/data/tdf115719b.docx |binary
 sw/qa/extras/ooxmlimport/data/tdf124600.docx  |binary
 sw/qa/extras/ooxmlimport/ooxmlimport2.cxx |   11 +++
 writerfilter/source/dmapper/GraphicImport.cxx |   11 ++-
 5 files changed, 21 insertions(+), 1 deletion(-)

New commits:
commit 1d1f7bf0ffd04e16c2a64220e36aba95f3a519e5
Author: Miklos Vajna 
AuthorDate: Tue Sep 17 11:30:26 2019 +0200
Commit: Mike Kaganski 
CommitDate: Mon Sep 30 13:43:47 2019 +0200

Related: tdf#124600 DOCX import: ignore left wrap on left-aligned shapes

The DOC import does the same in
SwWW8ImplReader::AdjustLRWrapForWordMargins(). This fixes one
sub-problem of the bugdoc, so now the shape anchored in the header has a
correct position.

This made it necessary to re-visit the tdf#115719 testcases, which are
minimal reproducers. The original document had from-left alignment
(instead of align-to-left), but this did not matter before. Bring the
test documents closer to the original large document, so the tests still
pass and don't depend on LO mis-handling the above mentioned
left-aligned situation. (The interesting property of tdf115719.docx,
where Word 2010 and Word 2013 handles the document differently is
preserved after this change.)

(cherry picked from commit 4883da6fd25e4645a3b30cb58212a2f666dae75a)

Change-Id: I973c13df47b0867e2c4756f0c448495257b7c9d5
Reviewed-on: https://gerrit.libreoffice.org/79834
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf115719.docx 
b/sw/qa/extras/ooxmlexport/data/tdf115719.docx
index f98f8b4a05dc..4eda09a98fa2 100644
Binary files a/sw/qa/extras/ooxmlexport/data/tdf115719.docx and 
b/sw/qa/extras/ooxmlexport/data/tdf115719.docx differ
diff --git a/sw/qa/extras/ooxmlimport/data/tdf115719b.docx 
b/sw/qa/extras/ooxmlimport/data/tdf115719b.docx
index 8c552baf76c1..4cb13228443a 100644
Binary files a/sw/qa/extras/ooxmlimport/data/tdf115719b.docx and 
b/sw/qa/extras/ooxmlimport/data/tdf115719b.docx differ
diff --git a/sw/qa/extras/ooxmlimport/data/tdf124600.docx 
b/sw/qa/extras/ooxmlimport/data/tdf124600.docx
new file mode 100644
index ..d5dfa313665e
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf124600.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
index 33c8a34d2a72..5af1a4021242 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
@@ -101,6 +101,17 @@ DECLARE_OOXMLIMPORT_TEST(testGroupShapeFontName, 
"groupshape-fontname.docx")
 getProperty(getRun(getParagraphOfText(1, xText), 1), 
"CharFontNameAsian"));
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf124600, "tdf124600.docx")
+{
+uno::Reference xShape = getShape(1);
+// Without the accompanying fix in place, this test would have failed with:
+// - Expected: 0
+// - Actual  : 318
+// i.e. the shape had an unexpected left margin, but not in Word.
+CPPUNIT_ASSERT_EQUAL(static_cast(0),
+ getProperty(xShape, "HoriOrientPosition"));
+}
+
 DECLARE_OOXMLIMPORT_TEST(testTdf120548, "tdf120548.docx")
 {
 // Without the accompanying fix in place, this test would have failed with 
'Expected: 00ff;
diff --git a/writerfilter/source/dmapper/GraphicImport.cxx 
b/writerfilter/source/dmapper/GraphicImport.cxx
index d9458ba468c2..a9504a9785b4 100644
--- a/writerfilter/source/dmapper/GraphicImport.cxx
+++ b/writerfilter/source/dmapper/GraphicImport.cxx
@@ -976,7 +976,6 @@ void GraphicImport::ProcessShapeOptions(Value const & 
rValue)
 switch( m_pImpl->nShapeOptionType )
 {
 case NS_ooxml::LN_CT_Anchor_distL:
-//todo: changes have to be applied depending on the orientation, 
see SwWW8ImplReader::AdjustLRWrapForWordMargins()
 m_pImpl->nLeftMargin = nIntValue / 360;
 break;
 case NS_ooxml::LN_CT_Anchor_distT:
@@ -1071,6 +1070,16 @@ void GraphicImport::lcl_sprm(Sprm& rSprm)
 m_pImpl->nHoriRelation = pHandler->relation();
 m_pImpl->nHoriOrient = pHandler->orientation();
 m_pImpl->nLeftPosition = pHandler->position();
+
+// Left adjustments: if horizontally aligned to left of 
margin, then remove the
+// left wrapping.
+if (m_pImpl->nHoriOrient == text::HoriOrientation::LEFT)
+{
+if (m_pImpl->nHoriRelation == 
text::RelOrientation::PAGE_PRINT_AREA)
+{
+m_pImpl->nLeftMargin = 0;
+}
+}
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-bugs] [Bug 127862] FILESAVE: DOC: Background colour lost on save in a writer file

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127862

--- Comment #3 from Michael Stahl (CIB)  ---
most likely this one?

commit cc899c6967238877f0094bcf00627145e484ffec

tdf#101826 ww8import: Fly - don't convert XATTR back and forth

In this case we are explicitly interested in textboxes,
but any fly that accepts XATTR will now use that and skip
the old RES_BACKGROUND.

In the case of textbox import, the properties were being
converted into RES_BACKGROUND and then back to XATTR again.
Just copy the XATTR properties to the new FlySet instead.

The ability to import XATTRs into a textbox was added to LO6.3
with commit 15819181772d95963d16c1c2eaa9e51af81f7f68

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

[Libreoffice-bugs] [Bug 76131] Existing pinned icon on Win7/8 is taskbar invalid after re-installation/update

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76131

Timur  changed:

   What|Removed |Added

   Priority|medium  |high
   Severity|normal  |minor

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

[Libreoffice-bugs] [Bug 127862] FILESAVE: DOC: Background colour lost on save in a writer file

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127862

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||michael.st...@cib.de,
   ||r...@post.cz

--- Comment #2 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Michael Stahl, Justin Luth ; Could you possibly take a look at
this one? Thanks

063d2168748a7c5119a9f99142a892e7c60d99ab is the first bad commit
commit 063d2168748a7c5119a9f99142a892e7c60d99ab
Author: Norbert Thiebaud 
Date:   Tue Apr 30 06:57:48 2019 -0700

source sha:bf8c8699f7ed09519db2041e1ec1554097e94ab4

source sha:bf8c8699f7ed09519db2041e1ec1554097e94ab4
source sha:5879351aeb1935e2bf86fda59703f7d49fdeb6ed
source sha:3d37463eec0c891243a8971a34903b2da01c9e24
source sha:31ae7509003b1e650463ee1468c0b315ba13efe6
source sha:f6f53f76e15f5eecc5b6ce56e471c53cebfea8ad
source sha:cc899c6967238877f0094bcf00627145e484ffec
source sha:b593634d3cfbb2fc8522d99ce1c3f2a11445ea59

:04 04 42b6382698591d9f15a566927d126b63a4307fcc
fde00b8bbabae215578f1367844987ca62551f20 M  instdir

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

[Libreoffice-bugs] [Bug 124729] Impress reliably crashes on THIS PowerPoint document in Linux

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124729

Timur  changed:

   What|Removed |Added

Crash report or|libvclplug_gtk3lo.so|http://crashreport.libreoff
crash signature||ice.org/stats/signature/lib
   ||vclplug_gtk3lo.so

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

[Libreoffice-bugs] [Bug 123404] Removing xtext annotations doesn't throw an exception - it silently fails

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123404

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #5 from Xisco Faulí  ---
(In reply to Miklos Vajna from comment #3)
> Do you have a suggestion how to do this in a backwards-compatible way?
> Otherwise the change is probably not worth it.

Closing as RESOLVED WONTFIX

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

[Libreoffice-bugs] [Bug 126959] Resize handles in tables (impress)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126959

--- Comment #4 from Nicolas Christener  ---
The handles are visible in 4.1.61 (61) but it seems they don't work yet.

IMHO it's not (completely) fixed yet.

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

[Libreoffice-bugs] [Bug 124729] Impress reliably crashes on THIS PowerPoint document in Linux

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124729

Timur  changed:

   What|Removed |Added

Crash report or||libvclplug_gtk3lo.so
crash signature||

--- Comment #15 from Timur  ---
Surely it crashes. VM with Mint 18.3. Retested with LO 6.4+. I sent a crash
report but no link due to bug 126488 (please set to New!). 
Also crash in 6.3 reported as
http://crashreport.libreoffice.org/stats/crash_details/7b2596f2-babf-4966-a1df-6c1ee83c26f5.

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

[Libreoffice-bugs] [Bug 126959] Resize handles in tables (impress)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126959

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
A polite ping to Tomaž Vajngerl:
Is this bug fixed? if so, could you please close it as RESOLVED FIXED ?
Otherwise, Could you please explain what's missing?
Thanks

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

[Libreoffice-ux-advise] [Bug 127807] HIG Border Dialog update

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127807

Xisco Faulí  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

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

[Libreoffice-ux-advise] [Bug 47896] Too many languages in Format/Language

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47896

Xisco Faulí  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

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

[Libreoffice-ux-advise] [Bug 127823] Start with Template Selection off by default

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127823

Xisco Faulí  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

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

[Libreoffice-bugs] [Bug 127801] REGRESSION: Optimal View Zoom Moves Left-Right

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127801

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #3 from Xisco Faulí  ---
You can't confirm your own bugs. Moving it back to UNCONFIRMED until someone
else confirms it.

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

[Libreoffice-bugs] [Bug 127518] LibreOffice windows stealing focus

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127518

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Status|NEW |NEEDINFO

--- Comment #1 from Xisco Faulí  ---
Hello horus,
How long it takes to launch 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 126133] Calc does not import xlsx correctly - axis title rotated

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126133

Timur  changed:

   What|Removed |Added

Summary|Calc does not import|Calc does not import xlsx
   |xlsx-file correctly.|correctly - axis title
   ||rotated

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

[Libreoffice-bugs] [Bug 126133] Calc does not import xlsx correctly - Chart axis title rotated

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126133

Timur  changed:

   What|Removed |Added

Summary|Calc does not import xlsx   |Calc does not import xlsx
   |correctly - axis title  |correctly - Chart axis
   |rotated |title rotated

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

[Libreoffice-bugs] [Bug 127877] FILESAVE: MS Excel format in libreoffice-6.3.1.2-snap1 (or related) lags/freezes for more than "previous versions"

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127877

--- Comment #2 from stde...@gmail.com ---
> I will attach its template instead sometime later.

I really believe that the issue is simply that the workbook has ~20-25 sheets.

* 6.2.6-0ubuntu0.16.04.1~lo1 works "relatively fast"
* libreoffice-6.3.1.2-snap1  slugs "enough to notice"

Kindly try to replicate internally; if that proves unfeasible, I can try to
provide an example

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

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

2019-09-30 Thread Noel Grandin (via logerrit)
 UnoControls/source/controls/progressmonitor.cxx |9 +
 UnoControls/source/controls/statusindicator.cxx |5 +
 UnoControls/source/inc/progressmonitor.hxx  |8 
 UnoControls/source/inc/statusindicator.hxx  |4 
 4 files changed, 14 insertions(+), 12 deletions(-)

New commits:
commit 8e2e03b1c36375735c4fcfa44ba762d0cbc4ef29
Author: Noel Grandin 
AuthorDate: Mon Sep 30 09:48:30 2019 +0200
Commit: Noel Grandin 
CommitDate: Mon Sep 30 13:12:43 2019 +0200

loplugin:duplicate-defines in UnoControls

these are only used by internal code, so move inside the relevant .cxx
file

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

diff --git a/UnoControls/source/controls/progressmonitor.cxx 
b/UnoControls/source/controls/progressmonitor.cxx
index f973bc89c072..76633befd14d 100644
--- a/UnoControls/source/controls/progressmonitor.cxx
+++ b/UnoControls/source/controls/progressmonitor.cxx
@@ -39,6 +39,15 @@ using namespace ::com::sun::star::awt;
 using ::std::vector;
 using ::std::find;
 
+#define FIXEDTEXT_SERVICENAME   
"com.sun.star.awt.UnoControlFixedText"
+#define FIXEDTEXT_MODELNAME 
"com.sun.star.awt.UnoControlFixedTextModel"
+#define CONTROLNAME_TEXT"Text"   // identifier the 
control in container
+#define CONTROLNAME_PROGRESSBAR "ProgressBar"
+#define BUTTON_SERVICENAME  
"com.sun.star.awt.UnoControlButton"
+#define CONTROLNAME_BUTTON  "Button"
+#define BUTTON_MODELNAME
"com.sun.star.awt.UnoControlButtonModel"
+#define DEFAULT_BUTTONLABEL "Abbrechen"
+
 namespace unocontrols {
 
 ProgressMonitor::ProgressMonitor( const css::uno::Reference< XComponentContext 
>& rxContext )
diff --git a/UnoControls/source/controls/statusindicator.cxx 
b/UnoControls/source/controls/statusindicator.cxx
index 7ac0cd9a4b40..033c787d01c2 100644
--- a/UnoControls/source/controls/statusindicator.cxx
+++ b/UnoControls/source/controls/statusindicator.cxx
@@ -34,6 +34,11 @@ using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::task;
 
+#define FIXEDTEXT_SERVICENAME   
"com.sun.star.awt.UnoControlFixedText"
+#define FIXEDTEXT_MODELNAME 
"com.sun.star.awt.UnoControlFixedTextModel"
+#define CONTROLNAME_TEXT"Text" // identifier the 
control in container
+#define CONTROLNAME_PROGRESSBAR "ProgressBar" //  
-||-
+
 namespace unocontrols {
 
 //  construct/destruct
diff --git a/UnoControls/source/inc/progressmonitor.hxx 
b/UnoControls/source/inc/progressmonitor.hxx
index 38ad0adcc3ae..339b6e6cb6cc 100644
--- a/UnoControls/source/inc/progressmonitor.hxx
+++ b/UnoControls/source/inc/progressmonitor.hxx
@@ -38,14 +38,6 @@ namespace unocontrols {
 class ProgressBar;
 
 #define PROGRESSMONITOR_FREEBORDER  10 
 // border around and between the controls
-#define FIXEDTEXT_SERVICENAME   
"com.sun.star.awt.UnoControlFixedText"
-#define BUTTON_SERVICENAME  
"com.sun.star.awt.UnoControlButton"
-#define FIXEDTEXT_MODELNAME 
"com.sun.star.awt.UnoControlFixedTextModel"
-#define BUTTON_MODELNAME
"com.sun.star.awt.UnoControlButtonModel"
-#define CONTROLNAME_TEXT"Text" 
 // identifier the control in container
-#define CONTROLNAME_BUTTON  "Button"   
 //  -||-
-#define CONTROLNAME_PROGRESSBAR "ProgressBar"  
 //  -||-
-#define DEFAULT_BUTTONLABEL "Abbrechen"
 #define PROGRESSMONITOR_DEFAULT_TOPIC   ""
 #define PROGRESSMONITOR_DEFAULT_TEXT""
 #define PROGRESSMONITOR_LINECOLOR_BRIGHTsal_Int32(Color( 0x00, 
0xFF, 0xFF, 0xFF )) // white
diff --git a/UnoControls/source/inc/statusindicator.hxx 
b/UnoControls/source/inc/statusindicator.hxx
index 884034c1747b..daff3e169b47 100644
--- a/UnoControls/source/inc/statusindicator.hxx
+++ b/UnoControls/source/inc/statusindicator.hxx
@@ -37,10 +37,6 @@ namespace unocontrols {
 class ProgressBar;
 
 #define STATUSINDICATOR_FREEBORDER  5  
 // border around and between the controls
-#define FIXEDTEXT_SERVICENAME   
"com.sun.star.awt.UnoControlFixedText"
-#define FIXEDTEXT_MODELNAME 
"com.sun.star.awt.UnoControlFixedTextModel"
-#define 

[Libreoffice-bugs] [Bug 126767] Autofill doesn't overwrite data in continuously filled cells

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126767

Eike Rathke  changed:

   What|Removed |Added

 CC||silva...@katamail.com

--- Comment #13 from Eike Rathke  ---
*** Bug 127876 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 127876] Autofill in Calc does not work anymore if column is already populated

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127876

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 127876] Autofill in Calc does not work anymore if column is already populated

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127876

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #1 from Eike Rathke  ---


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

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

[Libreoffice-bugs] [Bug 127800] Libreoffice does not recalculate sum

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127800

Xisco Faulí  changed:

   What|Removed |Added

 CC||er...@redhat.com

--- Comment #8 from Xisco Faulí  ---
@Eike, what's your opinion on this one ?

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

[Libreoffice-bugs] [Bug 127800] Libreoffice does not recalculate sum

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127800

Xisco Faulí  changed:

   What|Removed |Added

   Assignee|juseb...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org
 CC||xiscofa...@libreoffice.org
Version|6.1.6.3 release |4.1 all versions

--- Comment #7 from Xisco Faulí  ---
Reproduced back to

Version 4.1.0.0.alpha0+ (Build ID: efca6f15609322f62a35619619a6d5fe5c9bd5a)

@Eike, what's your opinion on this one ?

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

[Libreoffice-bugs] [Bug 127856] Pushing More... in language selection in Calc Status bar leads to Language settings instead of cell properties

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127856

Xisco Faulí  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||3911
   Keywords||bibisected, bisected,
   ||needsUXEval
 CC||hcas...@collabora.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
The current behaviour was implemented in
https://cgit.freedesktop.org/libreoffice/core/commit/?id=6db709ba79fec6f75dd7385ce57c65a62fc2254e

@UX Team, what's your opinion on this ??

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

[Libreoffice-ux-advise] [Bug 127856] Pushing More... in language selection in Calc Status bar leads to Language settings instead of cell properties

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127856

Xisco Faulí  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||3911
   Keywords||bibisected, bisected,
   ||needsUXEval
 CC||hcas...@collabora.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
The current behaviour was implemented in
https://cgit.freedesktop.org/libreoffice/core/commit/?id=6db709ba79fec6f75dd7385ce57c65a62fc2254e

@UX Team, what's your opinion on this ??

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

[Libreoffice-bugs] [Bug 127795] Form fields not shown as form fields in PDF Export

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127795

--- Comment #6 from Alex Thurgood  ---
@Thierry : thanks.

I'm guessing that this is a Windows specific bug then.

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

[Libreoffice-bugs] [Bug 127795] Form fields not shown as form fields in PDF Export

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127795

Alex Thurgood  changed:

   What|Removed |Added

 OS|All |Windows (All)

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

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

2019-09-30 Thread Tünde Tóth (via logerrit)
 sw/qa/extras/ooxmlexport/data/internal_hyperlink_region.odt |binary
 sw/qa/extras/ooxmlexport/data/internal_hyperlink_table.odt  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx  |   22 +
 sw/source/filter/ww8/docxattributeoutput.cxx|7 --
 sw/source/filter/ww8/wrtw8nds.cxx   |3 -
 sw/source/filter/ww8/wrtww8.cxx |   29 
 6 files changed, 55 insertions(+), 6 deletions(-)

New commits:
commit 5d5ec2a1ffe3862cc9689e667cebf1f9c1a5f330
Author: Tünde Tóth 
AuthorDate: Wed Sep 25 12:10:16 2019 +0200
Commit: László Németh 
CommitDate: Mon Sep 30 13:00:51 2019 +0200

tdf#127735 DOCX export: fix internal hyperlinks to table target

Hyperlinks with internal table targets didn't work in Microsoft Word.

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

diff --git a/sw/qa/extras/ooxmlexport/data/internal_hyperlink_table.odt 
b/sw/qa/extras/ooxmlexport/data/internal_hyperlink_table.odt
new file mode 100644
index ..f3144a30e5a3
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/internal_hyperlink_table.odt differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
index d13b7bf90144..ec8635943f4d 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
@@ -804,6 +804,17 @@ DECLARE_OOXMLEXPORT_TEST(testTdf127734, 
"internal_hyperlink_region.odt")
 CPPUNIT_ASSERT_EQUAL(anchor, bookmarkName);
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf127735, "internal_hyperlink_table.odt")
+{
+xmlDocPtr pXmlDoc = parseExport("word/document.xml");
+if (!pXmlDoc)
+return;
+
+OUString bookmarkName = getXPath(pXmlDoc, 
"/w:document/w:body/w:tbl/w:tr[1]/w:tc[1]/w:p/w:bookmarkStart", "name");
+OUString anchor = getXPath(pXmlDoc, 
"/w:document/w:body/w:p[1]/w:hyperlink", "anchor");
+CPPUNIT_ASSERT_EQUAL(anchor, bookmarkName);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index f9f7c3c94c14..79d82b72c7a6 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2914,11 +2914,8 @@ bool DocxAttributeOutput::StartURL( const OUString& 
rUrl, const OUString& rTarge
 }
 }
 }
-if (sMark.indexOf(' ') != -1 && !sMark.endsWith("|table"))
-{
-// Spaces are prohibited in bookmark name.
-sMark = sMark.replace(' ', '_');
-}
+// Spaces are prohibited in bookmark name.
+sMark = sMark.replace(' ', '_');
 m_pHyperlinkAttrList->add( FSNS( XML_w, XML_anchor ),
 OUStringToOString( sMark, RTL_TEXTENCODING_UTF8 ).getStr( 
) );
 }
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index b80f94656704..b722b22621d3 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -917,7 +917,8 @@ bool AttributeOutputBase::AnalyzeURL( const OUString& rUrl, 
const OUString& /*rT
 OUString());
 
 // #i21465# Only interested in outline references
-if ( !sRefType.isEmpty() && (sRefType == "outline" || sRefType == 
"graphic" || sRefType == "frame" || sRefType == "ole" || sRefType == "region") )
+if ( !sRefType.isEmpty() &&
+(sRefType == "outline" || sRefType == "graphic" || sRefType == 
"frame" || sRefType == "ole" || sRefType == "region" || sRefType == "table") )
 {
 for ( const auto& rBookmarkPair : GetExport().m_aImplicitBookmarks 
)
 {
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index fcb168f68bf1..542d24d7a64b 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -3130,6 +3130,20 @@ void MSWordExportBase::AddLinkTarget(const OUString& 
rURL)
 }
 }
 }
+else if( sCmp == "table" )
+{
+OUString aName(BookmarkToWriter(aURL.copy(0, nPos)));
+const SwTable* pTable = 
SwTable::FindTable(m_pDoc->FindTableFormatByName(aName));
+if (pTable)
+{
+SwTableNode* pTableNode = 
const_cast(pTable->GetTabSortBoxes()[1]->GetSttNd()->FindTableNode());
+if (pTableNode)
+{
+nIdx = pTableNode->GetIndex() + 2;
+noBookmark = true;
+}
+}
+}
 if (noBookmark)
 {
 aBookmarkPair aImplicitBookmark;
commit 7046846f840fb087cdda677a0e29461adca843aa
Author: Tünde Tóth 
AuthorDate: Wed Sep 25 10:23:52 2019 +0200
Commit: László Németh 

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

2019-09-30 Thread Tünde Tóth (via logerrit)
 sw/qa/extras/ooxmlexport/data/internal_hyperlink_ole.odt |binary
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx   |   11 +++
 sw/source/filter/ww8/docxattributeoutput.cxx |2 +-
 sw/source/filter/ww8/wrtw8nds.cxx|2 +-
 sw/source/filter/ww8/wrtww8.cxx  |   11 +++
 5 files changed, 24 insertions(+), 2 deletions(-)

New commits:
commit 97fba7ebf350adcec6baa6c4a863d058fb90406a
Author: Tünde Tóth 
AuthorDate: Tue Sep 24 14:29:44 2019 +0200
Commit: László Németh 
CommitDate: Mon Sep 30 13:00:09 2019 +0200

tdf#127733 DOCX export: fix internal hyperlinks to chart target

Hyperlinks to internal chart targets didn't work after export.

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

diff --git a/sw/qa/extras/ooxmlexport/data/internal_hyperlink_ole.odt 
b/sw/qa/extras/ooxmlexport/data/internal_hyperlink_ole.odt
new file mode 100644
index ..844cf1be6580
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/internal_hyperlink_ole.odt differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
index 33d767e0bd81..b95f0083e10e 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
@@ -782,6 +782,17 @@ DECLARE_OOXMLEXPORT_TEST(testTdf127732, 
"internal_hyperlink_frame.odt")
 CPPUNIT_ASSERT_EQUAL(anchor, bookmarkName);
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf127733, "internal_hyperlink_ole.odt")
+{
+xmlDocPtr pXmlDoc = parseExport("word/document.xml");
+if (!pXmlDoc)
+return;
+
+OUString bookmarkName = getXPath(pXmlDoc, 
"/w:document/w:body/w:p[3]/w:bookmarkStart", "name");
+OUString anchor = getXPath(pXmlDoc, 
"/w:document/w:body/w:p[1]/w:hyperlink", "anchor");
+CPPUNIT_ASSERT_EQUAL(anchor, bookmarkName);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index b6f83787b673..3a7555ee305f 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2914,7 +2914,7 @@ bool DocxAttributeOutput::StartURL( const OUString& rUrl, 
const OUString& rTarge
 }
 }
 }
-if (sMark.indexOf(' ') != -1 && !sMark.endsWith("|table") && 
!sMark.endsWith("|ole") && !sMark.endsWith("|region"))
+if (sMark.indexOf(' ') != -1 && !sMark.endsWith("|table") && 
!sMark.endsWith("|region"))
 {
 // Spaces are prohibited in bookmark name.
 sMark = sMark.replace(' ', '_');
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index 528cd498017b..7edf472786f1 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -917,7 +917,7 @@ bool AttributeOutputBase::AnalyzeURL( const OUString& rUrl, 
const OUString& /*rT
 OUString());
 
 // #i21465# Only interested in outline references
-if ( !sRefType.isEmpty() && (sRefType == "outline" || sRefType == 
"graphic" || sRefType == "frame") )
+if ( !sRefType.isEmpty() && (sRefType == "outline" || sRefType == 
"graphic" || sRefType == "frame" || sRefType == "ole") )
 {
 for ( const auto& rBookmarkPair : GetExport().m_aImplicitBookmarks 
)
 {
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 222466d8eb1e..bec217c60ddb 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -3104,6 +3104,17 @@ void MSWordExportBase::AddLinkTarget(const OUString& 
rURL)
 noBookmark = true;
 }
 }
+else if( sCmp == "ole" )
+{
+SwNodeIndex* pIdx;
+OUString aName(BookmarkToWriter(aURL.copy(0, nPos)));
+const SwFlyFrameFormat* pFormat = m_pDoc->FindFlyByName(aName, 
SwNodeType::Ole);
+if (pFormat && nullptr != (pIdx = 
const_cast(pFormat->GetContent().GetContentIdx(
+{
+nIdx = pIdx->GetNext()->GetIndex();
+noBookmark = true;
+}
+}
 if (noBookmark)
 {
 aBookmarkPair aImplicitBookmark;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-09-30 Thread Tünde Tóth (via logerrit)
 sw/qa/extras/ooxmlexport/data/internal_hyperlink_frame.odt |binary
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx |   11 +++
 sw/source/filter/ww8/docxattributeoutput.cxx   |2 -
 sw/source/filter/ww8/wrtw8nds.cxx  |5 +--
 sw/source/filter/ww8/wrtww8.cxx|   20 +
 5 files changed, 29 insertions(+), 9 deletions(-)

New commits:
commit a0f46953883aadab1ae7cae5641d3fc1a6089f81
Author: Tünde Tóth 
AuthorDate: Tue Sep 24 11:53:46 2019 +0200
Commit: László Németh 
CommitDate: Mon Sep 30 12:59:21 2019 +0200

tdf#127732 DOCX export: fix internal hyperlinks to frame target

Hyperlinks to internal frame targets didn't work in Word.

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

diff --git a/sw/qa/extras/ooxmlexport/data/internal_hyperlink_frame.odt 
b/sw/qa/extras/ooxmlexport/data/internal_hyperlink_frame.odt
new file mode 100644
index ..2497d5926a26
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/internal_hyperlink_frame.odt differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
index 7d94913e9449..33d767e0bd81 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
@@ -771,6 +771,17 @@ DECLARE_OOXMLEXPORT_TEST(testTdf127605, "tdf127605.odt")
 CPPUNIT_ASSERT_EQUAL(anchor, bookmarkName);
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf127732, "internal_hyperlink_frame.odt")
+{
+xmlDocPtr pXmlDoc = parseExport("word/document.xml");
+if (!pXmlDoc)
+return;
+
+OUString bookmarkName = getXPath(pXmlDoc, 
"/w:document/w:body/w:p[2]/w:r[2]/mc:AlternateContent/mc:Fallback/w:pict/v:rect/v:textbox/w:txbxContent/w:p/w:bookmarkStart",
 "name");
+OUString anchor = getXPath(pXmlDoc, 
"/w:document/w:body/w:p[1]/w:hyperlink", "anchor");
+CPPUNIT_ASSERT_EQUAL(anchor, bookmarkName);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index f183bada73b1..b6f83787b673 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2914,7 +2914,7 @@ bool DocxAttributeOutput::StartURL( const OUString& rUrl, 
const OUString& rTarge
 }
 }
 }
-if (sMark.indexOf(' ') != -1 && !sMark.endsWith("|table") && 
!sMark.endsWith("|frame") && !sMark.endsWith("|ole") && 
!sMark.endsWith("|region"))
+if (sMark.indexOf(' ') != -1 && !sMark.endsWith("|table") && 
!sMark.endsWith("|ole") && !sMark.endsWith("|region"))
 {
 // Spaces are prohibited in bookmark name.
 sMark = sMark.replace(' ', '_');
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index eb81d0105db3..528cd498017b 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -917,12 +917,11 @@ bool AttributeOutputBase::AnalyzeURL( const OUString& 
rUrl, const OUString& /*rT
 OUString());
 
 // #i21465# Only interested in outline references
-if ( sRefType == "outline" || sRefType == "graphic" )
+if ( !sRefType.isEmpty() && (sRefType == "outline" || sRefType == 
"graphic" || sRefType == "frame") )
 {
-OUString sLink = sMark.copy(0, nPos);
 for ( const auto& rBookmarkPair : GetExport().m_aImplicitBookmarks 
)
 {
-if ( rBookmarkPair.first == sLink )
+if ( rBookmarkPair.first == sMark )
 {
 sMark = "_toc" + OUString::number( rBookmarkPair.second );
 break;
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 763038abcb4d..222466d8eb1e 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -3066,14 +3066,13 @@ void MSWordExportBase::AddLinkTarget(const OUString& 
rURL)
 return;
 
 sCmp = sCmp.toAsciiLowerCase();
-OUString aName;
 sal_uLong nIdx = 0;
 bool noBookmark = false;
 
 if( sCmp == "outline" )
 {
-SwPosition aPos( *m_pCurPam->GetPoint() );
-aName = BookmarkToWriter(aURL.copy(0, nPos));
+SwPosition aPos(*m_pCurPam->GetPoint());
+OUString aName(BookmarkToWriter(aURL.copy(0, nPos)));
 // If we can find the outline this bookmark refers to
 // save the name of the bookmark and the
 // node index number of where it points to
@@ -3086,7 +3085,7 @@ void MSWordExportBase::AddLinkTarget(const OUString& rURL)
 else if( sCmp == "graphic" )
 {
 SwNodeIndex* pIdx;
-aName = 

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

2019-09-30 Thread Caolán McNamara (via logerrit)
 sw/source/core/tox/tox.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 2941768d4f17f95a7450475d2e3e9173e3aa98fe
Author: Caolán McNamara 
AuthorDate: Thu Sep 26 16:59:51 2019 +0100
Commit: Caolán McNamara 
CommitDate: Mon Sep 30 12:56:20 2019 +0200

null deref

since...

commit a5081700bacb90d8560959a4d65d94a2d4e8dadd
Date:   Fri Sep 20 10:31:40 2019 +0200

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

diff --git a/sw/source/core/tox/tox.cxx b/sw/source/core/tox/tox.cxx
index d34c145979e6..7b7bb2e1071b 100644
--- a/sw/source/core/tox/tox.cxx
+++ b/sw/source/core/tox/tox.cxx
@@ -123,7 +123,8 @@ SwTOXMark::SwTOXMark(const SwTOXMark& rCopy)
 , m_bAutoGenerated(rCopy.m_bAutoGenerated)
 , m_bMainEntry(rCopy.m_bMainEntry)
 {
-const_cast()->GetRegisteredIn()->Add(this);
+if (auto pRegister = const_cast()->GetRegisteredIn())
+pRegister->Add(this);
 // Copy AlternativString
 m_aAltText = rCopy.m_aAltText;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105537

Xisco Faulí  changed:

   What|Removed |Added

 Depends on||127858


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127858
[Bug 127858] Assertion when trying to edit a form (Linux gen rendering)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127858] Assertion when trying to edit a form (Linux gen rendering)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127858

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||105537
 CC||xiscofa...@libreoffice.org
 Status|UNCONFIRMED |NEW


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 95303] FILEOPEN PPTX Incorrect rendering of SmartArt (see comment 6)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95303

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

   What|Removed |Added

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

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

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

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108226
Bug 108226 depends on bug 95303, which changed state.

Bug 95303 Summary: FILEOPEN PPTX Incorrect rendering of SmartArt (see comment 6)
https://bugs.documentfoundation.org/show_bug.cgi?id=95303

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 106547] [META] OOXML SmartArt bug tracker

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106547
Bug 106547 depends on bug 95303, which changed state.

Bug 95303 Summary: FILEOPEN PPTX Incorrect rendering of SmartArt (see comment 6)
https://bugs.documentfoundation.org/show_bug.cgi?id=95303

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 127842] The buttons created in the calc sheet are constantly drawn, blink and slow down the work

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127842

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||xiscofa...@libreoffice.org
 Status|UNCONFIRMED |RESOLVED

--- Comment #11 from Xisco Faulí  ---
(In reply to Kadet from comment #8)
> (In reply to Oliver Brinzing from comment #3)
> > this issue could be a duplicate of:
> > 
> > Bug 121963 - button flashing - mouse wheel zooming breaks
> 
> 
> Quite possible. Mouse flickering is also observed. My testing showed that
> the problem appeared after the next commit:
> 
> d0bdd6cb45a812e383d6efb91012d597aae5f116 is the first bad commit
> commit d0bdd6cb45a812e383d6efb91012d597aae5f116
> Author: Norbert Thiebaud 
> Date:   Fri Nov 30 13:41:59 2018 -0800
> 
> source sha:d464d505fbf6e53a38afdd3661d320fac8c760d6
> 
> source sha:d464d505fbf6e53a38afdd3661d320fac8c760d6
> 
> :04 04 bf285e1cfb3224de3584a8c6aed6f3a5da0fd997
> fa8381282f278eb33ba9036548fae09cbe9a0d76 M  instdir

Thanks for the bisection.
It does confirm it's a duplicate of bug 121963

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

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

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||kade...@ya.ru

--- Comment #23 from Xisco Faulí  ---
*** Bug 127842 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 113006] FILEOPEN PPTX Table opens with Liberation font instead of Arial (OK if PPTX resaved in MSO)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113006

--- Comment #7 from Timur  ---
Created attachment 154656
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154656=edit
Slide resaved in MSO 2016 as PPTX

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

[Libreoffice-bugs] [Bug 127826] "Cell Style Modify" window can crash while interacting with 2 documents

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127826

stde...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #5 from stde...@gmail.com ---
(In reply to Xisco Faulí from comment #4)
> to verify the bug. 
> (Please note that the attachment will be public, remove any sensitive
> information before attaching it. 
> See
> https://wiki.documentfoundation.org/QA/
> FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F for help
> on how to do so.)
> 
> I have set the bug's status to 'NEEDINFO'. Please change it back to
> 'UNCONFIRMED' once the requested document is provided.

Your response appears incomplete. Please fix it.

I don't believe that the documents I used are necessary. Replication steps are
quite straightforward and easy; kindly try them before requesting me to attach
sample files.

Additionally, the exact files I used are unlikely to be provided; there is too
much scrubbing that needs to be done.

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

[Libreoffice-bugs] [Bug 125575] Saving a file will later lead to unusable app

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125575

--- Comment #13 from Tor Lillqvist  ---
Yes, the corresponding commit ee497b873eadfa3ab4ba77793748e83ff649dacf in the
distro/collabora/collabora-online-4 branch is included in the 4.1.61 build.
Check here:
https://gerrit.libreoffice.org/#/q/status:merged+project:online+branch:distro/collabora/collabora-online-4

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

[Libreoffice-bugs] [Bug 113006] FILEOPEN PPTX Table opens with Liberation font instead of Arial (OK if PPTX resaved in MSO)

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113006

Timur  changed:

   What|Removed |Added

   Priority|medium  |low
Summary|FILEOPEN PPTX Table in  |FILEOPEN PPTX Table opens
   |attached presentation falls |with Liberation font
   |off slide   |instead of Arial (OK if
   ||PPTX resaved in MSO)
   Severity|normal  |minor

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

[Libreoffice-bugs] [Bug 113006] FILEOPEN PPTX Table in attached presentation falls off slide

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113006

--- Comment #6 from Timur  ---
Created attachment 154655
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154655=edit
Slide compared MSO LO

Original PPTX used to go out of slide in LO, now it doesn't. It still opens
with wrong Liberation font instead of Arial.
But, same PPTX saved again in MSO opens fine in LO, with Arial.
In situations like this we may close the bug or maybe better leave it with low
priority and better title. 
I'll change "FILEOPEN PPTX Table in attached presentation falls off slide" to
"FILEOPEN PPTX Table opens with Liberation font instead of Arial (OK if PPTX
resaved in MSO)".

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

[Libreoffice-bugs] [Bug 127859] pressing edit button in footer or header make LO crash

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127859

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #3 from Caolán McNamara  ---
huh!, an OS/2 workaround comes back to cause trouble

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

[Libreoffice-bugs] [Bug 127845] Opening a file LO says it previously crashed, but fails to recover

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127845

--- Comment #15 from t...@tim-passingham.co.uk ---
As I feared, the problem has recurred.  I opened an existing odt, edited and
printed, all OK, and I closed that file.

I then attempted to open an ODS, and got this same problem again.  Some odts
now also give the same problem.

One odt opened OK but when I went to print settings it crashed and asked to
recover, this time giving the correct file name in the recovery box.

Libreoffice is now unusable.  If there is any chance really old versions, or
alpha new ones might be better, please advise and I'll try.  

Anything else I can try?

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

[Libreoffice-bugs] [Bug 127845] Opening a file LO says it previously crashed, but fails to recover

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127845

--- Comment #14 from t...@tim-passingham.co.uk ---
As I feared, the problem has recurred.  I opened an existing odt, edited and
printed, all OK, and I closed that file.

I then attempted to open an ODS, and got this same problem again.  Some odts
now also give the same problem.

One odt opened OK but when I went to print settings it crashed and asked to
recover, this time giving the correct file name in the recovery box.

Libreoffice is now unusable.  If there is any chance really old versions, or
alpha new ones might be better, please advise and I'll try.  

Anything else I can try?

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

[Libreoffice-bugs] [Bug 127826] "Cell Style Modify" window can crash while interacting with 2 documents

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127826

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #4 from Xisco Faulí  ---
to verify the bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

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

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

[Libreoffice-bugs] [Bug 125575] Saving a file will later lead to unusable app

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125575

--- Comment #12 from Nicolas Christener  ---
I usually test with "On My iPad" and only report issues when they happen with
that "storage backend" as well.

I'm happy to test with the next release - AFAIK there is no build available
that contains the fix you made in:
https://git.libreoffice.org/online/commit/908240741daba5e8b9991bc0979a506b62bf1c72

As soon as there is a build with that fix, I'll test all the bugs that are
related to this kind of problems. I suspect, that e.g. #124898 could be related
to this as well.

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

[Libreoffice-bugs] [Bug 127613] Crash with no clear reason - even in safe mode

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127613

--- Comment #20 from David Wales  ---
I followed the comment in bug #127619 suggesting to disable auto update, click
'Apply', then 'OK', then quit LibreOffice before it has a chance to crash.

It has not crashed since.

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

[Libreoffice-bugs] [Bug 127880] HIG Columns Dialog update

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127880

andreas_k  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||kain...@gmail.com

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

[Libreoffice-bugs] [Bug 127880] New: HIG Columns Dialog update

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127880

Bug ID: 127880
   Summary: HIG Columns Dialog update
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Created attachment 154654
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154654=edit
Hide Column Dialog update

Separator Line is one group and one group should be in one column at least if
the space is available and as the dialog didn't increase in size, I suggest to
make one column instead of 3 for Separator Line.


Top: master
Bottom: proposal

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

[Libreoffice-bugs] [Bug 76324] CALC becomes very slow with 5000+ comments

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76324

--- Comment #86 from Xisco Faulí  ---
in

Version: 6.3.1.0.0+
Build ID: 8b81a453b22611f25674f5e44ae411d78c2fcada
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
Calc: threaded

I killed LibreOffice after 10 minutes doing the following

1. Open the attached document
2. Select Column A and B
3. Copy

in

Version: 6.4.0.0.alpha0+
Build ID: d5b7627a0e738c0866b819910153b96b611813f8
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
Calc: threaded

LibreOffice responded after 7 minutes...

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

[Libreoffice-bugs] [Bug 124729] Impress reliably crashes on THIS PowerPoint document in Linux

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124729

Buovjaga  changed:

   What|Removed |Added

 CC||gti...@gmail.com

--- Comment #14 from Buovjaga  ---
(In reply to Xisco Faulí from comment #13)
> @Timur, you moved this issue to NEW, does it mean it crashes for you as well
> ?

Timur reproduced in comment 4, but it is marked as obsolete. Maybe a lesson for
the future not to go overboard in hiding 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 116685] Copy-pasting a range of cells from Calc to Writer should produce a table by default

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116685

--- Comment #20 from Timur  ---
Created attachment 154653
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154653=edit
test compared in LO before and after and MSO

Hard to say what's best here. 
Average user would want the same look (HTML) but we my say we promote using
styles so RichText as default might do.

But why both RTF and RichText, what's the difference? We need to add and update
Help.

Wording in Paste is technical in LO and descriptions in MSO.
FWIS, we don't have "link AND keep styles". Link works for DDE but no styles,
some weird format.

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

[Libreoffice-bugs] [Bug 127613] Crash with no clear reason - even in safe mode

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127613

--- Comment #19 from David Wales  ---
I think I'm getting the same issue.

I'm running the lastest LibreOffice (6.3.2.2) on macOS 10.13.6.

Where can I find crash reports and logs?

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

[Libreoffice-bugs] [Bug 116685] Copy-pasting a range of cells from Calc to Writer should produce a table by default

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116685

--- Comment #19 from Timur  ---
Created attachment 154652
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154652=edit
test ODS

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

[Libreoffice-bugs] [Bug 127879] : The programs hangs during ortograph control

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127879

Bonin  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 124729] Impress reliably crashes on THIS PowerPoint document in Linux

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124729

--- Comment #13 from Xisco Faulí  ---
I retested again. It doens't crash in

Version: 6.4.0.0.alpha0+
Build ID: d5b7627a0e738c0866b819910153b96b611813f8
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
Calc: threaded

nor in

Versión: 6.3.1.2 (x86)
Id. de compilación: b79626edf0065ac373bd1df5c28bd630b4424273
Subprocs. CPU: 1; SO: Windows 6.1; Repres. IU: predet.; VCL: win; 
Configuración regional: es-ES (es_ES); Idioma de IU: es-ES
Calc: threaded

@Timur, you moved this issue to NEW, does it mean it crashes for you as well ?

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

<    1   2   3   4   >