[Libreoffice-bugs] [Bug 139299] EDITING: Closing of query from design view leads to crash

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139299

--- Comment #1 from Robert Großkopf  ---
I tested it a little bit more.
If I don't save the query before I want to close the query I will be asked by a
dialog if I want to save the query. This way the query will be saved and LO
won't crash.

If I save the query before I try to close the query (File → Save) it will crash
immediately when I close the query.

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


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

2020-12-28 Thread Tamás Zolnai (via logerrit)
 sw/source/uibase/uno/unotxdoc.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 476bc04e6a9cde9b7424f118d6ef9422975be84a
Author: Tamás Zolnai 
AuthorDate: Mon Dec 28 14:28:06 2020 +0100
Commit: Tamás Zolnai 
CommitDate: Tue Dec 29 08:32:26 2020 +0100

Fix crash in SwXTextDocument::getSelection() method.

pWrtShell was nullptr. This crash was triggered by
an collaborative editing use case.

Change-Id: Id64298b424f5ac4d96df97581c6fe3067e799eb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108417
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai 

diff --git a/sw/source/uibase/uno/unotxdoc.cxx 
b/sw/source/uibase/uno/unotxdoc.cxx
index 18f84f8c64df..338230b1173e 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -3581,7 +3581,7 @@ uno::Reference 
SwXTextDocument::getSelection()
 uno::Reference xTransferable;
 
 SwWrtShell* pWrtShell = m_pDocShell->GetWrtShell();
-if (SdrView* pSdrView = pWrtShell->GetDrawView())
+if (SdrView* pSdrView = pWrtShell ? pWrtShell->GetDrawView() : nullptr)
 {
 if (pSdrView->GetTextEditObject())
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/cib_contract57d' - vcl/qa

2020-12-28 Thread Vasily Melenchuk (via logerrit)
 vcl/qa/cppunit/pdfexport/pdfexport.cxx |   81 -
 1 file changed, 81 deletions(-)

New commits:
commit 29be4aa8c8ff24a33503f5d626a6e001a1f6ae78
Author: Vasily Melenchuk 
AuthorDate: Wed Dec 23 22:11:05 2020 +0300
Commit: Vasily Melenchuk 
CommitDate: Tue Dec 29 10:28:33 2020 +0300

vcl: removed unit test added during pdfium update

Testcase was modified during pdfium update to 4021,
but corresponding feature is not implemented in 6.3 yet,
so better to remove that testcase completely as in
original 6.3.

Change-Id: Ia26c5717385fc95227d1d46f8df4a8b333ed7a05

diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx 
b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
index 9714cb621b26..28b9fc9f3bcc 100644
--- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx
+++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
@@ -1818,87 +1818,6 @@ void PdfExportTest::testTocLink()
 CPPUNIT_ASSERT(FPDFLink_Enumerate(pPdfPage.get(), , 
));
 }
 
-void PdfExportTest::testPdfImageResourceInlineXObjectRef()
-{
-// Create an empty document.
-mxComponent = loadFromDesktop("private:factory/swriter");
-CPPUNIT_ASSERT(mxComponent.is());
-uno::Reference xTextDocument(mxComponent, 
uno::UNO_QUERY);
-uno::Reference xText = xTextDocument->getText();
-uno::Reference xCursor = xText->createTextCursor();
-
-// Insert the PDF image.
-uno::Reference xFactory(mxComponent, 
uno::UNO_QUERY);
-uno::Reference xGraphicObject(
-xFactory->createInstance("com.sun.star.text.TextGraphicObject"), 
uno::UNO_QUERY);
-OUString aURL
-= m_directories.getURLFromSrc(DATA_DIRECTORY) + 
"pdf-image-resource-inline-xobject-ref.pdf";
-xGraphicObject->setPropertyValue("GraphicURL", uno::makeAny(aURL));
-uno::Reference xShape(xGraphicObject, uno::UNO_QUERY);
-xShape->setSize(awt::Size(1000, 1000));
-uno::Reference xTextContent(xGraphicObject, 
uno::UNO_QUERY);
-xText->insertTextContent(xCursor->getStart(), xTextContent, 
/*bAbsorb=*/false);
-
-// Save as PDF.
-uno::Reference xStorable(mxComponent, uno::UNO_QUERY);
-utl::MediaDescriptor aMediaDescriptor;
-aMediaDescriptor["FilterName"] <<= OUString("writer_pdf_Export");
-xStorable->storeToURL(maTempFile.GetURL(), 
aMediaDescriptor.getAsConstPropertyValueList());
-
-// Init pdfium, vcl::ImportPDF() calls FPDF_DestroyLibrary after our 
setUp().
-FPDF_LIBRARY_CONFIG config;
-config.version = 2;
-config.m_pUserFontPaths = nullptr;
-config.m_pIsolate = nullptr;
-config.m_v8EmbedderSlot = 0;
-FPDF_InitLibraryWithConfig();
-
-// Parse the export result.
-SvFileStream aFile(maTempFile.GetURL(), StreamMode::READ);
-maMemory.WriteStream(aFile);
-DocumentHolder pPdfDocument(
-FPDF_LoadMemDocument(maMemory.GetData(), maMemory.GetSize(), 
/*password=*/nullptr));
-CPPUNIT_ASSERT(pPdfDocument.get());
-CPPUNIT_ASSERT_EQUAL(1, FPDF_GetPageCount(pPdfDocument.get()));
-
-// Make sure that the page -> form -> form has a child image.
-PageHolder pPdfPage(FPDF_LoadPage(pPdfDocument.get(), /*page_index=*/0));
-CPPUNIT_ASSERT(pPdfPage.get());
-CPPUNIT_ASSERT_EQUAL(1, FPDFPage_CountObjects(pPdfPage.get()));
-FPDF_PAGEOBJECT pPageObject = FPDFPage_GetObject(pPdfPage.get(), 0);
-CPPUNIT_ASSERT_EQUAL(FPDF_PAGEOBJ_FORM, FPDFPageObj_GetType(pPageObject));
-CPPUNIT_ASSERT_EQUAL(1, FPDFFormObj_CountObjects(pPageObject));
-FPDF_PAGEOBJECT pFormObject = FPDFFormObj_GetObject(pPageObject, 0);
-CPPUNIT_ASSERT_EQUAL(FPDF_PAGEOBJ_FORM, FPDFPageObj_GetType(pFormObject));
-// Without the accompanying fix in place, this test would have failed with:
-// - Expected: 1
-// - Actual  : 0
-// i.e. the sub-form was missing its image.
-CPPUNIT_ASSERT_EQUAL(1, FPDFFormObj_CountObjects(pFormObject));
-
-// Check if the inner form object (original page object in the pdf image) 
has the correct
-// rotation.
-FPDF_PAGEOBJECT pInnerFormObject = FPDFFormObj_GetObject(pFormObject, 0);
-CPPUNIT_ASSERT_EQUAL(FPDF_PAGEOBJ_FORM, 
FPDFPageObj_GetType(pInnerFormObject));
-CPPUNIT_ASSERT_EQUAL(1, FPDFFormObj_CountObjects(pInnerFormObject));
-FPDF_PAGEOBJECT pImage = FPDFFormObj_GetObject(pInnerFormObject, 0);
-CPPUNIT_ASSERT_EQUAL(FPDF_PAGEOBJ_IMAGE, FPDFPageObj_GetType(pImage));
-FS_MATRIX aMatrix;
-FPDFFormObj_GetMatrix(pInnerFormObject, );
-basegfx::B2DHomMatrix aMat{ aMatrix.a, aMatrix.c, aMatrix.e, aMatrix.b, 
aMatrix.d, aMatrix.f };
-basegfx::B2DTuple aScale;
-basegfx::B2DTuple aTranslate;
-double fRotate = 0;
-double fShearX = 0;
-aMat.decompose(aScale, aTranslate, fRotate, fShearX);
-int nRotateDeg = basegfx::rad2deg(fRotate);
-// Without the accompanying fix in place, this test would have failed with:
-// - Expected: -90
-// - Actual  : 0
-// i.e. rotation was lost on pdf export.
-CPPUNIT_ASSERT_EQUAL(-90, nRotateDeg);
-}
-
 

[Libreoffice-bugs] [Bug 139299] EDITING: Closing of query from design view leads to crash

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139299

Robert Großkopf  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||9298
   Keywords||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 139298] EDITING: New created query doesn't show any row every time

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139298

Robert Großkopf  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 139299] New: EDITING: Closing of query from design view leads to crash

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139299

Bug ID: 139299
   Summary: EDITING: Closing of query from design view leads to
crash
   Product: LibreOffice
   Version: 7.1.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@familiegrosskopf.de

Open any database file.
Go to "Queries"  → "Create Query in Design View …"
Create a query and test this query and run this query (Edit → Run Query [F5])
in design view.
There is no content shown in the query.

This is https://bugs.documentfoundation.org/show_bug.cgi?id=139298.

Now try to close design view. 
Every time I tested this it leads to a crash of whole LO.

This bug happens every time in LO 7.1.0.1 on OpenSUSE 15.2 64bit rpm Linux.

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


[Libreoffice-bugs] [Bug 139298] EDITING: New created query doesn't show any row every time

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139298

Robert Großkopf  changed:

   What|Removed |Added

   Keywords||regression
   Hardware|All |x86-64 (AMD64)
 OS|All |Linux (All)

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


[Libreoffice-bugs] [Bug 139298] New: EDITING: New created query doesn't show any row every time

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139298

Bug ID: 139298
   Summary: EDITING: New created query doesn't show any row every
time
   Product: LibreOffice
   Version: 7.1.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@familiegrosskopf.de

Open any database file.
Go to "Queries"  → "Create Query in Design View …"
Create a query and test this query and run this query (Edit → Run Query [F5])
in design view.
There is no content shown in the query.

This bug happens every time in LO 7.1.0.1 on OpenSUSE 15.2 64bit rpm Linux.

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


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

2020-12-28 Thread Noel Grandin (via logerrit)
 include/tools/degree.hxx |7 +++
 svx/source/svdraw/svdmrkv.cxx|5 -
 sw/inc/grfatr.hxx|8 +---
 sw/source/core/doc/notxtfrm.cxx  |2 +-
 sw/source/core/draw/dflyobj.cxx  |   10 +-
 sw/source/core/graphic/grfatr.cxx|   16 
 sw/source/core/graphic/ndgrf.cxx |2 +-
 sw/source/core/inc/dflyobj.hxx   |2 +-
 sw/source/filter/ww8/docxattributeoutput.cxx |4 ++--
 sw/source/filter/ww8/rtfattributeoutput.cxx  |4 ++--
 sw/source/uibase/frmdlg/frmmgr.cxx   |2 +-
 sw/source/uibase/inc/frmmgr.hxx  |2 +-
 sw/source/uibase/shells/frmsh.cxx|6 +++---
 sw/source/uibase/shells/grfsh.cxx|   26 +-
 sw/source/uibase/utlui/attrdesc.cxx  |2 +-
 15 files changed, 51 insertions(+), 47 deletions(-)

New commits:
commit 0df65d9b1643c651143b51e315c97e732e8a6c00
Author: Noel Grandin 
AuthorDate: Mon Dec 28 13:24:48 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 29 08:07:51 2020 +0100

use Degree10 in SwRotationGrf

(*) Fix SwRotationGrf::GetPresentation to return a more accurate string
(*) Add utility functions
sal_Int32 toDegree100(Degree10)
double toRadians(Degree10)
(*) Fix SwVirtFlyDrawObj::GetRotateAngle to return the angle in the units
that svx expects (deg100)
  which was introduced in
commit c2e30949e0fb7c6a73742450f646e0d8d59d5e4f
Date:   Wed Apr 10 15:13:53 2019 +0200
lok: writer: svg export transformed images
  and consequently we can remove the kludge from that commit in
SdrMarkView::SetMarkHandlesForLOKit

Change-Id: I1a8c5f3a417f887f85b92ae5464578e9ee251619
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108406
Tested-by: Noel Grandin 
Reviewed-by: Noel Grandin 

diff --git a/include/tools/degree.hxx b/include/tools/degree.hxx
index d7ff625b0de2..27bdffaa5de1 100644
--- a/include/tools/degree.hxx
+++ b/include/tools/degree.hxx
@@ -10,6 +10,7 @@
 
 #include 
 #include 
+#include 
 
 /** tenths of a Degree, normally rotation */
 typedef o3tl::strong_int Degree10;
@@ -17,4 +18,10 @@ typedef o3tl::strong_int 
Degree10;
 /** custom literal */
 constexpr Degree10 operator""_deg10(unsigned long long n) { return Degree10{ n 
}; }
 
+/** conversion functions */
+
+inline sal_Int32 toDegree100(Degree10 x) { return x.get() * 10; }
+inline double toRadians(Degree10 x) { return x.get() * M_PI / 1800.0; }
+inline double toDegrees(Degree10 x) { return x.get() / 10.0; }
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx
index 5e528e5947db..0d6911e71a1d 100644
--- a/svx/source/svdraw/svdmrkv.cxx
+++ b/svx/source/svdraw/svdmrkv.cxx
@@ -743,11 +743,6 @@ void SdrMarkView::SetMarkHandlesForLOKit(tools::Rectangle 
const & rRect, const S
 // (SwVirtFlyDrawObj with a SwGrfNode)
 bool bWriterGraphic = pO->HasLimitedRotation();
 
-if (bWriterGraphic)
-{
-nRotAngle *= 10;
-}
-
 OStringBuffer aExtraInfo;
 
 aExtraInfo.append("{\"id\":\"");
diff --git a/sw/inc/grfatr.hxx b/sw/inc/grfatr.hxx
index 954a1a39dc28..05bf13ae591c 100644
--- a/sw/inc/grfatr.hxx
+++ b/sw/inc/grfatr.hxx
@@ -84,13 +84,13 @@ private:
 
 // tdf#115529 check and evtl. correct value, it is in 10th
 // degrees and *has* to be in the range [0 .. 3600[
-static sal_Int16 checkAndCorrectValue(sal_Int16 nValue);
+static Degree10 checkAndCorrectValue(Degree10 nValue);
 
 public:
 SwRotationGrf()
 : SfxUInt16Item( RES_GRFATR_ROTATION, 0 )
 {}
-SwRotationGrf( sal_Int16 nVal, const Size& rSz );
+SwRotationGrf( Degree10 nVal, const Size& rSz );
 
 // pure virtual methods from SfxInt16Item
 virtual SwRotationGrf* Clone( SfxItemPool *pPool = nullptr ) const 
override;
@@ -105,7 +105,9 @@ public:
 virtual bool PutValue( const css::uno::Any& rVal,
 sal_uInt8 nMemberId ) override;
 
-const Size& GetUnrotatedSize() const{ return m_aUnrotatedSize; 
}
+const Size& GetUnrotatedSize() const { return m_aUnrotatedSize; }
+Degree10 GetValue() const { return Degree10(SfxUInt16Item::GetValue()); }
+void SetValue(Degree10 d) { SfxUInt16Item::SetValue(d.get()); }
 };
 
 class SW_DLLPUBLIC SwLuminanceGrf : public SfxInt16Item
diff --git a/sw/source/core/doc/notxtfrm.cxx b/sw/source/core/doc/notxtfrm.cxx
index 15778a3a5863..0a9225fd93f5 100644
--- a/sw/source/core/doc/notxtfrm.cxx
+++ b/sw/source/core/doc/notxtfrm.cxx
@@ -642,7 +642,7 @@ double SwNoTextFrame::getLocalFrameRotation() const
 {
 const SwAttrSet& rSwAttrSet(pSwGrfNode->GetSwAttrSet());

[Libreoffice-bugs] [Bug 107905] [META] Cross-references bugs and enhancements

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107905
Bug 107905 depends on bug 104278, which changed state.

Bug 104278 Summary: UI: The text in the Type frame in the DocInformation tab in 
the Fields dialog isn't aligned to the left
https://bugs.documentfoundation.org/show_bug.cgi?id=104278

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 102019] [META] Dialog bugs and enhancements

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102019
Bug 102019 depends on bug 104278, which changed state.

Bug 104278 Summary: UI: The text in the Type frame in the DocInformation tab in 
the Fields dialog isn't aligned to the left
https://bugs.documentfoundation.org/show_bug.cgi?id=104278

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 122381] LibreOffice Writer Menu and Toolbar Freezes for 5-10 Seconds when help pack is installed

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122381

Martin Srdoš  changed:

   What|Removed |Added

 CC||srd...@email.cz

--- Comment #14 from Martin Srdoš  ---
Hello Doug,

I can't reproduce this bug on current release of LO.
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?

-- 
You are receiving this mail because:
You 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: helpcontent2

2020-12-28 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 15bd7a41587f48307a1ecd5fffecc2e1b229774e
Author: Seth Chaiklin 
AuthorDate: Tue Dec 29 07:41:34 2020 +0100
Commit: Gerrit Code Review 
CommitDate: Tue Dec 29 07:41:34 2020 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 90f2b391658858e1faa15f78c989225cc867d6b2
  - tdf#107229 update and move template path location information

  ( shared/01/0102.xhp )
This is the help page for File > Open.
Changes only in the "template" section of that page, but
kept the relevant information about LO checking whether a
template has been modified, and what actions are
necessary or possible when a template is modified
or missing.  Changes are:

* change  (about template checking) to 
  because the  for this section indicates that the content
  is about templates, so no need to use a .
* combine the content of the note with another paragraph in
  this  section which repeats the same idea.
* changing from  to  also removes having two
   next to each other.
* Modify  about which paths are checked for templates
  from "negative" to "positive" formulation.
- Remove general information about path locations for templates,
  which will be added to a new guide page about Managing Templates.
  A link to that page can then be added to this page.
* Improve structuring of material, so that it is clear that a
  dialog box appears with choices to make.
* update to ,,

  ( shared/optionen/01010300.xhp )
* corrections and improvements to explanation about location
  of paths, including link to Wiki page with detailed
  information about location of "user profile"
  (Thanks to Mike Kaganski for this suggestion.)
+ add  to 
+ add  to the sentence with link to Wiki page,
  so it can be reused in other pages that need to refer
  to location of user profile.
* change "user" to "user profile"
+ add entry for Dictionaries
* change "Graphics" to "Images"
* move "Backups" and "My Documents" to correspond to
  positions in the Paths dialog box.
+ add  for MAC, to show correct directory paths
+ add explanation about internal paths and their location

   ( shared/optionen/01010301.xhp ) (Edit Paths)
 + add  section and link to "Paths"

   ( shared/00/0406.xhp )
 + (autotext only) for the get access command

Change-Id: If38b967bbfdb1a1cbc5b42b797cdde47832c6227
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/107553
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/helpcontent2 b/helpcontent2
index f1e2ee29e7ea..90f2b3916588 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f1e2ee29e7eab68452fd345127a3d14ba0958c77
+Subproject commit 90f2b391658858e1faa15f78c989225cc867d6b2
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-12-28 Thread Seth Chaiklin (via logerrit)
 source/text/shared/00/0406.xhp   |2 
 source/text/shared/01/0102.xhp   |   55 --
 source/text/shared/optionen/01010300.xhp |   94 +++
 source/text/shared/optionen/01010301.xhp |7 +-
 4 files changed, 90 insertions(+), 68 deletions(-)

New commits:
commit 90f2b391658858e1faa15f78c989225cc867d6b2
Author: Seth Chaiklin 
AuthorDate: Fri Dec 11 16:24:56 2020 +0100
Commit: Seth Chaiklin 
CommitDate: Tue Dec 29 07:41:34 2020 +0100

tdf#107229 update and move template path location information

  ( shared/01/0102.xhp )
This is the help page for File > Open.
Changes only in the "template" section of that page, but
kept the relevant information about LO checking whether a
template has been modified, and what actions are
necessary or possible when a template is modified
or missing.  Changes are:

* change  (about template checking) to 
  because the  for this section indicates that the content
  is about templates, so no need to use a .
* combine the content of the note with another paragraph in
  this  section which repeats the same idea.
* changing from  to  also removes having two
   next to each other.
* Modify  about which paths are checked for templates
  from "negative" to "positive" formulation.
- Remove general information about path locations for templates,
  which will be added to a new guide page about Managing Templates.
  A link to that page can then be added to this page.
* Improve structuring of material, so that it is clear that a
  dialog box appears with choices to make.
* update to ,,

  ( shared/optionen/01010300.xhp )
* corrections and improvements to explanation about location
  of paths, including link to Wiki page with detailed
  information about location of "user profile"
  (Thanks to Mike Kaganski for this suggestion.)
+ add  to 
+ add  to the sentence with link to Wiki page,
  so it can be reused in other pages that need to refer
  to location of user profile.
* change "user" to "user profile"
+ add entry for Dictionaries
* change "Graphics" to "Images"
* move "Backups" and "My Documents" to correspond to
  positions in the Paths dialog box.
+ add  for MAC, to show correct directory paths
+ add explanation about internal paths and their location

   ( shared/optionen/01010301.xhp ) (Edit Paths)
 + add  section and link to "Paths"

   ( shared/00/0406.xhp )
 + (autotext only) for the get access command

Change-Id: If38b967bbfdb1a1cbc5b42b797cdde47832c6227
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/107553
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/source/text/shared/00/0406.xhp 
b/source/text/shared/00/0406.xhp
index 706b1a39f..230790ef7 100644
--- a/source/text/shared/00/0406.xhp
+++ b/source/text/shared/00/0406.xhp
@@ -118,7 +118,7 @@
 Choose %PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - 
Print.
 
 Choose 
%PRODUCTNAME - 
PreferencesTools - 
Options - $[officename] - 
Paths.
-Choose 
Tools - AutoText - Path.
+Choose 
Tools - AutoText - Path. (autotext only) 
 
 Choose Tools - 
ImageMap.
 Choose Tools - ImageMap, then select a 
section of the ImageMap and click Properties - 
Description.
diff --git a/source/text/shared/01/0102.xhp 
b/source/text/shared/01/0102.xhp
index 33f1ca22c..e23446f82 100644
--- a/source/text/shared/01/0102.xhp
+++ b/source/text/shared/01/0102.xhp
@@ -47,7 +47,7 @@
 
 
 
-Open
+Open
 Opens a local or 
remote file, or imports one.
 
 
@@ -57,7 +57,7 @@
 
 If the file 
that you want to open contains styles, special 
rules apply.
 
-Display area
+Display area
 Displays the files and folders in the folder that 
you are in. To open a file, select the file, and then click 
Open.
 To open more 
than one document at the same time, each in an own window, hold CommandCtrl
 while you click the files, and then click Open.
 
@@ -75,53 +75,48 @@
 
 
 
-File name
+File name
 Enter a file name or a path for 
the file.
 The following 
features are available in the dialog:
 
 
-Version
+Version
 If there are multiple versions of the selected file, 
select the version that you want to open. You can save and organize 
multiple versions of a document by choosing File - Versions. The 
versions of a document are opened in read-only mode.
 
-File type
+File type
 Select the file type that you 
want to open, or select All Files (*) to display a list of all of 
the files in the folder.
-Open
+

Re: Dropping X11 VCL backend

2020-12-28 Thread Ilmari Lauhakangas

On 29.12.2020 8.13, Chris Sherlock wrote:

I am interested in knowing the future of the X11 VCL backend now that we have a 
Skia backend. Are there any plans afoot to remove it and just go with the Skia 
backend?

If not, may I ask the reason? It seems maintenance heavy.

If we are, do we have a potential release where we believe that Skia is stable 
enough to use and remove the X11 backend?


We could start by gathering the concrete things that we use X11 backend for.

One of them is UI tests, where we advise to use SAL_USE_VCLPLUGIN=gen 
when we want to observe the UI while running tests or while logging UI 
events in the domain specific language: 
https://wiki.documentfoundation.org/Development/UITests


Hopefully someone can explain why we still need to do this.

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


Dropping X11 VCL backend

2020-12-28 Thread Chris Sherlock
Hi all, 

I am interested in knowing the future of the X11 VCL backend now that we have a 
Skia backend. Are there any plans afoot to remove it and just go with the Skia 
backend? 

If not, may I ask the reason? It seems maintenance heavy. 

If we are, do we have a potential release where we believe that Skia is stable 
enough to use and remove the X11 backend?

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


[Libreoffice-bugs] [Bug 138628] ClearDirectFormatting does not remove page break

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138628

--- Comment #41 from Octavio Alvarez  ---
(In reply to TorrAB from comment #40)
> > The most natural and fastest way to clear ad hoc formatting from a WRITER
> > file SHOULD be to select ALL and apply "Clear direct formatting".
> 
> **Why would one do DF here and there throughout a (large) document, and
> suddenly decide to remove it all? More likely, "Clear direct formatting"
> will be applied punctually, one parag at-a-time.

Not at all; I do it all the time for different reasons even for large
documents. Examples:

1. Pasted documents from the Internet or imported from other documents will
require cleaning. "Clear All Formatting" and "Paste Unformatted" may not be
desirable when copying large portions if the formatting is decently applied.
Also, existing formatting may be used as visual guides to reapply styles. A
full clean up may be needed afterwards.

2. After applying a set of direct formats a formatting pattern may come up
which will lead to the creation of a Style. Once the Style is created and
applied, Direct Format should be removed to avoid formatting surprises.
Character styles can become the most confusing but the most useful sometimes.

3. The user may lose track of direct formatting. Maybe the file was reverted to
a saved version or format paintbrush was used throughout the document. A quick
clean can be done by issuing "Clear Direct Formatting" to the whole document.

4. If I know that I am keeping the document DF-clean, then it is just way
easier and faster to do Ctrl+A, Ctrl+M and going to specific paragraphs to
clean DF.

In "surprises" and "losing track" I am including what I have called "hidden
Direct Formatting" in the past. Hitting Bold twice does *not* remove
direct-format-bold; it instead sets the text as direct-format-regular.

So, yes, this is why cleaning the whole document from DF is sometimes
necessary.

To keep it on-topic: it would certainly be a bit confusing if I suddenly lose
manually inserted page breaks when doing a document-wide "Clear DF" if I did it
using Insert > Break or Ctrl+Enter.

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


[Libreoffice-bugs] [Bug 137435] Line corner style crashes Writer and Draw

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137435

Aron Budea  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
 OS|Linux (All) |All
 CC||ba...@caesar.elte.hu

--- Comment #3 from Aron Budea  ---
This is a duplicate of bug 136611, and is fixed in 7.0.4.

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

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


[Libreoffice-commits] core.git: 2 commits - include/vcl vcl/inc vcl/jsdialog vcl/source

2020-12-28 Thread Szymon Kłos (via logerrit)
 include/vcl/layout.hxx   |1 +
 vcl/inc/jsdialog/jsdialogbuilder.hxx |9 +
 vcl/jsdialog/jsdialogbuilder.cxx |   22 ++
 vcl/source/window/layout.cxx |6 ++
 4 files changed, 38 insertions(+)

New commits:
commit 6c8dad40a18e588a0404485ff5cae0f9cd4a5ea7
Author: Szymon Kłos 
AuthorDate: Wed Dec 16 10:18:15 2020 +0100
Commit: Szymon Kłos 
CommitDate: Tue Dec 29 06:03:55 2020 +0100

jsdialog: update JSON on treeview modification

Change-Id: Ibaf186768f9be0cb2dc893082590c851abae29b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107819
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108413
Tested-by: Jenkins

diff --git a/vcl/inc/jsdialog/jsdialogbuilder.hxx 
b/vcl/inc/jsdialog/jsdialogbuilder.hxx
index cf7b17dca2d1..0a02e64cf890 100644
--- a/vcl/inc/jsdialog/jsdialogbuilder.hxx
+++ b/vcl/inc/jsdialog/jsdialogbuilder.hxx
@@ -382,6 +382,15 @@ public:
 
 virtual weld::TreeView* get_drag_source() const override;
 
+using SalInstanceTreeView::insert;
+virtual void insert(const weld::TreeIter* pParent, int pos, const 
OUString* pStr,
+const OUString* pId, const OUString* pIconName,
+VirtualDevice* pImageSurface, bool bChildrenOnDemand,
+weld::TreeIter* pRet) override;
+
+virtual void set_text(int row, const OUString& rText, int col = -1) 
override;
+virtual void set_text(const weld::TreeIter& rIter, const OUString& rStr, 
int col = -1) override;
+
 void drag_start();
 void drag_end();
 };
diff --git a/vcl/jsdialog/jsdialogbuilder.cxx b/vcl/jsdialog/jsdialogbuilder.cxx
index aa1febfe5d2a..1bef2653ae11 100644
--- a/vcl/jsdialog/jsdialogbuilder.cxx
+++ b/vcl/jsdialog/jsdialogbuilder.cxx
@@ -1031,6 +1031,28 @@ IMPL_LINK(JSTreeView, on_window_event, VclWindowEvent&, 
rEvent, void)
 }
 }
 
+void JSTreeView::insert(const weld::TreeIter* pParent, int pos, const 
OUString* pStr,
+const OUString* pId, const OUString* pIconName,
+VirtualDevice* pImageSurface, bool bChildrenOnDemand, 
weld::TreeIter* pRet)
+{
+SalInstanceTreeView::insert(pParent, pos, pStr, pId, pIconName, 
pImageSurface,
+bChildrenOnDemand, pRet);
+
+notifyDialogState();
+}
+
+void JSTreeView::set_text(int row, const OUString& rText, int col)
+{
+SalInstanceTreeView::set_text(row, rText, col);
+notifyDialogState();
+}
+
+void JSTreeView::set_text(const weld::TreeIter& rIter, const OUString& rStr, 
int col)
+{
+SalInstanceTreeView::set_text(rIter, rStr, col);
+notifyDialogState();
+}
+
 JSExpander::JSExpander(VclPtr aNotifierWindow, 
VclPtr aContentWindow,
::VclExpander* pExpander, SalInstanceBuilder* pBuilder, 
bool bTakeOwnership,
std::string sTypeOfJSON)
commit d6b2835e0f98e751f0161ff8f3be33013dab5cfd
Author: Szymon Kłos 
AuthorDate: Fri Dec 11 11:37:49 2020 +0100
Commit: Szymon Kłos 
CommitDate: Tue Dec 29 06:03:47 2020 +0100

jsdialog: export alignment type

Change-Id: I846f51d522fb0639b22148c73563b177d091178c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107589
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108412
Tested-by: Jenkins

diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index cbcb6d2373f0..5c4a60c4f5e8 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -461,6 +461,7 @@ public:
 {
 }
 virtual bool set_property(const OString , const OUString ) 
override;
+virtual void DumpAsPropertyTree(tools::JsonWriter&) override;
 private:
 virtual Size calculateRequisition() const override;
 virtual void setAllocation(const Size ) override;
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index b8407e84afba..1c503194b5ae 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -1580,6 +1580,12 @@ bool VclAlignment::set_property(const OString , 
const OUString )
 return true;
 }
 
+void VclAlignment::DumpAsPropertyTree(tools::JsonWriter& rJsonWriter)
+{
+VclContainer::DumpAsPropertyTree(rJsonWriter);
+rJsonWriter.put("type", "alignment");
+}
+
 class DisclosureButton final : public CheckBox
 {
 virtual void ImplDrawCheckBoxState(vcl::RenderContext& rRenderContext) 
override
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139296] Text font size changes when scrolling document with a mouse

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #1 from Telesto  ---
Tools -> Options -> view -> check force skia software rendering and press ok
and restart..

Does this improve things.. still more a work around, I admit

-- 
You are receiving this mail because:
You 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 'feature/drawinglayercore' - 129 commits - accessibility/inc avmedia/Library_avmediavlc.mk avmedia/Module_avmedia.mk avmedia/source basctl/source basegfx/source

2020-12-28 Thread Tomaž Vajngerl (via logerrit)
Rebased ref, commits from common ancestor:
commit 24e0e9469dab9cb4eb774f0fd3794706d3a128cb
Author: Tomaž Vajngerl 
AuthorDate: Tue Dec 29 10:42:17 2020 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Dec 29 10:48:33 2020 +0900

vcl: remove or rename too long methods names in VectorGraphicData

Change-Id: I8a64d27927b608afdc7996e0b0bbc59a58fde90f

diff --git a/emfio/source/reader/emfreader.cxx 
b/emfio/source/reader/emfreader.cxx
index ae00508380e1..c2240ed612e5 100644
--- a/emfio/source/reader/emfreader.cxx
+++ b/emfio/source/reader/emfreader.cxx
@@ -517,7 +517,7 @@ namespace emfio
 return;
 }
 
-if (pVectorGraphicData->getVectorGraphicDataType() != 
VectorGraphicDataType::Pdf)
+if (pVectorGraphicData->getType() != VectorGraphicDataType::Pdf)
 {
 return;
 }
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index a15dc12f53e6..2d930f897359 100644
--- a/filter/source/svg/svgfilter.cxx
+++ b/filter/source/svg/svgfilter.cxx
@@ -256,7 +256,7 @@ bool SVGFilter::filterImpressOrDraw( const Sequence< 
PropertyValue >& rDescripto
 auto const & rVectorGraphicData(aGraphic.getVectorGraphicData());
 bool bContainsNoGeometry(false);
 
-if(bool(rVectorGraphicData) && VectorGraphicDataType::Svg == 
rVectorGraphicData->getVectorGraphicDataType())
+if(bool(rVectorGraphicData) && VectorGraphicDataType::Svg == 
rVectorGraphicData->getType())
 {
 const drawinglayer::primitive2d::Primitive2DContainer 
aContainer(rVectorGraphicData->getPrimitive2DSequence());
 
diff --git a/include/vcl/vectorgraphicdata.hxx 
b/include/vcl/vectorgraphicdata.hxx
index 02511dd7909c..18800bac04d9 100644
--- a/include/vcl/vectorgraphicdata.hxx
+++ b/include/vcl/vectorgraphicdata.hxx
@@ -64,12 +64,12 @@ private:
 std::deque< css::uno::Reference< css::graphic::XPrimitive2D > > maSequence;
 BitmapExmaReplacement;
 size_t  mNestedBitmapSize;
-VectorGraphicDataType   meVectorGraphicDataType;
+VectorGraphicDataType meType;
 
 // extra:
 std::unique_ptr mpExternalHeader;
 
-// If the vector format has more pages this denotes which page to render
+/// If the vector format has more pages this denotes which page to render
 sal_Int32 mnPageIndex;
 
 /// Useful for PDF, which is vector-based, but still rendered to a bitmap.
@@ -104,23 +104,21 @@ public:
 return maDataContainer;
 }
 
-sal_uInt32 getVectorGraphicDataArrayLength() const
-{
-return maDataContainer.getSize();
-}
-
 enum class State { UNPARSED, PARSED };
 std::pair getSizeBytes() const;
 
-const VectorGraphicDataType& getVectorGraphicDataType() const { return 
meVectorGraphicDataType; }
+const VectorGraphicDataType& getType() const { return meType; }
 
 /// data read and evtl. on demand creation
 const basegfx::B2DRange& getRange() const;
-const std::deque< css::uno::Reference< css::graphic::XPrimitive2D > >& 
getPrimitive2DSequence() const;
+const std::deque>& 
getPrimitive2DSequence() const;
 const BitmapEx& getReplacement() const;
 BitmapChecksum GetChecksum() const;
 
-sal_Int32 getPageIndex() const { return std::max(sal_Int32(0), 
mnPageIndex); }
+sal_Int32 getPageIndex() const
+{
+return std::max(sal_Int32(0), mnPageIndex);
+}
 
 void setPageIndex(sal_Int32 nPageIndex)
 {
diff --git a/sd/qa/unit/SdrPdfImportTest.cxx b/sd/qa/unit/SdrPdfImportTest.cxx
index 85fb33d8243c..243699c99743 100644
--- a/sd/qa/unit/SdrPdfImportTest.cxx
+++ b/sd/qa/unit/SdrPdfImportTest.cxx
@@ -107,8 +107,7 @@ CPPUNIT_TEST_FIXTURE(SdrPdfImportTest, testImportSimpleText)
 Graphic aGraphic = pGraphicObject->GetGraphic();
 auto const& pVectorGraphicData = aGraphic.getVectorGraphicData();
 CPPUNIT_ASSERT(pVectorGraphicData);
-CPPUNIT_ASSERT_EQUAL(VectorGraphicDataType::Pdf,
- pVectorGraphicData->getVectorGraphicDataType());
+CPPUNIT_ASSERT_EQUAL(VectorGraphicDataType::Pdf, 
pVectorGraphicData->getType());
 
 // Mark the object
 SdrView* pView = pViewShell->GetView();
@@ -197,8 +196,7 @@ CPPUNIT_TEST_FIXTURE(SdrPdfImportTest, 
testAnnotationsImportExport)
 Graphic aGraphic = pGraphicObject->GetGraphic();
 auto const& pVectorGraphicData = aGraphic.getVectorGraphicData();
 CPPUNIT_ASSERT(pVectorGraphicData);
-CPPUNIT_ASSERT_EQUAL(VectorGraphicDataType::Pdf,
- pVectorGraphicData->getVectorGraphicDataType());
+CPPUNIT_ASSERT_EQUAL(VectorGraphicDataType::Pdf, 
pVectorGraphicData->getType());
 
 // Write the PDF
 aContainer = pVectorGraphicData->getBinaryDataContainer();
diff --git a/sd/qa/unit/tiledrendering/LOKitSearchTest.cxx 
b/sd/qa/unit/tiledrendering/LOKitSearchTest.cxx
index 6397f8c25acc..9b898119a47c 100644
--- 

[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/elementary_svg

2020-12-28 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/cmd/32/customshowdialog.png |binary
 icon-themes/elementary/cmd/32/cut.png  |binary
 icon-themes/elementary/cmd/32/datafilterstandardfilter.png |binary
 icon-themes/elementary/cmd/32/diaauto.png  |binary
 icon-themes/elementary/cmd/32/diaspeed.png |binary
 icon-themes/elementary/cmd/32/footnotedialog.png   |binary
 icon-themes/elementary/cmd/32/goalseekdialog.png   |binary
 icon-themes/elementary/cmd/32/insertfootnote.png   |binary
 icon-themes/elementary/cmd/32/outlineformat.png|binary
 icon-themes/elementary/cmd/32/presentation.png |binary
 icon-themes/elementary/cmd/32/presentationcurrentslide.png |binary
 icon-themes/elementary/cmd/32/presentationdialog.png   |binary
 icon-themes/elementary/cmd/32/quit.png |binary
 icon-themes/elementary/cmd/32/rehearsetimings.png  |binary
 icon-themes/elementary/cmd/lc_customshowdialog.png |binary
 icon-themes/elementary/cmd/lc_cut.png  |binary
 icon-themes/elementary/cmd/lc_diaauto.png  |binary
 icon-themes/elementary/cmd/lc_diaspeed.png |binary
 icon-themes/elementary/cmd/lc_goalseekdialog.png   |binary
 icon-themes/elementary/cmd/lc_outlineformat.png|binary
 icon-themes/elementary/cmd/lc_presentation.png |binary
 icon-themes/elementary/cmd/lc_presentationcurrentslide.png |binary
 icon-themes/elementary/cmd/lc_presentationdialog.png   |binary
 icon-themes/elementary/cmd/lc_quit.png |binary
 icon-themes/elementary/cmd/lc_rehearsetimings.png  |binary
 icon-themes/elementary/cmd/sc_customshowdialog.png |binary
 icon-themes/elementary/cmd/sc_cut.png  |binary
 icon-themes/elementary/cmd/sc_diaauto.png  |binary
 icon-themes/elementary/cmd/sc_diaspeed.png |binary
 icon-themes/elementary/cmd/sc_goalseekdialog.png   |binary
 icon-themes/elementary/cmd/sc_outlineformat.png|binary
 icon-themes/elementary/cmd/sc_presentation.png |binary
 icon-themes/elementary/cmd/sc_presentationcurrentslide.png |binary
 icon-themes/elementary/cmd/sc_presentationdialog.png   |binary
 icon-themes/elementary/cmd/sc_quit.png |binary
 icon-themes/elementary/cmd/sc_rehearsetimings.png  |binary
 icon-themes/elementary/cmd/sc_titlepagedialog.png  |binary
 icon-themes/elementary_svg/cmd/32/customshowdialog.svg |2 +-
 icon-themes/elementary_svg/cmd/32/cut.svg  |2 +-
 icon-themes/elementary_svg/cmd/32/datafilterstandardfilter.svg |2 +-
 icon-themes/elementary_svg/cmd/32/diaauto.svg  |2 +-
 icon-themes/elementary_svg/cmd/32/diaspeed.svg |2 +-
 icon-themes/elementary_svg/cmd/32/footnotedialog.svg   |2 +-
 icon-themes/elementary_svg/cmd/32/goalseekdialog.svg   |2 +-
 icon-themes/elementary_svg/cmd/32/insertfootnote.svg   |2 +-
 icon-themes/elementary_svg/cmd/32/outlineformat.svg|2 +-
 icon-themes/elementary_svg/cmd/32/presentation.svg |2 +-
 icon-themes/elementary_svg/cmd/32/presentationcurrentslide.svg |2 +-
 icon-themes/elementary_svg/cmd/32/presentationdialog.svg   |2 +-
 icon-themes/elementary_svg/cmd/32/quit.svg |2 +-
 icon-themes/elementary_svg/cmd/32/rehearsetimings.svg  |2 +-
 icon-themes/elementary_svg/cmd/lc_customshowdialog.svg |2 +-
 icon-themes/elementary_svg/cmd/lc_cut.svg  |2 +-
 icon-themes/elementary_svg/cmd/lc_diaauto.svg  |2 +-
 icon-themes/elementary_svg/cmd/lc_diaspeed.svg |2 +-
 icon-themes/elementary_svg/cmd/lc_goalseekdialog.svg   |2 +-
 icon-themes/elementary_svg/cmd/lc_outlineformat.svg|2 +-
 icon-themes/elementary_svg/cmd/lc_presentation.svg |2 +-
 icon-themes/elementary_svg/cmd/lc_presentationcurrentslide.svg |2 +-
 icon-themes/elementary_svg/cmd/lc_presentationdialog.svg   |2 +-
 icon-themes/elementary_svg/cmd/lc_quit.svg |2 +-
 icon-themes/elementary_svg/cmd/lc_rehearsetimings.svg  |2 +-
 icon-themes/elementary_svg/cmd/sc_customshowdialog.svg |2 +-
 icon-themes/elementary_svg/cmd/sc_cut.svg  |2 +-
 icon-themes/elementary_svg/cmd/sc_diaauto.svg  |2 +-
 icon-themes/elementary_svg/cmd/sc_diaspeed.svg |2 +-
 icon-themes/elementary_svg/cmd/sc_goalseekdialog.svg   |2 +-
 icon-themes/elementary_svg/cmd/sc_outlineformat.svg|4 +++-
 

[Libreoffice-bugs] [Bug 138894] UI: Visual indication that there is nothing to compare

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138894

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 138913] LibreOffice 7.0 crashes when I attempt to open Base after installing it.

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138913

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 138885] When trying to insert PNG file, I get syntax error. File is being inserted from files app. Error message: The server encountered a syntax error while parsing the insert

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138885

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 138915] Multipage printing preview needs teasing

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138915

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 138815] Faulty manual spell check, premature "spell check complete" message

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138815

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 138916] Filename feature enhancement to LibreOffice

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138916

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 139221] LibreOffice tabs display incorrectly on MacOS (M1 arch)

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139221

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 138918] Red underline squiggle line hiatus when when highlighting part of word

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138918

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 138895] FILEOPEN DOCX Shape distance from text imported with rounding error

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138895

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 139151] Impress crash on launch

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139151

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|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 138912] Incorrect page numbers in TOC in two-column page

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138912

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 138903] Changing page style to two-column when it contains a TOC causes lockup

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138903

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 139151] Impress crash on launch

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139151

--- Comment #8 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 138276] Cannot open report for printing - missing JVM error message

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138276

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|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 138674] New Epson Printer not working with Big Sur OS

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138674

--- Comment #6 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 95697] Assertion editeng/source/items/frmitems.cxx:478: unknown MemberId

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95697

--- Comment #6 from QA Administrators  ---
Dear Oliver Specht (CIB),

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 138674] New Epson Printer not working with Big Sur OS

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138674

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 138276] Cannot open report for printing - missing JVM error message

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138276

--- Comment #6 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 130641] Page Size - Menu is not visible

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130641

--- Comment #7 from QA Administrators  ---
Dear Vineesh Vishnu Vinayagam,

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 119799] Table becomes blue if it's pasted 2 times in a row

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119799

--- Comment #2 from QA Administrators  ---
Dear Xisco Faulí,

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
https://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 63497] BASIC: BASIC-error after opening XLS

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63497

--- Comment #6 from QA Administrators  ---
Dear markus,

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
https://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 119659] LOOKUP function >> application crashes, if "Result vector" argument is array of constant with at least 1 empty cell, and search value is out of vector

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119659

--- Comment #15 from QA Administrators  ---
Dear Andrey,

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
https://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 103580] UI - Enabling OpenCL in Options-OpenCL has no effect on OSX

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103580

--- Comment #11 from QA Administrators  ---
Dear Frank Fuchs,

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
https://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 138628] ClearDirectFormatting does not remove page break

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138628

--- Comment #40 from tor...@yahoo.com ---
> The most natural and fastest way to clear ad hoc formatting from a WRITER
> file SHOULD be to select ALL and apply "Clear direct formatting".

**Why would one do DF here and there throughout a (large) document, and
suddenly decide to remove it all? More likely, "Clear direct formatting" will
be applied punctually, one parag at-a-time.

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


[Libreoffice-bugs] [Bug 139297] docx diagrams: grouping broken

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139297

--- Comment #3 from Dave Gilbert  ---
Note I tried to reproduce this problem in Presentation and couldn't - so it
maybe writer/docx specific; and I did notice a comment somewhere about Word
treating groups differently but not sure where/how

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


[Libreoffice-bugs] [Bug 139297] docx diagrams: grouping broken

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139297

--- Comment #2 from Dave Gilbert  ---
Created attachment 168547
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168547=edit
docx written by LO for grouptest

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


[Libreoffice-bugs] [Bug 139297] docx diagrams: grouping broken

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139297

--- Comment #1 from Dave Gilbert  ---
Created attachment 168546
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168546=edit
grouptest odt test file

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


[Libreoffice-bugs] [Bug 139297] New: docx diagrams: grouping broken

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139297

Bug ID: 139297
   Summary: docx diagrams: grouping broken
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: freedesk...@treblig.org

Created attachment 168545
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168545=edit
Screenshot showing LO odt (bottom left), LO docx reloaded (upper right), Word
(bottom right)

When saving an odt containing a diagram as docx and reloading it, grouped
objects are offset or stretched.

I've got 3 cases that probably overlap:

a) 'grouptest' - about to be attached.
  This renders correctly in MS OneDrive/Word online, but reloading our docx in
LO the members of the group are stretched or moved.
  This example has an outer grey block and two arrows, and then 4 groups, (one
each coulour) containing some text, a circle and a line terminated with an
arrow and blob.  The 4 groups are the same size.  When reloaded the groups are
all stretched by different amounts, and the lines are randomly offset outside
the group.

  Given it's happy in Word, I'm assuming our problem is import related.

b) ./sw/qa/extras/ooxmlexport/data/kde216114-1.odt
  Saving this existing file as a docx and reloading it produces similar
stretching and offsetting;  this doesn't look right in word either, so maybe
we've also got an export problem.

c) Where I started was the diagram in tdf#93675

 This looks a lot better after ungrouping.

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


[Libreoffice-bugs] [Bug 139296] New: Text font size changes when scrolling document with a mouse

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

Bug ID: 139296
   Summary: Text font size changes when scrolling document with a
mouse
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: spokanemagn...@gmail.com

Created attachment 168544
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168544=edit
See lines 7, 8, and 9 for deformed text

There is an extremely irritating issue with LibreOffice Writer 7.0.3.1 (I’m not
sure if it was evident in the last version 6 because I just started using
LibreOffice before the latest updates). When using the Cambria, Cambria Math,
Liberation Serif, or Times New Roman fonts where, as you scroll through text
with a mouse (usually when done so quickly—but not always), some lines of text
will deform, elevate off the base line and therefore be crammed up against the
head line (although it will still display the correct size in the format bar
drop-down menu for font size), or seemingly partially double print letters one
on top of the other with each slightly offset higher or lower than the other on
the screen. I’ve noticed that the deformed text problem, for some reason, seems
to almost always effect the 22nd line of text first (only when using the
Cambria or Cambria Math fonts)—regardless of the document file size (although I
have not witnessed this in documents of a single page), and thereafter
sometimes random lines, or parts of lines, throughout the rest of the document.
With the Liberation Serif and Times New Roman fonts, the effect is not as
pronounced, happens less often, and is usually relegated to the first, second,
and/or third line of text (as opposed to the 22nd line as mentioned above) and
usually does not effect any other lines further down in the document. I have
not seen this happen with documents that were converted from Microsoft Word to
LibreOffice Writer—only documents originating in LibreOffice Writer, although
that may be a coincidence because when I first started converting all my files
over, that was when I was using LibreOffice 6. I have also not noticed this
problem when scrolling with the aid of my laptop’s touch pad, but I rarely use
that when writing documents other than perhaps emails. See end of this document
for specifics on my computer, operating system, and mouse.

One way to rid this annoying, all too frequent, irritant is to scroll the
screen up or down so the errant line is out off screen, then scroll back.
Another is to use the File>Reload function, but by default that takes you back
to the top of the document, which is not what is wanted in this case. If you
are currently editing the document, you can sometimes simply select the line or
paragraph and that process in and of itself enlarges and/or straightens out the
text back to normal—unless it’s in a bulleted list (then the only method that
works is the scroll off screen technique). 

The problem is somewhat different when you use the paint brush feature, and
specifically when you use the click and drag technique of highlighting the text
you want to reformat instead of clicking on one word at a time (which is not
what you want to do if you want to reformat an entire section of text). In this
case, the text above, below, or beside the text you are trying to reformat (in
this case, it’s not the entire line, as mentioned above) will deform. I have
not seen this happen if you simply click on a word instead of clicking and
dragging the mouse over a word or section. It also does not happen if you
single click the brush feature to reformat just one word or entire selection
(via click and drag).

Here are a few things in the Tools>Options menu that seem to help, but they are
not foolproof as you will still on occasion have these same issues (meaning
this is in all likelihood just a coincidence).

• In LibreOffice Accessibility, deselect Allow animated text (which seems
to have been deleted in version 7.0.3.1 anyway, as there is seemingly no way to
select blinking or scrolling text in Writer, although you might be able to do
so in Impress).
• In LibreOffice Writer View, deselect Smooth scroll (ironically, this
checkbox seems to work backwards to that indicated because if it is checked and
you place your cursor at the bottom of the vertical scroll bar and click it to
quickly scan through the document to the point you are interested in, as
opposed to clicking on the scroll bar handle and scrolling the document that
way, it progresses very slowly and in a herky-jerky manner; but with the
checkbox deselected, it works smoothly (why anyone would not want smooth
scrolling is beyond me)). >> This should probably be treated as a separate
issue.

I am using an Asus 

[Libreoffice-commits] core.git: Branch 'private/tvajngerl/staging' - 775 commits - accessibility/inc accessibility/source avmedia/source basctl/inc basctl/source basegfx/CppunitTest_basegfx.mk basegfx

2020-12-28 Thread Tomaž Vajngerl (via logerrit)
Rebased ref, commits from common ancestor:
commit e0701dc8b19c49522ece6bade94228f020e5384c
Author: Tomaž Vajngerl 
AuthorDate: Thu Nov 12 10:01:20 2020 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Dec 16 15:50:57 2020 +0900

basegfx: added LengthUnit class as the base unit for length

Change-Id: I1d4790b60dd784e8b2e2e438274f3ebd6db4b60c

diff --git a/basegfx/CppunitTest_basegfx.mk b/basegfx/CppunitTest_basegfx.mk
index 231854cdf057..2922934bc6be 100644
--- a/basegfx/CppunitTest_basegfx.mk
+++ b/basegfx/CppunitTest_basegfx.mk
@@ -41,6 +41,7 @@ $(eval $(call gb_CppunitTest_add_exception_objects,basegfx,\
 basegfx/test/basegfxtools \
 basegfx/test/clipstate \
 basegfx/test/genericclipper \
+basegfx/test/LengthUnitTest \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/basegfx/test/LengthUnitTest.cxx b/basegfx/test/LengthUnitTest.cxx
new file mode 100644
index ..a6afb154afc0
--- /dev/null
+++ b/basegfx/test/LengthUnitTest.cxx
@@ -0,0 +1,89 @@
+/* -*- 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/.
+ */
+
+#include 
+
+#include 
+#include 
+
+class LengthUnitTest : public CppUnit::TestFixture
+{
+public:
+void test();
+
+CPPUNIT_TEST_SUITE(LengthUnitTest);
+CPPUNIT_TEST(test);
+CPPUNIT_TEST_SUITE_END();
+};
+
+void LengthUnitTest::test()
+{
+gfx::LengthUnit cm = 1_cm + 5_cm - 2_cm;
+CPPUNIT_ASSERT_DOUBLES_EQUAL(4.0, cm._cm(), 1e-4);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(0.04, cm._m(), 1e-4);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(40.0, cm._mm(), 1e-4);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(144), cm.value());
+
+gfx::LengthUnit cm2 = 5_cm * 2;
+CPPUNIT_ASSERT_EQUAL(sal_Int64(360), cm2.value());
+CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, cm2._cm(), 1e-4);
+
+// 1 km - 50 m = 950 m = 95000 cm
+gfx::LengthUnit cm3 = 10_cm - 5000_cm;
+CPPUNIT_ASSERT_EQUAL(sal_Int64(342), cm3.value());
+CPPUNIT_ASSERT_DOUBLES_EQUAL(95000.0, cm3._cm(), 1e-4);
+
+// (635 * 20) + 3 * (635 * 15) = 41275EMU
+gfx::LengthUnit pt = 1_pt + 3_px;
+CPPUNIT_ASSERT_DOUBLES_EQUAL(3.25, pt._pt(), 1e-4);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(65.0, pt._twip(), 1e-4);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(0.0451, pt._in(), 1e-4);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(41275), pt.value());
+
+gfx::LengthUnit inch = 1_in; // 1440 * 635
+CPPUNIT_ASSERT_DOUBLES_EQUAL(1440.0, inch._twip(), 1e-4);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(96.0, inch._px(), 1e-4);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(1.0, inch._in(), 1e-4);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(914400), inch.value());
+
+// Conversion
+sal_Int64 asNumber(17_pt);
+asNumber += sal_Int64(1_pt);
+gfx::LengthUnit asLength(asNumber);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(18 * 635 * 20), asLength.value());
+
+gfx::LengthUnit maximum(SAL_MAX_INT64);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(256204778801.5, maximum._m(), 1e-1);
+// 256204778 km
+CPPUNIT_ASSERT_EQUAL(sal_Int64(SAL_MAX_INT64), maximum.value());
+
+gfx::LengthUnit minimum(SAL_MIN_INT64);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(-256204778801.5, minimum._m(), 1e-1);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(SAL_MIN_INT64), minimum.value());
+
+// 27 emu + 33 emu + 360 emu = 420
+gfx::LengthUnit emus = 27_emu + 33_emu + 1_hmm;
+CPPUNIT_ASSERT_EQUAL(sal_Int64(420), emus.value());
+
+//  Creation from number
+int number = 10;
+auto asCm = gfx::LengthUnit::cm(number);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, asCm._cm(), 1e-4);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(360), asCm.value());
+
+auto asMm = gfx::LengthUnit::mm(number);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, asMm._mm(), 1e-4);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(36), asMm.value());
+
+auto asInch = gfx::LengthUnit::in(number);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, asInch._in(), 1e-4);
+CPPUNIT_ASSERT_EQUAL(sal_Int64(9144000), asInch.value());
+}
+
+CPPUNIT_TEST_SUITE_REGISTRATION(LengthUnitTest);
diff --git a/include/basegfx/units/LengthUnit.hxx 
b/include/basegfx/units/LengthUnit.hxx
new file mode 100644
index ..ff85e05de9fb
--- /dev/null
+++ b/include/basegfx/units/LengthUnit.hxx
@@ -0,0 +1,187 @@
+/* -*- 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/.
+ */
+
+#pragma once
+
+#include 
+
+namespace gfx
+{
+constexpr sal_Int64 constFactor_hmm_to_EMU = 360ll;
+constexpr sal_Int64 constFactor_mm_to_EMU = constFactor_hmm_to_EMU * 100ll;
+constexpr sal_Int64 

[Libreoffice-bugs] [Bug 139286] Impress commands "go-to end/start" and "select-to end/start" of Text box removed at 5.1.0, but undocumented

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139286

V Stuart Foote  changed:

   What|Removed |Added

Summary|Missing command "go-to and  |Impress commands "go-to
   |select-to"  |end/start" and "select-to
   ||end/start" of Text box
   ||removed at 5.1.0, but
   ||undocumented

-- 
You are receiving this mail because:
You 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 'feature/drawinglayercore' - emfio/source filter/source include/vcl sd/qa sd/source svx/source vcl/qa vcl/source

2020-12-28 Thread Tomaž Vajngerl (via logerrit)
 emfio/source/reader/emfreader.cxx |2 -
 filter/source/svg/svgfilter.cxx   |2 -
 include/vcl/vectorgraphicdata.hxx |   18 +
 sd/qa/unit/SdrPdfImportTest.cxx   |6 +---
 sd/qa/unit/tiledrendering/LOKitSearchTest.cxx |   27 ++--
 sd/source/ui/view/Outliner.cxx|2 -
 svx/source/core/graphichelper.cxx |4 +-
 svx/source/svdraw/svdedtv2.cxx|2 -
 svx/source/svdraw/svdograf.cxx|6 ++--
 svx/source/xoutdev/_xoutbmp.cxx   |   10 +++
 vcl/qa/cppunit/GraphicTest.cxx|   35 +++---
 vcl/qa/cppunit/PDFiumLibraryTest.cxx  |   18 -
 vcl/source/filter/graphicfilter.cxx   |   13 -
 vcl/source/gdi/TypeSerializer.cxx |2 -
 vcl/source/gdi/impgraph.cxx   |8 ++---
 vcl/source/gdi/pdfwriter_impl.cxx |6 ++--
 vcl/source/gdi/vectorgraphicdata.cxx  |   12 
 vcl/source/graphic/GraphicID.cxx  |2 -
 vcl/source/graphic/VectorGraphicSearch.cxx|2 -
 19 files changed, 77 insertions(+), 100 deletions(-)

New commits:
commit 3f374be6991a9b1c9eee8084a8fc8a18c0e57612
Author: Tomaž Vajngerl 
AuthorDate: Tue Dec 29 10:42:17 2020 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Dec 29 10:42:17 2020 +0900

vcl: remove or rename too long methods names in VectorGraphicData

Change-Id: I8a64d27927b608afdc7996e0b0bbc59a58fde90f

diff --git a/emfio/source/reader/emfreader.cxx 
b/emfio/source/reader/emfreader.cxx
index ae00508380e1..c2240ed612e5 100644
--- a/emfio/source/reader/emfreader.cxx
+++ b/emfio/source/reader/emfreader.cxx
@@ -517,7 +517,7 @@ namespace emfio
 return;
 }
 
-if (pVectorGraphicData->getVectorGraphicDataType() != 
VectorGraphicDataType::Pdf)
+if (pVectorGraphicData->getType() != VectorGraphicDataType::Pdf)
 {
 return;
 }
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index 8025550b5837..c2ecba03722a 100644
--- a/filter/source/svg/svgfilter.cxx
+++ b/filter/source/svg/svgfilter.cxx
@@ -256,7 +256,7 @@ bool SVGFilter::filterImpressOrDraw( const Sequence< 
PropertyValue >& rDescripto
 auto const & rVectorGraphicData(aGraphic.getVectorGraphicData());
 bool bContainsNoGeometry(false);
 
-if(bool(rVectorGraphicData) && VectorGraphicDataType::Svg == 
rVectorGraphicData->getVectorGraphicDataType())
+if(bool(rVectorGraphicData) && VectorGraphicDataType::Svg == 
rVectorGraphicData->getType())
 {
 const drawinglayer::primitive2d::Primitive2DContainer 
aContainer(rVectorGraphicData->getPrimitive2DSequence());
 
diff --git a/include/vcl/vectorgraphicdata.hxx 
b/include/vcl/vectorgraphicdata.hxx
index 02511dd7909c..18800bac04d9 100644
--- a/include/vcl/vectorgraphicdata.hxx
+++ b/include/vcl/vectorgraphicdata.hxx
@@ -64,12 +64,12 @@ private:
 std::deque< css::uno::Reference< css::graphic::XPrimitive2D > > maSequence;
 BitmapExmaReplacement;
 size_t  mNestedBitmapSize;
-VectorGraphicDataType   meVectorGraphicDataType;
+VectorGraphicDataType meType;
 
 // extra:
 std::unique_ptr mpExternalHeader;
 
-// If the vector format has more pages this denotes which page to render
+/// If the vector format has more pages this denotes which page to render
 sal_Int32 mnPageIndex;
 
 /// Useful for PDF, which is vector-based, but still rendered to a bitmap.
@@ -104,23 +104,21 @@ public:
 return maDataContainer;
 }
 
-sal_uInt32 getVectorGraphicDataArrayLength() const
-{
-return maDataContainer.getSize();
-}
-
 enum class State { UNPARSED, PARSED };
 std::pair getSizeBytes() const;
 
-const VectorGraphicDataType& getVectorGraphicDataType() const { return 
meVectorGraphicDataType; }
+const VectorGraphicDataType& getType() const { return meType; }
 
 /// data read and evtl. on demand creation
 const basegfx::B2DRange& getRange() const;
-const std::deque< css::uno::Reference< css::graphic::XPrimitive2D > >& 
getPrimitive2DSequence() const;
+const std::deque>& 
getPrimitive2DSequence() const;
 const BitmapEx& getReplacement() const;
 BitmapChecksum GetChecksum() const;
 
-sal_Int32 getPageIndex() const { return std::max(sal_Int32(0), 
mnPageIndex); }
+sal_Int32 getPageIndex() const
+{
+return std::max(sal_Int32(0), mnPageIndex);
+}
 
 void setPageIndex(sal_Int32 nPageIndex)
 {
diff --git a/sd/qa/unit/SdrPdfImportTest.cxx b/sd/qa/unit/SdrPdfImportTest.cxx
index 85fb33d8243c..243699c99743 100644
--- a/sd/qa/unit/SdrPdfImportTest.cxx
+++ b/sd/qa/unit/SdrPdfImportTest.cxx
@@ -107,8 +107,7 @@ CPPUNIT_TEST_FIXTURE(SdrPdfImportTest, testImportSimpleText)
 

[Libreoffice-bugs] [Bug 138727] Help right-hand pane lacks scrolling

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138727

Nick Levinson  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from Nick Levinson  ---
Web-based Help should operate differently, uses a 3-column layout and so does
not have a right-hand pane, does not have its own scrolling because browsers
do, and is not the subject of this bug report. I often have to work in LO
without Internet access, such as on a train or in many neighborhoods I pass
through, so I, and some others, need local Help.

The local Help is native to the LO installation. LO came with Fedora Linux. I
most recently cleanly reinstalled (including auto-repartitioning) Fedora 32
and, by keeping it evergreen, it is now F33. LO is kept evergreen courtesy of
keeping Fedora evergreen. Therefore, LO's local Help is as up to date as is the
whole LO in whatever repositories the Fedora update process uses. LO Help is
installed as part of LO, including updates. When updates are supplied, the
Software app lists LO components (Writer, Calc, etc.) but, I think, does not
separately list LO Help. Therefore, it is updated when a component, like
Writer, is updated.

I considered your suggestion to install LO (I think the .rpm format goes with
Fedora) but I don't want to overwrite the Help F33/LO supplies. Is there a way
to do a test installation without disturbing the existing installation? Do you
still need me to run a test like that?

I'm changing the status; change it back if desired.

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


[Libreoffice-bugs] [Bug 138726] mixing paragraph styles gets weird format values

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138726

--- Comment #6 from Nick Levinson  ---
Created attachment 168543
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168543=edit
Screenshot (with two lines of my address redacted as irrelevant).

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


[Libreoffice-bugs] [Bug 138726] mixing paragraph styles gets weird format values

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138726

--- Comment #5 from Nick Levinson  ---
I can't either, and I'm the original reporter. I newly tested on version
7.0.4.2.

However, while at first I thought maybe this was fixed in between versions,
perhaps as an unnoticed side effect of some other change, and was going to set
the status as resolved/worksforme, I encountered another version of the
problem. I now think there's a predicate condition I haven't identified.
Something needs to be added to the STR, but I don't know what it is.

This time, I found that with mixed unnamed styles and Select All I got values
of -24.51" before and after text, -39.27" for the first line, 3.94" above and
below paragraphs. The before and after should have been zeros and the others
should have been blank. That's a lot less crazy than the previous version of
the problem, but it's still pushing text off the page. I'm uploading an image
of the Format > Paragraph dialog.

Then I tried something else, twice. I created a new document, wrote a word as a
paragraph (thus a one-line paragraph), cut and pasted the paragraph to go into
2 pages, Selected All, and found Format > Paragraph was as expected. Then I set
the first paragraph only for Before Paragraph to 1" and Selected All. This time
the dialog had blank values for Before Paragraph (that's correct) and for After
Paragraph and First Line (those are wrong). Whether I had saved the document
didn't matter; I tried both ways. (I didn't keep images of this.)

I don't know how to diagnose this further.

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


[Libreoffice-bugs] [Bug 114039] [META] Field dialog bugs and enhancements

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114039

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Depends on||139295


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139295
[Bug 139295] "Style" should be "Template name" in Fields dialog - Document tab
for type Templates
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139295] "Style" should be "Template name" in Fields dialog - Document tab for type Templates

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139295

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval
 Blocks||114039


Referenced Bugs:

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


[Libreoffice-ux-advise] [Bug 139295] "Style" should be "Template name" in Fields dialog - Document tab for type Templates

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139295

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval
 Blocks||114039


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114039
[Bug 114039] [META] Field dialog bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: solenv/clang-format vcl/backendtest vcl/inc vcl/qa vcl/quartz vcl/skia vcl/source vcl/workben

2020-12-28 Thread Chris Sherlock (via logerrit)
 solenv/clang-format/excludelist   |2 +-
 vcl/backendtest/outputdevice/bitmap.cxx   |2 +-
 vcl/backendtest/outputdevice/common.cxx   |3 ++-
 vcl/inc/bitmap/BitmapColorizeFilter.hxx   |4 ++--
 vcl/inc/bitmap/BitmapDisabledImageFilter.hxx  |4 ++--
 vcl/inc/bitmap/BitmapFastScaleFilter.hxx  |4 ++--
 vcl/inc/bitmap/BitmapInterpolateScaleFilter.hxx   |4 ++--
 vcl/inc/bitmap/BitmapLightenFilter.hxx|4 ++--
 vcl/inc/bitmap/BitmapScaleConvolutionFilter.hxx   |6 +++---
 vcl/inc/bitmap/BitmapScaleSuperFilter.hxx |4 ++--
 vcl/inc/bitmap/BitmapWriteAccess.hxx  |4 ++--
 vcl/inc/pch/precompiled_vcl.hxx   |4 ++--
 vcl/qa/cppunit/BackendTest.cxx|2 +-
 vcl/qa/cppunit/BitmapExTest.cxx   |2 +-
 vcl/qa/cppunit/BitmapFilterTest.cxx   |2 +-
 vcl/qa/cppunit/BitmapProcessorTest.cxx|4 ++--
 vcl/qa/cppunit/BitmapScaleTest.cxx|2 +-
 vcl/qa/cppunit/BitmapTest.cxx |2 +-
 vcl/qa/cppunit/canvasbitmaptest.cxx   |3 ++-
 vcl/qa/cppunit/jpeg/JpegReaderTest.cxx|2 +-
 vcl/qa/cppunit/outdev.cxx |3 ++-
 vcl/qa/cppunit/skia/skia.cxx  |   12 +++-
 vcl/qa/cppunit/svm/svmtest.cxx|3 ++-
 vcl/quartz/salbmp.cxx |2 +-
 vcl/skia/salbmp.cxx   |2 +-
 vcl/source/bitmap/BitmapAlphaClampFilter.cxx  |2 +-
 vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx |2 +-
 vcl/source/bitmap/BitmapColorQuantizationFilter.cxx   |5 ++---
 vcl/source/bitmap/BitmapColorizeFilter.cxx|4 ++--
 vcl/source/bitmap/BitmapConvolutionMatrixFilter.cxx   |4 +++-
 vcl/source/bitmap/BitmapDisabledImageFilter.cxx   |4 ++--
 vcl/source/bitmap/BitmapDuoToneFilter.cxx |2 +-
 vcl/source/bitmap/BitmapEmbossGreyFilter.cxx  |7 ---
 vcl/source/bitmap/BitmapEx.cxx|2 +-
 vcl/source/bitmap/BitmapFastScaleFilter.cxx   |6 +++---
 vcl/source/bitmap/BitmapFilterStackBlur.cxx   |2 +-
 vcl/source/bitmap/BitmapGaussianSeparableBlurFilter.cxx   |3 ++-
 vcl/source/bitmap/BitmapInterpolateScaleFilter.cxx|6 +++---
 vcl/source/bitmap/BitmapLightenFilter.cxx |4 ++--
 vcl/source/bitmap/BitmapMedianFilter.cxx  |2 +-
 vcl/source/bitmap/BitmapMonochromeFilter.cxx  |2 +-
 vcl/source/bitmap/BitmapMosaicFilter.cxx  |2 +-
 vcl/source/bitmap/BitmapPopArtFilter.cxx  |2 +-
 vcl/source/bitmap/BitmapScaleConvolutionFilter.cxx|4 ++--
 vcl/source/bitmap/BitmapScaleSuperFilter.cxx  |5 ++---
 vcl/source/bitmap/BitmapSeparableUnsharpenFilter.cxx  |3 ++-
 vcl/source/bitmap/BitmapSepiaFilter.cxx   |6 +++---
 vcl/source/bitmap/BitmapSimpleColorQuantizationFilter.cxx |2 +-
 vcl/source/bitmap/BitmapSobelGreyFilter.cxx   |6 +++---
 vcl/source/bitmap/BitmapSolarizeFilter.cxx|2 +-
 vcl/source/bitmap/BitmapTools.cxx |2 +-
 vcl/source/bitmap/BitmapWriteAccess.cxx   |4 ++--
 vcl/source/bitmap/alpha.cxx   |3 ++-
 vcl/source/bitmap/bitmap.cxx  |   10 +-
 vcl/source/bitmap/bitmappaint.cxx |3 ++-
 vcl/source/bitmap/bmpfast.cxx |6 --
 vcl/source/bitmap/dibtools.cxx|2 +-
 vcl/source/filter/igif/gifread.cxx|2 +-
 vcl/source/filter/ipdf/pdfread.cxx|2 +-
 vcl/source/filter/ixbm/xbmread.cxx|3 ++-
 vcl/source/filter/ixpm/xpmread.cxx|5 -
 vcl/source/filter/jpeg/JpegReader.hxx |3 ++-
 vcl/source/filter/jpeg/jpeg.h |2 +-
 vcl/source/filter/jpeg/jpeg.hxx   |4 +++-
 vcl/source/filter/png/PngImageReader.cxx  |3 ++-
 vcl/source/filter/png/pngread.cxx |3 ++-
 vcl/source/gdi/pdfwriter_impl.cxx |2 +-
 vcl/source/gdi/salmisc.cxx|2 +-
 vcl/source/helper/canvastools.cxx |2 +-
 vcl/source/image/Image.cxx|2 +-
 vcl/source/image/ImplImage.cxx|2 +-

[Libreoffice-bugs] [Bug 139294] Checkbox in Assigned Commands in the Customize dialog toggles when item text is clicked (non gtk3 only)

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139294

Jim Raykowski  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 139295] New: "Style" should be "Template name" in Fields dialog - Document tab for type Templates

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139295

Bug ID: 139295
   Summary: "Style" should be "Template name" in Fields dialog -
Document tab for type Templates
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk

1. Insert > Fields > More Fields (Ctrl+F2), choose "Document" tab.
2. In "Format" column, "Style" should be "Template name"

Reason:  if the document is opened from a template, then this field displays
the template name.

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


[Libreoffice-bugs] [Bug 139294] New: Checkbox in Assigned Commands in the Customize dialog toggles when item text is clicked (non gtk3 only)

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139294

Bug ID: 139294
   Summary: Checkbox in Assigned Commands in the Customize dialog
toggles when item text is clicked (non gtk3 only)
   Product: LibreOffice
   Version: 7.1.0.0.alpha1+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rayk...@gmail.com

In the Customize dialog (menu > Tools > Customize...) Toolbars tab, Assigned
Commands list box, the checkbox is toggled when item text is clicked. This is a
problem when the item is being selected as an insert position or to change its
placement in toolbar. Expected behavior is for the checkbox to toggled only
when the mouse click is done directly on the checkbox or space bar key is used
when item entry is highlighted.

Version: 7.2.0.0.alpha0+
Build ID: ed1235280520852d0eb0f19f05dc4c39d565a6d7
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: x11
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 139293] Function-focused way to add keyboard shortcuts

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139293

--- Comment #1 from Dan Dascalescu  ---
Created attachment 168542
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168542=edit
GNOME's way of adding shortcuts

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


[Libreoffice-bugs] [Bug 139293] New: Function-focused way to add keyboard shortcuts

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139293

Bug ID: 139293
   Summary: Function-focused way to add keyboard shortcuts
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ddascalescu+freedesk...@gmail.com

Created attachment 168541
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168541=edit
Unintuitive how to add a shortcut

Tried to add keyboard shortcuts today after not doing that for several months,
so I approached the task with a beginner's mind (vs.
https://en.wikipedia.org/wiki/Curse_of_knowledge). The task was surprisingly
cumbersome.

What I wanted to do was to assign a keyboard shortcut to formatting text as
Strikethrough. Here are the steps I performed, logical in my mind:

1. Tools -> Customize -> Keyboard
2. There, I saw "Functions", which showed a helpful placeholder, "Type to
search"
3. I typed "strike" and found the Strikethrough function. Great so far.

Now, how do I add a keyboard shortcut to it? The Keys pane was empty. There was
no visible UI afordance to let me add a shortcut. Right clicking didn't reveal
one wither. The "Modify" button was greyed out.

At that point I was stumped in frustration for a good minute.

Later I tried the task again, and looked at the Shortcut Keys list, then
scrolled down for the desired shortcut, typed "strike" again, and the Modify
button was enabled this time.

I think this flow is a little counter-intuitive for users who think of the
function they want to assign a shortcut to first. Even if you think of the key
combo first, scrolling down to it can be a lengthy process, and you don't
necessarily know the order - is it Alt+Shift+X, or Shift+Alt+X?

My suggestion would be to keep the current flow for compatibility, but enable
the user at Step 3 above to add a shortcut by pressing it directly, for example
via an "Assign shortcut" button associated with the Keys panel. The GNOME
interface offers a good example of how to do this in System Settings ->
Keyboard Shortcuts. The user picks the function first, then they can simply
press the desired keyboard combination.

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


[Libreoffice-bugs] [Bug 138628] ClearDirectFormatting does not remove page break

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138628

--- Comment #39 from tor...@yahoo.com ---
(In reply to Telesto from comment #29)

> SUGGESTION: "Clear direct formatting" should NOT delete page breaks. Instead
> there should be another command, "Clear page breaks", to delete the page
> breaks separately.

**Even those who belong to the style, eg, a Heading1 because you want a chapter
to begin on a new page?

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


[Libreoffice-bugs] [Bug 139286] Missing command "go-to and select-to"

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139286

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

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


[Libreoffice-bugs] [Bug 107817] [META] Impress UI/UX bugs and enhancements

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107817

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||139286


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139286
[Bug 139286] Missing command "go-to and select-to"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||139286


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139286
[Bug 139286] Missing command "go-to and select-to"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139286] Missing command "go-to and select-to"

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139286

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=91
   ||909
Version|6.4.6.2 release |5.1.0.3 release
 Blocks||80430, 107817
 OS|Linux (All) |All
  Component|Impress |Documentation
 CC||olivier.hallot@libreoffice.
   ||org

--- Comment #3 from V Stuart Foote  ---
Looks like a documentation issue, the help [1] is no longer correct.  At 5.1.0
release for bug 91909 the shortcuts were added to the Impress slide navigator
that override the general edit shortcuts. 

++ & ++ move the slide to the start or end
of the slide sorter list. They do not make text selections within an active
Text box.

Meaning:

 &  will act on current line of text box moving to start or end.

+ & + will act on current line and select to start or
end.

+, + will act on entire text box moving to start or end.

A two step mix of  or  with + or + will
select entire line. The selection can be expanded with + as
needed.

=-ref-=

[1]
https://help.libreoffice.org/7.2/en-US/text/simpress/04/0102.html?=IMPRESS=WIN

The ++ & ++ selections were reassigned for
use in the Slide sorter, need to be moved there and edited.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80430
[Bug 80430] [META] Documentation gap for new features
https://bugs.documentfoundation.org/show_bug.cgi?id=107817
[Bug 107817] [META] Impress UI/UX bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 134869] LO Writer: Grey line at the right and bottom when pasting an image - not in Print - only in view

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134869

Martin Srdoš  changed:

   What|Removed |Added

   Severity|normal  |minor

--- Comment #12 from Martin Srdoš  ---
And also I seted priority to minor i thing it more corespond with wiki
https://wiki.documentfoundation.org/QA/BugTriage#Step_8:_Prioritize_Bug (Maybe
it should be trivial).

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


[Libreoffice-bugs] [Bug 134869] LO Writer: Grey line at the right and bottom when pasting an image - not in Print - only in view

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134869

Martin Srdoš  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bisected
 CC||armin.le.gr...@me.com

--- Comment #11 from Martin Srdoš  ---
I have tested anchor seted "To character". In old versions is no grey line, in
the new there is.

Report from bisecting:
332a8389db98b1e2f1d57b6de7b90c61c5224ebc is the first bad commit
commit 332a8389db98b1e2f1d57b6de7b90c61c5224ebc
Author: Norbert Thiebaud 
Date:   Tue Dec 12 21:31:37 2017 -0800

source sha:da05b60cdb72d301c6b16c8cb31135f46f4ed2c0

I am adding Armin Le Grand to CC list.

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


[Libreoffice-bugs] [Bug 139286] Missing command "go-to and select-to"

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139286

--- Comment #2 from Robert Simpson  ---
The LO Help pages here:
file:///usr/share/libreoffice/help/en-GB/text/simpress/04/0102.html?=IMPRESS=UNIX

under the heading 'shortcut keys when editing text', include

Ctrl+Shift+Home  Go and select text to start of text block in slide
and
Ctrl+Shift+End  Go and select text to end of document

I don't know why 'block' is used instead of 'box', nor do I know why it says
'end of document', which when editing text in impress makes no sense. 

Formerly, Ctrl+Shift+End would advance to the end of the text box and select
all the text along the way. Ctrl+shift+Home would move to the start of the text
box and select all the text along the way. This is the behaviour I want. Now
they move the whole slide to the start or end of the document. The command 'go
and select to start/end of text' is not present in the list of commands
available for customisation.

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


[Libreoffice-bugs] [Bug 139286] Missing command "go-to and select-to"

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139286

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||vstuart.fo...@utsa.edu
Summary|Missing command "go and |Missing command "go-to and
   |select" |select-to"
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from V Stuart Foote  ---
There are not "blocks" what object are you trying to work with? Perhaps provide
a screen clip or two regards your question.

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


[Libreoffice-bugs] [Bug 73845] PIVOTTABLE: Filter incorrectly restored after FILEOPEN

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73845

--- Comment #16 from Sebastian Goetze  ---
Still there in Version: 7.1.0.1 (x64)
Build ID: b585d7d90ab863bf29b2d110c174c0c2a98f3ee4
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 139197] Impossible to run LibreOffice. DLL api-ms-win-crt-runtime-l1-1-0.dll is missing.

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139197

V Stuart Foote  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 139074] CRASH on Paste from clipboard into dialog or other floating window, paste to document canvas is fine; Windows only?

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139074

--- Comment #19 from V Stuart Foote  ---
Created attachment 168539
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168539=edit
a bit better ST of 7.1.0.1 for crash in Writer with paste into a Text Box
object

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


[Libreoffice-bugs] [Bug 139282] Crash if I open the macro editor

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139282

V Stuart Foote  changed:

   What|Removed |Added

   Keywords|wantBacktrace   |haveBacktrace

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


[Libreoffice-bugs] [Bug 131760] Commands related to styles miscategorized in keyboard customization dialog

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131760

sdc.bla...@youmail.dk changed:

   What|Removed |Added

Summary|Commands related to styles  |Commands related to styles
   |miscategorized in   |miscategorized in keyboard
   |customization dialog|customization dialog

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


[Libreoffice-bugs] [Bug 139074] CRASH on Paste from clipboard into dialog or other floating window, paste to document canvas is fine; Windows only?

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139074

V Stuart Foote  changed:

   What|Removed |Added

 CC||ricci...@libero.it

--- Comment #18 from V Stuart Foote  ---
*** Bug 139282 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 139282] Crash if I open the macro editor

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139282

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from V Stuart Foote  ---
Confirmed with
Version: 7.1.0.1 (x86)
Build ID: b585d7d90ab863bf29b2d110c174c0c2a98f3ee4
CPU threads: 8; OS: Windows 10.0 Build 18363; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Opening the Tools -> Macros -> Edit Macros.. dialog after a few moments it
crashes.

With WinDbg attached get this stack trace, issue as for bug 139074

0:000:x86> ~* kp

.  0  Id: 3700.3c78 Suspend: 1 Teb: 010ce000 Unfrozen
 # ChildEBP RetAddr  
00 01b8efa0 78c084d0 ucrtbase!abort+0x4b
01 01b8efb4 5620c55c mergedlo!comphelper::SolarMutex::doRelease(bool bUnlockAll
= )+0x60
[C:\cygwin64\home\buildslave\source\libo-core\comphelper\source\misc\solarmutex.cxx
@ 66] 
02 01b8efc8 7aa6693b vclplug_winlo!SalYieldMutex::doRelease(bool bUnlockAll =
true)+0x3c
[C:\cygwin64\home\buildslave\source\libo-core\vcl\win\app\salinst.cxx @ 180] 
03 01b8efd0 5622f4be mergedlo!SalInstance::ReleaseYieldMutexAll(void)+0xb
[C:\cygwin64\home\buildslave\source\libo-core\vcl\source\app\salvtables.cxx @
117] 
04 (Inline)  vclplug_winlo!SolarMutexReleaser::{ctor}+0x6
[C:\cygwin64\home\buildslave\source\libo-core\include\vcl\svapp.hxx @ 1408] 
05 01b8f010 78a2ba71 vclplug_winlo!CWinClipboard::getContents(void)+0x2e
[C:\cygwin64\home\buildslave\source\libo-core\vcl\win\dtrans\WinClipboard.cxx @
95] 
06 (Inline)  mergedlo!basctl::ModulWindow::IsPasteAllowed+0x5e
[C:\cygwin64\home\buildslave\source\libo-core\basctl\source\basicide\baside2.cxx
@ 1382] 
07 01b8f224 78a43572 mergedlo!basctl::ModulWindow::GetState(class SfxItemSet *
rSet = 0x01b8f3b0 {size=0})+0x1b1
[C:\cygwin64\home\buildslave\source\libo-core\basctl\source\basicide\baside2.cxx
@ 1082] 
08 01b8f384 78a4b97e mergedlo!basctl::Shell::GetState(class SfxItemSet * rSet =
0x01b8f3b0 {size=0})+0xf22
[C:\cygwin64\home\buildslave\source\libo-core\basctl\source\basicide\basides1.cxx
@ 1120] 
09 01b8f390 7980d2ff mergedlo!SfxStubbasctl_ShellGetState(class SfxShell *
pShell = 0x2eff8318, class SfxItemSet * rSet = 0x01b8f3b0 {size=0})+0xe
[C:\cygwin64\home\buildslave\r\workdir\SdiTarget\basctl\sdi\basslots.hxx @ 152] 
0a (Inline)  mergedlo!SfxShell::CallState+0x7
[C:\cygwin64\home\buildslave\source\libo-core\include\sfx2\shell.hxx @ 199] 
0b 01b8f3dc 797fac3b mergedlo!SfxShell::GetSlotState(unsigned short nSlotId =
0x1650, class SfxInterface * pIF = , class SfxItemSet
* pStateSet = 0x)+0xdf
[C:\cygwin64\home\buildslave\source\libo-core\sfx2\source\control\shell.cxx @
475] 
0c 01b8f420 7982ff01 mergedlo!SfxDispatcher::QueryState(unsigned short nSID =
0x1650, class com::sun::star::uno::Any * rAny = 0x01b8f494)+0xbb
[C:\cygwin64\home\buildslave\source\libo-core\sfx2\source\control\dispatch.cxx
@ 1862] 
0d 01b8f4b4 798300bc
mergedlo!SfxDispatchController_Impl::addStatusListener(class
com::sun::star::uno::Reference *
aListener = 0x01b8f598 {{...}}, struct com::sun::star::util::URL * aURL =
0x371b5860)+0x91
[C:\cygwin64\home\buildslave\source\libo-core\sfx2\source\control\unoctitm.cxx
@ 834] 
0e 01b8f4c4 79ce244e mergedlo!SfxOfficeDispatch::addStatusListener(class
com::sun::star::uno::Reference *
aListener = 0x01b8f598 {{...}}, struct com::sun::star::util::URL * aURL =
0x371b5860)+0x2c
[C:\cygwin64\home\buildslave\source\libo-core\sfx2\source\control\unoctitm.cxx
@ 255] 
0f 01b8f5b0 79ce49bc mergedlo!svt::ToolboxController::bindListener(void)+0x54e
[C:\cygwin64\home\buildslave\source\libo-core\svtools\source\uno\toolboxcontroller.cxx
@ 537] 
10 01b8f5dc 7942cf8d mergedlo!svt::ToolboxController::update(void)+0x6c
[C:\cygwin64\home\buildslave\source\libo-core\svtools\source\uno\toolboxcontroller.cxx
@ 236] 
11 01b8f654 7942adeb
mergedlo!framework::ToolBarManager::UpdateControllers(void)+0x2fd
[C:\cygwin64\home\buildslave\source\libo-core\framework\source\uielement\toolbarmanager.cxx
@ 355] 
12 (Inline) 
mergedlo!framework::ToolBarManager::AsyncUpdateControllersHdl+0xa3
[C:\cygwin64\home\buildslave\source\libo-core\framework\source\uielement\toolbarmanager.cxx
@ 1935] 
13 01b8f688 7aaa585d
mergedlo!framework::ToolBarManager::LinkStubAsyncUpdateControllersHdl(void *
instance = 0x2f36eb68, class Timer * data = 0x2f36ec20)+0xcb
[C:\cygwin64\home\buildslave\source\libo-core\framework\source\uielement\toolbarmanager.cxx
@ 1922] 
14 (Inline)  mergedlo!Link::Call+0xd
[C:\cygwin64\home\buildslave\source\libo-core\include\tools\link.hxx @ 111] 
15 01b8f694 7aa83529 mergedlo!Timer::Invoke(void)+0xd
[C:\cygwin64\home\buildslave\source\libo-core\vcl\source\app\timer.cxx @ 75] 
16 01b8f710 5620d84e 

[Libreoffice-bugs] [Bug 139292] New: macOS bundle ships with 4 languages dictionary extensions (compared to all with Windows)

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139292

Bug ID: 139292
   Summary: macOS bundle ships with 4 languages dictionary
extensions (compared to all with Windows)
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
macOS bundle ships with 4 languages dictionary extensions (compared to all with
Windows)

Steps to Reproduce:
1. Inspect the macOS app bundle. Or look in the extension dialog. Only 3 or 4
dictionary's present by default

And maybe simply use (internal) Hunspell instead of system? Better be same than
sorry. So by default hunspell shipped with LibreOffice and if someone wants to
fiddle with the default fine. But other backends are not that tested or
supported..

Actual Results:
3 or 4 dictionary's

Expected Results:
All of them for consistency between platforms? Kind of noticed that the spell
checker on macOS being meh (not recognizing certain words which it does by
default on Windows)

Verhaalbesalg popups up no suggestion on macOS but does on Windows


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64)
Build ID: 4e3ce9dd6ace0b22f7b3f45cf2338b201f4dc305
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 139291] New: FORMATTING: "format as a table" - implement Excel feature

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139291

Bug ID: 139291
   Summary: FORMATTING: "format as a table" - implement Excel
feature
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t_hu...@yahoo.fr

Description:
This Excel feature is really a key one for a spreadsheet management tool such
as... Excel... or Calc ! We are using those tools to manipulate data, organized
in tables. That's the core feature of those tools...

Before Excel introduced the "format as table" feature, we had to do all the
stuff "by hand". AND TO MAINTAIN IT when the table content was changing. Very
uncomfortable and time consuming...

Today, with this feature, it is very simple to:
- organize dynamic data in table (named range, easier references in external
vlookup,...)
- create a footer with smart formulas (sum, subtotal,...), that remains a
footer, whatever you add/remove in the table and that don't get sorted in the
table content flow...
- add new lines in the range (simply press tab key at the end of the table)
- get formulas automatically created in the columns (limit risks of mistake)
- use explicit column titles as names in the formulas (simplify writing and
maintenance)
- get a consistent auto formatting (such as alternate colors for rows,...)
whatever sort/insert/delete action you can do on the table itself
- ...

Is there any target to get this replicated in Calc ?

For sure, from a user perspective, this is not an "advanced" feature of Excel
(even if technically, it could be a real pain to implement !)... It gets used
by many "basic users" nowadays, and is dramatically missing from Calc.

Any hope to get this in the roadmap ?
Thanks

Actual Results:
N/A

Expected Results:
Same as in Excel feature "format as table" (see description above for most
common features provided in Excel)


Reproducible: Always


User Profile Reset: No



Additional Info:
Check description field

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


[Libreoffice-bugs] [Bug 139197] Impossible to run LibreOffice. DLL api-ms-win-crt-runtime-l1-1-0.dll is missing.

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139197

usreop  changed:

   What|Removed |Added

 Resolution|NOTOURBUG   |FIXED

--- Comment #4 from usreop  ---
(In reply to Mike Kaganski from comment #2)
> (In reply to usreop from comment #0)
> > api-ms-win-crt-runtime-l1-1-0.dll has then been downloaded, and copied in
> > directories windows/system32 and windows/sysWOW64 (as I have been told on
> > the webpage from wich the dll was downloaded).
> 
> Doing such things is a sure way to get malware on your system.
> The problematic missing file is a part of UCRT, and may be installed using
> MS Visual Studio redistributable [1]. It is a system component, and
> installing a random file from Internet to your system directory is risky.
> 
> The UCRT *should* be installed by LibreOffice installer normally. In case of
> some problems during the installation, installer should produce a warning
> that KB2999226 component could not be installed, and user must install it
> manually [2][3] (you have not mentioned if you saw any warnings during
> installation; likely you haven't, which is strange, taking into account the
> result).

::   I can't tell about UCRT and MS Visual studio redistr. But indeed I did not
see any warning message, excepted the bug mentioned when trying to run
libreOffice.

> > Nothing changed. Same message appears again & again...
> 
> Are you positive that this is the *same* message? UCRT consists of multiple
> similarly-named files, and you might now be asked, say, for
> "api-ms-win-crt-process-l1-1-0.dll" or "api-ms-win-core-synch-l1-2-0.dll"
> instead of "api-ms-win-crt-runtime-l1-1-0.dll"?

::Yes, you're right, the message was not exactly the same: the same phrases
but a new dll name each time. After each message, i downloaded the
corresponding dll from wikiDll.com, scanned it (with AVG antivirus) and then
put it in windows\system32, tryed to run libreOffice again to get the new dll
name and doing the same again and again ; nearly 12 times or more where
necessary to see at last LO running.
I wonder if a possible explanation is that I use Win 7 SP1 as received and
never did a single update at Microsoft.
Thank you for your detailed reply. I've changed the status to Resolved.


> [1] See resp. platform download under "Visual Studio 2015, 2017 and 2019" at
> https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-
> c-downloads
> [2]
> https://wiki.documentfoundation.org/Faq/General/api-ms-win-*.dll_is_missing
> [3]
> https://wiki.documentfoundation.org/Faq/General/
> General_Installation_Issues_(Windows)#Enable_Windows_Update

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


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

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164

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

   What|Removed |Added

 Depends on||138649


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138649
[Bug 138649] It is not possible to insert footnotes in a figure capture to make
references in the ABNT rules.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138649] It is not possible to insert footnotes in a figure capture to make references in the ABNT rules.

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138649

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

   What|Removed |Added

Summary|It is not possible to   |It is not possible to
   |enable footnotes in figure  |insert footnotes in a
   |lines to make references in |figure capture to make
   |the ABNT rules. |references in the ABNT
   ||rules.
 Blocks||103164
 CC||79045_79...@mail.ru

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
You mustn't confirm own bug reports, it should be an another person.

And I confirm the problem in

Version: 7.1.0.0.alpha1+
Build ID: 6427bf87360a97f41ae351feaa35975c868260ec
CPU threads: 4; OS: Linux 5.5; UI render: default; VCL: kf5
Locale: ru-RU (ru_RU.UTF-8); UI: ru-RU
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-11-04_14:28:50
Calc: threaded


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 130170] New Style from Selection action needs documentation

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130170

sdc.bla...@youmail.dk changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |sdc.bla...@youmail.dk
   |desktop.org |

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


[Libreoffice-bugs] [Bug 139074] CRASH on Paste from clipboard into dialog or other floating window, paste to document canvas is fine; Windows only?

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139074

V Stuart Foote  changed:

   What|Removed |Added

 CC||uwesto...@web.de

--- Comment #17 from V Stuart Foote  ---
*** Bug 139287 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 139287] [regression] Crash when trying to search

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139287

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED
 CC||vstuart.fo...@utsa.edu

--- Comment #5 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 120201] [META] Update or add link to help page

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120201

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Depends on||139290


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139290
[Bug 139290] Help button for "Load Styles" in Writer goes to the wrong help
page
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139290] Help button for "Load Styles" in Writer goes to the wrong help page

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139290

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Blocks||120201


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120201
[Bug 120201] [META] Update or add link to help page
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139290] New: Help button for "Load Styles" in Writer goes to the wrong help page

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139290

Bug ID: 139290
   Summary: Help button for "Load Styles" in Writer goes to the
wrong help page
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk
CC: olivier.hal...@libreoffice.org

1. Open Writer Document
2. Choose Styles > Load Styles
3. Press "Help" button in "Load Styles" dialog

Actual result: 
https://help.libreoffice.org/7.2/en-US/text/simpress/01/05120100.html

Expected result:
https://help.libreoffice.org/7.2/en-US/text/swriter/01/0517.html

tested with: Version: 7.2.0.0.alpha0+ (x64)

Additional information:

Works as expected with 6.3.6.2  --> 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 109195] [META] DOCX (OOXML) Footnote and Endnote bugs and enhancements

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109195

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

   What|Removed |Added

 Depends on||138625


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138625
[Bug 138625] The footnote number in an imported word text is not in a
superscript, like in the original.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138625] The footnote number in an imported word text is not in a superscript, like in the original.

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138625

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

   What|Removed |Added

 Blocks||109195
  Component|LibreOffice |Writer
 OS|Mac OS X (All)  |All
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #9 from Roman Kuznetsov <79045_79...@mail.ru> ---
I can confirm the problem in

Version: 7.1.0.0.alpha1+
Build ID: 6427bf87360a97f41ae351feaa35975c868260ec
CPU threads: 4; OS: Linux 5.5; UI render: default; VCL: kf5
Locale: ru-RU (ru_RU.UTF-8); UI: ru-RU
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-11-04_14:28:50
Calc: threaded


Referenced Bugs:

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


[Libreoffice-commits] core.git: include/rtl

2020-12-28 Thread Stephan Bergmann (via logerrit)
 include/rtl/stringconcat.hxx |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

New commits:
commit f72a5fd03ddfa94b074b28cf1259284f727139f0
Author: Stephan Bergmann 
AuthorDate: Mon Dec 28 16:03:06 2020 +0100
Commit: Stephan Bergmann 
CommitDate: Mon Dec 28 21:15:34 2020 +0100

Avoid calling memcpy with nullptr

...which can easily happen when default-constructed std::[u16]string_view 
are
involved

Change-Id: I2b11b3943ccaa5344cf9d1f4546d756bc4a2d10f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108414
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/include/rtl/stringconcat.hxx b/include/rtl/stringconcat.hxx
index e2cba5d86f0d..7f55d6c3473d 100644
--- a/include/rtl/stringconcat.hxx
+++ b/include/rtl/stringconcat.hxx
@@ -74,14 +74,18 @@ struct ToStringHelper
 inline
 char* addDataHelper( char* buffer, const char* data, std::size_t length )
 {
-memcpy( buffer, data, length );
+if (length != 0) {
+memcpy( buffer, data, length );
+}
 return buffer + length;
 }
 
 inline
 sal_Unicode* addDataHelper( sal_Unicode* buffer, const sal_Unicode* data, 
std::size_t length )
 {
-memcpy( buffer, data, length * sizeof( sal_Unicode ));
+if (length != 0) {
+memcpy( buffer, data, length * sizeof( sal_Unicode ));
+}
 return buffer + length;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-12-28 Thread Caolán McNamara (via logerrit)
 sax/source/fastparser/fastparser.cxx |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit c4542dd3534e5e05307938bb7627017fb8a883cb
Author: Caolán McNamara 
AuthorDate: Mon Dec 28 15:03:57 2020 +
Commit: Caolán McNamara 
CommitDate: Mon Dec 28 21:08:16 2020 +0100

ofz#28733 Direct-leak

free xmlEntityPtr the way desret_xmlEntityPtr does in libxml's testapi.c

Change-Id: Ia809413c3d4e7b13e799e6c1a57e8abe61bf218d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108415
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/sax/source/fastparser/fastparser.cxx 
b/sax/source/fastparser/fastparser.cxx
index 9d13d25ce385..6bfa1ce0e205 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -676,7 +676,13 @@ FastSaxParserImpl::~FastSaxParserImpl()
 if( mxDocumentLocator.is() )
 mxDocumentLocator->dispose();
 for ( size_t i = 0; i < m_TemporalEntities.size(); ++i )
-if (m_TemporalEntities[i] != nullptr) xmlFree(m_TemporalEntities[i]);
+{
+if (!m_TemporalEntities[i])
+continue;
+xmlNodePtr pPtr = reinterpret_cast(m_TemporalEntities[i]);
+xmlUnlinkNode(pPtr);
+xmlFreeNode(pPtr);
+}
 }
 
 void FastSaxParserImpl::DefineNamespace( const OString& rPrefix, const 
OUString& namespaceURL )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108568] [META] Footnote and endnote properties and settings

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108568

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

   What|Removed |Added

 Depends on||137639


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137639
[Bug 137639] Insert Footnote/Endnote dialog neither allow Unicode character
input using Alt+X nor paste it correctly.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137639] Insert Footnote/Endnote dialog neither allow Unicode character input using Alt+X nor paste it correctly.

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137639

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

   What|Removed |Added

 Blocks||108568


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 114220] [META] Drag and drop bugs and enhancements

2020-12-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114220

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

   What|Removed |Added

 Depends on||134944


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134944
[Bug 134944] Dragging dropping of footnotes cause breaking text differently
(and inefficient) caused by anchoring
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   4   >