[Libreoffice-commits] core.git: 2 commits - filter/source vcl/source

2019-02-01 Thread Libreoffice Gerrit user
 filter/source/graphicfilter/itiff/itiff.cxx |8 
 vcl/source/filter/jpeg/jpegc.cxx|4 +++-
 2 files changed, 11 insertions(+), 1 deletion(-)

New commits:
commit 28570ba820fb1d5ef30d3f7d3420f6c8136dba56
Author: Caolán McNamara 
AuthorDate: Fri Feb 1 20:46:44 2019 +
Commit: Caolán McNamara 
CommitDate: Sat Feb 2 08:48:19 2019 +0100

ofz#12812 tiff Timeout

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

diff --git a/filter/source/graphicfilter/itiff/itiff.cxx 
b/filter/source/graphicfilter/itiff/itiff.cxx
index 4e121351530d..85dc9d297265 100644
--- a/filter/source/graphicfilter/itiff/itiff.cxx
+++ b/filter/source/graphicfilter/itiff/itiff.cxx
@@ -21,6 +21,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -1593,6 +1594,13 @@ bool TIFFReader::ReadTIFF(SvStream & rTIFF, Graphic & 
rGraphic )
 }
 }
 
+if (bStatus)
+{
+sal_Int32 nResult = 0;
+if (utl::ConfigManager::IsFuzzing() && 
(o3tl::checked_multiply(nImageWidth, nImageLength, nResult) || nResult > 
400))
+bStatus = false;
+}
+
 if ( bStatus )
 {
 maBitmapPixelSize = Size(nImageWidth, nImageLength);
commit 4aac7bc92ab91dadab6ad0bd3324494fbaa84625
Author: Caolán McNamara 
AuthorDate: Thu Jan 31 19:54:42 2019 +
Commit: Caolán McNamara 
CommitDate: Sat Feb 2 08:48:07 2019 +0100

ofz#11203 fuzzing timeout

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

diff --git a/vcl/source/filter/jpeg/jpegc.cxx b/vcl/source/filter/jpeg/jpegc.cxx
index 7c1192eda24b..f6e18a59461c 100644
--- a/vcl/source/filter/jpeg/jpegc.cxx
+++ b/vcl/source/filter/jpeg/jpegc.cxx
@@ -19,6 +19,7 @@
 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -216,7 +217,8 @@ static void ReadJPEG(JpegStuff& rContext, JPEGReader* 
pJPEGReader, void* pInputS
 long nWidth = rContext.cinfo.output_width;
 long nHeight = rContext.cinfo.output_height;
 
-if (nWidth > 2000 && nHeight > 2000 && utl::ConfigManager::IsFuzzing())
+long nResult = 0;
+if (utl::ConfigManager::IsFuzzing() && (o3tl::checked_multiply(nWidth, 
nHeight, nResult) || nResult > 400))
 return;
 
 bool bGray = (rContext.cinfo.output_components == 1);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - include/oox oox/source sw/source tools/source

2019-02-01 Thread Libreoffice Gerrit user
 include/oox/export/drawingml.hxx |   13 +++--
 oox/source/export/drawingml.cxx  |2 +-
 sw/source/filter/ww8/docxattributeoutput.cxx |2 +-
 sw/source/filter/ww8/docxsdrexport.cxx   |2 +-
 tools/source/generic/gen.cxx |   11 +++
 5 files changed, 13 insertions(+), 17 deletions(-)

New commits:
commit d938920433ed28897f41a2dde89ba296ce89bfd5
Author: Miklos Vajna 
AuthorDate: Fri Feb 1 23:44:38 2019 +0100
Commit: Miklos Vajna 
CommitDate: Sat Feb 2 08:33:46 2019 +0100

oox: OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY() can be a template

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

diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index 24adf475be16..fbcc25fb3db1 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -42,12 +42,6 @@
 #include 
 #include 
 
-#ifndef OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY
-// Our rotation is counter-clockwise and is in 100ths of a degree.
-// drawingML rotation is clockwise and is in 6ths of a degree.
-#define OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY(input) 
((2160-input*600)%2160)
-#endif
-
 class Graphic;
 class SdrObjCustomShape;
 
@@ -102,6 +96,13 @@ namespace core {
 
 namespace drawingml {
 
+// Our rotation is counter-clockwise and is in 100ths of a degree.
+// drawingML rotation is clockwise and is in 6ths of a degree.
+template  T ExportRotateClockwisify(T input)
+{
+return ((2160 - input * 600) % 2160);
+}
+
 /// Interface to be implemented by the parent exporter that knows how to 
handle shape text.
 class OOX_DLLPUBLIC DMLTextExport
 {
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index cbc39f946a00..91961155294a 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1493,7 +1493,7 @@ void DrawingML::WriteShapeTransformation( const 
Reference< XShape >& rXShape, sa
 nRotation = nRotation * -1 + 36000;
 
 WriteTransformation(tools::Rectangle(Point(aPos.X, aPos.Y), 
Size(aSize.Width, aSize.Height)), nXmlNamespace,
-bFlipHWrite, bFlipVWrite, 
OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY(nRotation), IsGroupShape( rXShape ));
+bFlipHWrite, bFlipVWrite, ExportRotateClockwisify(nRotation), 
IsGroupShape( rXShape ));
 }
 
 void DrawingML::WriteRunProperties( const Reference< XPropertySet >& rRun, 
bool bIsField, sal_Int32 nElement, bool bCheckDirect,
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 05e5807995a2..46dc2ebfb07c 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4775,7 +4775,7 @@ void DocxAttributeOutput::FlyFrameGraphic( const 
SwGrfNode* pGrfNode, const Size
 if (sal_uInt32 nRot = rSet.Get(RES_GRFATR_ROTATION).GetValue())
 {
 // RES_GRFATR_ROTATION is in 10ths of degree; convert to 100ths 
for macro
-sal_uInt32 mOOXMLRot = 
OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY(nRot*10);
+sal_uInt32 mOOXMLRot = 
oox::drawingml::ExportRotateClockwisify(nRot*10);
 xFrameAttributes->add(XML_rot, OString::number(mOOXMLRot));
 aSize = pGrfNode->GetTwipSize();
 }
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx 
b/sw/source/filter/ww8/docxsdrexport.cxx
index 55b159bbae70..6484fbef9883 100644
--- a/sw/source/filter/ww8/docxsdrexport.cxx
+++ b/sw/source/filter/ww8/docxsdrexport.cxx
@@ -1588,7 +1588,7 @@ void DocxSdrExport::writeDMLTextFrame(ww8::Frame const* 
pParentFrame, int nAncho
 }
 aRotation >>= m_pImpl->getDMLandVMLTextFrameRotation();
 OString sRotation(OString::number(
-
(OOX_DRAWINGML_EXPORT_ROTATE_CLOCKWISIFY(m_pImpl->getDMLandVMLTextFrameRotation();
+
oox::drawingml::ExportRotateClockwisify(m_pImpl->getDMLandVMLTextFrameRotation(;
 // Shape properties
 pFS->startElementNS(XML_wps, XML_spPr, FSEND);
 if (m_pImpl->getDMLandVMLTextFrameRotation())
commit 59886618cf8db7842ad4724a56f0f92436d0b3bd
Author: Miklos Vajna 
AuthorDate: Fri Feb 1 23:31:18 2019 +0100
Commit: Miklos Vajna 
CommitDate: Sat Feb 2 08:33:37 2019 +0100

tools: use std::swap() in Rectangle::Justify()

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

diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx
index 16b81b6ee56f..3593801579ac 100644
--- a/tools/source/generic/gen.cxx
+++ b/tools/source/generic/gen.cxx
@@ -19,6 +19,7 @@
 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -145,20 +146,14 @@ tools::Rectangle& tools::Rectangle::Intersection( const 
tools::Rectangle& 

[Libreoffice-commits] core.git: offapi/com

2019-02-01 Thread Libreoffice Gerrit user
 offapi/com/sun/star/awt/Gradient.idl |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 6205aad7f7b01f186af2b6c31b1519ef118f5a43
Author: Miklos Vajna 
AuthorDate: Fri Feb 1 23:50:23 2019 +0100
Commit: Miklos Vajna 
CommitDate: Sat Feb 2 08:33:55 2019 +0100

offapi: XOffset means center for awt::GradientStyle_RADIAL as well

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

diff --git a/offapi/com/sun/star/awt/Gradient.idl 
b/offapi/com/sun/star/awt/Gradient.idl
index f0d479a29e85..caa722a226e8 100644
--- a/offapi/com/sun/star/awt/Gradient.idl
+++ b/offapi/com/sun/star/awt/Gradient.idl
@@ -60,9 +60,9 @@ published struct Gradient
 short Border;
 
 
-/** Specifies the X-coordinate, where the gradient begins,
- *  whatever that means. Possibly means the *center* of the
- *  ELLIPTICAL, SQUARE and RECT style gradients?
+/** Specifies the X-coordinate, where the gradient begins.
+ *  This is effectively the center of the RADIAL, ELLIPTICAL, SQUARE and
+ *  RECT style gradients.
  */
 short XOffset;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 111951] [META] HTML import bugs and enhancements

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

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

   What|Removed |Added

 Depends on||123119


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123119
[Bug 123119] Freeze after opening of big HTML file
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 123119] Freeze after opening of big HTML file

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

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

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 123119] New: Freeze after opening of big HTML file

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

Bug ID: 123119
   Summary: Freeze after opening of big HTML file
   Product: LibreOffice
   Version: 6.1.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
Freeze after opening of big HTML file

this bug follows from bug 64067

Kubuntu 18.10

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded

Steps to Reproduce:
1. Open in Writer HTML file from
https://bugs.documentfoundation.org/attachment.cgi?id=78645 (first start
Writer, then open file from Writer!). It will be long load
2. After load of document, LO is freeze, you can't scroll a document

Actual Results:
LO is freeze

Expected Results:
LO opens fine


Reproducible: Always


User Profile Reset: No



Additional Info:

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


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

2019-02-01 Thread Libreoffice Gerrit user
 dbaccess/source/filter/hsqldb/parseschema.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit b35a64be6025b59e88231a4dc0f025273adb63c5
Author: Julien Nabet 
AuthorDate: Fri Feb 1 21:11:49 2019 +0100
Commit: Julien Nabet 
CommitDate: Sat Feb 2 07:50:59 2019 +0100

tdf#123020: migration to Firebird fix tablename for indexes

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

diff --git a/dbaccess/source/filter/hsqldb/parseschema.cxx 
b/dbaccess/source/filter/hsqldb/parseschema.cxx
index e04998c80f28..89796e3c06ee 100644
--- a/dbaccess/source/filter/hsqldb/parseschema.cxx
+++ b/dbaccess/source/filter/hsqldb/parseschema.cxx
@@ -74,8 +74,9 @@ public:
 
 OUString getTableName() const
 {
-// SET TABLE 
-return string::split(m_sql, u' ')[2];
+// SET TABLE "" INDEX'...
+// 9 corresponds to nb chars in "SET TABLE"
+return m_sql.copy(m_sql.indexOf("\""), m_sql.lastIndexOf("\"") - 9);
 }
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: WIP migration towards Firebird 3.0.4, cannot find -ltommath

2019-02-01 Thread Julien Nabet

On 01/02/2019 22:48, Terrence Enger wrote:

On Thu, 2019-01-31 at 13:09 -0700, julien2412 wrote:

Hello,

I'm giving a try to migrate Firebird

from 3.0.0 towards 3.0.4

 From what I read, Firebird 4.0 is going to make it easy to handle
dates more like HSQLDB does.

4.0 is still pre-release, and I have not seen a projected date
for release.  Is it a good idea to move to 4.0?


Hello Terrence,

Given the facts that:

- Firebird is now a no more experimental feature in LO

- the number of bugs concerning Firebird in LO bugtrackers

- the lack of Base resources in LO

- the number of LO patches to build Firebird (+ you must take into 
account the different platforms)


- the 4.0 version of Firebird is still beta or even if we wait for the 
stable release, would still be the first one


- the slow rythm of releases in Firebird

I'd prefer sticking to 3.0.X branch of Firebird for the moment.

Of course, it's just my opinion and if someone would bump to 4.0, I 
won't be against it.


Julien

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


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

2019-02-01 Thread Libreoffice Gerrit user
 chart2/source/inc/OPropertySet.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6a815d1b051b0e38611ba4a864ecff3055f81dc5
Author: Andrea Gelmini 
AuthorDate: Thu Jan 31 17:44:50 2019 +
Commit: Julien Nabet 
CommitDate: Sat Feb 2 07:33:45 2019 +0100

Fix typo

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

diff --git a/chart2/source/inc/OPropertySet.hxx 
b/chart2/source/inc/OPropertySet.hxx
index e5f18492a96b..2ee1caa164c8 100644
--- a/chart2/source/inc/OPropertySet.hxx
+++ b/chart2/source/inc/OPropertySet.hxx
@@ -106,7 +106,7 @@ protected:
   sal_Int32 nHandle,
   const css::uno::Any& rValue ) override;
 
-/** The same as setFastProperyValue; nHandle is always valid.
+/** The same as setFastPropertyValue; nHandle is always valid.
 The changes must not be broadcasted in this method.
 
 @attention
@@ -128,7 +128,7 @@ protected:
   const css::uno::Any& rValue ) override;
 
 /**
-   The same as getFastProperyValue, but return the value through rValue and
+   The same as getFastPropertyValue, but return the value through rValue 
and
nHandle is always valid.
 
 @see ::cppu::OPropertySetHelper
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 64067] HTML document conversion and viewing text justification issue with Microsoft Word HTML document

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

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

   What|Removed |Added

 Blocks||111951


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 111951] [META] HTML import bugs and enhancements

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

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

   What|Removed |Added

 Depends on||64067


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=64067
[Bug 64067] HTML document conversion and viewing text justification issue with
Microsoft Word HTML document
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107707] [META] Writer table enhancements requests

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

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

   What|Removed |Added

 Depends on||63634


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=63634
[Bug 63634] Maintain total height but adjust rows to be equal
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 63634] Maintain total height but adjust rows to be equal

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

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

   What|Removed |Added

 Blocks||107707


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107707
[Bug 107707] [META] Writer table enhancements requests
-- 
You are receiving this mail because:
You 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-02-01 Thread Libreoffice Gerrit user
 sw/source/ui/dbui/mmresultdialogs.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 29db6427ea6e3f24fbacfd6ac053231106518749
Author: Aditya 
AuthorDate: Thu Jan 31 04:42:09 2019 +0530
Commit: Mike Kaganski 
CommitDate: Sat Feb 2 06:50:39 2019 +0100

tdf#109120 : Mailmerge filenames starting with 1 (one)

Merged documents when saved as individual documents, the filenames
start from 0. This patch provides a fix for this as it introduces
natural numbering of documents (starting from 1) rather than the
previous 0-based numbering when saving individual merged documents.
e.g. mergedfile_1, mergedfile_2 and so on.

Change-Id: I67275656455788bb5ae935d7d42a349aa0510b36
Reviewed-on: https://gerrit.libreoffice.org/66658
Reviewed-by: Mike Kaganski 
Tested-by: Mike Kaganski 

diff --git a/sw/source/ui/dbui/mmresultdialogs.cxx 
b/sw/source/ui/dbui/mmresultdialogs.cxx
index dfde81645aa8..318229fa3104 100644
--- a/sw/source/ui/dbui/mmresultdialogs.cxx
+++ b/sw/source/ui/dbui/mmresultdialogs.cxx
@@ -638,7 +638,7 @@ IMPL_LINK_NOARG(SwMMResultSaveDialog, SaveOutputHdl_Impl, 
weld::Button&, void)
 pTargetView->GetWrtShell().EndAction();
 //then save it
 OUString sOutPath = 
aURL.GetMainURL(INetURLObject::DecodeMechanism::ToIUri);
-OUString sCounter = "_" + OUString::number(nDoc);
+OUString sCounter = "_" + OUString::number(nDoc + 1);
 sOutPath = sOutPath.replaceAt( sOutPath.getLength() - 
sExtension.getLength() - 1, 0, sCounter);
 
 while(true)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 123001] A little improvement to CONCATENATE/CONCAT, please?

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

--- Comment #2 from TBeholder  ---
Correction: concatenation-with-separator itself, of course, can be done, but
even this requires a lot of conditionals and either an impenetrable construct
using CURRENT() in dodgy ways, or use of many columns as an array of temporary
variables just to easily check arguments.
While inside the cycle that does CONCAT() this would be trivial (a single "if X
and Y then Z").

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


[Libreoffice-bugs] [Bug 123118] LOCALHELP: WIKIHELP: ˋUse LibreOffice dialogsˊ description not correct

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
  Component|LibreOffice |Documentation
 CC||olivier.hallot@documentfoun
   ||dation.org,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
Hi Rainer,

Confirmed, but the legacy use LibreOffice dialogs is considered an advanced
configuration, essentially deprecated with move to Expert Configuration, with
defaults being the os/DE provided file management.

While still present in the 6.2 help [1] the Use LibreOffice dialogs entries
have been corrected in the master/6.3 help [2].

=-ref-=
[1] https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01010600.html

[2] https://help.libreoffice.org/6.3/en-US/text/shared/optionen/01010600.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-commits] core.git: sc/source

2019-02-01 Thread Libreoffice Gerrit user
 sc/source/ui/unoobj/dapiuno.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit e1bcd6150f0ff7c4563fec722491d39498c544a0
Author: Jens Carl 
AuthorDate: Sat Feb 2 02:31:11 2019 +
Commit: Jens Carl 
CommitDate: Sat Feb 2 05:08:49 2019 +0100

Add some comments

Change-Id: Ice9919d7536060a8daac349f08db6c8366ebe392
Reviewed-on: https://gerrit.libreoffice.org/67272
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/sc/source/ui/unoobj/dapiuno.cxx b/sc/source/ui/unoobj/dapiuno.cxx
index b0158f954ece..e9bc8db1be47 100644
--- a/sc/source/ui/unoobj/dapiuno.cxx
+++ b/sc/source/ui/unoobj/dapiuno.cxx
@@ -1677,6 +1677,8 @@ Any SAL_CALL ScDataPilotFieldsObj::getByIndex( sal_Int32 
nIndex )
 return Any( xField );
 }
 
+// XElementAccess
+
 uno::Type SAL_CALL ScDataPilotFieldsObj::getElementType()
 {
 SolarMutexGuard aGuard;
@@ -1689,6 +1691,8 @@ sal_Bool SAL_CALL ScDataPilotFieldsObj::hasElements()
 return ( getCount() != 0 );
 }
 
+// XNameAccess
+
 Any SAL_CALL ScDataPilotFieldsObj::getByName( const OUString& aName )
 {
 SolarMutexGuard aGuard;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2019-02-01 Thread Libreoffice Gerrit user
 cui/source/tabpages/bbdlg.cxx  |   10 +-
 sw/source/uibase/docvw/HeaderFooterWin.cxx |4 
 2 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit 5439b1e4d504c9afa71a707743d219222790d6ac
Author: Jim Raykowski 
AuthorDate: Sun Nov 25 17:23:42 2018 -0900
Commit: Jim Raykowski 
CommitDate: Sat Feb 2 05:05:06 2019 +0100

tdf#105225 New background tab page for header and footer Border

and Background dialog

Change-Id: I21979884b89a496ae36d5f1e48763680ae5da817
Reviewed-on: https://gerrit.libreoffice.org/64016
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/cui/source/tabpages/bbdlg.cxx b/cui/source/tabpages/bbdlg.cxx
index a17122b0f66b..c4f77b1e9aa5 100644
--- a/cui/source/tabpages/bbdlg.cxx
+++ b/cui/source/tabpages/bbdlg.cxx
@@ -46,7 +46,7 @@ SvxBorderBackgroundDlg::SvxBorderBackgroundDlg(weld::Window 
*pParent,
 }
 else
 {
-AddTabPage("background", SvxBackgroundTabPage::Create, nullptr );
+AddTabPage("background", SvxBkgTabPage::Create, nullptr );
 }
 }
 
@@ -54,11 +54,11 @@ void SvxBorderBackgroundDlg::PageCreated(const OString& 
rPageId, SfxTabPage& rTa
 {
 if (rPageId == "background")
 {
+SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool()));
 // allow switching between Color/graphic
-if(mbEnableBackgroundSelector)
-{
-static_cast< SvxBackgroundTabPage& >(rTabPage).ShowSelector();
-}
+if (mbEnableBackgroundSelector)
+aSet.Put(SfxUInt32Item(SID_FLAG_TYPE, 
static_cast(SvxBackgroundTabFlags::SHOW_SELECTOR)));
+rTabPage.PageCreated(aSet);
 }
 // inits for Area and Transparency TabPages
 // The selection attribute lists (XPropertyList derivates, e.g. XColorList 
for
diff --git a/sw/source/uibase/docvw/HeaderFooterWin.cxx 
b/sw/source/uibase/docvw/HeaderFooterWin.cxx
index dd658ad3920c..2d1fca27f4f3 100644
--- a/sw/source/uibase/docvw/HeaderFooterWin.cxx
+++ b/sw/source/uibase/docvw/HeaderFooterWin.cxx
@@ -38,6 +38,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -428,10 +429,13 @@ void SwHeaderFooterWin::ExecuteCommand(const OString& 
rIdent)
 *pPool,
 svl::Items<
 RES_BACKGROUND, RES_SHADOW,
+XATTR_FILL_FIRST, XATTR_FILL_LAST,
 SID_ATTR_BORDER_INNER, SID_ATTR_BORDER_INNER>{});
 
 aSet.Put( pHFFormat->GetAttrSet() );
 
+aSet.Put( pHFFormat->makeBackgroundBrushItem() );
+
 // Create a box info item... needed by the dialog
 SvxBoxInfoItem aBoxInfo( SID_ATTR_BORDER_INNER );
 const SfxPoolItem *pBoxInfo;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105225] Color palette cannot be chosen in various places

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

--- Comment #85 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/5439b1e4d504c9afa71a707743d219222790d6ac%5E%21

tdf#105225 New background tab page for header and footer Border

It will be available in 6.3.0.

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

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

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


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

2019-02-01 Thread Libreoffice Gerrit user
 cui/source/inc/cuitabarea.hxx|1 +
 cui/source/tabpages/tpbitmap.cxx |   20 ++--
 2 files changed, 19 insertions(+), 2 deletions(-)

New commits:
commit 6850fcef74f7d3d82dc17143dd1befdf250977d7
Author: Jim Raykowski 
AuthorDate: Wed Jan 23 22:13:21 2019 -0900
Commit: Jim Raykowski 
CommitDate: Sat Feb 2 05:03:21 2019 +0100

Fix bitmap not being selected and displayed in bitmap tab page

The background tab page uses SvxBrushItem. Area tab page uses
XFillBitmapItem. setSvxBrushItemAsFillAttributesToTargetSet creates
empty string for XFillBitmapItem name. Bitmap can be identified by
GraphicObject::GetUniqueId. Use this to select bitmap in bitmap tab page
bitmap list.

Change-Id: Ic739c0b462502a986358bf00acfbac01fafd19f7
Reviewed-on: https://gerrit.libreoffice.org/66838
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx
index b27573d739aa..40ea7ce95592 100644
--- a/cui/source/inc/cuitabarea.hxx
+++ b/cui/source/inc/cuitabarea.hxx
@@ -558,6 +558,7 @@ private:
 void ClickBitmapHdl_Impl();
 void CalculateBitmapPresetSize();
 sal_Int32 SearchBitmapList(const OUString& rBitmapName);
+sal_Int32 SearchBitmapList(const GraphicObject& rGraphicObject);
 
 public:
 SvxBitmapTabPage(TabPageParent pParent, const SfxItemSet& rInAttrs);
diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx
index 39e6b8a2cfa6..d4871d1dbfe0 100644
--- a/cui/source/tabpages/tpbitmap.cxx
+++ b/cui/source/tabpages/tpbitmap.cxx
@@ -156,9 +156,9 @@ void SvxBitmapTabPage::ActivatePage( const SfxItemSet& rSet 
)
 sal_Int32 nPos( 0 );
 if ( !aItem.isPattern() )
 {
-nPos = SearchBitmapList( aItem.GetName() );
+nPos = SearchBitmapList( aItem.GetGraphicObject() );
 if ( nPos == LISTBOX_ENTRY_NOTFOUND )
-nPos = 0;
+return;
 }
 else
 {
@@ -783,6 +783,22 @@ IMPL_LINK_NOARG(SvxBitmapTabPage, ClickImportHdl, 
weld::Button&, void)
 }
 }
 
+sal_Int32 SvxBitmapTabPage::SearchBitmapList(const GraphicObject& 
rGraphicObject)
+{
+long nCount = m_pBitmapList->Count();
+sal_Int32 nPos = LISTBOX_ENTRY_NOTFOUND;
+
+for(long i = 0;i < nCount;i++)
+{
+if(rGraphicObject.GetUniqueID() == m_pBitmapList->GetBitmap( i 
)->GetGraphicObject().GetUniqueID())
+{
+nPos = i;
+break;
+}
+}
+return nPos;
+}
+
 sal_Int32 SvxBitmapTabPage::SearchBitmapList(const OUString& rBitmapName)
 {
 long nCount = m_pBitmapList->Count();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 78326] Can't delete a table in Impress/Draw if cells are selected

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

--- Comment #16 from naga44  ---
Version: 6.0.7.3 bug still there

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


[Libreoffice-bugs] [Bug 78326] Can't delete a table in Impress/Draw if cells are selected

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

--- Comment #15 from naga44  ---
Version: 6.0.7.3 bug still there

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


[Libreoffice-bugs] [Bug 115350] Tools > Options > Math should be visible when editing an embedded formula

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 112973] Some font families getting split in English locale

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 113955] EDITING: embedded table changes the style after editing it

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 71087] Start Center document list is flickering (Win only, without GPU hardware acceleration)

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 69515] FILEOPEN: Table in DOCX floating frame wrongly positioned (framePr ignored, regression)

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 78326] Can't delete a table in Impress/Draw if cells are selected

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 85436] Table Insertion bordering inconsistency

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 112068] EDITING: Undo won't work as expected after (trying to) insert a nested table (and undoing it)

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 112743] Undo toolbar button not active after modifying page style

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 46917] FORMATTING: Inserted 'Tables' in presentation respond poorly for configuration changes

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 114827] FILESAVE of Letter Wizard is complaining about existing file if you cancel saving

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


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

2019-02-01 Thread Libreoffice Gerrit user
 sc/qa/extras/scdatapilotfieldsobj.cxx |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

New commits:
commit cec3fe24dd4569bf04b13e0284823bad129dbb86
Author: Jens Carl 
AuthorDate: Sat Feb 2 00:13:56 2019 +
Commit: Jens Carl 
CommitDate: Sat Feb 2 03:39:38 2019 +0100

Add XServiceInfo tests to ScDataPilotFieldsObj

Change-Id: Ie5463178668389c34ad3bee892aa05f2d262de54
Reviewed-on: https://gerrit.libreoffice.org/67270
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/sc/qa/extras/scdatapilotfieldsobj.cxx 
b/sc/qa/extras/scdatapilotfieldsobj.cxx
index 24c6adfc9db1..05a88a708beb 100644
--- a/sc/qa/extras/scdatapilotfieldsobj.cxx
+++ b/sc/qa/extras/scdatapilotfieldsobj.cxx
@@ -12,6 +12,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -36,7 +37,8 @@ class ScDataPilotFieldsObj : public CalcUnoApiTest,
  public apitest::XElementAccess,
  public apitest::XEnumerationAccess,
  public apitest::XIndexAccess,
- public apitest::XNameAccess
+ public apitest::XNameAccess,
+ public apitest::XServiceInfo
 {
 public:
 ScDataPilotFieldsObj();
@@ -62,6 +64,11 @@ public:
 CPPUNIT_TEST(testGetElementNames);
 CPPUNIT_TEST(testHasByName);
 
+// XServiceInfo
+CPPUNIT_TEST(testGetImplementationName);
+CPPUNIT_TEST(testGetSupportedServiceNames);
+CPPUNIT_TEST(testSupportsService);
+
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -73,6 +80,7 @@ ScDataPilotFieldsObj::ScDataPilotFieldsObj()
 , XElementAccess(cppu::UnoType::get())
 , XIndexAccess(6)
 , XNameAccess("")
+, XServiceInfo("ScDataPilotFieldsObj", 
"com.sun.star.sheet.DataPilotFields")
 {
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: framework/qa qadevOOo/Jar_OOoRunner.mk qadevOOo/objdsc qadevOOo/tests sc/qa

2019-02-01 Thread Libreoffice Gerrit user
 framework/qa/complex/api_internal/api.lst|1 
 qadevOOo/Jar_OOoRunner.mk|1 
 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv |1 
 qadevOOo/tests/java/mod/_sc/ScDataPilotFieldsObj.java|  149 
--
 sc/qa/extras/scdatapilotfieldsobj.cxx|5 
 sc/qa/unoapi/sc_1.sce|1 
 6 files changed, 5 insertions(+), 153 deletions(-)

New commits:
commit 8e99c1fafb4c5b131ee5dc61102ad799d9f36a72
Author: Jens Carl 
AuthorDate: Sat Feb 2 00:08:28 2019 +
Commit: Jens Carl 
CommitDate: Sat Feb 2 02:40:16 2019 +0100

tdf#45904 Move XEnumerationAccess Java test to C++

Move XEnumerationAccess Java test to C++ for ScDataPilotFieldsObj.

Change-Id: I4b8bf204ccf4229ee5c57c03caef9fa5459e28a8
Reviewed-on: https://gerrit.libreoffice.org/67269
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/framework/qa/complex/api_internal/api.lst 
b/framework/qa/complex/api_internal/api.lst
index 64cfe9d6c7f7..18192bd23b86 100644
--- a/framework/qa/complex/api_internal/api.lst
+++ b/framework/qa/complex/api_internal/api.lst
@@ -79,7 +79,6 @@ job81=sc.ScCellFieldObj
 job85=sc.ScCellSearchObj
 job88=sc.ScDatabaseRangeObj
 job90=sc.ScDataPilotFieldObj
-job91=sc.ScDataPilotFieldsObj
 job98=sc.ScHeaderFieldObj
 job99=sc.ScHeaderFieldsObj
 job126=sc.ScSheetLinkObj
diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk
index 61623c302bb1..91f2b3503eec 100644
--- a/qadevOOo/Jar_OOoRunner.mk
+++ b/qadevOOo/Jar_OOoRunner.mk
@@ -968,7 +968,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\
 qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupObj \
 qadevOOo/tests/java/mod/_sc/ScDataPilotFieldGroupsObj \
 qadevOOo/tests/java/mod/_sc/ScDataPilotFieldObj \
-qadevOOo/tests/java/mod/_sc/ScDataPilotFieldsObj \
 qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj \
 qadevOOo/tests/java/mod/_sc/ScDataPilotItemsObj \
 qadevOOo/tests/java/mod/_sc/ScDocumentConfiguration \
diff --git 
a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv 
b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
deleted file mode 100644
index 7d42ccda9aa6..
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
+++ /dev/null
@@ -1 +0,0 @@
-"ScDataPilotFieldsObj";"com::sun::star::container::XEnumerationAccess";"createEnumeration()"
diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldsObj.java 
b/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldsObj.java
deleted file mode 100644
index 1b3d2748f047..
--- a/qadevOOo/tests/java/mod/_sc/ScDataPilotFieldsObj.java
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package mod._sc;
-
-import java.io.PrintWriter;
-
-import lib.TestCase;
-import lib.TestEnvironment;
-import lib.TestParameters;
-import util.SOfficeFactory;
-
-import com.sun.star.container.XIndexAccess;
-import com.sun.star.lang.XComponent;
-import com.sun.star.sheet.XDataPilotDescriptor;
-import com.sun.star.sheet.XDataPilotTables;
-import com.sun.star.sheet.XDataPilotTablesSupplier;
-import com.sun.star.sheet.XSpreadsheet;
-import com.sun.star.sheet.XSpreadsheetDocument;
-import com.sun.star.sheet.XSpreadsheets;
-import com.sun.star.table.CellAddress;
-import com.sun.star.table.CellRangeAddress;
-import com.sun.star.uno.AnyConverter;
-import com.sun.star.uno.Type;
-import com.sun.star.uno.UnoRuntime;
-import com.sun.star.uno.XInterface;
-
-/**
-* Test for object which is represented by service
-* com.sun.star.sheet.DataPilotFields. 
-* Object implements the following interfaces :
-* 
-*   com::sun::star::container::XNameAccess
-*   com::sun::star::container::XElementAccess
-* 
-* @see com.sun.star.sheet.DataPilotFields
-* @see com.sun.star.container.XNameAccess
-* @see com.sun.star.container.XElementAccess
-* @see ifc.container._XNameAccess
-* @see ifc.container._XElementAccess
-*/
-public class ScDataPilotFieldsObj extends TestCase {
-private XSpreadsheetDocument xSheetDoc = null;
-
-/**
-* Creates 

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

2019-02-01 Thread Libreoffice Gerrit user
 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv |2 --
 sc/qa/extras/scdatapilotfieldsobj.cxx|   10 
++
 2 files changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 466f1236ac0034918ed07ac3cd37607383dff40f
Author: Jens Carl 
AuthorDate: Sat Feb 2 00:03:19 2019 +
Commit: Jens Carl 
CommitDate: Sat Feb 2 02:39:49 2019 +0100

tdf#45904 Move XElementAccess Java tests for C++

Move XElementAccess Java tests for C++ for ScDataPilotFieldsObj.

Change-Id: Iac23860a9194f45be6cda8f4546605ae69729693
Reviewed-on: https://gerrit.libreoffice.org/67268
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git 
a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv 
b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
index 4af41c784e15..7d42ccda9aa6 100644
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
+++ b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
@@ -1,3 +1 @@
-"ScDataPilotFieldsObj";"com::sun::star::container::XElementAccess";"getElementType()"
-"ScDataPilotFieldsObj";"com::sun::star::container::XElementAccess";"hasElements()"
 
"ScDataPilotFieldsObj";"com::sun::star::container::XEnumerationAccess";"createEnumeration()"
diff --git a/sc/qa/extras/scdatapilotfieldsobj.cxx 
b/sc/qa/extras/scdatapilotfieldsobj.cxx
index 20b2c5359d6c..89b07762e638 100644
--- a/sc/qa/extras/scdatapilotfieldsobj.cxx
+++ b/sc/qa/extras/scdatapilotfieldsobj.cxx
@@ -8,9 +8,13 @@
  */
 
 #include 
+#include 
 #include 
 #include 
 
+#include 
+
+#include 
 #include 
 #include 
 #include 
@@ -28,6 +32,7 @@ using namespace css;
 namespace sc_apitest
 {
 class ScDataPilotFieldsObj : public CalcUnoApiTest,
+ public apitest::XElementAccess,
  public apitest::XIndexAccess,
  public apitest::XNameAccess
 {
@@ -39,6 +44,10 @@ public:
 
 CPPUNIT_TEST_SUITE(ScDataPilotFieldsObj);
 
+// XElementAccess
+CPPUNIT_TEST(testHasElements);
+CPPUNIT_TEST(testGetElementType);
+
 // XIndexAccess
 CPPUNIT_TEST(testGetByIndex);
 CPPUNIT_TEST(testGetCount);
@@ -56,6 +65,7 @@ private:
 
 ScDataPilotFieldsObj::ScDataPilotFieldsObj()
 : CalcUnoApiTest("/sc/qa/extras/testdocuments")
+, XElementAccess(cppu::UnoType::get())
 , XIndexAccess(6)
 , XNameAccess("")
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

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

--- Comment #239 from Commit Notification 
 ---
Jens Carl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/8e99c1fafb4c5b131ee5dc61102ad799d9f36a72%5E%21

tdf#45904 Move XEnumerationAccess Java test to C++

It will be available in 6.3.0.

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

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

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


[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

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

--- Comment #238 from Commit Notification 
 ---
Jens Carl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/466f1236ac0034918ed07ac3cd37607383dff40f%5E%21

tdf#45904 Move XElementAccess Java tests for C++

It will be available in 6.3.0.

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

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

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


[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

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

--- Comment #236 from Commit Notification 
 ---
Jens Carl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/3b79e1e35e527b6973bce9c76d2d036f4300ce49%5E%21

tdf#45904 Move XNameAccess Java tests to C++

It will be available in 6.3.0.

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

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

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


[Libreoffice-bugs] [Bug 45904] move java based api tests to c++

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

--- Comment #237 from Commit Notification 
 ---
Jens Carl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/070967b25978c388e33860d69a8bf56b46b18f13%5E%21

tdf#45904 Move XIndexAccess Java tests to C++

It will be available in 6.3.0.

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

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

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


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

2019-02-01 Thread Libreoffice Gerrit user
 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv |2 --
 sc/qa/extras/scdatapilotfieldsobj.cxx|   10 
+-
 2 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 070967b25978c388e33860d69a8bf56b46b18f13
Author: Jens Carl 
AuthorDate: Fri Feb 1 23:57:24 2019 +
Commit: Jens Carl 
CommitDate: Sat Feb 2 02:39:23 2019 +0100

tdf#45904 Move XIndexAccess Java tests to C++

Move XIndexAccess Java tests to C++ for ScDataPilotFieldsObj.

Change-Id: I277192a4e43a7ec45d27d93d32cad6b59534be46
Reviewed-on: https://gerrit.libreoffice.org/67267
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git 
a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv 
b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
index 8b5162f84c3b..4af41c784e15 100644
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
+++ b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
@@ -1,5 +1,3 @@
-"ScDataPilotFieldsObj";"com::sun::star::container::XIndexAccess";"getCount()"
-"ScDataPilotFieldsObj";"com::sun::star::container::XIndexAccess";"getByIndex()"
 
"ScDataPilotFieldsObj";"com::sun::star::container::XElementAccess";"getElementType()"
 
"ScDataPilotFieldsObj";"com::sun::star::container::XElementAccess";"hasElements()"
 
"ScDataPilotFieldsObj";"com::sun::star::container::XEnumerationAccess";"createEnumeration()"
diff --git a/sc/qa/extras/scdatapilotfieldsobj.cxx 
b/sc/qa/extras/scdatapilotfieldsobj.cxx
index 363724380b56..20b2c5359d6c 100644
--- a/sc/qa/extras/scdatapilotfieldsobj.cxx
+++ b/sc/qa/extras/scdatapilotfieldsobj.cxx
@@ -8,6 +8,7 @@
  */
 
 #include 
+#include 
 #include 
 
 #include 
@@ -26,7 +27,9 @@
 using namespace css;
 namespace sc_apitest
 {
-class ScDataPilotFieldsObj : public CalcUnoApiTest, public apitest::XNameAccess
+class ScDataPilotFieldsObj : public CalcUnoApiTest,
+ public apitest::XIndexAccess,
+ public apitest::XNameAccess
 {
 public:
 ScDataPilotFieldsObj();
@@ -36,6 +39,10 @@ public:
 
 CPPUNIT_TEST_SUITE(ScDataPilotFieldsObj);
 
+// XIndexAccess
+CPPUNIT_TEST(testGetByIndex);
+CPPUNIT_TEST(testGetCount);
+
 // XNameAccess
 CPPUNIT_TEST(testGetByName);
 CPPUNIT_TEST(testGetElementNames);
@@ -49,6 +56,7 @@ private:
 
 ScDataPilotFieldsObj::ScDataPilotFieldsObj()
 : CalcUnoApiTest("/sc/qa/extras/testdocuments")
+, XIndexAccess(6)
 , XNameAccess("")
 {
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: qadevOOo/objdsc sc/CppunitTest_sc_datapilotfieldsobj.mk sc/Module_sc.mk sc/qa

2019-02-01 Thread Libreoffice Gerrit user
 qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv |3 
 sc/CppunitTest_sc_datapilotfieldsobj.mk  |   43 +++
 sc/Module_sc.mk  |1 
 sc/qa/extras/scdatapilotfieldsobj.cxx|  108 
++
 4 files changed, 152 insertions(+), 3 deletions(-)

New commits:
commit 3b79e1e35e527b6973bce9c76d2d036f4300ce49
Author: Jens Carl 
AuthorDate: Fri Feb 1 23:50:32 2019 +
Commit: Jens Carl 
CommitDate: Sat Feb 2 02:38:50 2019 +0100

tdf#45904 Move XNameAccess Java tests to C++

Move XNameAccess Java tests to C++ for ScDataPilotFieldsObj.

Change-Id: I29625dcf6aa97e2781752c27e3eedba3ca479501
Reviewed-on: https://gerrit.libreoffice.org/67266
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git 
a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv 
b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
index 10e5650ed423..8b5162f84c3b 100644
--- a/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
+++ b/qadevOOo/objdsc/sc/com.sun.star.comp.office.ScDataPilotFieldsObj.csv
@@ -1,6 +1,3 @@
-"ScDataPilotFieldsObj";"com::sun::star::container::XNameAccess";"getByName()"
-"ScDataPilotFieldsObj";"com::sun::star::container::XNameAccess";"getElementNames()"
-"ScDataPilotFieldsObj";"com::sun::star::container::XNameAccess";"hasByName()"
 "ScDataPilotFieldsObj";"com::sun::star::container::XIndexAccess";"getCount()"
 "ScDataPilotFieldsObj";"com::sun::star::container::XIndexAccess";"getByIndex()"
 
"ScDataPilotFieldsObj";"com::sun::star::container::XElementAccess";"getElementType()"
diff --git a/sc/CppunitTest_sc_datapilotfieldsobj.mk 
b/sc/CppunitTest_sc_datapilotfieldsobj.mk
new file mode 100644
index ..03dc63afed97
--- /dev/null
+++ b/sc/CppunitTest_sc_datapilotfieldsobj.mk
@@ -0,0 +1,43 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sc_datapilotfieldsobj))
+
+$(eval $(call gb_CppunitTest_use_external,sc_datapilotfieldsobj,boost_headers))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sc_datapilotfieldsobj, \
+   sc/qa/extras/scdatapilotfieldsobj \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sc_datapilotfieldsobj, \
+   cppu \
+   sal \
+   subsequenttest \
+   test \
+   unotest \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sc_datapilotfieldsobj,\
+   $$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_sdk_api,sc_datapilotfieldsobj))
+
+$(eval $(call gb_CppunitTest_use_ure,sc_datapilotfieldsobj))
+$(eval $(call gb_CppunitTest_use_vcl,sc_datapilotfieldsobj))
+
+$(eval $(call gb_CppunitTest_use_components,sc_datapilotfieldsobj,\
+   $(sc_unoapi_common_components) \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,sc_datapilotfieldsobj))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index dd41344970f5..dab7c9f5a81f 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -126,6 +126,7 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
CppunitTest_sc_databaserangeobj) \
CppunitTest_sc_databaserangesobj \
CppunitTest_sc_datapilotfieldobj \
+   CppunitTest_sc_datapilotfieldsobj \
CppunitTest_sc_datapilotitemobj \
CppunitTest_sc_datapilottableobj \
CppunitTest_sc_datapilottablesobj \
diff --git a/sc/qa/extras/scdatapilotfieldsobj.cxx 
b/sc/qa/extras/scdatapilotfieldsobj.cxx
new file mode 100644
index ..363724380b56
--- /dev/null
+++ b/sc/qa/extras/scdatapilotfieldsobj.cxx
@@ -0,0 +1,108 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+
+using namespace css;
+namespace sc_apitest
+{
+class ScDataPilotFieldsObj : public CalcUnoApiTest, public apitest::XNameAccess
+{
+public:
+ScDataPilotFieldsObj();
+virtual uno::Reference init() override;
+virtual void setUp() override;
+virtual void tearDown() override;
+
+CPPUNIT_TEST_SUITE(ScDataPilotFieldsObj);
+
+// XNameAccess
+

[Libreoffice-bugs] [Bug 123005] FILEOPEN: Error on creating getCurrentController().getActiveSheet() for basic script from location=document ?

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

--- Comment #11 from Taka~ TIDA  ---
@ LibreOffice
[[

Version: 6.2.0.3
Build ID: 98c6a8a1c6c7b144ce3cc729e34964b47ce25d62
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: kde5; 
Locale: ja-JP (ja_JP.UTF-8); UI-Language: en-US
Calc: threaded

]]

The error-boxes were not appeared.
But the macro wasn't evaluated.
((Older version of LibreOffice evaluated recursively,
 so it showed correct values.))

A sample spread-sheet for Debug; "_DeBug2_price-sample_dollar.ods"
can be download from HERE↓ vvv (This doesn't include the macro but call
it.)
>https://drive.google.com/open?id=1sI1eU3FdMCr9CmCr-zVFsyfLsUEyBENp

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


[Libreoffice-bugs] [Bug 123079] Libreoffice leave tmp files in with new version

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

--- Comment #4 from Michael Meeks  ---
Hmm - so in Online it is necessary to initialize with the system temporary
paths, and then re-initialize that with new paths inside the chroot jail.

Nevertheless - this should work - I assume the bug is caused by not cleaning up
the previous .tmp folder from the first initialization here.

Possibly we want to do that "re-initialization" only in the SECOND_INIT phase -
it would be good to test for:

+if (eStage == SECOND_INIT)

just for that piece, any chance of a test ? =) should special-case it just for
LOK - where leaking one .tmp directory on the system for the long-lived forkit
is no big deal.

Thanks !

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


[Libreoffice-bugs] [Bug 123115] KDE5: cannot paste table from Firefox into Calc

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

Michael Weghorn  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||m.wegh...@posteo.de

--- Comment #2 from Michael Weghorn  ---
Does this also happen if you paste right after opening Calc, or only if you
have copied something from inside Calc before?
This is how it behaves for me, and in this case I think this is a duplicate of
bug 122689, s. in particular bug 122689 comment 6.

Does copying something else, like plain text, work for you as opposed to
copying the table? (in which case this is probably not a duplicate)

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


[Libreoffice-bugs] [Bug 123117] Corrupt PDF output when exporting from LibreOffice Math

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

qksw...@yahoo.com 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 98595] FILEOPEN: OOXML Filled Gradient incorrectly mapped

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

--- Comment #5 from Luke  ---
Created attachment 148853
  --> https://bugs.documentfoundation.org/attachment.cgi?id=148853=edit
Pros/Cons of Mapping Rect vs Square

Miklos fixed the MSO Radial to LO Radial mapping in Bug 94238. 

The MSO Rectangular to LO’s square / quad  is not so cut and dry

If you map it to LO’s rect
1)  No "X" shape / incorrectly fades to a center line 
2)  The Corners of the X are correct
3)  MSO’s first gradient stop can be emulated with LO’s border

If you map it to LO’s square:
4)  "X" shape / correct fade to a center point 
5)  The corner of the X’s are off center 
6)  MSO’s first gradient stop cannot be emulated with LO’s border (note
missing top/bottom border)

If we decide square is preferable, i have a patch at

https://gerrit.libreoffice.org/#/c/67254/

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

2019-02-01 Thread Libreoffice Gerrit user
 vcl/source/gdi/dibtools.cxx |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

New commits:
commit 8b20ac021d56ed60d09614e82e12538be290264a
Author: Caolán McNamara 
AuthorDate: Fri Feb 1 20:38:42 2019 +
Commit: Caolán McNamara 
CommitDate: Sat Feb 2 00:16:55 2019 +0100

ofz#12828 svm Timeout

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

diff --git a/vcl/source/gdi/dibtools.cxx b/vcl/source/gdi/dibtools.cxx
index fd7bb4306076..7070b6783165 100644
--- a/vcl/source/gdi/dibtools.cxx
+++ b/vcl/source/gdi/dibtools.cxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -544,6 +545,12 @@ bool ImplReadDIBBits(SvStream& rIStm, DIBV5Header& 
rHeader, BitmapWriteAccess& r
 rIStm.ReadUInt32( nBMask );
 }
 
+const long nWidth(rHeader.nWidth);
+const long nHeight(rHeader.nHeight);
+long nResult = 0;
+if (utl::ConfigManager::IsFuzzing() && (o3tl::checked_multiply(nWidth, 
nHeight, nResult) || nResult > 400))
+return false;
+
 if (bRLE)
 {
 if(!rHeader.nSizeImage)
@@ -561,8 +568,6 @@ bool ImplReadDIBBits(SvStream& rIStm, DIBV5Header& rHeader, 
BitmapWriteAccess& r
 }
 else
 {
-const long nWidth(rHeader.nWidth);
-const long nHeight(rHeader.nHeight);
 if (nAlignedWidth > rIStm.remainingSize())
 {
 // ofz#11188 avoid timeout
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: size of word/document.xml

2019-02-01 Thread Claude Brisson
Oh no. That's a Micro$oft format... Please moderator, drop my emails and 
forget about me :-)


On 2/1/19 11:31 PM, Claude Brisson wrote:
When I unzip a docx file and browse through the word/document.xml 
file, I see lots of things like:


w:rsidRDefault="" w:rsidRPr="" w14:paraId="004D">


all thorough the file.

Why not just write it like:



with a default value of "0" for missing attributes?

Regards,

  Claude



--
Claude Brisson
Software Architect @ Medinscop
http://claude.brisson.info
(+33) 770 186 013

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


[Libreoffice-bugs] [Bug 114501] Copy pasting from OpenOffice/LibreOffice to Thunderbird ruins formatting

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

Buovjaga  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #9 from Buovjaga  ---
Apologies, the  elements inside the empty paragraphs are inserted by
LibreOffice. Confirmed by running this command in Linux after copying the text
from LibreOffice:
xclip -selection clipboard -o -t text/html

(In reply to tbreportbug from comment #8)
> To reiterate, the problem with the current system seems to be:
> 
> 1) Paragraphs have default margin-top value. The margin-top value should be
> 0cm!

>From what I am seeing, if the paragraphs have a default margin-top value, it is
not assigned in LibreOffice, but Thunderbird.

Indeed, Richard Marti in the Thunderbird report says: "From toolkit html.css a
margin-block-start: 1em; is applied as default for . You'd need also a
margin-top: 0 to remove all space above the ."

If I look at the styles in Firefox dev tools, I can see the 16px margin-top for
the paragraphs in *browser styles*, so this is something the browser (or
Thunderbird) is applying.

It's late and I have to think about this more tomorrow. I don't really have a
clear picture of what should be done or what would be the perfect result.

For reference, I will include below the clipboard text/html contents from
LibreOffice.








@page { size: 21.59cm 27.94cm; margin: 2cm }
p { margin-bottom: 0.25cm; line-height: 120%; background:
transparent }



Text here



Text here



Text here



Text here



Text here



Text here



Text
Text
Text
Text
End.


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


[Libreoffice-bugs] [Bug 107707] [META] Writer table enhancements requests

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

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

   What|Removed |Added

 Depends on||89112


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89112
[Bug 89112] moving paragraphs / rows up and down does not work in writer tables
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89112] moving paragraphs / rows up and down does not work in writer tables

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

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

   What|Removed |Added

 Blocks||107707


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 115179] Document is considered as unmodified after a table of contents update

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

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

   What|Removed |Added

 Blocks||89606


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

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

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

   What|Removed |Added

 Depends on||115179


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115179
[Bug 115179] Document is considered as unmodified after a table of contents
update
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107537] Table of content isn't created if title has new color applied

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

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

   What|Removed |Added

 Blocks||89606


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

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

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

   What|Removed |Added

 Depends on||107537


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107537
[Bug 107537] Table of content isn't created if title has new color applied
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

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

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

   What|Removed |Added

 Depends on||91048


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=91048
[Bug 91048] Table of contents lists first subheading before 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 91048] Table of contents lists first subheading before master

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

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

   What|Removed |Added

 Blocks||89606

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

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 123118] New: LOCALHELP: WIKIHELP: ˋUse LibreOffice dialogsˊ description not correct

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

Bug ID: 123118
   Summary: LOCALHELP: WIKIHELP:  ˋUse LibreOffice dialogsˊ
description not correct
   Product: LibreOffice
   Version: 6.0.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreoff...@bielefeldundbuss.de

Steps how to reproduce with Version: 6.0.5.2 (x64)
Build-ID: 54c8cbb85f300ac59db32fe8a675ff7683cd5a16
CPU-Threads: 4; BS: Windows 6.1; UI-Render: Standard; 
Gebietsschema: de-DE (de_DE);

1. Menu ˋTools → Options → LibreOffice → Generalˊ
   Bug: Open/Save → Use LibreOffice dialogs is not available

On

You find:

 "Open/Save dialogs
 Use LibreOffice dialogs
 Specifies whether LibreOffice dialogs are used to open and save documents.  
 Otherwise the dialogs of the operating system are used."

This is no longer correct.

Additional Information
a) Help does not match with the actual behavior of current 6.0 Versions
b) Additional information:


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


[Libreoffice-bugs] [Bug 85973] FORMATTING: Table of Contents format entry levels not sticking

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

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

   What|Removed |Added

   Keywords||filter:docx
 Blocks||104524


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 104524] [META] DOCX (OOXML) Table of Contents (ToC) and Index related issues

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

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

   What|Removed |Added

 Depends on||85973


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85973
[Bug 85973] FORMATTING: Table of Contents format entry levels not sticking
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 71503] EDITING: Inserting of a Paragraph above a Table of Contents is not Possible

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

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

   What|Removed |Added

 Blocks||89606


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

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

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

   What|Removed |Added

 Depends on||71503


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71503
[Bug 71503] EDITING: Inserting of a Paragraph above a Table of Contents is not
Possible
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103593] can not drag table border to resize table in writer text table

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

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

   What|Removed |Added

 Blocks||103100

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

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||103593


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103593
[Bug 103593] can not drag table border to resize table in writer text table
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||103581


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103581
[Bug 103581] RTL tables inside RTL two-column sections partly disappear and run
over the section
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103581] RTL tables inside RTL two-column sections partly disappear and run over the section

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

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

   What|Removed |Added

 Blocks||103100, 107836


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103100
[Bug 103100] [META] Writer table bugs
https://bugs.documentfoundation.org/show_bug.cgi?id=107836
[Bug 107836] [META] Page and section column bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107836] [META] Page and section column bugs and enhancements

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

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

   What|Removed |Added

 Depends on||103581


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103581
[Bug 103581] RTL tables inside RTL two-column sections partly disappear and run
over the section
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||101091


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101091
[Bug 101091] Table with merged cell: deleting rows is inconsistent with
deleting columns
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101091] Table with merged cell: deleting rows is inconsistent with deleting columns

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

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

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 101019] Table - changing column width in a table with merged cells is effective only in one row

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

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

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||101019


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101019
[Bug 101019] Table - changing column width in a table with merged cells is
effective only in one row
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: Linker problems with system vs bundled libraries (RPATH vs RUNPATH) / LTO / gold

2019-02-01 Thread Дилян Палаузов
Hello,

my initial understanding of the case “Linker problems with system vs bundled 
libraries (RPATH vs RUNPATH) ” is, that
ld.bfd and ld.gold behave differently, which is exposed by invoking 
--enable-linker=

How do ld.bfd and ld.gold differ, that triggered the problem?

Based on what does ./configure --help print behind --enable-lto: best used with 
“gold”.  Are there any known problems
with ld.bfd?

The "gold as linker" in configure.in/configure.ac comes from commit fc41132306 
back in 2011 and ld.bfd can handle linker
plugins at least since 2015.

The AS_HELP_STRING for --enable-lto says "both gold and lld linkers generally 
use less memory and link faster". 
Compared to what?  It shoud say "compared to ld.bfd".

--enable-lto switches AR, NM and RANLIB to be gcc-ar, gcc-nm and gcc-ranlib, 
but… on some systems the binary is called
gcc-ar-4, for clang you have to use llvm-ar, which on some systems is called 
llvm-ar-5.0.  I am not aware of a single
autoconf project that manages this right; new versions of CMake do.

I propose removing all the LTO extras from LibreOffice.  Competent users are 
supposed to install the linker plugin
liblto_plugin.so and LLVMgold.so in $libdir/bfd-plugins and insert -flto into 
CFLAGS and CXXFLAGS, respectively -flto=6
in LDFLAGS.  Incompetent users don’t have a problem without LTO, as they do not 
know LTO exists.

Regards
  Дилян

On Fri, 2019-02-01 at 21:32 +0100, Michael Stahl wrote:
> On 01.02.19 20:12, Luboš Luňák wrote:
> > On Monday 28 of January 2019, Michael Stahl wrote:
> > > hope this will help:
> > > 
> > > https://gerrit.libreoffice.org/#/c/67012/
> > > 
> > > the idea is we use different symbol version for everything so LO libs
> > > call into bundled library, system libs call into system library.
> > > 
> > > haven't tested it though, just make check runs fine here...
> > 
> >   Yes, that works. But before you do, could you please e.g. add URL of this
> > discussion to the commit message? "unintended hilarity" is a rather poor
> > problem description.
> 
> ... unfortunately it's too late to add anything to the commit message as 
> the patch somehow reviewed and pushed itself.
> 
> well, anybody who knows what a gloriously misguided idea the ELF global 
> namespace is can think of any number of problems that would be fixed by 
> the patch :)
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice

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


[Libreoffice-bugs] [Bug 123114] excess checkboxes in main menu Form with vcl:KDE

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

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

   What|Removed |Added

 Resolution|NOTABUG |NOTOURBUG

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Katarina Behrens (CIB) from comment #3)
> Not a bug. Those menu items are toggles so it is correct that the checkboxes
> are shown. 
> 
> Icon and checkbox can overlap in Windows native menus. Unfortunately this is
> not how Linux (kde* and gtk*) native menus work. 
> 
> Go to Tools > Options > View > Icons in menus and set the value to 'Show'
> and compare the behaviour of kde5 and gtk3 menus: you'll see both show
> checkbox and icon side by side. Also other KDE application (kmail, kate
> etc.) display menus in this way
> 
> So IDK, not a bug, or not our bug?

but it looks ugly. 

I see in Kate the same problem=

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


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||100643


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100643
[Bug 100643] Numbering of rows in tables changes on horizontal split of
neighbouring cells
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100643] Numbering of rows in tables changes on horizontal split of neighbouring cells

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

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

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 100061] Table cells in specific Microsoft Word document not merge without changing column width

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

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

   What|Removed |Added

 Blocks||112700
   Keywords||filter:doc


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 112700] [META] DOC (binary) table-related issues

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

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

   What|Removed |Added

 Depends on||100061


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100061
[Bug 100061] Table cells in specific Microsoft Word document not merge without
changing column width
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99923] Table: Can't set bottom border without top border after a page break

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

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

   What|Removed |Added

 Blocks||107701

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

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

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

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

   What|Removed |Added

 Depends on||99923


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99923
[Bug 99923] Table: Can't set bottom border without top border after a page
break
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||99798


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99798
[Bug 99798] TABLE: "Allow row to break across pages and columns" not always
working if vertical text is present
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99798] TABLE: "Allow row to break across pages and columns" not always working if vertical text is present

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

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

   What|Removed |Added

 Blocks||103100

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

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||99559


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99559
[Bug 99559] If table has bad header (made in MS Word) LO Writer doesn't show
the first row of data.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99559] If table has bad header (made in MS Word) LO Writer doesn't show the first row of data.

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

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

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||99492


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99492
[Bug 99492] LibreOffice is unable to change background of table from 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 99492] LibreOffice is unable to change background of table from HTML

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

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

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

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

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

   What|Removed |Added

 Depends on||99415


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99415
[Bug 99415] Double line border style of tables vanishes after reopening
document.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99415] Double line border style of tables vanishes after reopening document.

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

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

   What|Removed |Added

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

--- Comment #9 from Roman Kuznetsov <79045_79...@mail.ru> ---
don't repro in

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded

Status->WFM


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

2019-02-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107701
Bug 107701 depends on bug 99415, which changed state.

Bug 99415 Summary: Double line border style of tables vanishes after reopening 
document.
https://bugs.documentfoundation.org/show_bug.cgi?id=99415

   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 103100] [META] Writer table bugs

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

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

   What|Removed |Added

 Depends on||99029


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 99029] [FORMATTING] Broken table

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

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

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 96576] formatting table borders with pen-curser

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

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

   What|Removed |Added

 Blocks||107707


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107707] [META] Writer table enhancements requests

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

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

   What|Removed |Added

 Depends on||96576


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96576
[Bug 96576] formatting table borders with pen-curser
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96576] formatting table borders with pen-curser

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

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

   What|Removed |Added

 Blocks||107701


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

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

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

   What|Removed |Added

 Depends on||96576


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96576
[Bug 96576] formatting table borders with pen-curser
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: Linker problems with system vs bundled libraries (RPATH vs RUNPATH)

2019-02-01 Thread Michael Stahl

On 01.02.19 20:12, Luboš Luňák wrote:

On Monday 28 of January 2019, Michael Stahl wrote:

hope this will help:

https://gerrit.libreoffice.org/#/c/67012/

the idea is we use different symbol version for everything so LO libs
call into bundled library, system libs call into system library.

haven't tested it though, just make check runs fine here...



  Yes, that works. But before you do, could you please e.g. add URL of this
discussion to the commit message? "unintended hilarity" is a rather poor
problem description.


... unfortunately it's too late to add anything to the commit message as 
the patch somehow reviewed and pushed itself.


well, anybody who knows what a gloriously misguided idea the ELF global 
namespace is can think of any number of problems that would be fixed by 
the patch :)

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


[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

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

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

   What|Removed |Added

 Depends on||90084


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90084
[Bug 90084] TABLE:  Inserting rows/columns to single row/column table does not
default to having inner cell lines
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90084] TABLE: Inserting rows/columns to single row/column table does not default to having inner cell lines

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

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

   What|Removed |Added

 OS|Windows (All)   |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 90084] TABLE: Inserting rows/columns to single row/column table does not default to having inner cell lines

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

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

   What|Removed |Added

 Blocks||107701

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

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 90069] DOCX: Font style table inconsistencies, new cells resetting font styles

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

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

   What|Removed |Added

Summary|Font style table|DOCX: Font style table
   |inconsistencies, new cells  |inconsistencies, new cells
   |resetting font styles   |resetting font styles
 Blocks||10
   Keywords||filter:docx

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

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded


Referenced Bugs:

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


  1   2   3   4   >