[Libreoffice-bugs] [Bug 132350] Icon of updates button on right end of menu bar is still not visible with kf5 and gtk3 vcl (or again not visible)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132350

--- Comment #9 from Michael Weghorn  ---
(In reply to Michael Weghorn from comment #7)
> I've created a dummy/demo patch to make the update button show up for
> testing purposes:
> https://gerrit.libreoffice.org/c/core/+/106922

Note: this might need the '--enable-online-update' autogen option.

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


[Libreoffice-bugs] [Bug 138313] MONTHS() function gives the wrong result

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138313

--- Comment #3 from Ming Hua  ---
(In reply to Justin L from comment #2)
> Excel 2016 doesn't have the function "months", and I don't see any reference
> to it on the Internet. It looks like a LO only function.
Yeah, the "different from Excel" part was my baseless speculation, sorry about
that.

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


[Libreoffice-bugs] [Bug 34828] Navigator item "Draw objects" in Calc does not show Draw objects without name (Writer fixed in the mean time..)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34828

--- Comment #64 from Telesto  ---
(In reply to Heiko Tietze from comment #63)
> (In reply to Jim Raykowski from comment #62)
> > or just keep these all together in one patch as is already done?
> 
> No preference from my side here.

Splitting maybe useful for debugging/bibisecting. Delivering  more specific
results. And would make it possible to selectively revert something in worse
case.

But the unwritten rules on this can be found in the irc dev channel; long term
experts on the matter. No idea which kind of side-effects should be expected,
if there is something

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


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

2020-11-30 Thread Noel Grandin (via logerrit)
 xmloff/source/text/XMLSectionImportContext.cxx |   53 +++--
 xmloff/source/text/XMLSectionImportContext.hxx |   14 ++
 xmloff/source/text/txtimp.cxx  |2 
 3 files changed, 30 insertions(+), 39 deletions(-)

New commits:
commit 5a6350c4e02092e97faa4593acfcd4a3f07de3ef
Author: Noel Grandin 
AuthorDate: Mon Nov 30 20:37:44 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 1 08:22:57 2020 +0100

fastparser in XMLSectionImportContext

Change-Id: I536214f532c39de7319ec66d357ee84e53c97c59
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106914
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/text/XMLSectionImportContext.cxx 
b/xmloff/source/text/XMLSectionImportContext.cxx
index 2ed3f5b23a9a..11716281bd7e 100644
--- a/xmloff/source/text/XMLSectionImportContext.cxx
+++ b/xmloff/source/text/XMLSectionImportContext.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -41,6 +42,7 @@
 using ::com::sun::star::beans::XPropertySet;
 using ::com::sun::star::uno::Reference;
 using ::com::sun::star::xml::sax::XAttributeList;
+using ::com::sun::star::xml::sax::XFastAttributeList;
 using ::com::sun::star::lang::XMultiServiceFactory;
 using ::com::sun::star::container::XNamed;
 
@@ -85,11 +87,8 @@ const SvXMLTokenMapEntry aSectionTokenMap[] =
 // insert a section within another section, you can't move the cursor
 // between the ends of the inner and the enclosing section. To avoid
 // these problems, additional markers are first inserted and later deleted.
-XMLSectionImportContext::XMLSectionImportContext(
-SvXMLImport& rImport,
-sal_uInt16 nPrfx,
-const OUString& rLocalName )
-:   SvXMLImportContext(rImport, nPrfx, rLocalName)
+XMLSectionImportContext::XMLSectionImportContext( SvXMLImport& rImport )
+:   SvXMLImportContext(rImport)
 ,   bProtect(false)
 ,   bCondOK(false)
 ,   bIsVisible(true)
@@ -105,14 +104,14 @@ XMLSectionImportContext::~XMLSectionImportContext()
 {
 }
 
-void XMLSectionImportContext::StartElement(
-const Reference & xAttrList)
+void XMLSectionImportContext::startFastElement( sal_Int32 nElement,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
 // process attributes
 ProcessAttributes(xAttrList);
 
 // process index headers:
-bool bIsIndexHeader = IsXMLToken( GetLocalName(), XML_INDEX_TITLE );
+bool bIsIndexHeader = (nElement & TOKEN_MASK) == XML_INDEX_TITLE;
 if (bIsIndexHeader)
 {
 bValid = true;
@@ -178,7 +177,7 @@ void XMLSectionImportContext::StartElement(
 
 // password (only for regular sections)
 if ( bSequenceOK &&
- IsXMLToken(GetLocalName(), XML_SECTION) )
+ (nElement & TOKEN_MASK) == XML_SECTION )
 {
 xPropSet->setPropertyValue("ProtectionKey", Any(aSequence));
 }
@@ -226,32 +225,25 @@ void XMLSectionImportContext::StartElement(
 }
 
 void XMLSectionImportContext::ProcessAttributes(
-const Reference & xAttrList )
+const Reference & xAttrList )
 {
-static const SvXMLTokenMap aTokenMap(aSectionTokenMap);
-
-sal_Int16 nLength = xAttrList->getLength();
-for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
+for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-sal_uInt16 nNamePrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
-   );
-OUString sAttr = xAttrList->getValueByIndex(nAttr);
+OUString sAttr = aIter.toString();
 
-switch (aTokenMap.Get(nNamePrefix, sLocalName))
+switch (aIter.getToken())
 {
-case XML_TOK_SECTION_XMLID:
+case XML_ELEMENT(XML, XML_ID):
 sXmlId = sAttr;
 break;
-case XML_TOK_SECTION_STYLE_NAME:
+case XML_ELEMENT(TEXT, XML_STYLE_NAME):
 sStyleName = sAttr;
 break;
-case XML_TOK_SECTION_NAME:
+case XML_ELEMENT(TEXT, XML_NAME):
 sName = sAttr;
 bValid = true;
 break;
-case XML_TOK_SECTION_CONDITION:
+case XML_ELEMENT(TEXT, XML_CONDITION):
 {
 OUString sTmp;
 sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
@@ -265,7 +257,7 @@ void XMLSectionImportContext::ProcessAttributes(
 sCond = sAttr;
 }
 break;
-case XML_TOK_SECTION_DISPLAY:
+case XML_ELEMENT(TEXT, XML_DISPLAY):
 if (IsXMLToken(sAttr, XML_TRUE))
 {
 bIsVisible = true;
@@ -277,7 +269,7 @@ void XMLSectionImportContext::ProcessAttributes(
 }
 // else: ignore
 break;
-case 

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

2020-11-30 Thread Noel Grandin (via logerrit)
 xmloff/source/text/XMLSectionImportContext.cxx   |1 
 xmloff/source/text/XMLSectionSourceImportContext.cxx |   52 ---
 xmloff/source/text/XMLSectionSourceImportContext.hxx |   11 +---
 3 files changed, 15 insertions(+), 49 deletions(-)

New commits:
commit 445d56983863a739797dfb940483c209c764e8d6
Author: Noel Grandin 
AuthorDate: Mon Nov 30 20:29:55 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 1 08:22:38 2020 +0100

fastparser in XMLSectionSourceImportContext

Change-Id: I7c716342617486b63a4ae15fb71f3bf794165011
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106913
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/text/XMLSectionImportContext.cxx 
b/xmloff/source/text/XMLSectionImportContext.cxx
index c4ca75ba06d6..2ed3f5b23a9a 100644
--- a/xmloff/source/text/XMLSectionImportContext.cxx
+++ b/xmloff/source/text/XMLSectionImportContext.cxx
@@ -341,7 +341,6 @@ SvXMLImportContextRef 
XMLSectionImportContext::CreateChildContext(
  IsXMLToken(rLocalName, XML_SECTION_SOURCE) )
 {
 pContext = new XMLSectionSourceImportContext(GetImport(),
- nPrefix, rLocalName,
  xSectionPropertySet);
 }
 else if ( (XML_NAMESPACE_OFFICE == nPrefix) &&
diff --git a/xmloff/source/text/XMLSectionSourceImportContext.cxx 
b/xmloff/source/text/XMLSectionSourceImportContext.cxx
index 0ceb68eda53d..c24ffd9e912e 100644
--- a/xmloff/source/text/XMLSectionSourceImportContext.cxx
+++ b/xmloff/source/text/XMLSectionSourceImportContext.cxx
@@ -40,10 +40,8 @@ using namespace ::xmloff::token;
 
 XMLSectionSourceImportContext::XMLSectionSourceImportContext(
 SvXMLImport& rImport,
-sal_uInt16 nPrfx,
-const OUString& rLocalName,
 Reference & rSectPropSet) :
-SvXMLImportContext(rImport, nPrfx, rLocalName),
+SvXMLImportContext(rImport),
 rSectionPropertySet(rSectPropSet)
 {
 }
@@ -52,54 +50,28 @@ 
XMLSectionSourceImportContext::~XMLSectionSourceImportContext()
 {
 }
 
-namespace {
-enum XMLSectionSourceToken
+void XMLSectionSourceImportContext::startFastElement( sal_Int32 /*nElement*/,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
-XML_TOK_SECTION_XLINK_HREF,
-XML_TOK_SECTION_TEXT_FILTER_NAME,
-XML_TOK_SECTION_TEXT_SECTION_NAME
-};
-
-}
-
-const SvXMLTokenMapEntry aSectionSourceTokenMap[] =
-{
-{ XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_SECTION_XLINK_HREF },
-{ XML_NAMESPACE_TEXT, XML_FILTER_NAME, XML_TOK_SECTION_TEXT_FILTER_NAME },
-{ XML_NAMESPACE_TEXT, XML_SECTION_NAME,
-XML_TOK_SECTION_TEXT_SECTION_NAME },
-XML_TOKEN_MAP_END
-};
-
-
-void XMLSectionSourceImportContext::StartElement(
-const Reference & xAttrList)
-{
-static const SvXMLTokenMap aTokenMap(aSectionSourceTokenMap);
 OUString sURL;
 OUString sFilterName;
 OUString sSectionName;
 
-sal_Int16 nLength = xAttrList->getLength();
-for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
+for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
-   );
-
-switch (aTokenMap.Get(nPrefix, sLocalName))
+OUString sValue = aIter.toString();
+switch (aIter.getToken())
 {
-case XML_TOK_SECTION_XLINK_HREF:
-sURL = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(XLINK, XML_HREF):
+sURL = sValue;
 break;
 
-case XML_TOK_SECTION_TEXT_FILTER_NAME:
-sFilterName = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(TEXT, XML_FILTER_NAME):
+sFilterName = sValue;
 break;
 
-case XML_TOK_SECTION_TEXT_SECTION_NAME:
-sSectionName = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(TEXT, XML_SECTION_NAME):
+sSectionName = sValue;
 break;
 
 default:
diff --git a/xmloff/source/text/XMLSectionSourceImportContext.hxx 
b/xmloff/source/text/XMLSectionSourceImportContext.hxx
index 33fb2e966291..b426b81acc38 100644
--- a/xmloff/source/text/XMLSectionSourceImportContext.hxx
+++ b/xmloff/source/text/XMLSectionSourceImportContext.hxx
@@ -28,25 +28,20 @@ namespace com::sun::star {
 namespace xml::sax { class XAttributeList; }
 }
 
-class XMLSectionSourceImportContext : public SvXMLImportContext
+class XMLSectionSourceImportContext final : public SvXMLImportContext
 {
 css::uno::Reference & rSectionPropertySet;
 
 public:
 
-
 XMLSectionSourceImportContext(
 SvXMLImport& rImport,
-sal_uInt16 nPrfx,
-const OUString& rLocalName,

[Libreoffice-bugs] [Bug 138261] TABLE: Cell border width is different for horizontal and vertical sides.

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138261

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
I tried to reproduce the problem as follows:

1. Create a new table with 3 rows and 3 columns
2. Select a row => Table properties => borders
3. Change width of the line

Width of line changes => Works as expected.

Tested with

Version: 7.1.0.0.alpha1+ (x64)
Build ID: 10b23330a9655658e6d7ef1d008a3302a15e9629
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: threaded


So please provide a clearer set of step-by-step instructions on how to
reproduce the problem. I have set the bug's status to 'NEEDINFO'. Please change
it back to 'UNCONFIRMED' once the steps are provided.

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


[Libreoffice-bugs] [Bug 138591] Using Unicode conversion on a combined emoji results in only partial conversion

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138591

--- Comment #1 from Mike Kaganski  ---
Created attachment 167703
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167703=edit
Combined emoji and combined character

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


[Libreoffice-bugs] [Bug 132350] Icon of updates button on right end of menu bar is still not visible with kf5 and gtk3 vcl (or again not visible)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132350

--- Comment #8 from Michael Weghorn  ---
This looks similar to tdf#123549.

At a quick glance, gtk3 and qt5 might have to override
'SalMenu::AddMenuBarButton' to implement the button to show in their native
menu bars.

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


[Libreoffice-bugs] [Bug 138591] New: Using Unicode conversion on a combined emoji results in only partial conversion

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138591

Bug ID: 138591
   Summary: Using Unicode conversion on a combined emoji results
in only partial conversion
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

In the attached document, the first line contains a combined emoji (, U+1f468
"MAN" + U+1f3fc "EMOJI MODIFIER FITZPATRICK TYPE-3"). Putting the cursor
immediately after the emoji, and pressing Alt+X, results not in the expected
"U+1f468U+1f3fc" that would represent both elements of the emoji, but in
"U+1f3fc", i.e. "MAN" is still not converted into the text representing its
code.

For comparison, the second line has a combined character á, U+0061 "LATIN SMALL
LETTER A" + U+0301 "COMBINING ACUTE ACCENT". Pressing Ctrl+End to move after
the character, and pressing Alt+X, results in both parts of the combined
character to get converted: "U+0061U+0301". (There's some strange *different*
issue that using a mouse to put cursor after the character, the result is as if
you put cursor between them, but it's *unrelated* to the issue here).

Tested with Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 12; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); 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 103182] [META] GTK3-specific bugs

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

Michael Weghorn  changed:

   What|Removed |Added

 Depends on||132350


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132350
[Bug 132350] Icon of updates button on right end of menu bar is still not
visible with kf5 and gtk3 vcl (or again not visible)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102495] [META] KDE VCL backend bugs and enhancements

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102495

Michael Weghorn  changed:

   What|Removed |Added

 Depends on||132350


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132350
[Bug 132350] Icon of updates button on right end of menu bar is still not
visible with kf5 and gtk3 vcl (or again not visible)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132350] Icon of updates button on right end of menu bar is still not visible with kf5 and gtk3 vcl (or again not visible)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132350

Michael Weghorn  changed:

   What|Removed |Added

Summary|Icon of updates button on   |Icon of updates button on
   |right end of menu bar is|right end of menu bar is
   |still not visible with kf5  |still not visible with kf5
   |vcl (or again not visible)  |and gtk3 vcl (or again not
   ||visible)
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Blocks||102495, 103182

--- Comment #7 from Michael Weghorn  ---
I've created a dummy/demo patch to make the update button show up for testing
purposes:
https://gerrit.libreoffice.org/c/core/+/106922

With this patch in place, starting Writer and waiting a minute makes the issue
reproducible with

Version: 7.2.0.0.alpha0+
Build ID: 82d8d76b8a6bb0d7b6585411666f5421a99b6d34
CPU threads: 12; OS: Linux 5.9; UI render: default; VCL: kf5
Locale: en-GB (en_GB.UTF-8); UI: en-US
Calc: threaded

and

Version: 7.2.0.0.alpha0+
Build ID: 82d8d76b8a6bb0d7b6585411666f5421a99b6d34
CPU threads: 12; OS: Linux 5.9; UI render: default; VCL: gtk3
Locale: en-GB (en_GB.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE VCL backend bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
[Bug 103182] [META] GTK3-specific bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138268] Writer: Tab Order is not exported correctly to pdf

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138268

Dieter  changed:

   What|Removed |Added

  Component|Writer  |Printing and PDF export
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|

--- Comment #3 from Dieter  ---
I've tried to reproduce the problem, but I couldn't. I can't see a difference
between odt-file and pdf-file. To be honest, stp 2 "Set activation order" is
not clear to me.

Tested with

Version: 7.1.0.0.alpha1+ (x64)
Build ID: 10b23330a9655658e6d7ef1d008a3302a15e9629
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: threaded

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


[Libreoffice-bugs] [Bug 138269] Freezes on the screen

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138269

Dieter  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 138269] Freezes on the screen

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138269

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
Thank you for reporting the bug. Unfortunately without clear steps to reproduce
it, we cannot track down the origin of the problem. Please provide a clearer
set of step-by-step instructions on how to reproduce the problem.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the steps are provided.

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


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

2020-11-30 Thread Noel Grandin (via logerrit)
 xmloff/source/text/XMLTextMarkImportContext.cxx |   83 ++--
 xmloff/source/text/XMLTextMarkImportContext.hxx |   11 +--
 2 files changed, 39 insertions(+), 55 deletions(-)

New commits:
commit c96f5272964f199fc4ade670be30a87b931e85e0
Author: Noel Grandin 
AuthorDate: Mon Nov 30 20:25:50 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 1 07:58:46 2020 +0100

fastparser in XMLTextMarkImportContext

Change-Id: Iaa785b71ef64fd172f02f83ee1c8e9ac89dd13cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106912
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/text/XMLTextMarkImportContext.cxx 
b/xmloff/source/text/XMLTextMarkImportContext.cxx
index ef1fa9556c0a..7d53c7b5af4d 100644
--- a/xmloff/source/text/XMLTextMarkImportContext.cxx
+++ b/xmloff/source/text/XMLTextMarkImportContext.cxx
@@ -148,15 +148,16 @@ static OUString lcl_getFieldmarkName(OUString const& name)
 }
 
 
-void XMLTextMarkImportContext::StartElement(
-const Reference & xAttrList)
+void XMLTextMarkImportContext::startFastElement( sal_Int32 nElement,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
-if (!FindName(GetImport(), xAttrList))
+if (!FindName(xAttrList))
 {
 m_sBookmarkName.clear();
 }
 
-if (IsXMLToken(GetLocalName(), XML_FIELDMARK_START) || 
IsXMLToken(GetLocalName(), XML_FIELDMARK))
+if ((nElement & TOKEN_MASK) == XML_FIELDMARK_START ||
+(nElement & TOKEN_MASK) == XML_FIELDMARK)
 {
 if (m_sBookmarkName.isEmpty())
 {
@@ -167,8 +168,8 @@ void XMLTextMarkImportContext::StartElement(
 
 if (IsXMLToken(GetLocalName(), XML_BOOKMARK_START))
 {
-const OUString sHidden= xAttrList->getValueByName("loext:hidden");
-const OUString sCondition = 
xAttrList->getValueByName("loext:condition");
+const OUString sHidden= 
xAttrList->getOptionalValue(XML_ELEMENT(LO_EXT, XML_HIDDEN));
+const OUString sCondition = 
xAttrList->getOptionalValue(XML_ELEMENT(LO_EXT, XML_CONDITION));
 m_rHelper.setBookmarkAttributes(m_sBookmarkName, sHidden == "true", 
sCondition);
 }
 }
@@ -497,56 +498,42 @@ Reference 
XMLTextMarkImportContext::CreateAndInsertMark(
 }
 
 bool XMLTextMarkImportContext::FindName(
-SvXMLImport& rImport,
-const Reference & xAttrList)
+const Reference & xAttrList)
 {
 bool bNameOK = false;
 
 // find name attribute first
-const sal_Int16 nLength = xAttrList->getLength();
-for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
+for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-const sal_uInt16 nPrefix = rImport.GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
-   );
-
-if ( (XML_NAMESPACE_TEXT == nPrefix) &&
- IsXMLToken(sLocalName, XML_NAME)   )
-{
-m_sBookmarkName = xAttrList->getValueByIndex(nAttr);
-bNameOK = true;
-}
-else if ( (XML_NAMESPACE_XML == nPrefix) &&
- IsXMLToken(sLocalName, XML_ID)   )
-{
-m_sXmlId = xAttrList->getValueByIndex(nAttr);
-}
-else if ( XML_NAMESPACE_XHTML == nPrefix )
+OUString sValue = aIter.toString();
+switch(aIter.getToken())
 {
+case XML_ELEMENT(TEXT, XML_NAME):
+m_sBookmarkName = sValue;
+bNameOK = true;
+break;
+case XML_ELEMENT(XML, XML_ID):
+m_sXmlId = sValue;
+break;
 // RDFa
-if ( IsXMLToken( sLocalName, XML_ABOUT) )
-{
-m_sAbout = xAttrList->getValueByIndex(nAttr);
+case XML_ELEMENT(XHTML, XML_ABOUT):
+m_sAbout = sValue;
 m_bHaveAbout = true;
-}
-else if ( IsXMLToken( sLocalName, XML_PROPERTY) )
-{
-m_sProperty = xAttrList->getValueByIndex(nAttr);
-}
-else if ( IsXMLToken( sLocalName, XML_CONTENT) )
-{
-m_sContent = xAttrList->getValueByIndex(nAttr);
-}
-else if ( IsXMLToken( sLocalName, XML_DATATYPE) )
-{
-m_sDatatype = xAttrList->getValueByIndex(nAttr);
-}
-}
-else if ( (XML_NAMESPACE_FIELD == nPrefix) &&
- IsXMLToken(sLocalName, XML_TYPE)   )
-{
-m_sFieldName = xAttrList->getValueByIndex(nAttr);
+break;
+case XML_ELEMENT(XHTML, XML_PROPERTY):
+m_sProperty = sValue;
+break;
+case XML_ELEMENT(XHTML, XML_CONTENT):
+m_sContent = sValue;
+break;
+case XML_ELEMENT(XHTML, XML_DATATYPE):
+m_sDatatype = sValue;
+break;
+   

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

2020-11-30 Thread Noel Grandin (via logerrit)
 xmloff/source/text/XMLTrackedChangesImportContext.cxx |   24 ++
 xmloff/source/text/XMLTrackedChangesImportContext.hxx |6 +---
 2 files changed, 10 insertions(+), 20 deletions(-)

New commits:
commit 7f9215bb187f796537660e43ca6273c4fa5e28fa
Author: Noel Grandin 
AuthorDate: Mon Nov 30 20:17:34 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 1 07:58:28 2020 +0100

fastparser in XMLTrackedChangesImportContext

Change-Id: Ied0c76561e77d323d047d3000479e866358a06ed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106911
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/text/XMLTrackedChangesImportContext.cxx 
b/xmloff/source/text/XMLTrackedChangesImportContext.cxx
index fa29ed331d84..b08743a1d57f 100644
--- a/xmloff/source/text/XMLTrackedChangesImportContext.cxx
+++ b/xmloff/source/text/XMLTrackedChangesImportContext.cxx
@@ -45,30 +45,22 @@ 
XMLTrackedChangesImportContext::~XMLTrackedChangesImportContext()
 {
 }
 
-void XMLTrackedChangesImportContext::StartElement(
-const Reference & xAttrList )
+void XMLTrackedChangesImportContext::startFastElement( sal_Int32 /*nElement*/,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
 bool bTrackChanges = true;
 
 // scan for text:track-changes and text:protection-key attributes
-sal_Int16 nLength = xAttrList->getLength();
-for( sal_Int16 i = 0; i < nLength; i++ )
+for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(i),  );
-
-if ( XML_NAMESPACE_TEXT == nPrefix )
+if (aIter.getToken() == XML_ELEMENT(TEXT, XML_TRACK_CHANGES) )
 {
-if ( IsXMLToken( sLocalName, XML_TRACK_CHANGES ) )
+bool bTmp(false);
+if (::sax::Converter::convertBool(bTmp, aIter.toString()))
 {
-bool bTmp(false);
-if (::sax::Converter::convertBool(
-bTmp, xAttrList->getValueByIndex(i)) )
-{
-bTrackChanges = bTmp;
-}
+bTrackChanges = bTmp;
 }
+break;
 }
 }
 
diff --git a/xmloff/source/text/XMLTrackedChangesImportContext.hxx 
b/xmloff/source/text/XMLTrackedChangesImportContext.hxx
index 8a07d788cbed..cbef26c59cbf 100644
--- a/xmloff/source/text/XMLTrackedChangesImportContext.hxx
+++ b/xmloff/source/text/XMLTrackedChangesImportContext.hxx
@@ -24,7 +24,6 @@
 #include 
 #include 
 
-
 namespace com::sun::star {
 namespace xml::sax {
 class XAttributeList;
@@ -35,7 +34,6 @@ class XMLTrackedChangesImportContext : public 
SvXMLImportContext
 {
 public:
 
-
 XMLTrackedChangesImportContext(
 SvXMLImport& rImport,
 sal_uInt16 nPrefix,
@@ -43,8 +41,8 @@ public:
 
 virtual ~XMLTrackedChangesImportContext() override;
 
-virtual void StartElement(
-const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList 
) override;
+virtual void SAL_CALL startFastElement( sal_Int32 nElement,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& 
xAttrList ) override;
 
 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL 
createFastChildContext(
 sal_Int32 nElement, const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& AttrList ) override;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138313] MONTHS() function gives the wrong result

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138313

Justin L  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
Summary|MONTHS() function gives |MONTHS() function gives the
   |different results than  |wrong result
   |Excel   |

--- Comment #2 from Justin L  ---
Excel 2016 doesn't have the function "months", and I don't see any reference to
it on the Internet. It looks like a LO only function.

I certainly would not expect 12 months as a response to "how many months are
between Dec 2010 and Dec 2012". On the other hand, I can't imagine what that
third value could refer to except perhaps inclusive/exclusive of the days -  to
perhaps swing the value to 23 or 25 in the case of "interval".

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


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #81 from Tor Lillqvist  ---
"Roadmap"?

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


[Libreoffice-bugs] [Bug 34828] Navigator item "Draw objects" in Calc does not show Draw objects without name (Writer fixed in the mean time..)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34828

--- Comment #63 from Heiko Tietze  ---
(In reply to Jim Raykowski from comment #62)
> or just keep these all together in one patch as is already done?

No preference from my side here.

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


[Libreoffice-bugs] [Bug 119785] RTL: DOC: closing parenthesis is displayed as LTR in embedded document

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119785

--- Comment #12 from SamanthaPerkins  ---
Bug finding is the best technique for making your non-running code into the
running form. The code we write in https://aussiessayreviews.com/ is only
runnable when you will be able to find the bug. Bug removing is the most
important work which you can do.

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

2020-11-30 Thread Noel (via logerrit)
 xmloff/source/text/XMLChangeImportContext.cxx |   52 +-
 xmloff/source/text/XMLChangeImportContext.hxx |5 +-
 2 files changed, 30 insertions(+), 27 deletions(-)

New commits:
commit b794ea29531bce1e3972e88bbb80cd7c5ef89400
Author: Noel 
AuthorDate: Mon Nov 30 15:23:16 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 1 06:58:42 2020 +0100

fastparser in XMLChangeImportContext

Change-Id: I1d083a48caacb88e37ee2c669ec63c9b68cc664a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106869
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/text/XMLChangeImportContext.cxx 
b/xmloff/source/text/XMLChangeImportContext.cxx
index 44a942cbc3b1..6938c9cdf760 100644
--- a/xmloff/source/text/XMLChangeImportContext.cxx
+++ b/xmloff/source/text/XMLChangeImportContext.cxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using ::com::sun::star::uno::Reference;
 using ::com::sun::star::xml::sax::XAttributeList;
@@ -45,39 +46,40 @@ XMLChangeImportContext::~XMLChangeImportContext()
 {
 }
 
-void XMLChangeImportContext::StartElement(
-const Reference& xAttrList)
+void XMLChangeImportContext::startFastElement(
+sal_Int32 /*nElement*/,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
-sal_Int16 nLength = xAttrList->getLength();
-for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
+for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
-   );
-if ( (XML_NAMESPACE_TEXT == nPrefix) &&
- IsXMLToken( sLocalName, XML_CHANGE_ID ) )
+switch(aIter.getToken())
 {
-// Id found! Now call RedlineImportHelper
+case XML_ELEMENT(TEXT, XML_CHANGE_ID):
+{
+// Id found! Now call RedlineImportHelper
 
-// prepare parameters
-rtl::Reference rHelper =
-GetImport().GetTextImport();
-OUString sID = xAttrList->getValueByIndex(nAttr);
+// prepare parameters
+rtl::Reference rHelper =
+GetImport().GetTextImport();
+OUString sID = aIter.toString();
 
-//  is both start and end
-if (Element::START == m_Element || Element::POINT == m_Element)
-rHelper->RedlineSetCursor(sID, true, m_bIsOutsideOfParagraph);
-if (Element::END == m_Element || Element::POINT == m_Element)
-rHelper->RedlineSetCursor(sID, false, m_bIsOutsideOfParagraph);
+//  is both start and end
+if (Element::START == m_Element || Element::POINT == m_Element)
+rHelper->RedlineSetCursor(sID, true, 
m_bIsOutsideOfParagraph);
+if (Element::END == m_Element || Element::POINT == m_Element)
+rHelper->RedlineSetCursor(sID, false, 
m_bIsOutsideOfParagraph);
 
-// outside of paragraph and still open? set open redline ID
-if (m_bIsOutsideOfParagraph)
-{
-rHelper->SetOpenRedlineId(sID);
+// outside of paragraph and still open? set open redline ID
+if (m_bIsOutsideOfParagraph)
+{
+rHelper->SetOpenRedlineId(sID);
+}
+break;
 }
+// else: ignore
+default:
+XMLOFF_WARN_UNKNOWN("xmloff", aIter);
 }
-// else: ignore
 }
 }
 
diff --git a/xmloff/source/text/XMLChangeImportContext.hxx 
b/xmloff/source/text/XMLChangeImportContext.hxx
index 4f6f4de65187..4040cc0f2413 100644
--- a/xmloff/source/text/XMLChangeImportContext.hxx
+++ b/xmloff/source/text/XMLChangeImportContext.hxx
@@ -58,8 +58,9 @@ public:
 
 virtual ~XMLChangeImportContext() override;
 
-virtual void StartElement(
-const css::uno::Reference & xAttrList) 
override;
+virtual void SAL_CALL startFastElement(
+sal_Int32 nElement,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& 
xAttrList ) override;
 
 private:
 Element m_Element;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-11-30 Thread Noel (via logerrit)
 xmloff/source/text/XMLAutoMarkFileContext.cxx |   34 +-
 xmloff/source/text/XMLAutoMarkFileContext.hxx |5 ++-
 2 files changed, 21 insertions(+), 18 deletions(-)

New commits:
commit 6b95a41ef585803aa1c242ddfbcc50302a10b198
Author: Noel 
AuthorDate: Mon Nov 30 15:21:00 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Dec 1 06:58:26 2020 +0100

fastparser in XMLAutoMarkFileContext

Change-Id: I6ede5fb202d1667cbfbe1b200509e1b6e4b0d4c2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106868
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/xmloff/source/text/XMLAutoMarkFileContext.cxx 
b/xmloff/source/text/XMLAutoMarkFileContext.cxx
index 7cd58f4fe01b..f5968308b339 100644
--- a/xmloff/source/text/XMLAutoMarkFileContext.cxx
+++ b/xmloff/source/text/XMLAutoMarkFileContext.cxx
@@ -27,6 +27,7 @@
 #include 
 #include 
 #include 
+#include 
 
 
 using ::com::sun::star::uno::Any;
@@ -52,30 +53,31 @@ XMLAutoMarkFileContext::~XMLAutoMarkFileContext()
 }
 
 
-void XMLAutoMarkFileContext::StartElement(
-const Reference & xAttrList)
+void XMLAutoMarkFileContext::startFastElement(
+sal_Int32 /*nElement*/,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
 // scan for text:alphabetical-index-auto-mark-file attribute, and if
 // found set value with the document
 
-sal_Int16 nLength = xAttrList->getLength();
-for( sal_Int16 i = 0; i < nLength; i++ )
+for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(i),  );
-
-if ( ( XML_NAMESPACE_XLINK == nPrefix ) &&
- IsXMLToken(sLocalName, XML_HREF) )
+switch(aIter.getToken())
 {
-Any aAny;
-aAny <<= GetImport().GetAbsoluteReference( 
xAttrList->getValueByIndex(i) );
-Reference xPropertySet(
-GetImport().GetModel(), UNO_QUERY );
-if (xPropertySet.is())
+case XML_ELEMENT(XLINK, XML_HREF):
 {
-xPropertySet->setPropertyValue( "IndexAutoMarkFileURL", aAny );
+Any aAny;
+aAny <<= GetImport().GetAbsoluteReference( aIter.toString() );
+Reference xPropertySet(
+GetImport().GetModel(), UNO_QUERY );
+if (xPropertySet.is())
+{
+xPropertySet->setPropertyValue( "IndexAutoMarkFileURL", 
aAny );
+}
+break;
 }
+default:
+XMLOFF_WARN_UNKNOWN("xmloff", aIter);
 }
 }
 }
diff --git a/xmloff/source/text/XMLAutoMarkFileContext.hxx 
b/xmloff/source/text/XMLAutoMarkFileContext.hxx
index 0bb621d59bfb..0165e04b7122 100644
--- a/xmloff/source/text/XMLAutoMarkFileContext.hxx
+++ b/xmloff/source/text/XMLAutoMarkFileContext.hxx
@@ -43,8 +43,9 @@ public:
 
 protected:
 
-virtual void StartElement(
-const css::uno::Reference & xAttrList) 
override;
+virtual void SAL_CALL startFastElement(
+sal_Int32 nElement,
+const css::uno::Reference< css::xml::sax::XFastAttributeList >& 
xAttrList ) override;
 };
 
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138200] PRINT DIALOG: Please remove deleted printers

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138200

Michael Weghorn  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #9 from Michael Weghorn  ---
(In reply to Todd from comment #6)
> All the printers are local printers
> 
> The problem seems to only be associated with long printer names that are
> only different at the end of the name.
> 
> I created a printer called MickyMouse and Writer picked it up and dumped it
> after I deleted it.
> 
> So, I seems that you may need to increase the string (array of characters)
> you are using to read in the printer names.  But that does not explain why
> you hold on to a defunct name, unless the comparison between old names and
> new names is also not being done on enough characters.

Since other applications show the same issue, and LibreOffice retrieves the
printers from CUPS, I'd be surprised if this was actually a LO problem and not
something on a lower level.

However, I'll be happy to test this further.
Can you give exact steps how to reproduce the issue? Can you reproduce this by
setting up a new local printer with a certain name and then delete it?

At a quick glance, LO uses 'cupsGetDests2' from the CUPS library to retrieve
available printers [1].

Can you run the attached sample program and paste the output here. It also uses
'cupsGetDests2' to retrieve and list printers (but might use different
parameters from what LO does, so the output may vary).

Also, do you have CPD (Common Printing dialog) libraries installed? (In this
case, LibreOffice uses those to retrieve printers instead.)



[1]
https://opengrok.libreoffice.org/xref/core/vcl/unx/generic/printer/cupsmgr.cxx?r=6fc2a300#241

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


[Libreoffice-bugs] [Bug 138200] PRINT DIALOG: Please remove deleted printers

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138200

--- Comment #8 from Michael Weghorn  ---
Created attachment 167702
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167702=edit
Sample program to list printers (binary)

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


[Libreoffice-bugs] [Bug 138200] PRINT DIALOG: Please remove deleted printers

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138200

--- Comment #7 from Michael Weghorn  ---
Created attachment 167701
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167701=edit
Sample program to list printers

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


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #80 from Alexander Barris  ---
(In reply to Tor Lillqvist from comment #79)
> Btw, for some experimentation code, see
> https://bugs.documentfoundation.org/show_bug.cgi?id=122218#c219 .
> 
> (In general, for anybody seriously pondering investigating and fixing this,
> it probably is a good idea to read through that bug, but yeah, not all
> comments are very informative.)

Is this on the roadmap to get solved in LO 7.1?

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


[Libreoffice-bugs] [Bug 138589] Brazilian Portuguese grammar check is not working properly

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138589

Ming Hua  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=66
   ||043
 CC||ming.v@qq.com

--- Comment #1 from Ming Hua  ---
This is likely not specific to Brazilian Portuguese linguistic tools.  The
track change feature is known to interfere with spellcheckers, see bug 66043.

So this may be a duplicate, I haven't read both bug reports carefully enough to
decide.

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


[Libreoffice-bugs] [Bug 66043] EDITING: Spellchecking tracked and shown changes - erratic underlining

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66043

Ming Hua  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 138590] Not editing the style selected from dropdown, editing the one selected in text instead

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138590

--- Comment #1 from tomas...@gmail.com ---
Of course you have to have some text with the respective styles applied on
them.

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


[Libreoffice-bugs] [Bug 138590] New: Not editing the style selected from dropdown, editing the one selected in text instead

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138590

Bug ID: 138590
   Summary: Not editing the style selected from dropdown, editing
the one selected in text instead
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tomas...@gmail.com

Description:
The other fields say it clearly.

Steps to Reproduce:
Say I have e.g. "heading 1" and "body text" style in my document. I want to
edit the "body text" style from the dropdown, but the text cursor is on the
"heading 1" style.

Actual Results:
When I have my cursor placed on the "heading 1" and choose to edit "body text"
from the dropdown, the opened dialog belong to the "heading 1" style.
(Basically, any style with currently placed cursor is edited, not the one you
want.)

Expected Results:
I can edit any style regardless what is selected in text or where the cursor
is.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: default; VCL: win
Locale: cs-CZ (cs_CZ); UI: cs-CZ
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 138578] View > Freeze Cells menu is empty

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138578

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 138207] Crash in: sclo.dll

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138207

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 136843] Master Background / Master Objects options revert upon re-opening document

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136843

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 136717] Quite some activity on undo deleting a (large) table

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136717

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 138272] No snap when drawing circular arcs from centre point

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138272

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 138269] Freezes on the screen

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138269

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 138268] Writer: Tab Order is not exported correctly to pdf

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138268

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 138267] SNAP for LibreOffice on Raspberry Pi / Raspian OS

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138267

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 138261] TABLE: Cell border width is different for horizontal and vertical sides.

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138261

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 138262] passing arrays to IRR

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138262

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 138260] Can't select German language when it is not the default language

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138260

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 138259] Tools>Language>For All Text change default languages for all documents

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138259

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 138255] UI: Input spinner for go to page dialog

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138255

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 138254] MAIL MERGE WIZARD DIALOG: Wrong link to help page

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138254

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 138249] FORMATTING: Font color style change breaks when reverting to automatic color

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138249

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 138564] Crash in: mergedlo.dll

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138564

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 138564] Crash in: mergedlo.dll

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138564

--- Comment #3 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 138393] Calc automatically evaluates arguments of if() function

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

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 138393] Calc automatically evaluates arguments of if() function

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

--- Comment #7 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 134736] Draw PDF export duplicates, resizes and misplaces images

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134736

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 134736] Draw PDF export duplicates, resizes and misplaces images

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134736

--- Comment #9 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 133531] Crash on undo after paste of external copy

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133531

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 133531] Crash on undo after paste of external copy

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133531

--- Comment #7 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 132345] Dashed lines not shown correctly

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132345

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132345] Dashed lines not shown correctly

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132345

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 128181] protection of a text makes it no longer readable by microsoft

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128181

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 128181] protection of a text makes it no longer readable by microsoft

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128181

--- Comment #14 from QA Administrators  ---
Dear Marti Claude,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 133618] FORMATTING: Graph Edit Y-Axis range

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133618

--- Comment #2 from QA Administrators  ---
Dear Toshihiro Tada,

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 138200] PRINT DIALOG: Please remove deleted printers

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138200

Todd  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 133531] Crash on undo after paste of external copy

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133531

--- Comment #6 from Wil Hostman  ---
I cannot legally provide any of the PDFs that do so - they are copyrighted
content.
However, they include the Legend of the Five Rings RPG rulebook PDF (purchased
on DriveThruRPG.com), and the Stargate SG-1 Beta from
https://stargatetherpg.com/files/file/16-stargate-rpg-public-beta-rules/

More than a dozen other PDFs have done so. (Most of them purchased through
DriveThru RPG.com)

The trigger is copying styled text, then pasting it into a table, then using a
control-z to undo. It's not entirely consistent, but it has been especially
troublesome with tables using the area select in Acrobat Reader (current
edition).

Note that this bug has happened under both Mac OS X 10.14 and Win 10.

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


[Libreoffice-bugs] [Bug 138589] New: Brazilian Portuguese grammar check is not working properly

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138589

Bug ID: 138589
   Summary: Brazilian Portuguese grammar check is not working
properly
   Product: LibreOffice
   Version: 7.0.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcse...@yahoo.com.br

Description:
The grammar check tools are not working properly for the Brazilian Portuguese
dictionary of the Writer when I use the resources for tracking changes. When we
hide the changes (with the "tracking changes" option enabled, the tool still
takes the hidden characters into account when pointing out which words are
mispelled. Sorry if I'm not using the correct name of the features. That's
because I use the translated version. 

Steps to Reproduce:
1.With "Brazilian Portuguese" selected as the default language, write the word
"cerrto".
2. Enable the "Record Changes" function and erase one of the "r".
3. Disable "Show Track Changes".

Actual Results:
Though the word is now correct ("certo"), it will be underlined in red, because
the Writer still takes the erased "r" into account.

Expected Results:
The word "certo" should not be underlined, because it's a common word from
Brazilian Portuguese.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
I use the tiles interface ("Em abas"), that looks similar to Word interface,
but I believe I experienced the trouble also with the standard interface.

Version: 7.0.2.2 (x64)
Build ID: 8349ace3c3162073abd90d81fd06dcfb6b36b994
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: pt-BR (pt_BR); Interface: pt-BR
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 138588] New: it is can not make duplication (copy) Zotero citation.

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138588

Bug ID: 138588
   Summary: it is can not make duplication (copy) Zotero
citation.
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdor...@gmail.com

Description:
Why such simple stuff cause such many pain? Could someone explain why it is
impossible copy-and-paste a citation in same document? Is it very hard to fix
notorious the copying referencemarks ten years old bug? MS Word works like a
charm with Zotero (and any other) bibliography, but opensource LO and
opensource Zotero can't do this very simple stuff copying the citation from one
place to other in the same document. Can anyone give a description what needs
to be done to make this simple function work?


Steps to Reproduce:
1. Add Zotero citation
2. Copy and paste the inserted cite


Actual Results:
The insertion is a plain text, so it is more impossible to edit the cite.

Expected Results:
The insertion is a referencemark and allow edit the cite.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.3.1
Build ID: 00(Build:1)
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ru-RU (ru_RU.UTF-8); ИП: ru-RU
Ubuntu package version: 1:7.0.3-0ubuntu0.20.04.1
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 138587] New: Using the navigator upsets optimal zoom setting

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138587

Bug ID: 138587
   Summary: Using the navigator upsets optimal zoom setting
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: demoss.matt...@gmail.com

Description:
double-clicking any navigator heading scrolls the view-port left, upsetting the
"optimal" zoom setting.

Steps to Reproduce:
1) Set optimal zoom, all text is visible. nice. 
2) Use navigator, double click a heading. Now the view is scrolled left and all
text is no longer visible. Not nice.

Actual Results:
Using the navigator scrolls the view left.

Expected Results:
The "optimal" "zoom factor" setting should persist while using the navigator.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.3.1
Build ID: 00(Build:1)
CPU threads: 4; OS: Linux 5.9; UI render: default; VCL: gtk3
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 138439] CTRL key (used alone) causes LibreOffice Writer pages to zoom out repeatedly

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138439

--- Comment #2 from Jackie  ---
Yes, I discovered after reporting the problem that the issue was indeed the
keyboard. 

Thank you for your response. 

Resolved.

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


[Libreoffice-bugs] [Bug 34828] Navigator item "Draw objects" in Calc does not show Draw objects without name (Writer fixed in the mean time..)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34828

--- Comment #62 from Jim Raykowski  ---
(In reply to Heiko Tietze from comment #61)

> Awesome! I assume renaming "Shape 1 (Circle)" not to shape1 but again "Shape
> 1 (Circle)" makes it also a user-named object. Does it?

I didn't test this case until you mentioned it. Indeed it does make it a
user-named object. Automatic unnamed object naming appears to work as expected
after doing so.

Patchset 8 makes the Draw/Impress Navigator list all shapes by default.

Possibly this patch should be split into four parts,
1) Writer and Calc drawing object automatic naming.
2) Draw/Impress unnamed shape name (shape type) is appended.
3) Draw/Impress Navigator unnamed shape object selection selects shape object
in the document.
4) Draw/Impress Navigator list all shapes by default.
or just keep these all together in one patch as is already done?

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


[Libreoffice-bugs] [Bug 138200] PRINT DIALOG: Please remove deleted printers

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138200

--- Comment #6 from Todd  ---
(In reply to Michael Weghorn from comment #5)
> (In reply to Todd from comment #4)
> > > (On Linux, LibreOffice retrieves printer once on startup, so changes after
> > > that only show up after restarting it.)
> > 
> > I suspect LO has a cache of printers that LO adds to be does not overwrite
> 
> Not that I know (but I didn't double-check so far), as far as I know, LO
> just retrieves them from CUPS.
> 
> In comment 2, you mention that other printers also still show them.
> 
> Interestingly, all of the printers have an '_rn6' suffix. Are those possibly
> remote printers shared on the network, e.g. from some other host (maybe
> called 'rn6') and advertised e.g. using DNS-SD/Bonjour?
> 
> Do you have cups-browsed installed and running? If so, do the printers still
> show up after disabling it?

All the printers are local printers

The problem seems to only be associated with long printer names that are only
different at the end of the name.

I created a printer called MickyMouse and Writer picked it up and dumped it
after I deleted it.

So, I seems that you may need to increase the string (array of characters) you
are using to read in the printer names.  But that does not explain why you hold
on to a defunct name, unless the comparison between old names and new names is
also not being done on enough characters.

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


[Libreoffice-bugs] [Bug 138424] calc: calculation: rounding of results: bad influence of unspecific rounding if terms in different dyadic ranges

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138424

--- Comment #1 from Eike Rathke  ---
(In reply to b. from comment #0)
> calc doe's some 'tie to zero' rounding, acc. @erAck intended for integer
> values but imho affecting all calculations, 
I never said the tie to zero was intended for integer values.

Otherwise agree, that should be reworked.

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


[Libreoffice-bugs] [Bug 138220] calc: calculation: roundup: rounddown: fail in 7.1 alpha

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138220

--- Comment #3 from Eike Rathke  ---
Input of
=ROUNDUP(-999.129994;11)
results in -999.13 and the formula expression becomes
=ROUNDUP(-999.13;11)
If you force a 0. number format the resulting -999.1310 is
a display string conversion problem, not a wrong calculation.

Input of
=ROUNDDOWN(-999.129994;11)
results in -999.13 and the formula expression becomes
=ROUNDDOWN(-999.13;11)

The input of -999.129994 can't be represented in IEEE-754 double
floating-point and yields -999.13

The nearest representable value of -999.129994 is
-999.1254525264911353588104248046875 with a raw hex value of
c08f390a3d70a3d7 (binary exponent.mantissa
-100111.001101000010111101000010111) which is the same
nearest value as for -999.13
Do not expect rounding down to whatever decimals would yield any
-999.129990

This is no way "critical, data corruption", it is how IEEE-754 double
floating-point works.

I also get no different results in 6.1.6 apart from that the forced 12 decimals
formatted string for the first case is -999.1300

@zcrhonek: what and how did you test there to get to the bisected result?

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


[Libreoffice-bugs] [Bug 138578] View > Freeze Cells menu is empty

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138578

m.a.riosv  changed:

   What|Removed |Added

Version|7.2.0.0.alpha0+ Master  |7.1.0.0.alpha0+
   Keywords||regression

--- Comment #2 from m.a.riosv  ---
Repro also
Version: 7.1.0.0.beta1 (x64)
Build ID: 828a45a14a0b954e0e539f5a9a10ca31c81d8f53
CPU threads: 4; OS: Windows 10.0 Build 20180; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL

But not with:
Version: 7.0.4.0.0+ (x64)
Build ID: e5b019d12043712c2d2a5ac424102e9861d21ad2
CPU threads: 4; OS: Windows 10.0 Build 20180; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); 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 138578] View > Freeze Cells menu is empty

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138578

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Repro
Version: 7.2.0.0.alpha0+ (x64)
Build ID: f7e2f5bca938aa916830e07895d2da6820282055
CPU threads: 4; OS: Windows 10.0 Build 20180; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); 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 138549] EDITING Undo Filter results in LO crashes (also a scPostIt problem?)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138549

raal  changed:

   What|Removed |Added

 CC||caol...@redhat.com,
   ||r...@post.cz
 Status|NEEDINFO|NEW

--- Comment #10 from raal  ---
(In reply to stefan_lange...@t-online.de from comment #9)
> I have made further tests with both LO 7.0.4.1 and LOdev 7.1.0.0.beta1. In
> Standard Mode and in Safe Mode I can reproduce crashes on a simple way:
> - open attached test document "altix_Nummern_Test_Undo_Filter_V1_klein.ods"
> - move mouse cursor over a cell with a comment that comment is be shown
> --> Undo is available although nothing was changed (!)
> - Undo --> LO crashes
> 

bisected to c06327b2cfa710864ed42e998fa06e5409b98e0f is the first bad commit
commit c06327b2cfa710864ed42e998fa06e5409b98e0f
Author: Norbert Thiebaud 
Date:   Thu Nov 19 01:06:13 2020 -0800

source sha:2f7b5634487ac3d2ab12a57089e71ea5216d

https://gerrit.libreoffice.org/c/core/+/106069
Resolves: tdf#114956 skip broadcast optimization for ScPostIts

Adding CC to Caolán McNamara

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


[Libreoffice-bugs] [Bug 138526] Image missing for new Formats Only option

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #5 from Eike Rathke  ---
Copying number formats works for me. From styles and hard attribution.

-- 
You are receiving this mail because:
You 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 138526] Image missing for new Formats Only option

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #5 from Eike Rathke  ---
Copying number formats works for me. From styles and hard attribution.

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


[Libreoffice-bugs] [Bug 137690] Cannot apply custom style to body text

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137690

m.a.riosv  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #8 from m.a.riosv  ---
There is a simple way to do it. It was explained in comment#4. To have a
precedence it's unavoidable. And every one wants the program working in the way
they like, that's no possible.

So sure it is not a 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-commits] core.git: sc/source

2020-11-30 Thread Stephan Bergmann (via logerrit)
 sc/source/ui/view/cellsh1.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4e63ec27b69fa01ff610c894c9fbf05c377a6179
Author: Stephan Bergmann 
AuthorDate: Mon Nov 30 22:16:15 2020 +0100
Commit: Stephan Bergmann 
CommitDate: Mon Nov 30 22:59:37 2020 +0100

Fix stack-use-after-return

...introduced with 244a447734d2abae8896884d4ab73eb4510d243c "Make Pivot 
table
data source dialog async", as seen e.g. during UITest_calc_tests8:

> ==1217030==ERROR: AddressSanitizer: stack-use-after-return on address 
0x7f06d7133444 at pc 0x7f069f0cb613 bp 0x7ffe24058430 sp 0x7ffe24058428
> WRITE of size 2 at 0x7f06d7133444 thread T0
>  #0 in ScAddress::operator=(ScAddress const&) at sc/inc/address.hxx:415:10
>  #1 in ScCellShell::ExecuteDataPilotDialog()::$_4::operator()(int) const 
at sc/source/ui/view/cellsh1.cxx:3014:42
>  #2 in void std::__invoke_impl(std::__invoke_other, 
ScCellShell::ExecuteDataPilotDialog()::$_4&, int&&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/invoke.h:60:14
>  #3 in std::enable_if, void>::type 
std::__invoke_r(ScCellShell::ExecuteDataPilotDialog()::$_4&, int&&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/invoke.h:110:2
>  #4 in std::_Function_handler::_M_invoke(std::_Any_data const&, 
int&&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/std_function.h:291:9
>  #5 in std::function::operator()(int) const at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/std_function.h:560:9
>  #6 in Dialog::EndDialog(long) at vcl/source/window/dialog.cxx:1137:9
>  #7 in Dialog::ResponseHdl(Button*) at vcl/source/window/dialog.cxx:1391:5
>  #8 in Dialog::LinkStubResponseHdl(void*, Button*) at 
vcl/source/window/dialog.cxx:1376:1
>  #9 in Link::Call(Button*) const at 
include/tools/link.hxx:111:45
>  #10 in Button::Click()::$_0::operator()() const at 
vcl/source/control/button.cxx:124:87
>  #11 in void std::__invoke_impl(std::__invoke_other, Button::Click()::$_0&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/invoke.h:60:14
>  #12 in std::enable_if, 
void>::type std::__invoke_r(Button::Click()::$_0&) 
at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/invoke.h:110:2
>  #13 in std::_Function_handler::_M_invoke(std::_Any_data const&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/std_function.h:291:9
>  #14 in std::function::operator()() const at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/std_function.h:560:9
>  #15 in Control::ImplCallEventListenersAndHandler(VclEventId, 
std::function const&) at vcl/source/control/ctrl.cxx:315:13
>  #16 in Button::Click() at vcl/source/control/button.cxx:124:5
>  #17 in ButtonUIObject::execute(rtl::OUString const&, 
std::__debug::map, std::allocator > > 
const&) at vcl/source/uitest/uiobject.cxx:614:19
>  #18 in UIObjectUnoObj::executeAction(rtl::OUString const&, 
com::sun::star::uno::Sequence 
const&)::$_0::operator()() const at 
vcl/source/uitest/uno/uiobject_uno.cxx:124:16
>  #19 in void std::__invoke_impl 
const&)::$_0&>(std::__invoke_other, UIObjectUnoObj::executeAction(rtl::OUString 
const&, com::sun::star::uno::Sequence 
const&)::$_0&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/invoke.h:60:14
>  #20 in std::enable_if 
const&)::$_0&>, void>::type std::__invoke_r 
const&)::$_0&>(UIObjectUnoObj::executeAction(rtl::OUString const&, 
com::sun::star::uno::Sequence 
const&)::$_0&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/invoke.h:110:2
>  #21 in std::_Function_handler 
const&)::$_0>::_M_invoke(std::_Any_data const&) at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/std_function.h:291:9
>  #22 in std::function::operator()() const at 
~/gcc/trunk/inst/lib/gcc/x86_64-pc-linux-gnu/11.0.0/../../../../include/c++/11.0.0/bits/std_function.h:560:9
>  #23 in (anonymous namespace)::ExecuteWrapper::ExecuteActionHdl(Timer*) 
at vcl/source/uitest/uno/uiobject_uno.cxx:83:13
>  #24 in (anonymous 
namespace)::ExecuteWrapper::LinkStubExecuteActionHdl(void*, Timer*) at 
vcl/source/uitest/uno/uiobject_uno.cxx:78:1
>  #25 in Link::Call(Timer*) const at 
include/tools/link.hxx:111:45
>  #26 in Timer::Invoke() at vcl/source/app/timer.cxx:75:21
>  #27 in Scheduler::ProcessTaskScheduling() at 
vcl/source/app/scheduler.cxx:486:20
>  #28 in Scheduler::CallbackTaskScheduling() at 
vcl/source/app/scheduler.cxx:288:5
>  #29 in SalTimer::CallCallback() at vcl/inc/saltimer.hxx:54:13
>  #30 in SvpSalInstance::CheckTimeout(bool) at 

[Libreoffice-bugs] [Bug 134736] Draw PDF export duplicates, resizes and misplaces images

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134736

--- Comment #8 from Geza  ---
I tried to export the enclosed ML3.odg and ML4.odg files and got the same
result as with LibreOffice 6.4.4.2.
I noticed however that the output is wrong only when the Archive PDF/A-1b was
selected in the pdf export dialog. Selecting another PDF/A version or
unchecking the Archive checkbox creates correct pdf files.

macOS 10.15.7
LibreOffice 7.0.3.1

While trying to reproduce the issue with small jpg images I also found that the
problem occurs only when the image rotated by 90 degrees (partly or in whole)
overlaps the other image.
Repro: 
1. place a larger (512px) jpg image in the center of the page
2. place another, smaller (256px) jpg image also in the center of the page,
overlapping the first one.
3. in the Properties/Position and Size set the rotation of the second image to
90 degrees.
4. export to pdf, use Archive PDF/A-1b
You receive a warning saying "Some objects were converted to an image in order
to remove transparencies, because the target PDF format does not support
transparencies..." Possibly the rotation created some transparent object from
the opaque jpg-s.
The resulted pdf will contain the first, not rotated image perfectly, but in
the upper left corner you will get the expected result (two images overlapping)
but in smaller size.
Disabling Archive or choosing another archive format will fix the issue.
Hope this helps.

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


[Libreoffice-bugs] [Bug 138554] FORMATTING: Loss of "smart" apostrophes (quotation marks) after upgrade from Linux Mint 19.1 to Linux Mint 20

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138554

Bob  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #4 from Bob  ---
Julien Nabet gave me the correct solution, which is to move the LO user profile
to a new directory and establish a new user profile by running LO again. Julien
was very patient with me, and he helped me correct the problem.Thank you!!

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


[Libreoffice-bugs] [Bug 103863] Enhancement request: Chart title/label from spreadsheet cell (i.e., dynamic instead of fixed value)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103863

--- Comment #5 from gyd...@gmail.com ---
Please implement this enhancement!

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


[Libreoffice-bugs] [Bug 138586] New: Writer: Column Mode is Chopping off Characters

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138586

Bug ID: 138586
   Summary: Writer: Column Mode is Chopping off Characters
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shheus...@hotmail.com

When using columns within Writer characters at the beginning of the column
chops after first character for all columns after the first one.

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


[Libreoffice-bugs] [Bug 138570] Ne pas utiliser de majuscules accentuées dans les noms des lettres grecques de l'éditeur d'équation

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138570

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Hardware|x86-64 (AMD64)  |All
 Resolution|--- |DUPLICATE
 OS|All |Windows (All)

--- Comment #2 from Jean-Baptiste Faure  ---
I think that the correct solution is the solution proposed by bug 32415 : Add
an option to use English names for Greek characters on Math.

If we translate the Greek character names, we must translate then correctly.
If we don't translate them, we force the user to learn the English names of
Greek characters.

I think that this problem of accented capitalization cannot be solved using
translation because %OMÉGA and %OMEGA must both be accepted by the software if
it accepts %OMEGA.

Set OS to Windows because there is no problem with accented capitalization
under Linux and (I guess) MacOS.

Best regards. JBF

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

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


[Libreoffice-bugs] [Bug 138585] Language change not stored if not applied to character

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138585

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||heiko.tietze@documentfounda
   ||tion.org

--- Comment #2 from Telesto  ---
Did I bring this up already?

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


[Libreoffice-bugs] [Bug 138585] Language change not stored if not applied to character

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138585

--- Comment #1 from Telesto  ---
Created attachment 167700
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167700=edit
Example 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 138585] New: Language change not stored if not applied to character

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138585

Bug ID: 138585
   Summary: Language change not stored if not applied to character
   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:
Language change not stored if not applied to character

Steps to Reproduce:
1. Open the attached file
2. Place cursor after English
3. Switch the language to Dutch
4. Save
5. File reload
6. Place cursor after English

Actual Results:
English back after Dutch being set

Expected Results:
Ideally Dutch


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64)
Build ID: 32fdb8eb3506bc8dcf013cc713fe8e5debceb940
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 138549] EDITING Undo Filter results in LO crashes (also a scPostIt problem?)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138549

--- Comment #9 from stefan_lange...@t-online.de  
---
(In reply to stefan_lange...@t-online.de from comment #5)
> (In reply to Xisco Faulí from comment #1)
> > is this a duplicate of bug 138428 ??
> 
> I am not sure, if it is a duplicate or not:
> 
> I have tested with several documents with recent builds of LO and LOdev
> (LOdev 7.0.5.0, LOdev 7.1.0.0.beta1, LOdev 7.2.0.0.alpha0 and rc1 LO
> 7.0.4.1). Not always LO crashes, but the chance for a crash is about 4:1. 
> 
> Indication for a duplicate is the fact that occasionally LO still crashes
> (chance 50:50) when I make tests as you have described in your description
> of bug 138428, although this bug should be fixed already.

I have made further tests with both LO 7.0.4.1 and LOdev 7.1.0.0.beta1. In
Standard Mode and in Safe Mode I can reproduce crashes on a simple way:
- open attached test document "altix_Nummern_Test_Undo_Filter_V1_klein.ods"
- move mouse cursor over a cell with a comment that comment is be shown
--> Undo is available although nothing was changed (!)
- Undo --> LO crashes

Maybe this is a hint that the bug is a duplicate and also a hint that bug
138428 still isn't fixed completely.

In LO 7.0.3.1 the problem "Undo activated when comment is shown by mouse move"
doesn't exist.

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


[Libreoffice-bugs] [Bug 138584] Language change, because of replacing letter

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138584

Telesto  changed:

   What|Removed |Added

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

--- Comment #2 from Telesto  ---
We surely have discussed this before related to or bold formatting or font type
or something else.. found them: bug 132952 bug 132891 

However will bring it to attention again :P

To create from scratch
1. Open Writer
2. Set spell checker to Dutch (or use Dutch locale)
3. Type Engels
4. Press Space
5. Switch to English in the status bar
6. Type english (lowercaps)
7. Place cursor after e in English
8. Press Backspace
9. Press E

Alternative
1. Open Writer
2. Set spell checker to Dutch (or use Dutch locale)
3. Type Engels
4. Press Space
5. Switch to English in the status bar
6. Type english (lowercaps)
7. Double click english
8. Switch language to Englsih
9. Backspace e
10. Type E 

No you have English with multiple languages

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


[Libreoffice-bugs] [Bug 138549] EDITING Undo Filter results in LO crashes (also a scPostIt problem?)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138549

--- Comment #8 from stefan_lange...@t-online.de  
---
(In reply to Xisco Faulí from comment #1)
> is this a duplicate of bug 138428 ??

I have made further tests with both LO 7.0.4.1 and LOdev 7.1.0.0.beta1. In
Standard Mode and in Safe Mode I can reproduce crashes on a simple way:
- open attached test document "altix_Nummern_Test_Undo_Filter_V1_klein.ods"
- move mouse cursor over a cell with a comment that comment is be shown
--> Undo is available although nothing was changed (!)
- Undo --> LO crashes

Maybe this is a hint that the bug is a duplicate and also a hint that bug
138428 still isn't fixed completely.

In LO 7.0.3.1 the problem "Undo activated when comment is shown by mouse move"
doesn't exist.

-- 
You are receiving this mail because:
You 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 138584] Language change, because of replacing letter

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138584

Telesto  changed:

   What|Removed |Added

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

--- Comment #2 from Telesto  ---
We surely have discussed this before related to or bold formatting or font type
or something else.. found them: bug 132952 bug 132891 

However will bring it to attention again :P

To create from scratch
1. Open Writer
2. Set spell checker to Dutch (or use Dutch locale)
3. Type Engels
4. Press Space
5. Switch to English in the status bar
6. Type english (lowercaps)
7. Place cursor after e in English
8. Press Backspace
9. Press E

Alternative
1. Open Writer
2. Set spell checker to Dutch (or use Dutch locale)
3. Type Engels
4. Press Space
5. Switch to English in the status bar
6. Type english (lowercaps)
7. Double click english
8. Switch language to Englsih
9. Backspace e
10. Type E 

No you have English with multiple languages

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


[Libreoffice-bugs] [Bug 138584] Language change, because of replacing letter

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138584

--- Comment #1 from Telesto  ---
Created attachment 167699
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167699=edit
Example 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 138584] New: Language change, because of replacing letter

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138584

Bug ID: 138584
   Summary: Language change, because of replacing letter
   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:
Language change, because of replacing letter

Steps to Reproduce:
1. Open the attached file
2. Place cursor after the E of english
3. Backspace
4. Type English

Actual Results:
E will be set to Dutch

Expected Results:
Typing backspace E shouldn't affect they language


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64)
Build ID: 32fdb8eb3506bc8dcf013cc713fe8e5debceb940
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 137690] Cannot apply custom style to body text

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137690

medmedin2014  changed:

   What|Removed |Added

 Resolution|NOTABUG |---
 Status|RESOLVED|REOPENED

--- Comment #7 from medmedin2014  ---
Why not a bug ? it's annoying bug and direct formatting should not persists
when a style is applied.

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


[Libreoffice-bugs] [Bug 138554] FORMATTING: Loss of "smart" apostrophes (quotation marks) after upgrade from Linux Mint 19.1 to Linux Mint 20

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138554

Julien Nabet  changed:

   What|Removed |Added

 OS|other   |Linux (All)

--- Comment #3 from Julien Nabet  ---
Screenshot isn't related to profile, if you read the link I provided, you got
there:
https://wiki.documentfoundation.org/UserProfile#GNU.2FLinux

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


[Libreoffice-bugs] [Bug 138417] Crash when customizing sidebar tab bar

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138417

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 CC||caol...@redhat.com

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

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

author  Caolán McNamara 2020-11-12 20:48:50 +
committer   Caolán McNamara 2020-11-20 21:07:56
+0100
commit  75b9109a2da35cf0f0914504145d84cf918c6af2 (patch)
treece444db75d6f2282e86d86c89c0cce66ab937c8d
parent  94ea1c89e959069aa7c735317470712012df2362 (diff)
weld TabBar

Bisected with: bibisect-linux64-7.1

Adding Cc: to Caolán McNamara

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


[Libreoffice-bugs] [Bug 138583] General I/O error when opening an RTF document

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138583

Andrej Shadura  changed:

   What|Removed |Added

 Attachment #167698|document LibreOffice fails  |the document LibreOffice
description|to open |fails to open

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


[Libreoffice-bugs] [Bug 138583] General I/O error when opening an RTF document

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138583

--- Comment #1 from Andrej Shadura  ---
Created attachment 167698
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167698=edit
document LibreOffice fails to open

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


[Libreoffice-bugs] [Bug 138583] New: General I/O error when opening an RTF document

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138583

Bug ID: 138583
   Summary: General I/O error when opening an RTF document
   Product: LibreOffice
   Version: 7.0.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andrew.shad...@collabora.co.uk

Description:
The Slovak job office publishes a form at this webpage:
https://www.upsvr.gov.sk/vzory-ziadosti/vzory-ziadosti-pre-oblast-sluzieb-zamestnanosti.html?page_id=13141
The direct link to the form:
https://www.upsvr.gov.sk/buxus/docs/SSZ/OISS/ziadost_o_zaradenie_do_evidencie_UoZ.rtf

When I attempt to open it in LibreOffice, it gives me a General I/O error and
closes.

Steps to Reproduce:
1. Open the file
2. Observe the error message.
3. Click OK.

Actual Results:
LibreOffice closes.

Expected Results:
LibreOffice shows the document.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.2.2
Build ID: 00(Build:2)
CPU threads: 4; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-GB (en_GB.UTF-8); UI: en-US
Ubuntu package version: 1:7.0.2-0ubuntu1
Calc: threaded

Happens on multiple machines.

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


[Libreoffice-bugs] [Bug 138549] EDITING Undo Filter results in LO crashes (also a scPostIt problem?)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138549

--- Comment #7 from stefan_lange...@t-online.de  
---
Created attachment 167697
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167697=edit
zip file with 4 screenshots of crashes in Safe Mode

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


[Libreoffice-bugs] [Bug 138554] FORMATTING: Loss of "smart" apostrophes (quotation marks) after upgrade from Linux Mint 19.1 to Linux Mint 20

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138554

Bob  changed:

   What|Removed |Added

 CC||lovedbywe...@gmail.com

--- Comment #2 from Bob  ---
Created attachment 167696
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167696=edit
Screen Shot

There are several user profile files (please see attached screen capture).
Which one should I back up? Also, I am sorry, but I do not know how to back it
up.

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


[Libreoffice-bugs] [Bug 138549] EDITING Undo Filter results in LO crashes (also a scPostIt problem?)

2020-11-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138549

--- Comment #6 from stefan_lange...@t-online.de  
---
(In reply to srdosm from comment #3)
> Stefan, can you try it in the beta in safe mode? HELP -> RESTART IN SAFE
> MODE and write, if it is work or not.

I have tested in safe mode (default settings + reset UI and User profile) with
LO 7.0.4.1 and with LOdev 7.1.0.0beta: In both tests I have reproduced the
crash, see attached screenshots!

Version: 7.0.4.1 (x64)
Build ID: e3cebc55238632eae061a3da668963d484a71147
CPU threads: 4; OS: Windows 10.0 Build 20262; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

Version: 7.1.0.0.beta1+ (x64)
Build ID: 0c1736f2dff63f2ac4a08c2b0e4c0d9c20d693cb
CPU threads: 4; OS: Windows 10.0 Build 20262; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
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-commits] core.git: helpcontent2

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

New commits:
commit 00b2a76fc028ac8bacf547def4b7e27fca17ad14
Author: Seth Chaiklin 
AuthorDate: Mon Nov 30 21:23:54 2020 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Nov 30 21:23:54 2020 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 6e7f4ece270fd504303ab279795462ce22c3de27
  - tdf#138389 update help for Options>Language Settings>Languages, 
especially Date Acceptance Patterns

   *corrected and elaborated "Date Acceptance Patterns" section
 + Added explanation about how to use date acceptance.
 + Added explanation about how default patterns are provided.
 + Added explanation about how patterns are lost with locale change.
 + Added explanations for how to make Date Acceptance Patterns.
 * Corrected explanation about Y-M-D pattern.
   Thanks to Eike Rathke and Mike Kaganski for technical advice
 about "Date acceptance patterns".
   * re-arrange controls to correspond to order in dialog box
   * change label:  "CTL" --> "Complex text layout"

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

diff --git a/helpcontent2 b/helpcontent2
index 317283efafd0..6e7f4ece270f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 317283efafd0b5de74e15417df6560cf35eae49c
+Subproject commit 6e7f4ece270fd504303ab279795462ce22c3de27
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   5   >