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

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

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

Change-Id: Ida5daa71d469805fd52e08e804fb9fa182d7d008

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

svx: support sub-paths in PDF import

Change-Id: Ibcfd30383db6846e791aea7609ab196c4f3f2da4

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

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

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

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

Fix typo

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

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


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

2018-05-13 Thread Gabor Kelemen
 sc/inc/global.hxx  |1 -
 sc/source/core/data/global.cxx |   11 ---
 2 files changed, 12 deletions(-)

New commits:
commit 8010f473c77b9f384a7067f487bc24469f8c0cd3
Author: Gabor Kelemen 
Date:   Sat May 12 22:24:39 2018 +0200

Drop newly unused ScGlobal::GetRscString

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

diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx
index fdb1e5e37467..912164234597 100644
--- a/sc/inc/global.hxx
+++ b/sc/inc/global.hxx
@@ -566,7 +566,6 @@ public:
 SC_DLLPUBLIC static ScUnoAddInCollection* GetAddInCollection();
 SC_DLLPUBLIC static ScUserList* GetUserList();
 static void SetUserList( const ScUserList* pNewList );
-SC_DLLPUBLIC static const OUString&   GetRscString(const char* pResId);
 /// Open the specified URL.
 static void OpenURL(const OUString& rURL, const OUString& 
rTarget);
 SC_DLLPUBLIC static OUStringGetAbsDocName( const OUString& 
rFileName,
diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx
index 432b4ae2d468..9e4ce14e3ddf 100644
--- a/sc/source/core/data/global.cxx
+++ b/sc/source/core/data/global.cxx
@@ -86,7 +86,6 @@ ScAutoFormat*   ScGlobal::pAutoFormat = nullptr;
 LegacyFuncCollection* ScGlobal::pLegacyFuncCollection = nullptr;
 ScUnoAddInCollection* ScGlobal::pAddInCollection = nullptr;
 ScUserList* ScGlobal::pUserList = nullptr;
-std::map* ScGlobal::pRscString = nullptr;
 LanguageTypeScGlobal::eLnge = LANGUAGE_SYSTEM;
 css::lang::Locale* ScGlobal::pLocale = nullptr;
 SvtSysLocale*   ScGlobal::pSysLocale = nullptr;
@@ -310,13 +309,6 @@ void ScGlobal::SetUserList( const ScUserList* pNewList )
 }
 }
 
-const OUString& ScGlobal::GetRscString(const char* pResId)
-{
-if (pRscString->find(pResId) == pRscString->end())
-(*pRscString)[pResId] = ScResId(pResId);
-return (*pRscString)[pResId];
-}
-
 OUString ScGlobal::GetErrorString(FormulaError nErr)
 {
 const char* pErrNumber;
@@ -462,8 +454,6 @@ void ScGlobal::Init()
 pCharClass = pSysLocale->GetCharClassPtr();
 pLocaleData = pSysLocale->GetLocaleDataPtr();
 
-pRscString = new std::map;
-
 pEmptyBrushItem = new SvxBrushItem( COL_TRANSPARENT, ATTR_BACKGROUND );
 pButtonBrushItem = new SvxBrushItem( Color(), ATTR_BACKGROUND );
 pEmbeddedBrushItem = new SvxBrushItem( COL_LIGHTCYAN, ATTR_BACKGROUND );
@@ -551,7 +541,6 @@ void ScGlobal::Clear()
 DELETEZ(pLegacyFuncCollection);
 DELETEZ(pAddInCollection);
 DELETEZ(pUserList);
-DELETEZ(pRscString);
 DELETEZ(pStarCalcFunctionList); // Destroy before ResMgr!
 DELETEZ(pStarCalcFunctionMgr);
 ScParameterClassification::Exit();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-13 Thread Tomaž Vajngerl
 svgio/qa/cppunit/SvgImportTest.cxx|   66 +-
 svgio/qa/cppunit/data/Drawing_NoWidthHeight.svg   |   12 
 svgio/qa/cppunit/data/Drawing_WithWidthHeight.svg |   14 
 svgio/source/svgreader/svgsvgnode.cxx |   51 +++--
 4 files changed, 124 insertions(+), 19 deletions(-)

New commits:
commit 7e6dac4edce063a766497ecb498e293bf4e16e66
Author: Tomaž Vajngerl 
Date:   Sun May 13 20:21:17 2018 +0900

svgio: fix rendering when the width/height isn't present in SVG

The general size of the image should be the same when width/height
attributes are present. It is very wrong to assume the size of the
image is the area covered by all the primitives in the image.

Change-Id: I56f241e84dee37796f9804ce2569c4eb416e83a0
Reviewed-on: https://gerrit.libreoffice.org/54191
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/svgio/qa/cppunit/SvgImportTest.cxx 
b/svgio/qa/cppunit/SvgImportTest.cxx
index a83ec4aae189..6b71a0dfeb7a 100644
--- a/svgio/qa/cppunit/SvgImportTest.cxx
+++ b/svgio/qa/cppunit/SvgImportTest.cxx
@@ -27,11 +27,13 @@
 namespace
 {
 
+using namespace css;
 using namespace css::uno;
 using namespace css::io;
 using namespace css::graphic;
 using drawinglayer::primitive2d::Primitive2DSequence;
 using drawinglayer::primitive2d::Primitive2DContainer;
+using drawinglayer::primitive2d::Primitive2DReference;
 
 class Test : public test::BootstrapFixture, public XmlTestTools
 {
@@ -61,6 +63,7 @@ class Test : public test::BootstrapFixture, public 
XmlTestTools
 void testMaskText();
 void testTdf4();
 void testTdf101237();
+void testBehaviourWhenWidthAndHeightIsOrIsNotSet();
 
 Primitive2DSequence parseSvg(const OUString& aSource);
 
@@ -90,6 +93,7 @@ public:
 CPPUNIT_TEST(testMaskText);
 CPPUNIT_TEST(testTdf4);
 CPPUNIT_TEST(testTdf101237);
+CPPUNIT_TEST(testBehaviourWhenWidthAndHeightIsOrIsNotSet);
 CPPUNIT_TEST_SUITE_END();
 };
 
@@ -132,7 +136,6 @@ void Test::checkRectPrimitive(Primitive2DSequence const & 
rPrimitive)
 
 }
 
-
 bool arePrimitive2DSequencesEqual(const Primitive2DSequence& rA, const 
Primitive2DSequence& rB)
 {
 const sal_Int32 nCount(rA.getLength());
@@ -629,7 +632,68 @@ void Test::testTdf101237()
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", 
"#ff");
 assertXPath(pDocument, "/primitive2D/transform/polypolygonstroke/line", 
"color", "#00");
 assertXPath(pDocument, "/primitive2D/transform/polypolygonstroke/line", 
"width", "5");
+}
+
+void Test::testBehaviourWhenWidthAndHeightIsOrIsNotSet()
+{
+// This test checks the behaviour when width and height attributes
+// are and are not set. In both cases the result must be the same,
+// however if the width / height are set, then the size of the image
+// is enforced, but this isn't really possible in LibreOffice (or
+// maybe we could lock the size in this case).
+// The behaviour in browsers is that when a SVG image has width / height
+// attributes set, then the image is shown with that size, but if it
+// isn't set then it is shown as scalable image which is the size of
+// the container.
+
+{
+Primitive2DSequence aSequence = 
parseSvg("svgio/qa/cppunit/data/Drawing_WithWidthHeight.svg");
+CPPUNIT_ASSERT(aSequence.hasElements());
+
+geometry::RealRectangle2D aRealRect;
+basegfx::B2DRange aRange;
+uno::Sequence aViewParameters;
+
+for (Primitive2DReference const & xReference : aSequence)
+{
+if (xReference.is())
+{
+aRealRect = xReference->getRange(aViewParameters);
+aRange.expand(basegfx::B2DRange(aRealRect.X1, aRealRect.Y1, 
aRealRect.X2, aRealRect.Y2));
+}
+}
+
+double fWidth = (aRange.getWidth() / 2540.0) * 96.0;
+double fHeight = (aRange.getHeight() / 2540.0) * 96.0;
+
+CPPUNIT_ASSERT_DOUBLES_EQUAL(11.0, fWidth, 1E-12);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(11.0, fHeight, 1E-12);
+}
+
+{
+Primitive2DSequence aSequence = 
parseSvg("svgio/qa/cppunit/data/Drawing_NoWidthHeight.svg");
+CPPUNIT_ASSERT(aSequence.hasElements());
 
+
+geometry::RealRectangle2D aRealRect;
+basegfx::B2DRange aRange;
+uno::Sequence aViewParameters;
+
+for (Primitive2DReference const & xReference : aSequence)
+{
+if (xReference.is())
+{
+aRealRect = xReference->getRange(aViewParameters);
+aRange.expand(basegfx::B2DRange(aRealRect.X1, aRealRect.Y1, 
aRealRect.X2, aRealRect.Y2));
+}
+}
+
+double fWidth = (aRange.getWidth() / 2540.0) * 96.0;
+double fHeight = (aRange.getHeight() / 2540.0) * 96.0;
+
+CPPUNIT_ASSERT_DOUBLES_EQUAL(11.0, fWidth, 

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

2018-05-13 Thread Tomaž Vajngerl
 o3tl/qa/test-sorted_vector.cxx |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 72ce1de3e3c70fa94b0ed14541d751dd5654b6b0
Author: Tomaž Vajngerl 
Date:   Sun May 13 20:50:57 2018 +0900

o3tl: add some comments to sorted_vector test

Change-Id: Iebedbb5afb45a92e52a8a390b9b7f6daae2337eb
Reviewed-on: https://gerrit.libreoffice.org/54192
Reviewed-by: Tomaž Vajngerl 
Tested-by: Tomaž Vajngerl 

diff --git a/o3tl/qa/test-sorted_vector.cxx b/o3tl/qa/test-sorted_vector.cxx
index 713cb185fa48..2a1f87d93dc8 100644
--- a/o3tl/qa/test-sorted_vector.cxx
+++ b/o3tl/qa/test-sorted_vector.cxx
@@ -37,26 +37,34 @@ public:
 void testBasics()
 {
 o3tl::sorted_vector aVec;
+
+// create 4 test elements
 std::unique_ptr p1( new SwContent(1) );
 std::unique_ptr p2( new SwContent(2) );
 SwContent *p3 = new SwContent(3);
 std::unique_ptr p4( new SwContent(4) );
 
+// insert p3, p1 -> not presernt -> second is true
 CPPUNIT_ASSERT( aVec.insert(p3).second );
 CPPUNIT_ASSERT( aVec.insert(p1.get()).second );
+// insert p3 again -> already present -> second is false
 CPPUNIT_ASSERT( !aVec.insert(p3).second );
 
+// 2 element should be present
 CPPUNIT_ASSERT_EQUAL( static_cast(2), aVec.size() );
 
+// check the order -> should be p1, p3
+// by index access
 CPPUNIT_ASSERT_EQUAL( p1.get(), aVec[0] );
 CPPUNIT_ASSERT_EQUAL( p3, aVec[1] );
-
+// by begin, end
 CPPUNIT_ASSERT_EQUAL( p1.get(), *aVec.begin() );
 CPPUNIT_ASSERT_EQUAL( p3, *(aVec.end()-1) );
-
+// by front, back
 CPPUNIT_ASSERT_EQUAL( p1.get(), aVec.front() );
 CPPUNIT_ASSERT_EQUAL( p3, aVec.back() );
 
+// find elements
 CPPUNIT_ASSERT( aVec.find(p1.get()) != aVec.end() );
 CPPUNIT_ASSERT_EQUAL( static_cast(0), 
aVec.find(p1.get()) - aVec.begin() );
 CPPUNIT_ASSERT( aVec.find(p3) != aVec.end() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-13 Thread Jean-Pierre Ledure
 wizards/source/access2base/Database.xba |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 32cad25f949eabea52e1cf7962ba18a3edd1c647
Author: Jean-Pierre Ledure 
Date:   Sun May 13 15:06:55 2018 +0200

Access2Base - FIX Sql errors when apostrophe in table names

Correct replacement of square brackets by quoting string

diff --git a/wizards/source/access2base/Database.xba 
b/wizards/source/access2base/Database.xba
index fad41abfbaa2..ebb6ada1bd7f 100644
--- a/wizards/source/access2base/Database.xba
+++ b/wizards/source/access2base/Database.xba
@@ -1851,7 +1851,7 @@ Const cstSingleQuote = 
End If
vSubStrings() = Split(psSql, cstSingleQuote)
For i = 0 To UBound(vSubStrings)
-   If (i Mod 2) = 0 Then Only even substrings 
are parsed for square brackets
+   If (i Mod 2) = 0 Or (i = UBound(vSubStrings)) Then  
  Only even substrings are parsed for square brackets. Last substring is 
parsed anyway
vSubStrings(i) = Join(Split(vSubStrings(i), 
[), sQuote)
vSubStrings(i) = Join(Split(vSubStrings(i), 
]), sQuote)
End If
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-13 Thread Bjoern Michaelsen
 sw/inc/calbck.hxx  |4 
 sw/inc/frmfmt.hxx  |4 
 sw/inc/section.hxx |1 
 sw/inc/unotextbodyhf.hxx   |1 
 sw/source/core/layout/atrfrm.cxx   |2 
 sw/source/core/unocore/unotext.cxx |  183 +++--
 6 files changed, 86 insertions(+), 109 deletions(-)

New commits:
commit 439f17c5cf43b38092b1b834bb006420220262e1
Author: Bjoern Michaelsen 
Date:   Thu May 10 10:51:42 2018 +0200

dont use SwClient/SwModify in unocore: HeadFootText

Change-Id: Icf0fa7ec07c8c52981c50bc03a34ae0fa9683fcf
Reviewed-on: https://gerrit.libreoffice.org/54184
Tested-by: Jenkins 
Reviewed-by: Björn Michaelsen 

diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx
index f5748d50a728..913a7f6e173e 100644
--- a/sw/inc/calbck.hxx
+++ b/sw/inc/calbck.hxx
@@ -83,6 +83,10 @@ namespace sw
 class SW_DLLPUBLIC BroadcasterMixin {
 SvtBroadcaster m_aNotifier;
 public:
+BroadcasterMixin& operator=(const BroadcasterMixin&)
+{
+return *this; // Listeners are never copied or moved.
+}
 SvtBroadcaster& GetNotifier() { return m_aNotifier; }
 };
 /// refactoring out the some of the more sane SwClient functionality
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx
index 787988467407..a8f61f3cf17a 100644
--- a/sw/inc/frmfmt.hxx
+++ b/sw/inc/frmfmt.hxx
@@ -53,7 +53,9 @@ namespace sw
 class SwFrameFormats;
 
 /// Style of a layout element.
-class SW_DLLPUBLIC SwFrameFormat: public SwFormat
+class SW_DLLPUBLIC SwFrameFormat
+: public SwFormat
+, public sw::BroadcasterMixin
 {
 friend class SwDoc;
 friend class SwPageDesc;///< Is allowed to call protected CTor.
diff --git a/sw/inc/section.hxx b/sw/inc/section.hxx
index eb4cc6913f38..30b582b89a80 100644
--- a/sw/inc/section.hxx
+++ b/sw/inc/section.hxx
@@ -270,7 +270,6 @@ enum class SectionSort { Not, Pos };
 class SW_DLLPUBLIC SwSectionFormat
 : public SwFrameFormat
 , public ::sfx2::Metadatable
-, public sw::BroadcasterMixin
 {
 friend class SwDoc;
 
diff --git a/sw/inc/unotextbodyhf.hxx b/sw/inc/unotextbodyhf.hxx
index 11aa3cbf794f..439d434dade0 100644
--- a/sw/inc/unotextbodyhf.hxx
+++ b/sw/inc/unotextbodyhf.hxx
@@ -116,7 +116,6 @@ public:
 
 static css::uno::Reference< css::text::XText >
 CreateXHeadFootText(SwFrameFormat & rHeadFootFormat, const bool 
bIsHeader);
-static bool IsXHeadFootText(SwClient const *const pClient);
 
 // XInterface
 virtual css::uno::Any SAL_CALL queryInterface(
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index bcc42a8b06f8..7f4d27ad6e1c 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -121,7 +121,7 @@ static void lcl_DelHFFormat( SwClient *pToRemove, 
SwFrameFormat *pFormat )
 // It's suboptimal if the format is deleted beforehand.
 SwIterator aIter(*pFormat);
 for(SwClient* pLast = aIter.First(); bDel && pLast; pLast = 
aIter.Next())
-if (dynamic_cast(pLast) == nullptr && 
!SwXHeadFootText::IsXHeadFootText(pLast))
+if (dynamic_cast(pLast) == nullptr)
 bDel = false;
 }
 
diff --git a/sw/source/core/unocore/unotext.cxx 
b/sw/source/core/unocore/unotext.cxx
index 6d01370e5d19..5d9bde6d73a7 100644
--- a/sw/source/core/unocore/unotext.cxx
+++ b/sw/source/core/unocore/unotext.cxx
@@ -30,6 +30,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -2453,108 +2454,90 @@ SwXBodyText::hasElements()
 }
 
 class SwXHeadFootText::Impl
-: public SwClient
+: public SvtListener
 {
+public:
+SwFrameFormat* m_pHeadFootFormat;
+bool m_bIsHeader;
 
-public:
-
-boolm_bIsHeader;
-
-Impl( SwFrameFormat & rHeadFootFormat, const bool bIsHeader)
-: SwClient(& rHeadFootFormat)
-, m_bIsHeader(bIsHeader)
-{
-}
-
-SwFrameFormat * GetHeadFootFormat() const {
-return static_cast(
-const_cast(GetRegisteredIn()));
-}
+Impl(SwFrameFormat& rHeadFootFormat, const bool bIsHeader)
+: m_pHeadFootFormat()
+, m_bIsHeader(bIsHeader)
+{
+if(m_pHeadFootFormat)
+StartListening(m_pHeadFootFormat->GetNotifier());
+}
 
-SwFrameFormat & GetHeadFootFormatOrThrow() {
-SwFrameFormat *const pFormat( GetHeadFootFormat() );
-if (!pFormat) {
-throw uno::RuntimeException("SwXHeadFootText: disposed or 
invalid", nullptr);
+SwFrameFormat* GetHeadFootFormat() const {
+return m_pHeadFootFormat;
 }
-return *pFormat;
-}
-protected:
-// SwClient
-virtual void Modify(const SfxPoolItem *pOld, const 

[Libreoffice-commits] core.git: configure.ac icon-themes/industrial icon-themes/oxygen icon-themes/README vcl/qa

2018-05-13 Thread heiko tietze
 configure.ac   
|6 
 dev/null   
|binary
 icon-themes/README 
|5 
 icon-themes/industrial/README  
|  763 --
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.svg   
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.svg
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.svg   
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.svg
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.svg  
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.svg   
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.svg 
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.svg  
|   99 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-chevron-down.svg  
|  109 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-chevron-up.svg
|  109 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-circle-pour.svg   
|  138 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-curve-down.svg
|  109 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-curve-up.svg  
|  109 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-fade-down.svg 
|  246 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-fade-left.svg 
|  243 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-fade-right.svg
|  243 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.svg  
|  243 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.svg 
|  243 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-fade-up.svg   
|  243 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-inflate.svg   
|  129 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.svg 
|  137 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.svg  
|  139 -
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-plain-text.svg
|  259 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-slant-down.svg
|  243 ---
 icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-slant-up.svg  
|  243 ---
 icon-themes/industrial/cmd/lc_objectposition.svg   
|  162 --
 icon-themes/oxygen/CopyrightsHuman 
|   67 
 icon-themes/oxygen/CopyrightsOxygen
|  577 ---
 icon-themes/oxygen/CopyrightsTango 
|   92 -
 icon-themes/oxygen/links.txt   
|   49 
 vcl/qa/cppunit/app/test_IconThemeInfo.cxx  
|   18 
 35 files changed, 14 insertions(+), 5702 deletions(-)

New commits:
commit 8bdd059a1d64a1818ee0093d7a512fe38c4e2b20
Author: heiko tietze 
Date:   Sat May 12 12:00:25 2018 +0200

Icon themes clean-up

Industrial and Oxygen removed because of no maintainer,
limited coverage, outdated design, and no SVG support
Legacy themes will be available as extension

Change-Id: I8f9c7bff6a180e3c151404b644a514eae4efcba8
Reviewed-on: https://gerrit.libreoffice.org/54158
Tested-by: Jenkins 
Reviewed-by: Heiko Tietze 

diff --git a/configure.ac b/configure.ac
index f92435da0dfb..fc07222114cb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1546,7 +1546,7 @@ AC_ARG_WITH(galleries,
 AC_ARG_WITH(theme,
 AS_HELP_STRING([--with-theme="theme1 theme2..."],
 [Choose which themes to include. By default those themes with an '*' 
are included.
- Possible choices: *breeze, *breeze_dark, *colibre, *elementary, 
oxygen, *sifr, *sifr_dark, *tango.]),
+ Possible choices: *breeze, *breeze_dark, *colibre, *elementary, 
*sifr, *sifr_dark, *tango.]),
 ,)
 
 libo_FUZZ_ARG_WITH(helppack-integration,
@@ -11248,7 +11248,7 @@ WITH_THEMES=""
 if test "x$with_theme" != "xno"; then
 for theme in $with_theme; do
 case $theme in
-breeze|breeze_dark|colibre|elementary|oxygen|sifr|sifr_dark|tango) 
real_theme="$theme" ;;
+breeze|breeze_dark|colibre|elementary|sifr|sifr_dark|tango) 
real_theme="$theme" ;;
 default) real_theme=colibre ;;
 *) AC_MSG_ERROR([Unknown value for --with-theme: $theme]) ;;
 esac
@@ -12526,7 +12526,7 @@ if test "$enable_mpl_subset" = "yes"; then
 fi
 for theme in $WITH_THEMES; do
 case $theme in
-

[Libreoffice-commits] core.git: canvas/source include/vcl vcl/Library_vcl.mk vcl/qa vcl/source

2018-05-13 Thread Chris Sherlock
 canvas/source/vcl/canvashelper.cxx   |6 +
 canvas/source/vcl/spritehelper.cxx   |5 +
 include/vcl/BitmapMonochromeFilter.hxx   |   45 
 include/vcl/bitmap.hxx   |   24 +-
 vcl/Library_vcl.mk   |   13 +--
 vcl/qa/cppunit/BitmapTest.cxx|5 +
 vcl/source/bitmap/BitmapMonochromeFilter.cxx |  101 +++
 vcl/source/bitmap/bitmap.cxx |   76 
 vcl/source/gdi/bitmap3.cxx   |7 +
 vcl/source/gdi/bitmapex.cxx  |   14 ++-
 vcl/source/outdev/bitmap.cxx |7 +
 11 files changed, 191 insertions(+), 112 deletions(-)

New commits:
commit 1f6af5c409105562edf2a034f4841c1aeb5a38b5
Author: Chris Sherlock 
Date:   Sun Apr 22 22:33:40 2018 +1000

vcl: move Bitmap::MakeMonochrome() to BitmapMonochromeFilter

Change-Id: Iefe5be4349475a4aa0138534cf6bfe87ff7df245
Reviewed-on: https://gerrit.libreoffice.org/53280
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/canvas/source/vcl/canvashelper.cxx 
b/canvas/source/vcl/canvashelper.cxx
index d31a45286dc3..5a0a74e389d2 100644
--- a/canvas/source/vcl/canvashelper.cxx
+++ b/canvas/source/vcl/canvashelper.cxx
@@ -46,6 +46,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -720,8 +721,9 @@ namespace vclcanvas
 if( aBmpEx.IsAlpha() )
 {
 Bitmap aMask( aBmpEx.GetAlpha().GetBitmap() );
-aMask.MakeMonochrome(253);
-aBmpEx = BitmapEx( aBmpEx.GetBitmap(), aMask );
+BitmapEx aMaskEx(aMask);
+BitmapFilter::Filter(aMaskEx, 
BitmapMonochromeFilter(253));
+aMask = aMaskEx.GetBitmap();
 }
 else if( aBmpEx.IsTransparent() )
 {
diff --git a/canvas/source/vcl/spritehelper.cxx 
b/canvas/source/vcl/spritehelper.cxx
index 366d0a5b9829..9424d4ec54b9 100644
--- a/canvas/source/vcl/spritehelper.cxx
+++ b/canvas/source/vcl/spritehelper.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -153,7 +154,9 @@ namespace vclcanvas
 {
 OSL_FAIL("CanvasCustomSprite::redraw(): Mask bitmap is 
not "
"monochrome (performance!)");
-aMask.MakeMonochrome(255);
+BitmapEx aMaskEx(aMask);
+BitmapFilter::Filter(aMaskEx, 
BitmapMonochromeFilter(255));
+aMask = aMaskEx.GetBitmap();
 }
 #endif
 
diff --git a/include/vcl/BitmapMonochromeFilter.hxx 
b/include/vcl/BitmapMonochromeFilter.hxx
new file mode 100644
index ..acbcc3cc9b2c
--- /dev/null
+++ b/include/vcl/BitmapMonochromeFilter.hxx
@@ -0,0 +1,45 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * 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/.
+ *
+ */
+
+#ifndef INCLUDED_INCLUDE_VCL_BITMAPMONOCHROMEFILTER_HXX
+#define INCLUDED_INCLUDE_VCL_BITMAPMONOCHROMEFILTER_HXX
+
+#include 
+
+#include 
+
+class VCL_DLLPUBLIC BitmapMonochromeFilter : public BitmapFilter
+{
+public:
+/** Convert to 2 color bitmap.
+
+Converts to a 2 color indexed bitmap - note that we don't change to 
black
+and white monochrome, but we pick the closest color to black and white 
in
+the bitmap.
+
+@param cThreshold
+Luminance value that determines whether the colour should be black (or
+closest color to black) or white (or closest color to white).
+
+ */
+BitmapMonochromeFilter(sal_uInt8 cThreshold)
+: mcThreshold(cThreshold)
+{
+}
+
+virtual BitmapEx execute(BitmapEx const& rBitmapEx) override;
+
+private:
+sal_uInt8 mcThreshold;
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index 6ba6dd43378c..aa330fde9877 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -177,28 +177,14 @@ public:
  */
 boolConvert( BmpConversion eConversion );
 
-
-/** Convert to 2 color bitmap.
-
-Converts to a 2 color indexed bitmap - note that we don't change to 
black and white
-monochrome, but we pick the closest color to black and white in the 
bitmap.
-
-@param cThreshold
-Luminance value that determines whether the colour should be black (or 
closest
-color to black) or white (or closest color to white).
-
-@return 

Gsoc 2018 Introduction

2018-05-13 Thread Raghav Lalvani
Hello Everyone,

 

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

 

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

 

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

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

 

I am in the middle of LO Build on windows.

 

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

 

Regard,

Raghav

 

 

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


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

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

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

weld SwNewGlosNameDlg

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

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

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

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

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

weld SwMMResultSaveDialog

and set a proper parent for it

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

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

Fwd: Gsoc 2018 Introduction

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


Hello Everyone,



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



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



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

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



I am in the middle of LO Build on windows.



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



Regard,

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


[Libreoffice-commits] core.git: include/svx sd/inc sd/qa sd/source sd/uiconfig

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

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

weld SdModifyFieldDlg

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

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

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

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

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

Translate German comments

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

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


[Libreoffice-commits] core.git: Branch 'feature/cib_contract891' - 6 commits - download.lst external/curl Makefile.fetch RepositoryExternal.mk

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

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

curl: upgrade to release 7.58.0

* fixes 2 CVEs
* disable some new optional dependencies

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

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

curl: upgrade to release 7.57.0

fixes 3 CVEs

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

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

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

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

Fixed typos (successfull -> successful)

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


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

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

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

update helpids

Change-Id: I32fcc7514ed75fcf9c5a140d1a9f70e70001c3d1

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


[Libreoffice-commits] core.git: helpcontent2

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

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

Updated core
Project: help  88fef6367411f87b870369389ac79ce43bcf0d7b

update helpids

Change-Id: I32fcc7514ed75fcf9c5a140d1a9f70e70001c3d1

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


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 48/28086a389647c04a5854b07587b229c9176269

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

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

Notes added by 'git notes add'

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||67874


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103303


Referenced Bugs:

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


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

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

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

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

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

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

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

os: kubuntu 18.04

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


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

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

Patrick Jaap  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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

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


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

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

Patrick Jaap  changed:

   What|Removed |Added

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

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


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

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

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

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

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

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

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


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101
Firefox/60.0

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


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

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

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

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


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

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

Tom  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


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

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

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

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

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

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

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

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


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

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 117595] UI hangs on Tools -> Options (or Alt-F12)

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

--- Comment #3 from Macky  ---
(In reply to Xavier Van Wijmeersch from comment #2)
> no repro, try to disable opengl, and retest
> 


I used the instructions from
https://wiki.documentfoundation.org/OpenGL#Crash_on_program_start to disable
OpenGL. It made no difference.

I tested with libreoffice 6.0.3 too, and got the same results. I was unable to
run versions older than that because they need versions of libraries that are
older than what's available on my system.

Is there a way to display detailed logging information on the terminal or a
logfile without rebuilding the app?

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


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

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

--- Comment #2 from Mike Kaganski  ---
The linked bug 117171 is where the feature was added; the commits there were
pushed 2018-05-03; thus only reproducible using later builds.

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


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

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

Dieter Praas  changed:

   What|Removed |Added

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

--- Comment #1 from Dieter Praas  ---
I can't find ordinal idicators and names in the dialog

Format => Bullets and Numbering

Version: 6.1.0.0.alpha1+ (x64)
Build ID: 775d0f26beecffccf3ed27a6a011aff20d91f842
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-04-26_01:05:25
Locale: en-US (de_DE); Calc: CL

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


[Libreoffice-bugs] [Bug 103164] [META] Footnote and Endnote bugs and enhancements

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

Dieter Praas  changed:

   What|Removed |Added

 Depends on||117553


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117553
[Bug 117553] Footnote navigation when in footnote text is inconsistent
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108743] [META] Find toolbar bugs and enhancements

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

Dieter Praas  changed:

   What|Removed |Added

 Depends on||117553


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117553
[Bug 117553] Footnote navigation when in footnote text is inconsistent
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

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

Dieter Praas  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||dgp-m...@gmx.de
 Blocks||103164, 108743
 Ever confirmed|0   |1

--- Comment #1 from Dieter Praas  ---
I confirm this behaviour with

Version: 6.1.0.0.alpha1+ (x64)
Build ID: 775d0f26beecffccf3ed27a6a011aff20d91f842
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-04-26_01:05:25
Locale: en-US (de_DE); Calc: CL


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 117595] UI hangs on Tools -> Options (or Alt-F12)

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #4 from Jean-Baptiste Faure  ---
Please try with a new user profile:
https://wiki.documentfoundation.org/Faq/General/110

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

Best regards. JBF

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


[Libreoffice-bugs] [Bug 117600] New: CALC AutoFilter Breaks line count affecting print preview, physical print and row count for a user selected block

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

Bug ID: 117600
   Summary: CALC AutoFilter Breaks line count affecting print
preview, physical print and row count for a user
selected block
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: that.man.co...@gmail.com

Description:
Enabling AutoFilter and then selecting some filter parameters sets what appears
to be a random page break both in the on-screen print preview and the actual
printed document. I suspect the false page break is related to where it should
have been if the data had not been filtered. When the filtration is applied,
the "valid" page breaks become anchored to the new on-screen virtual row
locations of the filtered data.
When the filter is removed, the page breaks remain anchored in the wrong
locations, resulting in variable depth pages.
The effect can then be seen by switching to print preview mode and scrolling
through the pages.
Printed output is similarly erroneous.
Additionally, if a filter is applied, the line numbers are adjusted to reflect
the true line positions in the table but if a contiguous block of data elements
is selected by cursor marquee then the count of rows indicated at the foot of
the display identifies the number of rows in the table between the first and
last element as opposed to the number of visible rows physically selected.

Steps to Reproduce:
Build a data table and view it in print preview to ensure the page breaks are
correctly located. Physically printing will confirm the integrity
Select top row of the data table and AutoFilter
Apply any filtration on any column(s) that will change the order of the data
Observe that the physical table line numbers are still reproduced in the row
numbers alongside the table. eg 1,3,7,11,99,125,156,175, etc,.
Select contiguous columnar cells in the visible table and verify that the
indicated count of rows is the number of rows between all the records in the
table NOT the selected group. The above example would produce 175 as opposed to
8.
Nullify the filter by whatever method best pleases you - re-sort on column one,
cancel all filtration in the menu, select the filtered column and "undo" the
filter.
I have attached a CALC sheet with the same data table replicated on two tabs.
The first tab has had the filter applied and removed and demonstrates the false
anchoring.
The second tab shows the data in never filtered form.
Print preview will demonstrate the effect.
Interestingly if the source data on the affected tab is cut and pasted to a new
tab then the filter anomaly is expunged. This permits the easy replication of a
"clean" table for experimentation.


Actual Results:  
The page breaks become inconsistent with the actual number of lines on a page
and are variable - presumably based upon the relocation of the original correct
row page breaks

Expected Results:
Print preview to show properly configured pages.
Physical print to produce properly configured pages
Selection of contiguous rows to show the count of rows selected NOT the count
of rows between first and last record number in the selection


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 6.0.3.2 (x64)
Build ID: 8f48d515416608e3a835360314dac7e47fd0b821
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: sv-SE (en_GB); Calc: group


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101
Firefox/60.0

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


[Libreoffice-bugs] [Bug 117460] Impress crashes when converting image to 3D rotation object, sometimes after moving the image around thereafter

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

--- Comment #5 from thack...@nexgo.de ---
Created attachment 142079
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142079=edit
Callgrind logs (hopefully the right ones) ...

Hello @ll,
as I was not able to produce a strace output the crash, I installed valgrind
and tried a couple of times to reproduce it with that ... ;) Though it was
slowing down my system with "soffice --valgrind" I could not reproduce the
crash either but with "algrind --tool=callgrind --simulate-cache=yes
--dump-instr=yes LO/instdir/daily/master/opt/libreofficedev6.1/program/soffice
--splash-pipe=0" I could somehow reproduce it ...
Sorry for the inconvenience
Thomas.

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


[Libreoffice-bugs] [Bug 102283] [META] Slide/page pane bugs and enhancements

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||117597


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117597
[Bug 117597] No scrolling with mousewheel while dragging slides around
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117597] New: No scrolling with mousewheel while dragging slides around

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

Bug ID: 117597
   Summary: No scrolling with mousewheel while dragging slides
around
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 102283

- Open a presentation with many slides, eg. the attached one.
- Start dragging any in the Slides Pane, and try scrolling with the mousewheel
up/down in the meantime.

=> Scrolling with mousewheel doesn't work while dragging the slide.
This would make it more convenient to move a slide far up/down the slide deck.

Observed using LO 6.1 master build (2de80f9a21f9601b75a2f43c07eb3e0a6509b1e6) &
3.3.0 / Ubuntu 17.10, with VCL plugins gtk3, gtk and gen.
It works fine in Windows, so the behavior is OS-specific.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102283
[Bug 102283] [META] Slide/page pane 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 97086] Encrypting OOXML files truncates password to 15 characters

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

Victor Mireyev  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||victor.mire...@gmail.com
   Assignee|libreoffice-b...@lists.free |victor.mire...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 117599] New: LibreOffice Viewer on my Tablet (Android 7.0) doesn' t allways open writer documents (odt-type)

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

Bug ID: 117599
   Summary: LibreOffice Viewer on my Tablet (Android 7.0) doesn't
allways open writer documents (odt-type)
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+
  Hardware: All
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: p...@heckjuergen.de

Description:
I have a lot of odt-documents in my local space on my Huawei MediaPad M3 Lite
10 with Android 7.0, EMUI-Version 5.1. 
With the LibreOffice Viewer I can mostly open the writer-documents (.odt).
Sometimes the Viewer doesn't show the content of the document.
Up to now I could not determine any cause for that bug.
Thank you for your help. 

Steps to Reproduce:
1.Save odt document on yout tablet
2.Open the odt-document with the LibreOffice viewer
3.

Actual Results:  
1. Ok
2. Mostly ok, but not allways

Expected Results:
Don't know


Reproducible: Sometimes


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101
Firefox/60.0

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


[Libreoffice-bugs] [Bug 117585] Crash pasting an image copied in a previous session of LibO

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

--- Comment #1 from Telesto  ---
Similar kind of trace, different route:
1. Insert a table into Writer
2. Copy it
3. Paste it into a new document
4. Press CTRL+Z ->CRASH

svllo!SfxItemSet::Get+0x4d:

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


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

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #1 from Jean-Baptiste Faure  ---
Not reproducible for me with LO 6.0.4 under Ubuntu 16.04 x86-64.

Please attach a test file which exhibits the problem on your LO version and OS.

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

Best regards. JBF

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


[Libreoffice-bugs] [Bug 117597] No scrolling with mousewheel while dragging slides around

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

--- Comment #1 from Aron Budea  ---
Created attachment 142076
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142076=edit
Empty presentation with many slides

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


[Libreoffice-bugs] [Bug 117591] Dragging slide from slide pane to taskbar and back locks up Impress

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

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Telesto  ---
Repro with
Version: 6.1.0.0.alpha1+
Build ID: c5f8a296fcfc08f8ac441cb8300a7565caa50b53
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-05-10_03:01:48
Locale: nl-NL (nl_NL); Calc: CL

Also in Draw

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


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

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

Telesto  changed:

   What|Removed |Added

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

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


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

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

Bug ID: 117598
   Summary: Pattern fill goes missing when pasting between LibO
applications
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Maybe converted already with the list of copy/paste issues.. but just in case

Steps to Reproduce:
1. Insert a shape - smiley for example
2. Add a pattern fill to the shape
3. Copy the shape
4. Open Calc
5. Paste -> Blue; no pattern fill

Actual Results:  
Missing pattern file

Expected Results:
A pattern fill


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.1.0.0.alpha1+
Build ID: c5f8a296fcfc08f8ac441cb8300a7565caa50b53
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-05-10_03:01:48
Locale: nl-NL (nl_NL); Calc: CL

Not in
Version: 6.0.0.1.0+
Build ID: 47cc374c0659fd3db74a1b184c870eaa56bc385b
CPU threads: 4; OS: Windows 6.3; UI render: default; 
Locale: nl-NL (nl_NL); Calc: CL


User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.0) Gecko/20100101
Firefox/52.0

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


[Libreoffice-bugs] [Bug 117600] CALC AutoFilter Breaks line count affecting print preview, physical print and row count for a user selected block

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

--- Comment #2 from Colin  ---
possibly related to 64703

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


[Libreoffice-bugs] [Bug 83159] DATALOSS: default font size not saved in chart textbox

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

--- Comment #15 from bla...@engineer.com ---
Hi,

The bug still persists in LibreOffice 6.0.4.2, in both Windows 7 Professional
64-bit and Ubuntu 16.04.

All the best,
PP

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


[Libreoffice-bugs] [Bug 86785] Relative links UX in Writer master documents

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

--- Comment #8 from Moritz Ulmer  ---
Tested on the 13th of March, 2018 with:

Version: 6.0.3.2
Build ID: 1:6.0.3-0ubuntu1
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

The absolute path to the file to be included is
`file:///home/user/path/to/file.odt`

Tested three times, once resulting in a freeze, the other time `http://` was
appended when defining the relative path `path/to/file.odt`, and finally when
defined as `file://path/to/file.odt` it results in being renamed as
`smb://path/to/file.odt`

The behavior has not changed since initially reporting the bug.

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


[Libreoffice-bugs] [Bug 117594] Latest 6.0.4 won't install in .deb

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |WORKSFORME
   Severity|enhancement |normal

--- Comment #2 from Jean-Baptiste Faure  ---
When you downloaded LibreOffice 6.0.4 for Linux x86-64 from libreoffice.org
website, you got the file LibreOffice_6.0.4_Linux_x86-64_deb.tar.gz. It is a
compressed archive. In this archive you have a directory named
LibreOffice_6.0.4.2_Linux_x86-64_deb/ and in this directory a sub-directory
named DEBS. Of course, in this DEBS folder there is nothing else than
LibreOffice packages.

https://wiki.documentfoundation.org/Documentation/Install/Linux

Closing as WorksForMe

Best regards. JBF

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


[Libreoffice-bugs] [Bug 117600] CALC AutoFilter Breaks line count affecting print preview, physical print and row count for a user selected block

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

--- Comment #1 from Colin  ---
Created attachment 142077
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142077=edit
two page spreadsheet demonstrating the effect and a clean control

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


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

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

Bug ID: 117601
   Summary: Crash in: libstdc++.so.6.0.22 on merge cells
   Product: LibreOffice
   Version: 6.0.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: samuel_w...@web.de

This bug was filed from the crash reporting server and is
br-be54d570-76d6-43e1-8a7a-9c721b076c92.
=

Insert table in write and start to merge cells.
Sometimes LibreOffice crash after the second merge, sometimes after more
merges...

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


[Libreoffice-bugs] [Bug 88278] [META] insert SVG image filter (all modules)

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

Bug 101083 Summary: Insert SVG causes LibreOffice to hang, consuming 100% cpu
https://bugs.documentfoundation.org/show_bug.cgi?id=101083

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|FIXED   |---

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


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

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

Aron Budea  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|FIXED   |---
 Whiteboard|target:6.1.0|

--- Comment #10 from Aron Budea  ---
Not fixed for me (LO hangs), tested with latest commit of bibisect-win32-6.1 as
of today (ac27f4e7abf5339f71d4f5f3fc09a13b25669fe4) in Windows 7.

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


[Libreoffice-bugs] [Bug 117460] Impress crashes when converting image to 3D rotation object, sometimes after moving the image around thereafter

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

--- Comment #4 from thack...@nexgo.de ---
Created attachment 142078
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142078=edit
"soffice --backtrace" output

Hello @ll,
thanks for confirming the bug and sorry for the delay ... :( Have not found the
time before to create a backtrace ... :(
Sorry again
Thomas.

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


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

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

Bug ID: 117602
   Summary: Calc freezes Linux X-Window on Excel-Macro
   Product: LibreOffice
   Version: 6.0.4.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alfredocubi...@yahoo.com.mx

After opening the following Excel-Document and selecting the dropdown menu the
complete X-Window on Linux freezes.
Only Strg+Tab+<- solves this issue

Excel-Document
https://www.bundesfinanzministerium.de/Content/DE/Standardartikel/Themen/Steuern/Steuerarten/Einkommenssteuer/2018-03-28-Berechnung-Aufteilung-Grundstueckskaufpreis-Arbeitshilfe-Stand-28032018.xls?__blob=publicationFile=5

Using OpenSuse Tumbleweed with KDE Plasma 5.12

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


[Libreoffice-bugs] [Bug 117523] Headless doc conversion leaves soffice.bin and GPG zombie processes

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 113498] UI Wayland Calc pulldown font menu highlighted selection is four lines below cursor

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

--- Comment #9 from Buovjaga  ---
(In reply to Roger T. Imai from comment #8)
> LibreOffice 6.0.3.2 00m0(Build:2)
> Version: 6.0.3.2
> Build ID: 1:6.0.3-0ubuntu1
> CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: x11; 
> Locale: en-US (en_US.UTF-8); Calc: group

It says "VCL: x11", which tells us that it is using the fallback VCL backend.

Could you install the package libreoffice-gtk3 from Ubuntu's packages and see
what happens?

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


[Libreoffice-bugs] [Bug 103612] ToC is never shown in Master Document if it is in ODT in a section with a hide condition

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

--- Comment #3 from Mike Kaganski  ---
Still reproducible with Version: 6.0.4.2 (x64)
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 12; OS: Windows 10.0; UI render: GL; 
Locale: ru-RU (ru_RU); Calc: CL

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


[Libreoffice-bugs] [Bug 117596] Japanese text on the listbox is big in pivot charts

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

noga...@gmail.com changed:

   What|Removed |Added

Summary|Japanese text on the|Japanese text on the
   |listbox in pivot charts is  |listbox is big in pivot
   |big |charts

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


[Libreoffice-bugs] [Bug 117595] UI hangs on Tools -> Options (or Alt-F12)

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

--- Comment #2 from Xavier Van Wijmeersch  ---
no repro, try to disable opengl, and retest

Version: 5.4.8.0.0+
Build ID: cc68977f1be22ac0f4a15eb37e05ccba13a7a554
CPU threads: 8; OS: Linux 4.14; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:libreoffice-5-4, Time:
2018-05-12_11:32:19
Locale: nl-BE (en_US.UTF-8); Calc: group

Version: 6.0.5.0.0+
Build ID: 4fd9ba592c2a9a566813942b06c864ad37e96243
CPU threads: 8; OS: Linux 4.14; UI render: default; VCL: kde4; 
Locale: nl-BE (en_US.UTF-8); Calc: group

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

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


[Libreoffice-bugs] [Bug 117591] Dragging slide from slide pane to taskbar and back locks up Impress

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

Aron Budea  changed:

   What|Removed |Added

 OS|All |Windows (All)

--- Comment #1 from Aron Budea  ---
Doesn't occur with Ubuntu for me, let's assume it's Windows-only.

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


[Libreoffice-bugs] [Bug 117595] UI hangs on Tools -> Options (or Alt-F12)

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

Macky  changed:

   What|Removed |Added

 CC||ome...@tutanota.com
Version|unspecified |6.0.4.2 release

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


[Libreoffice-bugs] [Bug 117595] New: UI hangs on Tools -> Options (or Alt-F12)

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

Bug ID: 117595
   Summary: UI hangs on Tools -> Options (or Alt-F12)
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ome...@tutanota.com

Steps to reproduce:

Start libreoffice and click on Tools->Options (or hit Alt-F12). The UI hangs
indifinitely. The results are the same if I create a Libreoffice document first
(tried with Writer, Calc, and Impress), and then visit Tools -> Options.

System Info:

Arch Linux 4.16.8-1-ARCH x86_64

Prerequisite Packages:

bash - 4.4.019-1
clucene - 2.3.3.4-9
curl - 7.59.0-2
dbus-glib - 0.110-1
desktop-file-utils - 0.23+4+g92af410-1
gcc-libs - 8.1.0-1
glew - 2.1.0-1
glu - 9.0.0-4
graphite - 1:1.3.11-1
gst-plugins-base-libs - 1.14.0-1
gtk2 - 2.24.32-1
gtk3 - 3.22.30-1
harfbuzz-icu - 1.7.6-2
hicolor-icon-theme - 0.17-1
hunspell - 1.6.2-1
hyphen - 2.8.8-1
icu - 61.1-1
jdk - 10.0.1-1
kdelibs4support - 5.45.0-1
lcms2 - 2.9-1
libabw - 0.1.2-1
libatomic_ops - 7.6.4-1
libcdr - 0.1.4-3
libcmis - 0.5.1-8
libcups - 2.2.7-2
libe-book - 0.1.3-2
libepubgen - 0.1.0-1
libetonyek - 0.1.8-1
libexttextcat - 3.4.5-1
libfreehand - 0.1.2-1
libglvnd - 1.0.0-1
libjpeg-turbo - 1.5.3-1
liblangtag - 0.6.2-1
libmspub - 0.1.4-2
libmwaw - 0.3.14-1
libodfgen - 0.1.6-1
liborcus - 0.13.4-1
libpagemaker - 0.0.4-1
libpaper - 1.1.24-10
libqxp - 0.0.1-2
libstaroffice - 0.0.5-1
libtommath - 1.0.1-1
libvisio - 0.1.6-3
libwpd - 0.10.2-1
libwpg - 0.3.2-1
libwps - 0.4.9-1
libxinerama - 1.1.3-2
libxrandr - 1.5.1-2
libxslt - 1.1.32+3+g32c88216-1
libzmf - 0.0.2-3
lpsolve - 5.5.2.5-2
neon - 0.30.2-3
nspr - 4.19-1
nss - 3.36.1-1
pango - 1.42.1-1
poppler - 0.64.0-1
postgresql-libs - 10.4-2
python - 3.6.5-2
redland - 1:1.0.17-4
sane - 1.0.27-1
shared-mime-info - 1.9-1
unixodbc - 2.3.6-1
xmlsec - 1.2.25-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 117596] Japanese text on the listbox in pivot charts is big

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

--- Comment #2 from noga...@gmail.com ---
Created attachment 142075
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142075=edit
Sample 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 117596] New: Japanese text on the listbox in pivot charts is big

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

Bug ID: 117596
   Summary: Japanese text on the listbox in pivot charts is big
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: noga...@gmail.com

Description:
Listbox text is big in Japanese pivot charts.


Steps to Reproduce:
1. Create a pivot table containing Japanese.
2. Create a charts from a pivot table.


Actual Results:  
The text is big, characters in the chart are hidden.

Expected Results:
Text is displayed in normal size. Characters on the chart are not hidden.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101
Firefox/60.0

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


[Libreoffice-bugs] [Bug 117596] Japanese text on the listbox in pivot charts is big

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

--- Comment #1 from noga...@gmail.com ---
Created attachment 142074
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142074=edit
Screenshot

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


[Libreoffice-bugs] [Bug 117595] UI hangs on Tools -> Options (or Alt-F12)

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #1 from Jean-Baptiste Faure  ---
Not reproducible with version 6.0.4 provided by Ubuntu.

Best regards. JBF

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


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

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

Buovjaga  changed:

   What|Removed |Added

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

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

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

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||112706


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117564


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117513


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||51780


Referenced Bugs:

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


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

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

Aron Budea  changed:

   What|Removed |Added

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

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

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


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

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

Aron Budea  changed:

   What|Removed |Added

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

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

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

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks|117531  |
 Depends on||117531


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||116968
 Depends on|116968  |


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117510


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117510
[Bug 117510] Firebird: Migration: Data unavailable when migration is run
against HSQL ODB opened in Beamer (from Writer or Calc)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

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

Jonathan Fisher  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

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

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||51780


Referenced Bugs:

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


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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||117527


Referenced Bugs:

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


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

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

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

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

Kind regards,
MC

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


[Libreoffice-bugs] [Bug 117510] Firebird: Migration: Data unavailable when migration is run against HSQL ODB opened in Beamer (from Writer or Calc)

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||116968


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 117600] CALC AutoFilter Breaks line count affecting print preview, physical print and row count for a user selected block

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

--- Comment #3 from Colin  ---
Just discovered another aspect of the issue.
My source data normally comes from a downloaded Excel format spreadsheet.
If I open it and process it in Libre as an excel sheet the filter seems to work
as anticipated - it only seems to go wrong after I perform a few initial
adjustments prior to saving it as a Libre Document. Then, when the Libre
document is opened in Libre:) - it's producing the anomalies.

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


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

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

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

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

Last commit on 2nd may.


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

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


[Libreoffice-bugs] [Bug 117086] Writer crashes when opening odt from the attached document

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

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

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

BR

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


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

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

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

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

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


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

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

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

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

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

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

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

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


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

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

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

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

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

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

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


[Libreoffice-bugs] [Bug 117525] No checks for buffer()

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

Arnaud Versini  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #1 from Arnaud Versini  ---
Hello,

Thank you for showing this, but in this particular code this is not a security
bug. The file variable point to a memory allocation witch is exactly the size
of dir, appendix and the '\0'. There is no security issue with this code.

But this code could be improved, feel free to send patches to gerrit.

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 117536] PARAGRAPH STYLES dropdown -- heading name partly covered in the "box"

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

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

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

Best regards. JBF

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


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

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

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

I attached the whole bt.

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


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

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

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

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


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

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


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

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||gmx...@gmail.com

--- Comment #11 from V Stuart Foote  ---
*** Bug 117571 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 117571] RTL: F11 Styles Hotkey and Sidebar Docking Removal

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

V Stuart Foote  changed:

   What|Removed |Added

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

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


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

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


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

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

Jim Raykowski  changed:

   What|Removed |Added

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

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


  1   2   >