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

2019-11-13 Thread Szymon Kłos (via logerrit)
 svx/source/svdraw/svdedtv1.cxx |   14 ++
 1 file changed, 14 insertions(+)

New commits:
commit 02e3e25e1c0b6468b5a9bfa623da7db6fb566ac7
Author: Szymon Kłos 
AuthorDate: Wed Nov 13 15:10:58 2019 +0100
Commit: Szymon Kłos 
CommitDate: Thu Nov 14 08:53:59 2019 +0100

jsdialogs: send .uno:FillShadowTransparency updates

Change-Id: Id74a0cf697faf796f68f5c350941e354494a6e3b
Reviewed-on: https://gerrit.libreoffice.org/82607
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 5adc79f54507bb7d191589a0895e491c95e63fe7)
Reviewed-on: https://gerrit.libreoffice.org/82614
Tested-by: Jenkins

diff --git a/svx/source/svdraw/svdedtv1.cxx b/svx/source/svdraw/svdedtv1.cxx
index e414ec01e0c0..5ce79bfd1721 100644
--- a/svx/source/svdraw/svdedtv1.cxx
+++ b/svx/source/svdraw/svdedtv1.cxx
@@ -69,6 +69,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1003,6 +1004,19 @@ void SdrEditView::MergeAttrFromMarked(SfxItemSet& rAttr, 
bool bOnlyHardAttr) con
 }
 break;
 }
+
+case SDRATTR_SHADOWTRANSPARENCE:
+{
+const SfxPoolItem* pItem = 
rSet.GetItem(SDRATTR_SHADOWTRANSPARENCE);
+if (pItem)
+{
+sal_uInt16 nWidth = static_cast(pItem)->GetValue();
+sPayload = OUString::number(nWidth);
+
+sPayload = ".uno:FillShadowTransparency=" + 
sPayload;
+}
+break;
+}
 }
 
 if (!sPayload.isEmpty())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

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

Bug 117658 Summary: equations appear twice in pptx import
https://bugs.documentfoundation.org/show_bug.cgi?id=117658

   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 128595] Document difference for words and characters and spaces when copying and pasting text

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128595

--- Comment #15 from contest...@aol.com ---
I still keep getting extra blanks that are not explained by word boundaries. 
When I tried to reproduce this to show you, I got the opposite result.  There
was a blank missing according to what you have told me.  Here is an example


aaa bbb ccc   Original text
aaa bbb aaa bbbccc   
   Copied “aaa bbb” before “ccc”  
   Expected “aaa bbb aaa bbb ccc”

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

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

2019-11-13 Thread Muhammet Kara (via logerrit)
 chart2/Library_chartcontroller.mk   |1 
 chart2/source/controller/dialogs/ChartResourceGroupDlgs.cxx |  131 
 chart2/source/controller/dialogs/ChartResourceGroups.cxx|   99 -
 chart2/source/controller/dialogs/tp_ChartType.cxx   |1 
 chart2/source/inc/ChartResourceGroupDlgs.hxx|   65 +
 chart2/source/inc/ChartResourceGroups.hxx   |   42 ---
 6 files changed, 205 insertions(+), 134 deletions(-)

New commits:
commit b59f58475d83345463c763497b8aa2260f42fa94
Author: Muhammet Kara 
AuthorDate: Thu Nov 14 09:59:19 2019 +0300
Commit: Muhammet Kara 
CommitDate: Thu Nov 14 08:42:15 2019 +0100

Move SplinePropertiesDialog & SteppedPropertiesDialog to reuse

Change-Id: I2937c617bed0d000734784301421237f282014e9
ecefe02a664e6a6852cf132d615c20e56e580e92
Reviewed-on: https://gerrit.libreoffice.org/82124
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Muhammet Kara 
Reviewed-on: https://gerrit.libreoffice.org/82648
Tested-by: Jenkins

diff --git a/chart2/Library_chartcontroller.mk 
b/chart2/Library_chartcontroller.mk
index e57a170a80c7..351dcbf0250d 100644
--- a/chart2/Library_chartcontroller.mk
+++ b/chart2/Library_chartcontroller.mk
@@ -86,6 +86,7 @@ $(eval $(call 
gb_Library_add_exception_objects,chartcontroller,\
 chart2/source/controller/chartapiwrapper/WrappedSymbolProperties \
 chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty \
 chart2/source/controller/dialogs/ChangingResource \
+chart2/source/controller/dialogs/ChartResourceGroupDlgs \
 chart2/source/controller/dialogs/ChartResourceGroups \
 chart2/source/controller/dialogs/ChartTypeDialogController \
 chart2/source/controller/dialogs/DataBrowser \
diff --git a/chart2/source/controller/dialogs/ChartResourceGroupDlgs.cxx 
b/chart2/source/controller/dialogs/ChartResourceGroupDlgs.cxx
new file mode 100644
index ..91307afaad3d
--- /dev/null
+++ b/chart2/source/controller/dialogs/ChartResourceGroupDlgs.cxx
@@ -0,0 +1,131 @@
+/* -*- 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/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include 
+#include 
+
+#include 
+#include 
+
+namespace chart
+{
+using namespace ::com::sun::star;
+using namespace ::com::sun::star::chart2;
+
+const sal_uInt16 CUBIC_SPLINE_POS = 0;
+const sal_uInt16 B_SPLINE_POS = 1;
+
+SplinePropertiesDialog::SplinePropertiesDialog(weld::Window* pParent)
+: GenericDialogController(pParent, "modules/schart/ui/smoothlinesdlg.ui", 
"SmoothLinesDialog")
+, m_xLB_Spline_Type(m_xBuilder->weld_combo_box("SplineTypeComboBox"))
+, 
m_xMF_SplineResolution(m_xBuilder->weld_spin_button("ResolutionSpinbutton"))
+, m_xFT_SplineOrder(m_xBuilder->weld_label("PolynomialsLabel"))
+, m_xMF_SplineOrder(m_xBuilder->weld_spin_button("PolynomialsSpinButton"))
+{
+m_xDialog->set_title(SchResId(STR_DLG_SMOOTH_LINE_PROPERTIES));
+
+m_xLB_Spline_Type->connect_changed(LINK(this, SplinePropertiesDialog, 
SplineTypeListBoxHdl));
+}
+
+void SplinePropertiesDialog::fillControls(const ChartTypeParameter& rParameter)
+{
+switch (rParameter.eCurveStyle)
+{
+case CurveStyle_CUBIC_SPLINES:
+m_xLB_Spline_Type->set_active(CUBIC_SPLINE_POS);
+break;
+case CurveStyle_B_SPLINES:
+m_xLB_Spline_Type->set_active(B_SPLINE_POS);
+break;
+default:
+m_xLB_Spline_Type->set_active(CUBIC_SPLINE_POS);
+break;
+}
+m_xMF_SplineOrder->set_value(rParameter.nSplineOrder);
+m_xMF_SplineResolution->set_value(rParameter.nCurveResolution);
+
+//dis/enabling
+m_xFT_SplineOrder->set_sensitive(m_xLB_Spline_Type->get_active() == 
B_SPLINE_POS);
+m_xMF_SplineOrder->set_sensitive(m_xLB_Spline_Type->get_active() == 
B_SPLINE_POS);
+}
+
+void SplinePropertiesDialog::fillParameter(ChartTypeParameter& rParameter, 
bool bSmoothLines)
+{
+if (!bSmoothLines)
+rParameter.eCurveStyle = CurveStyle_LINES;
+else if (m_xLB_Spline_Type->get_active() == CUBIC_SPLINE_POS)
+rParameter.eCurveStyle = 

[Libreoffice-bugs] [Bug 126549] Writer scrolling glitching, worse with smaller scrolling areas

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126549

Michael Weghorn  changed:

   What|Removed |Added

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

--- Comment #8 from Michael Weghorn  ---
(In reply to S. Christian Collins from comment #7)
> I'm using LibreOffice 6.3.3.2 and the bug no longer occurs for me.

Great, thanks for the update. Let's mark this bug as WORKSFORME then.

@libreofficebugs: Please reopen if your issue is another one and still happens
with a current LibreOffice 6.3 version.

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

[Libreoffice-bugs] [Bug 108075] [META] Scrolling and Page up/down issues

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075
Bug 108075 depends on bug 126549, which changed state.

Bug 126549 Summary: Writer scrolling glitching, worse with smaller scrolling 
areas
https://bugs.documentfoundation.org/show_bug.cgi?id=126549

   What|Removed |Added

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

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

[Libreoffice-commits] online.git: test/httpwstest.cpp test/Makefile.am test/UnitSession.cpp

2019-11-13 Thread Miklos Vajna (via logerrit)
 test/Makefile.am |4 
 test/UnitSession.cpp |  266 +++
 test/httpwstest.cpp  |  208 ---
 3 files changed, 270 insertions(+), 208 deletions(-)

New commits:
commit ee61bc6fb8324b5f037d23e958614cd658c1719b
Author: Miklos Vajna 
AuthorDate: Thu Nov 14 08:40:51 2019 +0100
Commit: Miklos Vajna 
CommitDate: Thu Nov 14 08:40:59 2019 +0100

Convert "client session" tests to a new-style one

So that they are in-process, which means it's easier to debug when they
fail.

Change-Id: Ia95b077b46538788c0bbc7cafebfd9019512d2ab

diff --git a/test/Makefile.am b/test/Makefile.am
index 243939595..2faf25138 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -29,6 +29,7 @@ noinst_LTLIBRARIES = \
unit-password-protected.la \
unit-render-shape.la \
unit-each-view.la \
+   unit-session.la \
unit-wopi-loadencoded.la unit-wopi-temp.la
 
 MAGIC_TO_FORCE_SHLIB_CREATION = -rpath /dummy
@@ -145,6 +146,8 @@ unit_render_shape_la_SOURCES = UnitRenderShape.cpp
 unit_render_shape_la_LIBADD = $(CPPUNIT_LIBS)
 unit_each_view_la_SOURCES = UnitEachView.cpp
 unit_each_view_la_LIBADD = $(CPPUNIT_LIBS)
+unit_session_la_SOURCES = UnitSession.cpp
+unit_session_la_LIBADD = $(CPPUNIT_LIBS)
 
 if HAVE_LO_PATH
 SYSTEM_STAMP = @SYSTEMPLATE_PATH@/system_stamp
@@ -172,6 +175,7 @@ TESTS = unit-copy-paste.la unit-typing.la unit-convert.la 
unit-prefork.la unit-t
unit-password-protected.la \
unit-render-shape.la \
unit-each-view.la \
+   unit-session.la \
unit-wopi-loadencoded.la unit-wopi-temp.la
 # TESTS = unit-client.la
 # TESTS += unit-admin.la
diff --git a/test/UnitSession.cpp b/test/UnitSession.cpp
new file mode 100644
index 0..422a3e01b
--- /dev/null
+++ b/test/UnitSession.cpp
@@ -0,0 +1,266 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+
+class LOOLWebSocket;
+
+namespace
+{
+int findInDOM(Poco::XML::Document* doc, const char* string, bool checkName,
+  unsigned long nodeFilter = Poco::XML::NodeFilter::SHOW_ALL)
+{
+int count = 0;
+Poco::XML::NodeIterator itCode(doc, nodeFilter);
+while (Poco::XML::Node* pNode = itCode.nextNode())
+{
+if (checkName)
+{
+if (pNode->nodeName() == string)
+count++;
+}
+else
+{
+if (pNode->getNodeValue().find(string) != std::string::npos)
+count++;
+}
+}
+return count;
+}
+}
+
+/// Test suite that uses a HTTP session (and not just a socket) directly.
+class UnitSession : public UnitWSD
+{
+TestResult testBadRequest();
+TestResult testHandshake();
+TestResult testSlideShow();
+
+public:
+void invokeTest() override;
+};
+
+UnitBase::TestResult UnitSession::testBadRequest()
+{
+try
+{
+// Try to load a bogus url.
+const std::string documentURL = "/lol/file%3A%2F%2F%2Ffake.doc";
+
+Poco::Net::HTTPResponse response;
+Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, 
documentURL);
+std::unique_ptr session(
+helpers::createSession(Poco::URI(helpers::getTestServerURI(;
+
+request.set("Connection", "Upgrade");
+request.set("Upgrade", "websocket");
+request.set("Sec-WebSocket-Version", "13");
+request.set("Sec-WebSocket-Key", "");
+request.setChunkedTransferEncoding(false);
+session->setKeepAlive(true);
+session->sendRequest(request);
+session->receiveResponse(response);
+
CPPUNIT_ASSERT_EQUAL(Poco::Net::HTTPResponse::HTTPResponse::HTTP_BAD_REQUEST,
+ response.getStatus());
+}
+catch (const Poco::Exception& exc)
+{
+CPPUNIT_FAIL(exc.displayText());
+}
+return TestResult::Ok;
+}
+
+UnitBase::TestResult UnitSession::testHandshake()
+{
+const char* testname = "handshake ";
+try
+{
+std::string documentPath, documentURL;
+helpers::getDocumentPathAndURL("hello.odt", documentPath, documentURL, 
testname);
+
+// NOTE: Do not replace with wrappers. This has to be explicit.
+Poco::Net::HTTPResponse response;
+Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, 
documentURL);
+std::unique_ptr session(
+helpers::createSession(Poco::URI(helpers::getTestServerURI(;
+LOOLWebSocket socket(*session, request, 

[Libreoffice-bugs] [Bug 48712] Initial Print Preview shows more than content area importing Excel .xls with row 3 merged

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48712

Timur  changed:

   What|Removed |Added

Summary|Initial Print Preview shows |Initial Print Preview shows
   |more than content area  |more than content area
   |importing Excel .xls|importing Excel .xls with
   ||row 3 merged
Version|3.4.4 release   |3.3.0 release
   Hardware|x86 (IA32)  |All
 OS|Linux (All) |All

--- Comment #4 from Timur  ---
Stil in LO 6.4 I see all content on a single page in Preview. Also in LO 3.3.
Windows. Could be inherited from OO 3.3.
Excel printout is from A1 to R340. So it's 4 pages.
Calc printout is up to column IV so all is a single page. 
Reason is row 3 that's all merged up to the end in IV.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - include/oox oox/qa oox/source sc/source

2019-11-13 Thread Miklos Vajna (via logerrit)
 include/oox/drawingml/shapegroupcontext.hxx |6 +++---
 include/oox/ppt/pptshapegroupcontext.hxx|2 +-
 oox/qa/unit/data/import-mce.pptx|binary
 oox/qa/unit/mathml.cxx  |   18 +-
 oox/source/core/fragmenthandler2.cxx|   15 ++-
 oox/source/drawingml/shapegroupcontext.cxx  |4 ++--
 oox/source/ppt/pptshapegroupcontext.cxx |3 ++-
 oox/source/ppt/slidefragmenthandler.cxx |1 -
 oox/source/shape/LockedCanvasContext.cxx|4 ++--
 oox/source/shape/LockedCanvasContext.hxx|6 +++---
 oox/source/shape/ShapeContextHandler.cxx|4 ++--
 oox/source/shape/WpgContext.cxx |4 ++--
 oox/source/shape/WpgContext.hxx |6 +++---
 sc/source/filter/inc/drawingfragment.hxx|4 ++--
 sc/source/filter/oox/drawingfragment.cxx|4 ++--
 15 files changed, 55 insertions(+), 26 deletions(-)

New commits:
commit 956153105bbf900f3b20aea98338148cf545fa0e
Author: Miklos Vajna 
AuthorDate: Wed Nov 13 17:41:45 2019 +0100
Commit: Miklos Vajna 
CommitDate: Thu Nov 14 08:30:27 2019 +0100

tdf#117658 PPTX import: fix duplicated math object handling

We used to recurse into both arms of : while the
intention is that an importer either reads  or .

Fix this by converting PPTShapeGroupContext to be a FragmentHandler2,
this way FragmentHandler2::prepareMceContext() is invoked, which knows
how to do this correctly.

This requires declaring "a14" as a supported namespace, e.g.
SdOOXMLExportTest2::testMathObject() would fail without it.  This also
requires keeping "a14" unsupported in the Calc case, e.g.
ScFiltersTest::testControlImport() would fail without it.  Finally the
"Convert this to FragmentHandler2" TODO in
SlideFragmentHandler::onCreateContext() from 2011 can be removed with
this.

Change-Id: I883237902c71cb515e810a8e34443c9eeaca48b0
Reviewed-on: https://gerrit.libreoffice.org/82623
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins
(cherry picked from commit 4038d6c393c3cf6330671124ba69cdba98b24960)
Reviewed-on: https://gerrit.libreoffice.org/82633
Tested-by: Miklos Vajna 

diff --git a/include/oox/drawingml/shapegroupcontext.hxx 
b/include/oox/drawingml/shapegroupcontext.hxx
index 1f9c860dc940..4fa313493d3e 100644
--- a/include/oox/drawingml/shapegroupcontext.hxx
+++ b/include/oox/drawingml/shapegroupcontext.hxx
@@ -21,7 +21,7 @@
 #define INCLUDED_OOX_DRAWINGML_SHAPEGROUPCONTEXT_HXX
 
 #include 
-#include 
+#include 
 #include 
 #include 
 #include 
@@ -30,10 +30,10 @@ namespace oox { class AttributeList; }
 
 namespace oox { namespace drawingml {
 
-class OOX_DLLPUBLIC ShapeGroupContext : public ::oox::core::ContextHandler2
+class OOX_DLLPUBLIC ShapeGroupContext : public ::oox::core::FragmentHandler2
 {
 public:
-ShapeGroupContext( ::oox::core::ContextHandler2Helper const & rParent, 
ShapePtr const & pMasterShapePtr, ShapePtr const & pGroupShapePtr );
+ShapeGroupContext( ::oox::core::FragmentHandler2 const & rParent, ShapePtr 
const & pMasterShapePtr, ShapePtr const & pGroupShapePtr );
 virtual ~ShapeGroupContext() override;
 virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 
Element, const ::oox::AttributeList& rAttribs ) override;
 
diff --git a/include/oox/ppt/pptshapegroupcontext.hxx 
b/include/oox/ppt/pptshapegroupcontext.hxx
index 76b743ee16af..15667109d409 100644
--- a/include/oox/ppt/pptshapegroupcontext.hxx
+++ b/include/oox/ppt/pptshapegroupcontext.hxx
@@ -44,7 +44,7 @@ class PPTShapeGroupContext final : public 
::oox::drawingml::ShapeGroupContext
 
 public:
 PPTShapeGroupContext(
-::oox::core::ContextHandler2Helper const & rParent,
+::oox::core::FragmentHandler2 const & rParent,
 const oox::ppt::SlidePersistPtr& rSlidePersistPtr,
 const oox::ppt::ShapeLocation eShapeLocation,
 const oox::drawingml::ShapePtr& pMasterShapePtr,
diff --git a/oox/qa/unit/data/import-mce.pptx b/oox/qa/unit/data/import-mce.pptx
new file mode 100644
index ..65cf1cbabfe7
Binary files /dev/null and b/oox/qa/unit/data/import-mce.pptx differ
diff --git a/oox/qa/unit/mathml.cxx b/oox/qa/unit/mathml.cxx
index 632fc566ddb7..0352c7a84ec4 100644
--- a/oox/qa/unit/mathml.cxx
+++ b/oox/qa/unit/mathml.cxx
@@ -10,8 +10,9 @@
 #include 
 #include 
 
-#include 
+#include 
 #include 
+#include 
 
 #include 
 #include 
@@ -60,6 +61,21 @@ CPPUNIT_TEST_FIXTURE(OoxMathmlTest, testImportCharacters)
 CPPUNIT_ASSERT(getComponent().is());
 }
 
+CPPUNIT_TEST_FIXTURE(OoxMathmlTest, testImportMce)
+{
+OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + 
"import-mce.pptx";
+getComponent() = loadFromDesktop(aURL);
+uno::Reference 
xDrawPagesSupplier(getComponent(), uno::UNO_QUERY);
+uno::Reference 
xDrawPage(xDrawPagesSupplier->getDrawPages()->getByIndex(0),
+ 

[Libreoffice-commits] core.git: .clang-format writerperfect/source

2019-11-13 Thread Miklos Vajna (via logerrit)
 .clang-format|1 +
 writerperfect/source/writer/exp/txtparai.cxx |2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 45324a9a405ffbd913ede64f3f5099b2c325539e
Author: Miklos Vajna 
AuthorDate: Wed Nov 13 21:47:43 2019 +0100
Commit: Miklos Vajna 
CommitDate: Thu Nov 14 08:30:47 2019 +0100

clang-format: don't fix up namespace comments

Out clang-format-5.0.0 has this default, i.e. running
solenv/clang-format/reformat-formatted-files after this change results
in no changes.

However, clang-format from git has that enabled by default for our
config, so prepare for that unwanted change now. (5.0.0 gives no
"unknown configuration key" errors for "FixNamespaceComments".)

[ Still touch a formatted file to make sure CI tests the new config
before it goes in. ]

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

diff --git a/.clang-format b/.clang-format
index 797f22404a09..d16c2f72d040 100644
--- a/.clang-format
+++ b/.clang-format
@@ -19,6 +19,7 @@ IndentCaseLabels: true
 KeepEmptyLinesAtTheStartOfBlocks: false
 MaxEmptyLinesToKeep: 1
 NamespaceIndentation: None
+FixNamespaceComments: false
 ObjCSpaceBeforeProtocolList: true
 PenaltyBreakBeforeFirstCallParameter: 19
 PenaltyBreakComment: 60
diff --git a/writerperfect/source/writer/exp/txtparai.cxx 
b/writerperfect/source/writer/exp/txtparai.cxx
index 65f521c6a20f..a129db80763d 100644
--- a/writerperfect/source/writer/exp/txtparai.cxx
+++ b/writerperfect/source/writer/exp/txtparai.cxx
@@ -33,7 +33,7 @@ void FillStyle(const OUString& rName, std::mapsecond;
 if (rStyle["style:parent-style-name"])
 {
-// Style has a parent.
+// The style has a parent.
 OUString aParent = 
OStringToOUString(rStyle["style:parent-style-name"]->getStr().cstr(),
  RTL_TEXTENCODING_UTF8);
 if (!aParent.isEmpty())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=10
Bug 10 depends on bug 112103, which changed state.

Bug 112103 Summary: FILESAVE: XML element for table cell background no fill 
unnecessarily written in DOCX
https://bugs.documentfoundation.org/show_bug.cgi?id=112103

   What|Removed |Added

 Status|NEW |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 108398] [META] Improve exported OOXML xml code

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108398
Bug 108398 depends on bug 112103, which changed state.

Bug 112103 Summary: FILESAVE: XML element for table cell background no fill 
unnecessarily written in DOCX
https://bugs.documentfoundation.org/show_bug.cgi?id=112103

   What|Removed |Added

 Status|NEW |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 112103] FILESAVE: XML element for table cell background no fill unnecessarily written in DOCX

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112103

Justin L  changed:

   What|Removed |Added

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

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

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

2019-11-13 Thread Seth Chaiklin (via logerrit)
 cui/inc/tipoftheday.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cc5483c3a3657b1b3c249d1ab039feda4bc50cfe
Author: Seth Chaiklin 
AuthorDate: Wed Nov 13 18:22:35 2019 +0200
Commit: Heiko Tietze 
CommitDate: Thu Nov 14 08:21:38 2019 +0100

simplification

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

diff --git a/cui/inc/tipoftheday.hrc b/cui/inc/tipoftheday.hrc
index a3466b4d2403..06a171abc10d 100644
--- a/cui/inc/tipoftheday.hrc
+++ b/cui/inc/tipoftheday.hrc
@@ -45,7 +45,7 @@ const std::tuple 
TIPOFTHEDAY_STRINGARRAY[] =
 {
  { NC_("RID_CUI_TIPOFTHEDAY", "Need to allow changes to parts of a 
read-only document in Writer? Insert frames or sections that can authorize 
changes."), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_edit.html;,
 "tipoftheday_w.png"}, //local help missing
  { NC_("RID_CUI_TIPOFTHEDAY", "To print the notes of your slides go to 
File > Print > Impress tab and select Notes under Document > Type."), "", 
"tipoftheday_i.png"},
- { NC_("RID_CUI_TIPOFTHEDAY", "To temporarily start with a fresh user 
profile, or to restore a non-working %PRODUCTNAME instance, go to Help > 
Restart in Safe Mode."), "svx/ui/safemodedialog/SafeModeDialog", ""}, 
//https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html
+ { NC_("RID_CUI_TIPOFTHEDAY", "To start temporarily with a fresh user 
profile, or to restore a non-working %PRODUCTNAME, use  Help > Restart in Safe 
Mode."), "svx/ui/safemodedialog/SafeModeDialog", ""}, 
//https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html
  { NC_("RID_CUI_TIPOFTHEDAY", "Writing a book? %PRODUCTNAME master 
document lets you manage large documents as a container for individual 
%PRODUCTNAME Writer files."), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/globaldoc.html;,
 "tipoftheday_w.png"}, //local help missing
  { NC_("RID_CUI_TIPOFTHEDAY", "Create editable Hybrid PDFs with 
%PRODUCTNAME."), 
"https://wiki.documentfoundation.org/Documentation/HowTo/CreateAHybridPDF;, ""},
  { NC_("RID_CUI_TIPOFTHEDAY", "Want to sum a cell through several sheets? 
Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."), "", 
"tipoftheday_c.png"},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-11-13 Thread Seth Chaiklin (via logerrit)
 cui/inc/tipoftheday.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 01d01d6e21b360888db9a58a93dc24caad46d4c9
Author: Seth Chaiklin 
AuthorDate: Wed Nov 13 19:18:22 2019 +0200
Commit: Heiko Tietze 
CommitDate: Thu Nov 14 08:19:37 2019 +0100

Adding the wording as discussed in bug tdf #128677

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

diff --git a/cui/inc/tipoftheday.hrc b/cui/inc/tipoftheday.hrc
index b80b4e376165..a3466b4d2403 100644
--- a/cui/inc/tipoftheday.hrc
+++ b/cui/inc/tipoftheday.hrc
@@ -55,7 +55,7 @@ const std::tuple 
TIPOFTHEDAY_STRINGARRAY[] =
  { NC_("RID_CUI_TIPOFTHEDAY", "Find all expressions in brackets per Edit > 
Find & Replace > Find > \\([^)]+\\) (check ‘Regular expressions’)"), "", 
"tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Select a different icon set from Tools > 
Options > %PRODUCTNAME > View > User Interface > Icon style."), "", ""},
  { NC_("RID_CUI_TIPOFTHEDAY", "You can display a number as a fraction 
(0.125 = 1/8): Format > Cells, Number > Fraction."), "", "tipoftheday_c.png"},
- { NC_("RID_CUI_TIPOFTHEDAY", "Want to keep the text from, but remove a 
hyperlink, in Writer? Right click the link and ‘Remove Hyperlink’."), "", 
"tipoftheday_w.png"},
+ { NC_("RID_CUI_TIPOFTHEDAY", "To remove a hyperlink but keep its text, 
right click on the hyperlink, and use 'Remove Hyperlink'."), "", 
"tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "To quickly zoom in the selection, press / 
(divide key) on the number pad. Press * to restore entire page in screen."), 
"", "tipoftheday_d.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Click a column field (row) PivotTable and 
press F12 to group data. Choices adapt to content: Date (month, quarter, year), 
number (classes)"), "", "tipoftheday_c.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "You can restarts the slide show after a 
pause specified at Slide Show > Slide Show Settings > Loop and repeat."), "", 
"tipoftheday_i.png"},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-11-13 Thread Seth Chaiklin (via logerrit)
 cui/inc/tipoftheday.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 04f9e958603b05de5cde95fc2af4589e1da817bc
Author: Seth Chaiklin 
AuthorDate: Thu Nov 14 02:24:27 2019 +0200
Commit: Heiko Tietze 
CommitDate: Thu Nov 14 08:18:04 2019 +0100

Improve/clarify wording in Calc tip

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

diff --git a/cui/inc/tipoftheday.hrc b/cui/inc/tipoftheday.hrc
index def9fa36100b..b80b4e376165 100644
--- a/cui/inc/tipoftheday.hrc
+++ b/cui/inc/tipoftheday.hrc
@@ -232,7 +232,7 @@ const std::tuple 
TIPOFTHEDAY_STRINGARRAY[] =
  { NC_("RID_CUI_TIPOFTHEDAY", "Click at the beginning (end) of a section 
and press Alt+Enter to insert a paragraph before (after) the section."), "", 
"tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "%PRODUCTNAME has a template center to 
create good looking documents - check it out."), 
"http://templates.libreoffice.org/template-center;, ""},
  { NC_("RID_CUI_TIPOFTHEDAY", "Calculate loan repayments with Calc: eg. 
PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan 
amount 2500."), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/04060119.html?DbPAR=CALC#bm_id3149577;,
 "tipoftheday_c.png"}, //local help missing
- { NC_("RID_CUI_TIPOFTHEDAY", "Can not get what you want with VLOOKUP? 
With INDEX and MATCH you can do everything!"), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/04060109.html;,
 "tipoftheday_c.png"}, //local help missing
+ { NC_("RID_CUI_TIPOFTHEDAY", "Can not find what you want with the VLOOKUP 
Calc function? With INDEX and MATCH you can do everything!"), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/04060109.html;,
 "tipoftheday_c.png"}, //local help missing
  { NC_("RID_CUI_TIPOFTHEDAY", "Want to show hidden column A? Click a cell 
in column B, press the left mouse button, move the mouse to the left, release. 
Then switch it on via Format > Columns > Show."), "", "tipoftheday_c.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "To change the number of a page in Writer, 
go to the properties of the first paragraph and at the Text Flow tab check 
Break > Insert and enter the number."), "", "tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Run %PRODUCTNAME in any browser via 
rollApp."), "https://www.rollapp.com/app/lowriter;, ""},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128700] Fileopen DOC: table content from header not shown due to table width

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128700

Justin L  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

--- Comment #4 from Justin L  ---
proposed fix for relative width at https://gerrit.libreoffice.org/82647

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

[Libreoffice-bugs] [Bug 121823] white area in prinout

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121823

Timur  changed:

   What|Removed |Added

 Resolution|INSUFFICIENTDATA|WORKSFORME
Version|6.1.3.2 release |3.3.0 release

--- Comment #7 from Timur  ---
Don't know why previous testers didn't mark WFM. Fine also in 6.4.
Already in LO 3.3. I don't have OO now, may be inherited.

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

[Libreoffice-bugs] [Bug 128780] Hungarian translation error!

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128780

--- Comment #3 from Sebők Gábor  ---
Look at this:

https://mega.nz/#!C35X3AJQ!djqEnknywCUauvEPL0FPW_BdkY3SMA6lSYqWMqD1gp4

Gábor

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

[Libreoffice-bugs] [Bug 128792] New: CreateUnoDialog fails

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128792

Bug ID: 128792
   Summary: CreateUnoDialog fails
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: major
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: caol...@redhat.com

Download and install extension from [1]; in a spreadsheet, select some data and
try to run the extension (using the toolbar button, or Data->Remove Duplicates,
or directly running Sub RemoveDuplicates from My Macros &
Dialogs->RemoveDuplicates->RemoveDuplicates).

With current master, both on Windows and Linux, after
https://git.libreoffice.org/core/+/fe2c63e494ea66042406ad71234ebe076dec07dc it
fails with error "BASIC runtime error. Object variable not set." message on
line

> oDialog1.GetControl("OptionHint").Text = getText(5)

because oDialog1 is null at this point, despite it was set in line

> oDialog1 = CreateUnoDialog( DialogLibraries.RemoveDuplicates.Options )

[1] https://extensions.libreoffice.org/extensions/remove-duplicates-fast

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

[Libreoffice-bugs] [Bug 128604] Base UI - Incomplete border line in table design panel

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128604

Nukool Chompuparn  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from Nukool Chompuparn  ---
(In reply to Alex Thurgood from comment #5)
> @Nukool : please provide:
> 
> - Linux distribution and version
> - whether or not you are using the Linux distrib-provided version of LO
> - which VCL backend is being used (see the About dialog in LO)


I do not use Windows OS.

OS: Fedora 31 Workstation KDE Plasma Desktop from Spins
https://spins.fedoraproject.org/en/kde/

Present Linux kernel : 5.3.11

I do not use LO by default from distribution, but I use the stable version
6.2.8.2-2 for it is the best for my needs.( I use the BASIC Editor, and
6.2.8.2-2 is the latest version that the characters is not black when edit.)


Version: 6.2.8.2
Build ID: f82ddfca21ebc1e222a662a32b25c0c9d20169ee
CPU threads: 4; OS: Linux 5.3; UI render: default; VCL: kde5; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

Thank you so much in advance.

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

[Libreoffice-bugs] [Bug 128642] EPUB error: No images and directories after exporting to epub

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128642

--- Comment #6 from yichuang驿窗  ---
I had uploaded files twice.

The first marked as " source ODT file ", you can ignore it, I did not found how
to delete it.

The secnond marked as "source ODT and png files (7z)". The 7z file include the
ODT file, and the png file captured and scaled with gimp 2.8 .

The "directories" means the content of table. Today I can not reprocuce the
directories problem. It seems that the EPUB can display content of table
correctly. So, maybe it's a mistake to report this "directories" problem here.
We can close the "directories" bug I think.

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

[Libreoffice-bugs] [Bug 128728] Imports from MS Word have objects misaligned

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128728

--- Comment #4 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 128728] Imports from MS Word have objects misaligned

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128728

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |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 128484] Writer Tools.Autocorrect.Apply and Apply and Edit changes doesn't work correctly

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128484

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 124607] Opening docx file makes LO writer crash

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124607

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |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 128154] Fonts are not applied and not remembered when exporting to PDF - FILESAVE, EDITING

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128154

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 121823] white area in prinout

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121823

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 124607] Opening docx file makes LO writer crash

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124607

--- Comment #10 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 124002] Change the "All Settings" folder path

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124002

--- Comment #5 from QA Administrators  ---
Dear 00,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 123603] "Attempt to get length of null array" message on starting

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123603

--- Comment #4 from QA Administrators  ---
Dear Geoff,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 124002] Change the "All Settings" folder path

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124002

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 121823] white area in prinout

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121823

--- Comment #6 from QA Administrators  ---
Dear Kirill Palagin,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

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

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

Bug 123885 Summary: /libreoffice6.1/program/soffice, --headless, --convert-to, 
pdf messes up with formatting
https://bugs.documentfoundation.org/show_bug.cgi?id=123885

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 123914] LibreWriter - heading numbers replaced by bullet points when printing selection which ends in bullets

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123914

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 123885] /libreoffice6.1/program/soffice, --headless, --convert-to, pdf messes up with formatting

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123885

--- Comment #3 from QA Administrators  ---
Dear sourabh1510,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 92822] Rotating legend is not posssible

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92822

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 124034] Editing Size of image miss behaves wile change it.

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124034

--- Comment #4 from QA Administrators  ---
Dear aaron.b.tanenbaum,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 124003] Black 100% white 100% replacement filter (RGB-000000↔RGB-ffffff)

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124003

--- Comment #9 from QA Administrators  ---
Dear 00,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 123938] Defect of first line indent format in Chinese editing style

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123938

--- Comment #3 from QA Administrators  ---
Dear Brian Qi,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 123914] LibreWriter - heading numbers replaced by bullet points when printing selection which ends in bullets

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123914

--- Comment #3 from QA Administrators  ---
Dear bringtheglow,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 123885] /libreoffice6.1/program/soffice, --headless, --convert-to, pdf messes up with formatting

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123885

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 124003] Black 100% white 100% replacement filter (RGB-000000↔RGB-ffffff)

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124003

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 124034] Editing Size of image miss behaves wile change it.

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124034

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 122085] Fullscreen view lands on internal monitor even if window has been on external monitor

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122085

--- Comment #2 from QA Administrators  ---
Dear Alexander Kallenbach,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 108543] [META] Chart legend bugs and enhancements

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108543
Bug 108543 depends on bug 92822, which changed state.

Bug 92822 Summary: Rotating legend is not posssible
https://bugs.documentfoundation.org/show_bug.cgi?id=92822

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 123603] "Attempt to get length of null array" message on starting

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123603

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 115619] Editing form size changes all form sizes

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115619

--- Comment #7 from QA Administrators  ---
Dear Stang,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 92822] Rotating legend is not posssible

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92822

--- Comment #13 from QA Administrators  ---
Dear Dennis Roczek,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 108170] Hyperlinks don't highlight 'Internet Link' entry in character styles list

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108170

--- Comment #5 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 123938] Defect of first line indent format in Chinese editing style

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123938

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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

[Libreoffice-bugs] [Bug 104212] Misplaced Unicode combining characters with font fallback

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104212

--- Comment #17 from QA Administrators  ---
Dear Aron Budea,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 72919] Other: UNO-API PDF Mass Export breaks layout

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72919

--- Comment #14 from QA Administrators  ---
Dear Wahrendorff,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 101170] FILESAVE: Opening and saving an rtf with an embedded jpeg leads to massive file size increase

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101170

--- Comment #6 from QA Administrators  ---
Dear philipp.schaefer,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 120549] Pale Color Design Letterhead in Writer

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120549

--- Comment #4 from QA Administrators  ---
Dear Daniel,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 122416] Unreliable copy-paste on X especially with clipboard sync enabled

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122416

--- Comment #2 from QA Administrators  ---
Dear Andrej Shadura,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 128642] EPUB error: No images and directories after exporting to epub

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128642

--- Comment #5 from yichuang驿窗  ---
Created attachment 155796
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155796=edit
source ODT and png files (7z)

source odt and png 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 128642] EPUB error: No images and directories after exporting to epub

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128642

--- Comment #4 from yichuang驿窗  ---
Created attachment 155795
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155795=edit
source ODT file

odt file

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

[Libreoffice-commits] core.git: configure.ac

2019-11-13 Thread Mike Kaganski (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f932a73eabe72a1f7ff808d17189187b18273728
Author: Mike Kaganski 
AuthorDate: Thu Nov 14 04:22:38 2019 +0200
Commit: Mike Kaganski 
CommitDate: Thu Nov 14 04:27:16 2019 +0100

--with-windows-sdk: correct parameter is 10.0, not 10

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

diff --git a/configure.ac b/configure.ac
index fcfb771e4439..10707b8dae23 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2076,7 +2076,7 @@ AC_ARG_WITH(visual-studio,
 ,)
 
 AC_ARG_WITH(windows-sdk,
-AS_HELP_STRING([--with-windows-sdk=<8.0(A)/8.1(A)/10>],
+AS_HELP_STRING([--with-windows-sdk=<8.0(A)/8.1(A)/10.0>],
 [Specify which Windows SDK, or "Windows Kit", version to use
  in case the one that came with the selected Visual Studio
  is not what you want for some reason. Note that not all compiler/SDK
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128606] Copy a range from LO Calc and paste on 'Tables' panel of LO Base. Concerning boxes for type formatting are small

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128606

--- Comment #3 from Nukool Chompuparn  ---
(In reply to Alex Thurgood from comment #2)
> The problem is also shown in the screenshot provided in bug 89509, even if
> the reports are different. Confirming.

Will it be modified in the upcoming versions ?

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

[Libreoffice-bugs] [Bug 128791] New: Libre doesn't install with latest 11-2019 Windows update

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128791

Bug ID: 128791
   Summary: Libre doesn't install with latest 11-2019 Windows
update
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wayfind...@gmail.com

Description:
Since the latest Windows update (11-13-2019) Libre Office fails installation.  

Warning 1909: Could not create shortcut Libre Office 6.6.lnk
Internal error 2902: ixoShortcutPropertyCreate

Installation fails and Libre "rolls back" installation.  But the rollback fails
and Libre Office is totally disabled on the system.  

This problem can be bypassed if one chooses to NOT create a shortcut on the
desktop.


Actual Results:
Installation failed and Libre failed to rollback.

Expected Results:
Full installation without problems


Reproducible: Always


User Profile Reset: No



Additional Info:
Can be bypassed if one opts out of desktop shortcut.

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

[Libreoffice-bugs] [Bug 126338] Writer Searching for Char Format not working any longer

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126338

--- Comment #10 from Ahmad Haris  ---
I just tested on:
Version: 6.3.3.2.0+
Build ID: 6.3.3.2-2.fc31
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

This work: 'Format…' / Western text font / Style / Italic
This also work: This works: 'Attributes…' / Font posture

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

[Libreoffice-bugs] [Bug 46429] scrolling switches to zooming

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46429

--- Comment #21 from Chris Shaw  ---
Incidentally, it's particularly annoying when scrolling to the top or left of
the spreadsheet, since visible movement has stops when it hits the edge of the
spreadsheet, but inertia is still activating the scroll function.

I often inertia scroll to the top-left to check a heading total. The scrolling
hits A1 and stops, the total is OK and I hit Cmd-Tab to switch away from LO,
only to see it zoom huge as I switch 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 46429] scrolling switches to zooming

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46429

Chris Shaw  changed:

   What|Removed |Added

 CC||cjds...@yahoo.co.uk

--- Comment #20 from Chris Shaw  ---
Agreed. Cmd-Scroll doesn't seem to be common for zooming on OSX - it doesn't do
it on any other application I tried. Pinch zooming is the standard (which works
on LO). Can Cmd-Scroll to Zoom be disabled on LO under OSX, or have an option
to disable it?

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

[Libreoffice-bugs] [Bug 128790] New: Crash in: mergedlo.dll

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128790

Bug ID: 128790
   Summary: Crash in: mergedlo.dll
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dalbol...@gmail.com

This bug was filed from the crash reporting server and is
br-fcd043cb-71de-469a-99c0-dcfae23e0e0a.
=

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

[Libreoffice-bugs] [Bug 128780] Hungarian translation error!

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128780

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Created attachment 155794
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155794=edit
the Save Document? dialog when attempting to close without saving

Are you trying to 'Close' an edit session for a document that has had changes
made?

If so, you will see the 

'Save Document?' dialog -- attached.

It has three choices, and three distinct actions:

Save -- save changes to the document, create a new document if needed, and exit
document.

Don't Save -- do not save any changes made to the document, and exit document.

Cancel -- do nothing, the document remains open.


And that set of choices/translations seems correct.

Otherwise could you please attach a screen clip of the dialog you see with a
translation error.

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 128780] Hungarian translation error!

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128780

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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

[Libreoffice-bugs] [Bug 46429] scrolling switches to zooming

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46429

Ewen M  changed:

   What|Removed |Added

 CC||documentfoundat...@ewen.mcn
   ||eill.gen.nz

--- Comment #19 from Ewen M  ---
This bug affects me on MacOS 10.14.6 (and earlier versions) with many
LibreOffice versions over many years, pretty much every time I run LibreOffice.
 Usually multiple times a day; it's the most annoying misfeature in LibreOffice
IMHO.

As the original reporter states, it's a race condition between the (slow)
LibreOffice handling of scroll events and the (fast) LibreOffice handling of
keyboard events, which results in LibreOffice interpreting scroll events that
were triggered by a user action 1/4 to 1/2 a second before the Cmd key press as
related to the cmd key, and thus a request to zoom.

Since a *very* common action in office documents is to scroll around them with
the mouse, and then, eg, use Cmd-C/Cmd-V to copy/paste between parts of the
document, the race is extremely easy to trigger, hence many users running into
it many times a day.

There is no good reason why an extremely rare operation (zooming) should be
bound to an extremely frequently accidentally triggered keyboard/mouse
combination (cmd scroll).  

At minimum there should be a configuration option to disable "cmd scroll
zooming", and ideally the entire misfeature of cmd-scroll zomming should be
removed entirely.  (When required zooming can easily be done from the zoom
menu, and it's something users might want to do once or twice a day, not every
few minutes.)

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

[Libreoffice-bugs] [Bug 128788] Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

--- Comment #6 from Xisco Faulí  ---
(In reply to Julien Nabet from comment #5)
> (In reply to Xisco Faulí from comment #4)
> > ...
> > I'm saying 'I believe' because after that commit, the attached document
> > crashes at import time. The import crash was fixed by
> > https://cgit.freedesktop.org/libreoffice/core/commit/
> > ?id=0f85a718dc0d241a8aa1b2d27accb575367691fe
> 
> I don’t understand what you mean since i created the file and LO crashed
> during autovalue editing with master sources updated today.
> So i don’t know how it could be related with a commit and another fix commit
> from September. Did I miss something?

Just saying it might be another commit between
https://cgit.freedesktop.org/libreoffice/core/commit/?id=8c66efa030e98cfdf5da20be368566d64e43c5d1
and
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0f85a718dc0d241a8aa1b2d27accb575367691fe
but everything points to
https://cgit.freedesktop.org/libreoffice/core/commit/?id=8c66efa030e98cfdf5da20be368566d64e43c5d1

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

[Libreoffice-bugs] [Bug 128788] Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

--- Comment #5 from Julien Nabet  ---
(In reply to Xisco Faulí from comment #4)
> ...
> I'm saying 'I believe' because after that commit, the attached document
> crashes at import time. The import crash was fixed by
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=0f85a718dc0d241a8aa1b2d27accb575367691fe

I don’t understand what you mean since i created the file and LO crashed during
autovalue editing with master sources updated today.
So i don’t know how it could be related with a commit and another fix commit
from September. Did I miss something?

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

[Libreoffice-bugs] [Bug 127434] With UI scaled to 200% the 6.3.x status bar, sidebar tab icons are too small, 6.2.x was fine

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127434

Aron Budea  changed:

   What|Removed |Added

 Whiteboard|target:6.4.0|target:6.4.0 target:6.3.4

--- Comment #14 from Aron Budea  ---
Fix in libreoffice-6-3:
https://git.libreoffice.org/core/commit/7fca2b0113c687098cfa6a5a4a9a8e4598f61284

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

[Libreoffice-bugs] [Bug 128789] No steps visible in wizard to create a table in database

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128789

Xisco Faulí  changed:

   What|Removed |Added

 CC||caol...@redhat.com,
   ||xiscofa...@libreoffice.org
   Keywords||bibisected, bisected,
   ||regression
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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

https://cgit.freedesktop.org/libreoffice/core/commit/?id=d688a8a5a59f9a152229f005964697218b31c621

author  Caolán McNamara 2019-08-30 20:15:17 +0100
committer   Caolán McNamara 2019-08-31 13:12:35
+0200
commit  d688a8a5a59f9a152229f005964697218b31c621 (patch)
tree6a3ed37bc81f51e917491b11db8d71e272d7cf8e
parent  58bed4f3c03098e72cd05cd298136a7029c05a6d (diff)
move SVTXRoadmap to toolkit

Bisected with: bibisect-linux64-6.4

Adding Cc: to Caolán McNamara

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

[Libreoffice-bugs] [Bug 128786] On Windows 200% DPI, the close buttons and the sidebar icons are too small.

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128786

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Aron Budea  ---
This is a duplicate of bug 127434. The fix will arrive in 6.3.4.

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

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

[Libreoffice-bugs] [Bug 127434] With UI scaled to 200% the 6.3.x status bar, sidebar tab icons are too small, 6.2.x was fine

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127434

Aron Budea  changed:

   What|Removed |Added

 CC||typing...@gmail.com

--- Comment #13 from Aron Budea  ---
*** Bug 128786 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 125715] Crash in: ld-2.22.so while starting with SAL_USE_VCLPLUGIN=gtk3_kde5 soffice

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

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

[Libreoffice-bugs] [Bug 128788] Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1
   Keywords||bibisected, bisected

--- Comment #4 from Xisco Faulí  ---
I believe this is a regression from

https://cgit.freedesktop.org/libreoffice/core/commit/?id=8c66efa030e98cfdf5da20be368566d64e43c5d1

author  Caolán McNamara 2019-09-05 12:22:38 +0100
committer   Caolán McNamara 2019-09-12 20:28:14
+0200
commit  8c66efa030e98cfdf5da20be368566d64e43c5d1 (patch)
tree88c9fb335349fd1b7b285d46108e5d41a3c9aac4
parent  8150219824a1d08c4a22fd8bb7cc63fe2aa88074 (diff)
weld OCopyTableWizard cluster

Bisected with: bibisect-linux64-6.4

Adding Cc: to Caolán McNamara

I'm saying 'I believe' because after that commit, the attached document crashes
at import time. The import crash was fixed by
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0f85a718dc0d241a8aa1b2d27accb575367691fe

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - offapi/com toolkit/source

2019-11-13 Thread Tomaž Vajngerl (via logerrit)
 offapi/com/sun/star/awt/XStyleSettings.idl |9 -
 toolkit/source/awt/stylesettings.cxx   |   50 ++---
 toolkit/source/awt/stylesettings.hxx   |6 ---
 3 files changed, 11 insertions(+), 54 deletions(-)

New commits:
commit 65767523ba5ad8e974a3144b33ad0e9d627a53f7
Author: Tomaž Vajngerl 
AuthorDate: Wed Nov 13 15:33:27 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Nov 13 23:04:32 2019 +0100

revert action button changes to UNO XStyleSetting

As there is no need for this UNO changes instead set the values
with other appropriate button settings so the previous behaviour
is retained.

Change-Id: I5952a9ce9f2f72faeb12a7a945c53ed048719b27
Reviewed-on: https://gerrit.libreoffice.org/82620
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit c1fb36e477b1d0063ceb3eb74fa556b4187562cc)
Reviewed-on: https://gerrit.libreoffice.org/82634
Tested-by: Tomaž Vajngerl 

diff --git a/offapi/com/sun/star/awt/XStyleSettings.idl 
b/offapi/com/sun/star/awt/XStyleSettings.idl
index 6150033787c9..47a55d6e4e62 100644
--- a/offapi/com/sun/star/awt/XStyleSettings.idl
+++ b/offapi/com/sun/star/awt/XStyleSettings.idl
@@ -61,18 +61,9 @@ interface XStyleSettings
 /// specifies the color to use for text on buttons which are hovered with 
the mouse
 [attribute] ::com::sun::star::util::Color ButtonRolloverTextColor;
 
-/// specifies the color to use for text on action buttons which are 
hovered with the mouse
-[attribute] ::com::sun::star::util::Color ActionButtonRolloverTextColor;
-
 /// specifies the color to use for text on buttons
 [attribute] ::com::sun::star::util::Color ButtonTextColor;
 
-/// specifies the color to use for text on a default action buttons
-[attribute] ::com::sun::star::util::Color DefaultActionButtonTextColor;
-
-/// specifies the color to use for text on action buttons
-[attribute] ::com::sun::star::util::Color ActionButtonTextColor;
-
 
 [attribute] ::com::sun::star::util::Color CheckedColor;
 
diff --git a/toolkit/source/awt/stylesettings.cxx 
b/toolkit/source/awt/stylesettings.cxx
index eb76209040b8..55abed46bf87 100644
--- a/toolkit/source/awt/stylesettings.cxx
+++ b/toolkit/source/awt/stylesettings.cxx
@@ -236,19 +236,11 @@ namespace toolkit
 {
 StyleMethodGuard aGuard( *m_pData );
 lcl_setStyleColor( *m_pData, 
::SetButtonRolloverTextColor, _buttonrollovertextcolor );
-}
-
-
-::sal_Int32 SAL_CALL 
WindowStyleSettings::getActionButtonRolloverTextColor()
-{
-StyleMethodGuard aGuard( *m_pData );
-return lcl_getStyleColor( *m_pData, 
::GetActionButtonRolloverTextColor );
-}
-
-
-void SAL_CALL WindowStyleSettings::setActionButtonRolloverTextColor( 
::sal_Int32 _buttonrollovertextcolor )
-{
-StyleMethodGuard aGuard( *m_pData );
+// Also need to set ActionButtonRolloverTextColor as this setting 
can't be
+// set through the UNO interface otherwise.
+// Previously this setting was used to set colors for both scenarios,
+// but action button setting was added to differentiate the buttons 
from
+// "normal" buttons in some themes.
 lcl_setStyleColor( *m_pData, 
::SetActionButtonRolloverTextColor, _buttonrollovertextcolor );
 }
 
@@ -264,33 +256,13 @@ namespace toolkit
 {
 StyleMethodGuard aGuard( *m_pData );
 lcl_setStyleColor( *m_pData, ::SetButtonTextColor, 
_buttontextcolor );
-}
-
-::sal_Int32 SAL_CALL WindowStyleSettings::getDefaultActionButtonTextColor()
-{
-StyleMethodGuard aGuard( *m_pData );
-return lcl_getStyleColor( *m_pData, 
::GetDefaultActionButtonTextColor );
-}
-
-
-void SAL_CALL WindowStyleSettings::setDefaultActionButtonTextColor( 
::sal_Int32 _buttontextcolor )
-{
-StyleMethodGuard aGuard( *m_pData );
-lcl_setStyleColor( *m_pData, 
::SetDefaultActionButtonTextColor, _buttontextcolor );
-}
-
-
-::sal_Int32 SAL_CALL WindowStyleSettings::getActionButtonTextColor()
-{
-StyleMethodGuard aGuard( *m_pData );
-return lcl_getStyleColor( *m_pData, 
::GetActionButtonTextColor );
-}
-
-
-void SAL_CALL WindowStyleSettings::setActionButtonTextColor( ::sal_Int32 
_buttontextcolor )
-{
-StyleMethodGuard aGuard( *m_pData );
+// Also need to set ActionButtonTextColor and 
DefaultActionButtonTextColor
+// as this two settings can't be set through the UNO interface 
otherwise.
+// Previously this setting was used to set colors for all three 
scenarios,
+// but action button setting was added to differentiate the buttons 
from
+// "normal" buttons in some themes.
 lcl_setStyleColor( *m_pData, ::SetActionButtonTextColor, 
_buttontextcolor );
+lcl_setStyleColor( *m_pData, 
::SetDefaultActionButtonTextColor, _buttontextcolor );
 }
 
 
diff --git 

[Libreoffice-bugs] [Bug 128782] When execute undo, Text box moves.

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128782

Telesto  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #2 from Telesto  ---
No repro with
Version: 6.3.0.4 (x86)
Build ID: 057fc023c990d676a43019934386b85b21a9ee99
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

and not with
Version: 6.4.0.0.alpha0+ (x64)
Build ID: 758516295e5f69393bd78bb4af6e7214d48ece0b
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: GL; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

Putting to NEEDINFO

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

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

2019-11-13 Thread Stephan Bergmann (via logerrit)
 sax/source/expatwrap/saxwriter.cxx |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 7e09d08807b5ba2fd8b9831557752a415bdad562
Author: Stephan Bergmann 
AuthorDate: Wed Nov 13 18:39:35 2019 +0100
Commit: Stephan Bergmann 
CommitDate: Wed Nov 13 22:30:31 2019 +0100

Fix useless assert(true) (which would never fire)

...and simplify the code a bit.  It had been introduced with
0a1d5af2a18d6a062c45d65689fbce619922dcc8 "tdf#115429 sax: assert if 
exporting an
invalid XML attribute/element", apparently meant to be an assert(false) 
instead.
A `make check screenshot` didn't cause the (now active) assert to fire in my
local build.

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

diff --git a/sax/source/expatwrap/saxwriter.cxx 
b/sax/source/expatwrap/saxwriter.cxx
index 901682a5ca01..7eb599a5cfc6 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -578,10 +578,8 @@ void CheckValidName(OUString const& rName)
 auto const c(rName[i]);
 if (c == ':')
 {
-if (hasColon)
-assert("only one colon allowed");
-else
-hasColon = true;
+assert(!hasColon && "only one colon allowed");
+hasColon = true;
 }
 else if (!rtl::isAsciiAlphanumeric(c) && c != '_' && c != '-' && c != 
'.' &&
  !inrange(c, 0x00C0, 0x00D6) && !inrange(c, 0x00D8, 0x00F6) &&
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128789] No steps visible in wizard to create a table in database

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128789

--- Comment #2 from Julien Nabet  ---
I noticed these on console:
warn:legacy.tools:21616:21616:vcl/source/control/roadmapwizard.cxx:284:
RoadmapWizard::implUpdateRoadmap: there is no such path!
warn:vcl.layout:21616:21616:vcl/source/window/builder.cxx:3971: unknown
packing: shrink
warn:vcl.layout:21616:21616:vcl/source/window/builder.cxx:3971: unknown
packing: shrink
warn:vcl:21616:21616:vcl/source/window/builder.cxx:527: missing elements of
combobox
warn:vcl:21616:21616:vcl/source/window/builder.cxx:718: missing elements of
image/stock: image1
warn:vcl:21616:21616:vcl/source/window/builder.cxx:718: missing elements of
image/stock: image2
warn:vcl:21616:21616:vcl/source/window/window.cxx:376: Window () not found in
TaskPanelList
warn:legacy.tools:21616:21616:toolkit/source/helper/unowrapper.cxx:177:
UnoWrapper::SetWindowInterface: there already *is* a WindowInterface for this
window!
warn:legacy.tools:21616:21616:toolkit/source/awt/vclxtoolkit.cxx:1921:
VCLXToolkit::createWindow: did #133706# resurge?
warn:legacy.tools:21616:21616:toolkit/source/awt/vclxtoolkit.cxx:1888:
createWindow: Unknown Component!
warn:toolkit:21616:21616:toolkit/source/helper/listenermultiplexer.cxx:201:
ContainerListenerMultiplexer::elementInserted: caught an exception!
com.sun.star.uno.RuntimeException message: unsatisfied query for interface of
type com.sun.star.awt.XView!

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

[Libreoffice-bugs] [Bug 128789] No steps visible in wizard to create a table in database

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128789

Julien Nabet  changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #1 from Julien Nabet  ---
Robert: would you have just a little time to try to reproduce this?
It could be a serious 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 128789] New: No steps visible in wizard to create a table in database

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128789

Bug ID: 128789
   Summary: No steps visible in wizard to create a table in
database
   Product: LibreOffice
   Version: 6.4.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serval2...@yahoo.fr

Description:
On pc Debian x86-64 with master sources updated today, I don't see steps in
wizard during table creation.

Steps to Reproduce:
1. Create a brand new embedded HSQL DB
2. Launch wizard to create a brand new table


Actual Results:
Left panel is empty

Expected Results:
Left panel should contain steps with current one in bold.


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 128788] Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace, regression
 CC||caol...@redhat.com

--- Comment #3 from Julien Nabet  ---
Caolán: thought you might be interested in this one.
Indeed, taking a look at git history of files in bt, I noticed:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=8c66efa030e98cfdf5da20be368566d64e43c5d1

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

[Libreoffice-bugs] [Bug 128788] Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

--- Comment #1 from Julien Nabet  ---
Created attachment 155792
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155792=edit
example odb

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

[Libreoffice-bugs] [Bug 128788] Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

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

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

[Libreoffice-bugs] [Bug 128788] New: Crash when trying to put autovalue on a field of a table

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128788

Bug ID: 128788
   Summary: Crash when trying to put autovalue on a field of a
table
   Product: LibreOffice
   Version: 6.4.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serval2...@yahoo.fr

Description:
On pc Debian x86-64 with master sources updated today, I get a crash when
editing a table and trying to set autovalue on a field.

Steps to Reproduce:
1. Retrieve test.odb attached (a brand new embedded HSQLDB odb)
2. Launch Base with test.odb
3. Edit table
4. try to set autovalue on a field

Actual Results:
Crash

Expected Results:
No crash


Reproducible: Always


User Profile Reset: Yes



Additional Info:

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

[Libreoffice-commits] online.git: test/TileCacheTests.cpp

2019-11-13 Thread Andras Timar (via logerrit)
 test/TileCacheTests.cpp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fd93e11934317792b3633cfea986752354ef8bab
Author: Andras Timar 
AuthorDate: Wed Nov 13 22:16:59 2019 +0100
Commit: Andras Timar 
CommitDate: Wed Nov 13 22:16:59 2019 +0100

build fix after 'killpoco: removed StringTokenizer'

Change-Id: I2f1cb0da199a8dca1cf300955f133f45b8d7ba3b

diff --git a/test/TileCacheTests.cpp b/test/TileCacheTests.cpp
index 88308165d..7dc7d1500 100644
--- a/test/TileCacheTests.cpp
+++ b/test/TileCacheTests.cpp
@@ -1096,9 +1096,9 @@ void 
TileCacheTests::checkTiles(std::shared_ptr& socket, const st
 CPPUNIT_ASSERT_GREATEREQUAL(static_cast(6), tokens.size());
 #else
 if (docType == "presentation")
-CPPUNIT_ASSERT_EQUAL(static_cast(7), tokens.count()); // 
We have an extra field.
+CPPUNIT_ASSERT_EQUAL(static_cast(7), tokens.size()); // We 
have an extra field.
 else
-CPPUNIT_ASSERT_EQUAL(static_cast(6), tokens.count());
+CPPUNIT_ASSERT_EQUAL(static_cast(6), tokens.size());
 #endif
 
 // Expected format is something like 'type= parts= current= width= 
height='.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - include/vcl offapi/com toolkit/source vcl/headless vcl/inc vcl/qt5 vcl/source vcl/unx vcl/win

2019-11-13 Thread Ashod Nakashian (via logerrit)
 include/vcl/settings.hxx   |9 +
 offapi/com/sun/star/awt/XStyleSettings.idl |9 +
 toolkit/source/awt/stylesettings.cxx   |   41 ++
 toolkit/source/awt/stylesettings.hxx   |6 +++
 vcl/headless/CustomWidgetDraw.cxx  |3 +
 vcl/inc/WidgetThemeLibrary.hxx |3 +
 vcl/qt5/Qt5Frame.cxx   |3 +
 vcl/source/app/settings.cxx|   52 +
 vcl/source/control/button.cxx  |   13 +--
 vcl/unx/gtk/salnativewidgets-gtk.cxx   |3 +
 vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx  |4 ++
 vcl/unx/kde4/KDESalFrame.cxx   |3 +
 vcl/win/window/salframe.cxx|3 +
 13 files changed, 149 insertions(+), 3 deletions(-)

New commits:
commit aa3240f97b5cd018013dae20bbb01d47dca67290
Author: Ashod Nakashian 
AuthorDate: Sat Jan 19 07:49:24 2019 -0500
Commit: Tomaž Vajngerl 
CommitDate: Wed Nov 13 21:45:44 2019 +0100

custom widgets: support custom action button text colors

Reviewed-on: https://gerrit.libreoffice.org/82276
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit 8a425fbd9c6b75b09672e0ce18f43162d9eda360)

Change-Id: I314183a1d6434c043183a600740c786e22a67503
Reviewed-on: https://gerrit.libreoffice.org/82383
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx
index 94b35515149a..4cdef3a00b1e 100644
--- a/include/vcl/settings.hxx
+++ b/include/vcl/settings.hxx
@@ -270,6 +270,15 @@ public:
 voidSetButtonTextColor( const Color& rColor );
 const Color&GetButtonTextColor() const;
 
+voidSetDefaultActionButtonTextColor( const 
Color& rColor );
+const Color&GetDefaultActionButtonTextColor() const;
+
+voidSetActionButtonTextColor( const Color& 
rColor );
+const Color&GetActionButtonTextColor() const;
+
+voidSetActionButtonRolloverTextColor( const 
Color& rColor );
+const Color&GetActionButtonRolloverTextColor() const;
+
 voidSetButtonRolloverTextColor( const Color& 
rColor );
 const Color&GetButtonRolloverTextColor() const;
 
diff --git a/offapi/com/sun/star/awt/XStyleSettings.idl 
b/offapi/com/sun/star/awt/XStyleSettings.idl
index 47a55d6e4e62..6150033787c9 100644
--- a/offapi/com/sun/star/awt/XStyleSettings.idl
+++ b/offapi/com/sun/star/awt/XStyleSettings.idl
@@ -61,9 +61,18 @@ interface XStyleSettings
 /// specifies the color to use for text on buttons which are hovered with 
the mouse
 [attribute] ::com::sun::star::util::Color ButtonRolloverTextColor;
 
+/// specifies the color to use for text on action buttons which are 
hovered with the mouse
+[attribute] ::com::sun::star::util::Color ActionButtonRolloverTextColor;
+
 /// specifies the color to use for text on buttons
 [attribute] ::com::sun::star::util::Color ButtonTextColor;
 
+/// specifies the color to use for text on a default action buttons
+[attribute] ::com::sun::star::util::Color DefaultActionButtonTextColor;
+
+/// specifies the color to use for text on action buttons
+[attribute] ::com::sun::star::util::Color ActionButtonTextColor;
+
 
 [attribute] ::com::sun::star::util::Color CheckedColor;
 
diff --git a/toolkit/source/awt/stylesettings.cxx 
b/toolkit/source/awt/stylesettings.cxx
index 22cce1247cc6..3f6701766270 100644
--- a/toolkit/source/awt/stylesettings.cxx
+++ b/toolkit/source/awt/stylesettings.cxx
@@ -237,6 +237,20 @@ namespace toolkit
 }
 
 
+::sal_Int32 SAL_CALL 
WindowStyleSettings::getActionButtonRolloverTextColor()
+{
+StyleMethodGuard aGuard( *m_pData );
+return lcl_getStyleColor( *m_pData, 
::GetActionButtonRolloverTextColor );
+}
+
+
+void SAL_CALL WindowStyleSettings::setActionButtonRolloverTextColor( 
::sal_Int32 _buttonrollovertextcolor )
+{
+StyleMethodGuard aGuard( *m_pData );
+lcl_setStyleColor( *m_pData, 
::SetActionButtonRolloverTextColor, _buttonrollovertextcolor );
+}
+
+
 ::sal_Int32 SAL_CALL WindowStyleSettings::getButtonTextColor()
 {
 StyleMethodGuard aGuard( *m_pData );
@@ -250,6 +264,33 @@ namespace toolkit
 lcl_setStyleColor( *m_pData, ::SetButtonTextColor, 
_buttontextcolor );
 }
 
+::sal_Int32 SAL_CALL WindowStyleSettings::getDefaultActionButtonTextColor()
+{
+StyleMethodGuard aGuard( *m_pData );
+return lcl_getStyleColor( *m_pData, 
::GetDefaultActionButtonTextColor );
+}
+
+
+void SAL_CALL WindowStyleSettings::setDefaultActionButtonTextColor( 
::sal_Int32 _buttontextcolor )
+{
+StyleMethodGuard aGuard( *m_pData );
+

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - include/basegfx svgio/source vcl/headless vcl/inc vcl/source

2019-11-13 Thread Tomaž Vajngerl (via logerrit)
 include/basegfx/DrawCommands.hxx|   51 
 svgio/source/svgreader/svgvisitor.cxx   |   37 
 vcl/headless/svpgdi.cxx |   34 ++
 vcl/inc/SalGradient.hxx |   36 +++
 vcl/inc/headless/svpgdi.hxx |2 +
 vcl/inc/salgdi.hxx  |9 
 vcl/source/gdi/FileDefinitionWidgetDraw.cxx |   46 +
 vcl/source/gdi/salgdilayout.cxx |5 ++
 8 files changed, 220 insertions(+)

New commits:
commit a8dad3673f746ec9874f9b1d0780a13c4ac124a6
Author: Tomaž Vajngerl 
AuthorDate: Mon Nov 4 18:36:51 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Nov 13 21:45:15 2019 +0100

widget theme: Gradient support when drawing widgets

Reviewed-on: https://gerrit.libreoffice.org/82207
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit 389c8239c93663fa5546b2f0227a118a3ad091bf)

Change-Id: I29239348e36e4963d9708a22ac649b2b1d68bf02
Reviewed-on: https://gerrit.libreoffice.org/82382
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/basegfx/DrawCommands.hxx b/include/basegfx/DrawCommands.hxx
index 92747c5af4d2..d7d861f9effd 100644
--- a/include/basegfx/DrawCommands.hxx
+++ b/include/basegfx/DrawCommands.hxx
@@ -11,6 +11,13 @@
 #define INCLUDED_BASEGFX_DRAWCOMMANDS_H
 
 #include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
 
 namespace gfx
 {
@@ -29,6 +36,48 @@ enum class DrawCommandType
 Path
 };
 
+enum class GradientType
+{
+Linear
+};
+
+class GradientStop
+{
+public:
+float mfOffset;
+basegfx::BColor maColor;
+float mfOpacity;
+};
+
+class GradientInfo
+{
+public:
+GradientType meType;
+
+std::vector maGradientStops;
+
+GradientInfo(GradientType eType)
+: meType(eType)
+{
+}
+};
+
+class LinearGradientInfo : public GradientInfo
+{
+public:
+LinearGradientInfo()
+: GradientInfo(GradientType::Linear)
+{
+}
+
+double x1;
+double y1;
+double x2;
+double y2;
+
+basegfx::B2DHomMatrix maMatrix;
+};
+
 class DrawBase : public DrawCommand
 {
 private:
@@ -65,6 +114,7 @@ public:
 double mnOpacity;
 std::shared_ptr mpFillColor;
 std::shared_ptr mpStrokeColor;
+std::shared_ptr mpFillGradient;
 
 DrawRectangle(basegfx::B2DRange const& rRectangle)
 : DrawBase(DrawCommandType::Rectangle)
@@ -86,6 +136,7 @@ public:
 double mnOpacity;
 std::shared_ptr mpFillColor;
 std::shared_ptr mpStrokeColor;
+std::shared_ptr mpFillGradient;
 
 DrawPath(basegfx::B2DPolyPolygon const& rPolyPolygon)
 : DrawBase(DrawCommandType::Path)
diff --git a/svgio/source/svgreader/svgvisitor.cxx 
b/svgio/source/svgreader/svgvisitor.cxx
index 011ce5492fa3..52247be8dd43 100644
--- a/svgio/source/svgreader/svgvisitor.cxx
+++ b/svgio/source/svgreader/svgvisitor.cxx
@@ -16,6 +16,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -77,8 +78,44 @@ void SvgDrawVisitor::visit(svgio::svgreader::SvgNode const& 
rNode)
 pRectangle->mnOpacity = 
rRectNode.getSvgStyleAttributes()->getOpacity().getNumber();
 
 const basegfx::BColor* pFillColor = 
rRectNode.getSvgStyleAttributes()->getFill();
+const SvgGradientNode* pFillGradient
+= rRectNode.getSvgStyleAttributes()->getSvgGradientNodeFill();
 if (pFillColor)
+{
 pRectangle->mpFillColor = 
std::make_shared(*pFillColor);
+}
+else if (pFillGradient)
+{
+drawinglayer::primitive2d::SvgGradientEntryVector 
aSvgGradientEntryVector;
+pFillGradient->collectGradientEntries(aSvgGradientEntryVector);
+if (!aSvgGradientEntryVector.empty())
+{
+auto aGradientInfo = 
std::make_shared();
+
+aGradientInfo->x1 = pFillGradient->getX1().getNumber();
+aGradientInfo->y1 = pFillGradient->getY1().getNumber();
+aGradientInfo->x2 = pFillGradient->getX2().getNumber();
+aGradientInfo->y2 = pFillGradient->getY2().getNumber();
+
+const basegfx::B2DHomMatrix* pGradientTransform
+= pFillGradient->getGradientTransform();
+if (pGradientTransform)
+{
+aGradientInfo->maMatrix = *pGradientTransform;
+}
+
+pRectangle->mpFillGradient = aGradientInfo;
+
+for (auto const& rEntry : aSvgGradientEntryVector)
+{
+gfx::GradientStop aStop;
+aStop.maColor = rEntry.getColor();
+aStop.mfOffset = rEntry.getOffset();
+

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

2019-11-13 Thread Tomaž Vajngerl (via logerrit)
 offapi/com/sun/star/awt/XStyleSettings.idl |9 -
 toolkit/source/awt/stylesettings.cxx   |   50 ++---
 toolkit/source/awt/stylesettings.hxx   |6 ---
 3 files changed, 11 insertions(+), 54 deletions(-)

New commits:
commit c1fb36e477b1d0063ceb3eb74fa556b4187562cc
Author: Tomaž Vajngerl 
AuthorDate: Wed Nov 13 15:33:27 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Nov 13 21:39:25 2019 +0100

revert action button changes to UNO XStyleSetting

As there is no need for this UNO changes instead set the values
with other appropriate button settings so the previous behaviour
is retained.

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

diff --git a/offapi/com/sun/star/awt/XStyleSettings.idl 
b/offapi/com/sun/star/awt/XStyleSettings.idl
index 6150033787c9..47a55d6e4e62 100644
--- a/offapi/com/sun/star/awt/XStyleSettings.idl
+++ b/offapi/com/sun/star/awt/XStyleSettings.idl
@@ -61,18 +61,9 @@ interface XStyleSettings
 /// specifies the color to use for text on buttons which are hovered with 
the mouse
 [attribute] ::com::sun::star::util::Color ButtonRolloverTextColor;
 
-/// specifies the color to use for text on action buttons which are 
hovered with the mouse
-[attribute] ::com::sun::star::util::Color ActionButtonRolloverTextColor;
-
 /// specifies the color to use for text on buttons
 [attribute] ::com::sun::star::util::Color ButtonTextColor;
 
-/// specifies the color to use for text on a default action buttons
-[attribute] ::com::sun::star::util::Color DefaultActionButtonTextColor;
-
-/// specifies the color to use for text on action buttons
-[attribute] ::com::sun::star::util::Color ActionButtonTextColor;
-
 
 [attribute] ::com::sun::star::util::Color CheckedColor;
 
diff --git a/toolkit/source/awt/stylesettings.cxx 
b/toolkit/source/awt/stylesettings.cxx
index eb76209040b8..55abed46bf87 100644
--- a/toolkit/source/awt/stylesettings.cxx
+++ b/toolkit/source/awt/stylesettings.cxx
@@ -236,19 +236,11 @@ namespace toolkit
 {
 StyleMethodGuard aGuard( *m_pData );
 lcl_setStyleColor( *m_pData, 
::SetButtonRolloverTextColor, _buttonrollovertextcolor );
-}
-
-
-::sal_Int32 SAL_CALL 
WindowStyleSettings::getActionButtonRolloverTextColor()
-{
-StyleMethodGuard aGuard( *m_pData );
-return lcl_getStyleColor( *m_pData, 
::GetActionButtonRolloverTextColor );
-}
-
-
-void SAL_CALL WindowStyleSettings::setActionButtonRolloverTextColor( 
::sal_Int32 _buttonrollovertextcolor )
-{
-StyleMethodGuard aGuard( *m_pData );
+// Also need to set ActionButtonRolloverTextColor as this setting 
can't be
+// set through the UNO interface otherwise.
+// Previously this setting was used to set colors for both scenarios,
+// but action button setting was added to differentiate the buttons 
from
+// "normal" buttons in some themes.
 lcl_setStyleColor( *m_pData, 
::SetActionButtonRolloverTextColor, _buttonrollovertextcolor );
 }
 
@@ -264,33 +256,13 @@ namespace toolkit
 {
 StyleMethodGuard aGuard( *m_pData );
 lcl_setStyleColor( *m_pData, ::SetButtonTextColor, 
_buttontextcolor );
-}
-
-::sal_Int32 SAL_CALL WindowStyleSettings::getDefaultActionButtonTextColor()
-{
-StyleMethodGuard aGuard( *m_pData );
-return lcl_getStyleColor( *m_pData, 
::GetDefaultActionButtonTextColor );
-}
-
-
-void SAL_CALL WindowStyleSettings::setDefaultActionButtonTextColor( 
::sal_Int32 _buttontextcolor )
-{
-StyleMethodGuard aGuard( *m_pData );
-lcl_setStyleColor( *m_pData, 
::SetDefaultActionButtonTextColor, _buttontextcolor );
-}
-
-
-::sal_Int32 SAL_CALL WindowStyleSettings::getActionButtonTextColor()
-{
-StyleMethodGuard aGuard( *m_pData );
-return lcl_getStyleColor( *m_pData, 
::GetActionButtonTextColor );
-}
-
-
-void SAL_CALL WindowStyleSettings::setActionButtonTextColor( ::sal_Int32 
_buttontextcolor )
-{
-StyleMethodGuard aGuard( *m_pData );
+// Also need to set ActionButtonTextColor and 
DefaultActionButtonTextColor
+// as this two settings can't be set through the UNO interface 
otherwise.
+// Previously this setting was used to set colors for all three 
scenarios,
+// but action button setting was added to differentiate the buttons 
from
+// "normal" buttons in some themes.
 lcl_setStyleColor( *m_pData, ::SetActionButtonTextColor, 
_buttontextcolor );
+lcl_setStyleColor( *m_pData, 
::SetDefaultActionButtonTextColor, _buttontextcolor );
 }
 
 
diff --git a/toolkit/source/awt/stylesettings.hxx 
b/toolkit/source/awt/stylesettings.hxx
index 9799119b2a83..0bc28cd1dad4 100644
--- a/toolkit/source/awt/stylesettings.hxx
+++ 

[Libreoffice-bugs] [Bug 125715] Crash in: ld-2.22.so while starting with SAL_USE_VCLPLUGIN=gtk3_kde5 soffice

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

opensuse.lietuviu.ka...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #30 from opensuse.lietuviu.ka...@gmail.com ---
If I remove libobasis6.3-kde-integration and libobasis6.2-kde-integration ,
then
both LibreOffice versions (6.3.3.2 and 6.2.8.2) starts successfully with GTK3
back-end (not GTK3_KDE5) as
libobasis6.2-gnome-integration and libobasis6.3-gnome-integration are
installed.

Thus we can close this bug as GTK3_KDE5 startup in for old systems no longer
crash (ie. is 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 102495] [META] KDE VCL backend bugs and enhancements

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102495
Bug 102495 depends on bug 125715, which changed state.

Bug 125715 Summary: Crash in: ld-2.22.so while starting with 
SAL_USE_VCLPLUGIN=gtk3_kde5 soffice
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

   What|Removed |Added

 Status|NEEDINFO|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 125715] Crash in: ld-2.22.so while starting with SAL_USE_VCLPLUGIN=gtk3_kde5 soffice

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

--- Comment #29 from opensuse.lietuviu.ka...@gmail.com ---
Now upgrading to version 6.3.3.2
ID: a64200df03143b798afd1ec74a12ab50359878ed
I installed libobasis6.3-kde-integration in addition.

if I start LibreOffice without any variables, it fails:
>  /opt/libreoffice6.3/program/soffice
/opt/libreoffice6.3/program/soffice.bin: /lib64/libdbus-1.so.3: no version
information available (required by /opt/libreoffice6.3/program/libmergedlo.so)
/opt/libreoffice6.3/program/soffice.bin: relocation error:
/opt/libreoffice6.3/program/libvclplug_qt5lo.so: symbol
_ZN5QIcon9fromThemeERK7QString, version Qt_5 not defined in file libQt5Gui.so.5
with link time reference

Forcing GTK3+KDE5 will success:
> SAL_USE_VCLPLUGIN=gtk3_kde5  /opt/libreoffice6.3/program/soffice
/opt/libreoffice6.3/program/soffice.bin: /lib64/libdbus-1.so.3: no version
information available (required by /opt/libreoffice6.3/program/libmergedlo.so)

(soffice:11883): Gdk-WARNING **: XSetErrorHandler() called with a GDK error
trap pushed. Don't do that.

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

[Libreoffice-bugs] [Bug 128764] Trying to delete an XY-Chart causes crash

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128764

Oliver Brinzing  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED

--- Comment #5 from Oliver Brinzing  ---
(In reply to Laszlo from comment #4)
> In the newer version Calc seems to behave correctly.
> Bug could not be reproduced.
> Version: 6.3.3.2 (x64)

ok, thanks for checking, setting issue to RESOLVED/DUPLICATE

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

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

[Libreoffice-bugs] [Bug 124607] Opening docx file makes LO writer crash

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124607

--- Comment #9 from Oliver Sander  ---
The situation is unchanged.

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

[Libreoffice-bugs] [Bug 125715] Crash in: ld-2.22.so while starting with SAL_USE_VCLPLUGIN=gtk3_kde5 soffice

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

--- Comment #28 from opensuse.lietuviu.ka...@gmail.com ---
Sorry, in comment#27 part 1 I wrote about old 6.2 devel version.

Indeed, starting with full path is same as with relative path:

> SAL_USE_VCLPLUGIN=gtk3_kde5  /opt/libreoffice6.2/program/soffice  
>   
>
/opt/libreoffice6.2/program/soffice.bin: /lib64/libdbus-1.so.3: no version
information available (required by /opt/libreoffice6.2/program/libmergedlo.so)  

(soffice:11391): Gdk-WARNING **: XSetErrorHandler() called with a GDK error
trap pushed. Don't do that.

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

[Libreoffice-bugs] [Bug 125715] Crash in: ld-2.22.so while starting with SAL_USE_VCLPLUGIN=gtk3_kde5 soffice

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

--- Comment #27 from opensuse.lietuviu.ka...@gmail.com ---
Testing in openSUSE Leap 42.3, LibreOffice 6.2.8 installed from LibreOffice
site RPM packages.
Funny, if I start with full path, it fails:

> SAL_USE_VCLPLUGIN=gtk3_kde5  /opt/libreofficedev6.2/program/soffice
/opt/libreofficedev6.2/program/soffice.bin: /lib64/libdbus-1.so.3: no version
information available (required by
/opt/libreofficedev6.2/program/libmergedlo.so)
/opt/libreofficedev6.2/program/soffice.bin: relocation error:
/opt/libreofficedev6.2/program/libvclplug_qt5lo.so: symbol
_ZN5QIcon9fromThemeERK7QString, version Qt_5 not defined in file libQt5Gui.so.5
with link time reference


BUT if I enter into LibreOffice program directory and start as with relative
path, it success (only few warnings in terminal):

/opt/libreoffice6.2/program> SAL_USE_VCLPLUGIN=gtk3_kde5  ./soffice
/opt/libreoffice6.2/program/soffice.bin: /lib64/libdbus-1.so.3: no version
information available (required by /opt/libreoffice6.2/program/libmergedlo.so)

(soffice:10471): Gdk-WARNING **: XSetErrorHandler() called with a GDK error
trap pushed. Don't do that.

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

[Libreoffice-bugs] [Bug 125715] Crash in: ld-2.22.so while starting with SAL_USE_VCLPLUGIN=gtk3_kde5 soffice

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125715

--- Comment #26 from opensuse.lietuviu.ka...@gmail.com ---
Updated to version 6.2.8.2
ID: f82ddfca21ebc1e222a662a32b25c0c9d20169ee

If I install libobasis6.2-kde-integration and run LO, I get error:

/opt/libreoffice6.2/program/soffice.bin: relocation error:
/opt/libreoffice6.2/program/libvclplug_qt5lo.so: symbol
_ZN5QIcon9fromThemeERK7QString, version Qt_5 not defined in file libQt5Gui.so.5
with link time reference

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

[Libreoffice-bugs] [Bug 128787] New: UI: menu path Format - Styles - New style from selection does not work

2019-11-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128787

Bug ID: 128787
   Summary: UI: menu path Format - Styles - New style from
selection does not work
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gerhard.we...@t-online.de

The menu path Format -> Styles -> New style from selection does not work, there
is no reaction when the command is clicked.
The same function triggered in the styles section of the sidebar does work,
though.

Steps to reproduce:
- draw a rectangle
- change its colour
- while the rectangle is still selected choose Format -> Styles -> New style
from selection
- result: no reaction
- choose the respective symbol in the sidebar: a dialog to enter the name
appears

It seems that this menu entry was introduced with 6.1 (Itested in 6.1.3.2), but
I could niot find it in 6.0.7.3.

The problem still persists in:
Version: 6.4.0.0.alpha1 (x64)
Build ID: cc57df8f942f239d29cb575ea5a7cb01405db787
CPU threads: 4; OS: Windows 10.0 Build 17134; UI render: GL; VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-GB
Calc: threaded

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

Adrien Ollier license statement

2019-11-13 Thread Adrien Ollier
To the extent possible under law, I waive all copyright and related or 
neighboring
rights to my past & future contributions to LibreOffice:
http://creativecommons.org/publicdomain/zero/1.0
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

  1   2   3   4   5   >