[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - vcl/qa

2022-12-18 Thread Dennis Francis (via logerrit)
 vcl/qa/cppunit/pdfexport/pdfexport.cxx |   32 +---
 1 file changed, 9 insertions(+), 23 deletions(-)

New commits:
commit fb584f373c3c683b602de43f2679a3e46fdf8b13
Author: Dennis Francis 
AuthorDate: Mon Dec 19 10:48:10 2022 +0530
Commit: Miklos Vajna 
CommitDate: Mon Dec 19 07:51:04 2022 +

vcl: use osl_set(clear)Environment in new tests

Change-Id: I7d695c25484f9a70956bf5f8ab84ef3b25ae8ca2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144413
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx 
b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
index ab62a54b74db..cf04a7257465 100644
--- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx
+++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
@@ -14,6 +14,7 @@
 #include 
 
 #include 
+#include 
 
 #include 
 #include 
@@ -3348,18 +3349,16 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, testBitmapScaledown)
 
 CPPUNIT_TEST_FIXTURE(PdfExportTest, testRexportRefToKids)
 {
-// setenv only works on unix based systems
-#ifndef _WIN32
 // We need to enable PDFium import (and make sure to disable after the 
test)
 bool bResetEnvVar = false;
 if (getenv("LO_IMPORT_USE_PDFIUM") == nullptr)
 {
 bResetEnvVar = true;
-setenv("LO_IMPORT_USE_PDFIUM", "1", false);
+osl_setEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData, 
OUString("1").pData);
 }
 comphelper::ScopeGuard aPDFiumEnvVarGuard([&]() {
 if (bResetEnvVar)
-unsetenv("LO_IMPORT_USE_PDFIUM");
+osl_clearEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData);
 });
 
 // Load the PDF and save as PDF
@@ -3382,24 +3381,20 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, 
testRexportRefToKids)
 if (rPair.first.startsWith("Im"))
 CPPUNIT_ASSERT(pXObjects->LookupObject(rPair.first));
 }
-
-#endif
 }
 
 CPPUNIT_TEST_FIXTURE(PdfExportTest, testRexportFilterSingletonArray)
 {
-// setenv only works on unix based systems
-#ifndef _WIN32
 // We need to enable PDFium import (and make sure to disable after the 
test)
 bool bResetEnvVar = false;
 if (getenv("LO_IMPORT_USE_PDFIUM") == nullptr)
 {
 bResetEnvVar = true;
-setenv("LO_IMPORT_USE_PDFIUM", "1", false);
+osl_setEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData, 
OUString("1").pData);
 }
 comphelper::ScopeGuard aPDFiumEnvVarGuard([&]() {
 if (bResetEnvVar)
-unsetenv("LO_IMPORT_USE_PDFIUM");
+osl_clearEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData);
 });
 
 // Load the PDF and save as PDF
@@ -3436,23 +3431,20 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, 
testRexportFilterSingletonArray)
 OString aImage = "100 0 30 50 re B*\n70 67 50 30 re B*\n";
 auto it = std::search(pStart, pEnd, aImage.getStr(), aImage.getStr() + 
aImage.getLength());
 CPPUNIT_ASSERT(it != pEnd);
-#endif
 }
 
 CPPUNIT_TEST_FIXTURE(PdfExportTest, testRexportMediaBoxOrigin)
 {
-// setenv only works on unix based systems
-#ifndef _WIN32
 // We need to enable PDFium import (and make sure to disable after the 
test)
 bool bResetEnvVar = false;
 if (getenv("LO_IMPORT_USE_PDFIUM") == nullptr)
 {
 bResetEnvVar = true;
-setenv("LO_IMPORT_USE_PDFIUM", "1", false);
+osl_setEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData, 
OUString("1").pData);
 }
 comphelper::ScopeGuard aPDFiumEnvVarGuard([&]() {
 if (bResetEnvVar)
-unsetenv("LO_IMPORT_USE_PDFIUM");
+osl_clearEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData);
 });
 
 // Load the PDF and save as PDF
@@ -3490,24 +3482,20 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, 
testRexportMediaBoxOrigin)
 CPPUNIT_ASSERT(pNumElement);
 CPPUNIT_ASSERT_EQUAL(aBBox[nIdx], 
static_cast(pNumElement->GetValue()));
 }
-
-#endif
 }
 
 CPPUNIT_TEST_FIXTURE(PdfExportTest, testRexportResourceItemReference)
 {
-// setenv only works on unix based systems
-#ifndef _WIN32
 // We need to enable PDFium import (and make sure to disable after the 
test)
 bool bResetEnvVar = false;
 if (getenv("LO_IMPORT_USE_PDFIUM") == nullptr)
 {
 bResetEnvVar = true;
-setenv("LO_IMPORT_USE_PDFIUM", "1", false);
+osl_setEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData, 
OUString("1").pData);
 }
 comphelper::ScopeGuard aPDFiumEnvVarGuard([&]() {
 if (bResetEnvVar)
-unsetenv("LO_IMPORT_USE_PDFIUM");
+osl_clearEnvironment(OUString("LO_IMPORT_USE_PDFIUM").pData);
 });
 
 // Load the PDF and save as PDF
@@ -3540,8 +3528,6 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, 
testRexportResourceItemReference)
 
 auto pFontWidths = pFontDict->LookupObject("Widths");
 CPPUNIT_ASSERT(pFontWidths);
-
-#endif
 }
 
 } // end anonymous namespace


[Libreoffice-commits] dev-tools.git: help3/xhpeditor

2022-12-18 Thread Ilmari Lauhakangas (via logerrit)
 help3/xhpeditor/snippets.js |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b1b1ad1e4b562ee56eeeb87619732beff46da8b9
Author: Ilmari Lauhakangas 
AuthorDate: Mon Dec 19 09:47:40 2022 +0200
Commit: Ilmari Lauhakangas 
CommitDate: Mon Dec 19 07:49:08 2022 +

Remove name attribute from  snippets

Change-Id: If4ba3fd9e7e3503b3d562c9be00c6754b618d7bb
Reviewed-on: https://gerrit.libreoffice.org/c/dev-tools/+/18
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/help3/xhpeditor/snippets.js b/help3/xhpeditor/snippets.js
index e519a50d..207e493c 100644
--- a/help3/xhpeditor/snippets.js
+++ b/help3/xhpeditor/snippets.js
@@ -20,7 +20,7 @@ function startNewXHPDoc() {
 }
 function docHeading() {
 var a1 = '\n\n';
-var a2 = 'CHANGE ME\n';
+var a2 = 'CHANGE ME\n';
 var a3 = 'CHANGE 
ME\n\n\n';
 editor.replaceRange(a1 + a2 + a3 , editor.doc.getCursor());
 }
@@ -219,7 +219,7 @@ function tEmbedvar(){
 editor.replaceRange(a1, editor.doc.getCursor());
 }
  function tLink(){
- var a1 ='';
+ var a1 ='';
  var a2 = '';
  editor.replaceSelection(a1 + editor.doc.getSelection() + a2,'');
 }


[Libreoffice-bugs] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

--- Comment #12 from BogdanB  ---
(In reply to Howard Feldman from comment #11)
> Created attachment 184229 [details]
> screenshot of Tool->Options->Advanced menu
> 
> I attempted to try the two things but I didn't see a path to the Java
> runtime even though the box was checked.
> 
> Also, there was no "Send crash reports to the Document Foundation"
> 
> In case I missed something I have attached a screenshot of my Advance dialog
> box.

It's seems you don't have have on your computer OR LibreOffice don't see it.

For crash report it's in another window, my mistake: Tools - Options - General

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152348] LibreOffice Writer crash after installing Help on 4GB memory RAM

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152348

Dieter  changed:

   What|Removed |Added

Crash report or|d3290002-1a3a-4159-b346-0dd |SwTextPaintInfo::CalcRect(S
crash signature|7bf68234c   |wLinePortion const &,SwRect
   ||*,SwRect *,bool
 Status|UNCONFIRMED |NEEDINFO
 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
I don't think, that crash is related to installation of LO Help. So could you
please test this (deinstallation of LO and try to reproduce the crash)? Further
question: Does crash only happens with a specific document or even, if you open
a new document?
=> NEEDINFO

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152506] Footnote order error, first footnote replaced.

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152506

László Németh  changed:

   What|Removed |Added

   Assignee|nem...@numbertext.org   |libreoffice-b...@lists.free
   ||desktop.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||2203
 Resolution|--- |FIXED
   Keywords||regression
 Status|ASSIGNED|RESOLVED

--- Comment #2 from László Németh  ---
Fixed in commit 96a856f87f16cca2e039c973c18d57c8b9dca362

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152203] Footnotes randomized on DOCX import

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152203

László Németh  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152206] Create interface to tweak font variation axis

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152206

--- Comment #1 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/96a856f87f16cca2e039c973c18d57c8b9dca362

tdf#152206 DOCX import: fix mixed first footnote

It will be available in 7.6.0.

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

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152206] Create interface to tweak font variation axis

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152206

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-12-18 Thread László Németh (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf152206.docx  |binary
 sw/qa/extras/ooxmlexport/ooxmlexport14.cxx|   17 +++
 writerfilter/source/dmapper/DomainMapper.cxx  |   13 ++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   98 ++
 writerfilter/source/dmapper/DomainMapper_Impl.hxx |   10 +-
 5 files changed, 100 insertions(+), 38 deletions(-)

New commits:
commit 96a856f87f16cca2e039c973c18d57c8b9dca362
Author: László Németh 
AuthorDate: Fri Dec 16 13:20:25 2022 +0100
Commit: László Németh 
CommitDate: Mon Dec 19 07:34:36 2022 +

tdf#152206 DOCX import: fix mixed first footnote

Also the first footnote can be at arbitrary
place in footnote.xml.

Follow-up to commit 09ae3c01940bbc25ffde51963683b04e3cb4bb6a
"tdf#152203 DOCX import: fix mixed footnotes/endnotes".

Change-Id: Iab356f7373483d812f0e802a994357fdad831d9d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144380
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf152206.docx 
b/sw/qa/extras/ooxmlexport/data/tdf152206.docx
new file mode 100644
index ..34f0130fdd7b
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf152206.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
index 9ce06be528e9..3916866b9ff4 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
@@ -1290,6 +1290,23 @@ CPPUNIT_TEST_FIXTURE(Test, testTdf152203)
 CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg5"), 
xLastButOne->getString().trim() );
 }
 
+CPPUNIT_TEST_FIXTURE(Test, testTdf152206)
+{
+loadAndSave("tdf152206.docx");
+xmlDocUniquePtr pXml = parseExport("word/footnotes.xml");
+CPPUNIT_ASSERT(pXml);
+
+uno::Reference xFootnotesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xFootnotes = 
xFootnotesSupplier->getFootnotes();
+uno::Reference xLastFootnote(xFootnotes->getByIndex(1), 
uno::UNO_QUERY);
+// This was "Footnote for pg5" (replaced footnotes)
+CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg 6"), 
xLastFootnote->getString().trim() );
+
+uno::Reference xLastButOne(xFootnotes->getByIndex(0), 
uno::UNO_QUERY);
+// This was "Footnote for pg 6" (replaced footnotes)
+CPPUNIT_ASSERT_EQUAL( OUString("Footnote for pg5"), 
xLastButOne->getString().trim() );
+}
+
 // skip test for macOS (missing fonts?)
 #if !defined(MACOSX)
 DECLARE_OOXMLEXPORT_TEST(testTdf146346, "tdf146346.docx")
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index c6cf0d796434..3d5762c82cdd 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -3773,11 +3773,18 @@ void DomainMapper::lcl_checkId(const sal_Int32 nId)
 {
 if (m_pImpl->IsInFootnote())
 {
-if (m_pImpl->GetFootnoteCount() > -1)
-m_pImpl->m_aFootnoteIds.push_back(nId);
+m_pImpl->m_aFootnoteIds.push_back(nId);
+// keep only the first real footnote
+if (m_pImpl->GetFootnoteCount() == -1 && 
m_pImpl->m_aFootnoteIds.size() == 2)
+m_pImpl->m_aFootnoteIds.pop_front();
 }
-else if (m_pImpl->GetEndnoteCount() > -1)
+else
+{
 m_pImpl->m_aEndnoteIds.push_back(nId);
+// keep only the first real endnote
+if (m_pImpl->GetEndnoteCount() == -1 && m_pImpl->m_aEndnoteIds.size() 
== 2)
+m_pImpl->m_aEndnoteIds.pop_front();
+}
 }
 
 void DomainMapper::lcl_utext(const sal_uInt8 * data_, size_t len)
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index e7f757f42055..09b1ba422aec 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -356,6 +356,8 @@ DomainMapper_Impl::DomainMapper_Impl(
 m_eSkipFootnoteState(SkipFootnoteSeparator::OFF),
 m_nFootnotes(-1),
 m_nEndnotes(-1),
+m_nFirstFootnoteIndex(-1),
+m_nFirstEndnoteIndex(-1),
 m_bLineNumberingSet( false ),
 m_bIsInFootnoteProperties( false ),
 m_bIsParaMarkerChange( false ),
@@ -3628,6 +3630,36 @@ static void lcl_PasteRedlines(
 }
 }
 
+bool DomainMapper_Impl::CopyTemporaryNotes(
+uno::Reference< text::XFootnote > xNoteSrc,
+uno::Reference< text::XFootnote > xNoteDest )
+{
+if (!m_bSaxError && xNoteSrc != xNoteDest)
+{
+uno::Reference< text::XText > xSrc( xNoteSrc, uno::UNO_QUERY_THROW );
+uno::Reference< text::XText > xDest( xNoteDest, uno::UNO_QUERY_THROW );
+uno::Reference< text::XTextCopy > xTxt, xTxt2;
+xTxt.set(  xSrc, uno::UNO_QUERY_THROW );
+xTxt2.set( xDest, uno::UNO_QUERY_THROW );
+xTxt2->copyText( xTxt );
+
+// copy its redlines
+std::vector redPos, redLen;
+

[Libreoffice-bugs] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

--- Comment #11 from Howard Feldman  ---
Created attachment 184229
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184229=edit
screenshot of Tool->Options->Advanced menu

I attempted to try the two things but I didn't see a path to the Java runtime
even though the box was checked.

Also, there was no "Send crash reports to the Document Foundation"

In case I missed something I have attached a screenshot of my Advance dialog
box.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132773] Copying an underlined word from an html document loses underline property

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132773

--- Comment #11 from Konstantin Kharlamov  ---
Still repro in 7.4.3

Version: 7.4.3.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 4; OS: Linux 6.0; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-US (en_US.UTF-8); UI: en-US
7.4.3-3
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: drawinglayer/Library_drawinglayer.mk drawinglayer/source include/toolkit include/vcl solenv/clang-format toolkit/Library_tk.mk toolkit/source vcl/Library_vcl.mk vcl/sou

2022-12-18 Thread Noel Grandin (via logerrit)
 drawinglayer/Library_drawinglayer.mk   |1 
 drawinglayer/source/primitive2d/controlprimitive2d.cxx |   14 +---
 drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx |2 
 include/vcl/formpdfexport.hxx  |4 -
 solenv/clang-format/excludelist|4 -
 toolkit/Library_tk.mk  |1 
 toolkit/source/awt/vclxwindow.cxx  |   15 +
 vcl/Library_vcl.mk |1 
 vcl/source/gdi/formpdfexport.cxx   |   39 -
 9 files changed, 63 insertions(+), 18 deletions(-)

New commits:
commit d640bfe7767292c8a89de57d378dd752a8ec8342
Author: Noel Grandin 
AuthorDate: Thu Dec 15 19:31:09 2022 +0200
Commit: Noel Grandin 
CommitDate: Mon Dec 19 06:42:39 2022 +

remove dependency from drawinglayer to framework

to try and untangle the dependency mess a little.

This means

(*) tunneling a piece of information from VCLXWindow via
the XWindowPeer::getProperty method, so
we do not need to directly call VCLXWindow.

(*) moving some formpdf code from framework "down" to vcl,
where the drawinglayer code can use it

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

diff --git a/drawinglayer/Library_drawinglayer.mk 
b/drawinglayer/Library_drawinglayer.mk
index 8945e1c462c8..5a3c80beec08 100644
--- a/drawinglayer/Library_drawinglayer.mk
+++ b/drawinglayer/Library_drawinglayer.mk
@@ -47,7 +47,6 @@ $(eval $(call gb_Library_use_libraries,drawinglayer,\
 salhelper \
 svl \
 svt \
-tk \
 tl \
 vcl \
 ))
diff --git a/drawinglayer/source/primitive2d/controlprimitive2d.cxx 
b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
index c776319e86f5..6fe6e57c10d1 100644
--- a/drawinglayer/source/primitive2d/controlprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
@@ -19,6 +19,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -145,16 +146,11 @@ namespace drawinglayer::primitive2d
 if(xControl.is())
 {
 uno::Reference 
xWindowPeer(xControl->getPeer());
-
-VclPtr pWindow = 
VCLUnoHelper::GetWindow(xWindowPeer);
-if (pWindow)
+if (xWindowPeer)
 {
-pWindow = pWindow->GetParent();
-
-if(pWindow && MapUnit::Map100thMM == 
pWindow->GetMapMode().GetMapUnit())
-{
-bUserIs100thmm = true;
-}
+uno::Reference 
xPeerProps(xWindowPeer, uno::UNO_QUERY_THROW);
+uno::Any aAny = 
xPeerProps->getProperty("ParentIs100thmm"); // see VCLXWindow::getProperty
+aAny >>= bUserIs100thmm;
 }
 }
 
diff --git a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
index 3b3f27ba302c..33257f48175a 100644
--- a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
@@ -38,7 +38,7 @@
 #include 
 #include 
 #include  // for PDFExtOutDevData Graphic support
-#include  // for PDFExtOutDevData Graphic 
support
+#include  // for PDFExtOutDevData Graphic support
 #include 
 #include 
 #include 
diff --git a/include/toolkit/helper/formpdfexport.hxx 
b/include/vcl/formpdfexport.hxx
similarity index 93%
rename from include/toolkit/helper/formpdfexport.hxx
rename to include/vcl/formpdfexport.hxx
index d1aa35ebfefe..a2aed55efe8d 100644
--- a/include/toolkit/helper/formpdfexport.hxx
+++ b/include/vcl/formpdfexport.hxx
@@ -20,7 +20,7 @@
 #ifndef INCLUDED_TOOLKIT_HELPER_FORMPDFEXPORT_HXX
 #define INCLUDED_TOOLKIT_HELPER_FORMPDFEXPORT_HXX
 
-#include 
+#include 
 
 #include 
 
@@ -41,7 +41,7 @@ namespace toolkitform
 
 /** creates a PDF compatible control descriptor for the given control
 */
-std::unique_ptr TOOLKIT_DLLPUBLIC 
describePDFControl(
+std::unique_ptr VCL_DLLPUBLIC 
describePDFControl(
 const css::uno::Reference< css::awt::XControl >& _rxControl,
 vcl::PDFExtOutDevData& i_pdfExportData
 );
diff --git a/solenv/clang-format/excludelist b/solenv/clang-format/excludelist
index f6a4b822a7c2..0fa8c8402159 100644
--- a/solenv/clang-format/excludelist
+++ b/solenv/clang-format/excludelist
@@ -6129,7 

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

2022-12-18 Thread Attila Szűcs (via logerrit)
 sc/qa/unit/data/xlsx/tdf151755_stylesLostOnXLSXExport.xlsx |binary
 sc/qa/unit/subsequent_export_test2.cxx |   21 +
 sc/source/filter/excel/xetable.cxx |8 +++-
 3 files changed, 26 insertions(+), 3 deletions(-)

New commits:
commit c57d113e9ef8608f5690e8707a97879cb4f6a185
Author: Attila Szűcs 
AuthorDate: Tue Nov 29 09:45:36 2022 +0100
Commit: Andras Timar 
CommitDate: Mon Dec 19 06:16:08 2022 +

tdf#151755 fix export of borders of contentless cells

Change-Id: I650aeebb4d021911c1f14d4867c5beee84020155
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143880
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/sc/qa/unit/data/xlsx/tdf151755_stylesLostOnXLSXExport.xlsx 
b/sc/qa/unit/data/xlsx/tdf151755_stylesLostOnXLSXExport.xlsx
new file mode 100644
index ..e48562022af8
Binary files /dev/null and 
b/sc/qa/unit/data/xlsx/tdf151755_stylesLostOnXLSXExport.xlsx differ
diff --git a/sc/qa/unit/subsequent_export_test2.cxx 
b/sc/qa/unit/subsequent_export_test2.cxx
index 4010cc9dce1f..40fb4f360536 100644
--- a/sc/qa/unit/subsequent_export_test2.cxx
+++ b/sc/qa/unit/subsequent_export_test2.cxx
@@ -166,6 +166,7 @@ public:
 void testTdf139258_rotated_image();
 void testTdf144642_RowHeightRounding();
 void testTdf145129_DefaultRowHeightRounding();
+void testTdf151755_stylesLostOnXLSXExport();
 void testTdf140431();
 void testCheckboxFormControlXlsxExport();
 void testButtonFormControlXlsxExport();
@@ -293,6 +294,7 @@ public:
 CPPUNIT_TEST(testTdf139258_rotated_image);
 CPPUNIT_TEST(testTdf144642_RowHeightRounding);
 CPPUNIT_TEST(testTdf145129_DefaultRowHeightRounding);
+CPPUNIT_TEST(testTdf151755_stylesLostOnXLSXExport);
 CPPUNIT_TEST(testTdf140431);
 CPPUNIT_TEST(testCheckboxFormControlXlsxExport);
 CPPUNIT_TEST(testButtonFormControlXlsxExport);
@@ -2269,6 +2271,25 @@ void 
ScExportTest2::testTdf145129_DefaultRowHeightRounding()
 CPPUNIT_ASSERT_EQUAL(tools::Long(555 * 52), pDoc->GetRowHeight(0, 51, 0, 
true));
 }
 
+void ScExportTest2::testTdf151755_stylesLostOnXLSXExport()
+{
+// Check if empty cells with custom sytle are exported, even if
+// there is other empty cells with default style, left of it.
+createScDoc("xlsx/tdf151755_stylesLostOnXLSXExport.xlsx");
+
+// Resave the xlsx file without any modification.
+save("Calc Office Open XML");
+xmlDocUniquePtr pSheet = parseExport("xl/worksheets/sheet1.xml");
+CPPUNIT_ASSERT(pSheet);
+
+// Check if all the 3 empty cells with styles are saved, and have the same 
style id.
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]/x:c", 4);
+OUString aCellStyleId = getXPath(pSheet, 
"/x:worksheet/x:sheetData/x:row[4]/x:c[2]", "s");
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]/x:c[2]", "s", 
aCellStyleId);
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]/x:c[3]", "s", 
aCellStyleId);
+assertXPath(pSheet, "/x:worksheet/x:sheetData/x:row[4]/x:c[4]", "s", 
aCellStyleId);
+}
+
 void ScExportTest2::testTdf140431()
 {
 createScDoc("xlsx/129969-min.xlsx");
diff --git a/sc/source/filter/excel/xetable.cxx 
b/sc/source/filter/excel/xetable.cxx
index 146f6a06833b..e7abb111c63e 100644
--- a/sc/source/filter/excel/xetable.cxx
+++ b/sc/source/filter/excel/xetable.cxx
@@ -1310,12 +1310,14 @@ void XclExpMultiCellBase::RemoveUnusedXFIndexes( const 
ScfUInt16Vec& rXFIndexes,
 sal_uInt16 XclExpMultiCellBase::GetStartColAllDefaultCell() const
 {
 sal_uInt16 col = GetXclCol();
+sal_uInt16 nMaxNonDefCol = col;
 for( const auto& rXFId : maXFIds )
 {
-if( rXFId.mnXFIndex != EXC_XF_DEFAULTCELL )
-col += rXFId.mnCount;
+col += rXFId.mnCount;
+if (rXFId.mnXFIndex != EXC_XF_DEFAULTCELL)
+nMaxNonDefCol = col;
 }
-return col;
+return nMaxNonDefCol;
 }
 
 XclExpBlankCell::XclExpBlankCell( const XclAddress& rXclPos, const 
XclExpMultiXFId& rXFId ) :


[Libreoffice-bugs] [Bug 151755] FILESAVE XLS/X: contentless cells at row end are losing their borders on export

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151755

--- Comment #2 from Commit Notification 
 ---
Attila Szűcs committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/c57d113e9ef8608f5690e8707a97879cb4f6a185

tdf#151755 fix export of borders of contentless cells

It will be available in 7.6.0.

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

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 151755] FILESAVE XLS/X: contentless cells at row end are losing their borders on export

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151755

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152029] Visually draw attention to in-view bookmark or hyperlink when selecting/hovering it in the Navigator

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152029

Jim Raykowski  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108288] [META] Bookmark bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108288
Bug 108288 depends on bug 152029, which changed state.

Bug 152029 Summary: Visually draw attention to in-view bookmark or hyperlink 
when selecting/hovering it in the Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=152029

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030
Bug 103030 depends on bug 152029, which changed state.

Bug 152029 Summary: Visually draw attention to in-view bookmark or hyperlink 
when selecting/hovering it in the Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=152029

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152029] Visually draw attention to in-view bookmark or hyperlink when selecting/hovering it in the Navigator

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152029

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #43 from BogdanB  ---
Hi, why this bug in the status of New?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

--- Comment #10 from BogdanB  ---
(In reply to Howard Feldman from comment #8)
> Hi, Stephane
> 
> I tried what you asked and here are the results
> 
> 1. I initiated LibreOffice from the command line and the only message I got
> was:
> 
> javaldx: Could not find a Java Runtime Environment!
> Warning: failed to read path from javaldx
> 
> 2. When I am able to reproduce the behavior with CALC, I tried to send a
> crash report but no report was sent so I have no URL to report.
> 
> 3. I launched Libre Writer and did a small copy and exited as with CALC. 
> Then I relaunched Writer and everything opened as normal.  I did the same
> with Draw and everything worked as normal.
> 
> However, I launched CALC and did the copy and exited.  Then I launched
> Writer and got the error dialog.  Same thing happened with Draw.
> 
> This seems to happen only with a copy from CALC.

Try 2 things and repeat what Stephane have told you to do:
- go to Tools - Options - Advanced and check "Use a Java runtime". If it is
already checked see what is the location of tthe Java (it mustbe shown under
the box).
- go to Tools - Options - Advanced and check "Send crash reports to The
Document Foundation"

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138323] File reset when I indent specific numbering list item and Save in Writer

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138323

Po-Yen Huang  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #10 from Po-Yen Huang  ---
It seems this bug is not present in 7.4.3.

Version: 7.4.3.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 8; OS: Linux 6.0; UI render: default; VCL: kf5 (cairo+xcb)
Locale: zh-TW (zh_TW.UTF-8); UI: zh-TW
7.4.3-3
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152577] Database range disappears when deleting a sheet it doesn't belong to

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152577

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152362] the global menu is often not shown

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152362

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152375] linux packages : provide architecture independent packages besides architecture dependent packages

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152375

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149920] Temp file recovery missing

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149920

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152370] MariaDB direct connection: Access through socket to separate instance of MariaDB impossible

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152370

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152366] Explicitly warn users that they're accessing an outdated help page

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152366

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

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] [Bug 149645] insert photo album does not rotate images

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149645

--- Comment #3 from QA Administrators  ---
Dear Simo He,

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] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

--- 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] [Bug 148984] Image not pasting into text document when copying from desktop

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148984

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] [Bug 148600] Wrong encoding in the GUI

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148600

--- Comment #2 from QA Administrators  ---
Dear Maximilian,

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] [Bug 148984] Image not pasting into text document when copying from desktop

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148984

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

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] [Bug 148205] A textbox occupies more space as size after saving the file as .pptx and open again

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148205

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

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] [Bug 93517] Error message if a macro library is missing appears twice

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93517

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 98556] Reports docx files as corrupt if a writer is not installed.

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98556

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 114469] SfxItemSet::InitRanges_Impl(unsigned short const*) leaks memory with multiple invocations

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114469

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

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] [Bug 139029] The drag and drop position indicator and the actual 'drop' mismatched in table (arrow position defines the dropzone)

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139029

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138933] UI Line end style not reflected in Line dialog when opening XLSX file

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138933

--- Comment #3 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138323] File reset when I indent specific numbering list item and Save in Writer

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138323

--- Comment #9 from QA Administrators  ---
Dear Po-Yen Huang,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132773] Copying an underlined word from an html document loses underline property

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132773

--- Comment #10 from QA Administrators  ---
Dear Konstantin Kharlamov,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 122096] FILEOPEN XLSX Conditional formatting with cell contains condition is imported with quotation marks

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122096

--- Comment #8 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 121461] Status of togglable menu entries is very hard to distinguish with gen VCL plugin

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121461

--- Comment #3 from QA Administrators  ---
Dear Olivier Tilloy,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 122054] Editing: Declined German terms containing more than one word, and Alphabetical Indexes

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122054

--- Comment #10 from QA Administrators  ---
Dear noreply+666192134234234,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120981] Notebookbar is not properly redrawn on context change

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120981

--- Comment #5 from QA Administrators  ---
Dear Sabri Unal,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113913] UI Cannot navigate to instance of Calc with a warning message open, after opening a Custom color color picker

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113913

--- Comment #6 from QA Administrators  ---
Dear Emil Tanev,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 114009] Underline become not consistent in vertical layout

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114009

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107488] 新細明體-ExtB does not display chars vertically in Writer

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107488

--- Comment #12 from QA Administrators  ---
Dear Danny Lin,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 101673] FILESAVE to directory owned by root gives wrong error message

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101673

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152586] Scorrimento e selezione a scatti

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152586

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
seems a dupe of bug 119745

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152245] Crash with copy-paste from Calc to Writer table with tracked changes

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152245

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Created attachment 184228
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184228=edit
example ODT with table and tracked changes on

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149307] Increase/Decrease indent should apply to paragraph when nothing is selected

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149307

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 149307] Increase/Decrease indent should apply to paragraph when nothing is selected

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149307

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 128622] Impress: Increase/decrease indent has different effect on list items than in Writer -> cannot demote/promote

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128622

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||9307
Summary|Impress: Increase indent|Impress: Increase/decrease
   |has different effect on |indent has different effect
   |list items than in Writer   |on list items than in
   |--> cannot demote/promote   |Writer -> cannot
   ||demote/promote
 CC||stephane.guillou@libreoffic
   ||e.org
 Blocks||103369

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
Reproduced in LO 7.6:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 8635c9aa8c6f1078a9e220076d5a08daf30077e8
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

In Writer, "increase/decrease indent" have the same effect on list items as
"demote/promote outline level" respectively.
In Impress, "increase/decrease indent" change the indent of the whole list (and
"demote/promote outline level" behaves the same as in Writer).
I agree it should be more consistent.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103369
[Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||128622


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128622
[Bug 128622] Impress: Increase/decrease indent has different effect on list
items than in Writer -> cannot demote/promote
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152245] Crash with copy-paste from Calc to Writer table with tracked changes

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152245

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
  Regression By||László Németh

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
Bibisected with 7.2 Linux repo, first bad commit:

commit  05366b8e6683363688de8708a3d88cf144c7a2bf
author  László NémethWed May 19 12:22:24 2021 +0200
committer   László NémethThu May 20 00:01:37
2021 +0200
treeb1890c7eef972f77e10704051ba4d5231674336b
parent  cfe0e7dc4d32117ba604e713b8a70eb6576a1fa2

tdf#60382 sw offapi: add change tracking of table/row deletion

Change-Id: I2e3807cf8ae8212bd51c210ef1c20c85878d0da8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115804
Tested-by: László Németh 
Reviewed-by: László Németh 

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

--- Comment #8 from Howard Feldman  ---
Hi, Stephane

I tried what you asked and here are the results

1. I initiated LibreOffice from the command line and the only message I got
was:

javaldx: Could not find a Java Runtime Environment!
Warning: failed to read path from javaldx

2. When I am able to reproduce the behavior with CALC, I tried to send a crash
report but no report was sent so I have no URL to report.

3. I launched Libre Writer and did a small copy and exited as with CALC.  Then
I relaunched Writer and everything opened as normal.  I did the same with Draw
and everything worked as normal.

However, I launched CALC and did the copy and exited.  Then I launched Writer
and got the error dialog.  Same thing happened with Draw.

This seems to happen only with a copy from CALC.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108844] [META] Cut/copy bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108844

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152245


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152245
[Bug 152245] Crash with copy-paste from Calc to Writer table with tracked
changes
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142553] Save CSV Cell Contents As Shown Ignored for Hidden/Zero-Height Rows/Columns

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142553

--- Comment #7 from Avery Freeman  ---
Saving .csv with data in order of the first row shown with hidden columns is
why I've used Libreoffice for my work for the last 8 years. I just learned
Libreoffice is not saving subsequent rows in the order of the first row anymore
if columns are hidden.  This means several months of my work will need to be
repaired to reflect subsequent rows be in the order of the first row.  For me,
this a breaking change. I am searching for a pre-7.2 version of Libreoffice to
install as a workaround. Very upset.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152245] Crash with copy-paste from Calc to Writer table with tracked changes

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152245

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||143002, 108844
 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEW
Summary|Crash when i copy-parted|Crash with copy-paste from
   |from LO-Calc to a docx with |Calc to Writer table with
   |change control  |tracked changes
   Keywords||bibisectRequest, regression
 CC||nem...@numbertext.org,
   ||stephane.guillou@libreoffic
   ||e.org
   Severity|normal  |major
   Priority|medium  |high

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
No need to use MS Office or even the DOCX format to reproduce:

1. Open attachment (an ODS file with a table and tracked changes on)
2. Open a new Calc document
3. Copy a cell (even empty) from Calc and paste it into the Writer table

Result:
LO hangs.

Reproduced in:

Version: 7.2.7.2 / LibreOffice Community
Build ID: 8d71d29d553c0f7dcbfa38fbfda25ee34cce99a2
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: de-DE (en_AU.UTF-8); UI: en-US
Calc: threaded

Not reproducible in:

Version: 7.1.8.1 / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

László, you might be interested.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108844
[Bug 108844] [META] Cut/copy bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=143002
[Bug 143002] [META] Tracked Changes of tables
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143002] [META] Tracked Changes of tables

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143002

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152245


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152245
[Bug 152245] Crash with copy-paste from Calc to Writer table with tracked
changes
-- 
You are receiving this mail because:
You are the assignee for the bug.

Font OpenSymbol also as OpenType?

2022-12-18 Thread Dirk Wunderlich
Hello,

The LibreOffice Suite includes, among other things, the font
“OpenSymbol” (opens__.ttf), which I am using in a current book project:

> (c) 2009 Sun Microsystems Inc.
> THERE DOES NOT EXIST (c) 2011 Julien Nabet
> PRECEDES <-> DOES NOT SUCCEED (c) 2011 Olivier Hallot
> PRIME <-> TRIPLE PRIME (c) 2013 Mathias Hasselmann
> phi <-> phi1 (c) 2015 Khaled Hosny
> (c) 2016 Mike Kaganski
> zero, one, two, three, four, five, six, seven, eight, nine, question,
> underscore, copyright, registered, uni2215, angle, therefore, lozenge
> (c) 2010 Google Corporation
> uni20D1 (c) 2019 Takeshi Abe
> uniF030 <-> uniF039 (c) 2020 Ming Hua

I am now in the final stages of publishing that book with BoD, and I
find that Adobe PDF embeds OpenType fonts “better” than TrueType fonts.
OpenSymbol would be the only TrueType font in my project, so if I could
also embed it as an OpenType font, I would be very happy. (Presumably
there would be no problems with OpenSymbol as TrueType, but if this very
font were also available as OpenType, I would clearly prefer it).

Therefore my question: Does the font OpenSymbol is also available in a
*.otf version? Thank you.

Regards,
Dirk Wunderlich
-- 
Im Höhlchen 13
64372 Ober-Ramstadt
GERMANY
✆ (06154) 69 69 140


[Libreoffice-bugs] [Bug 152475] Modifications to a style do not create Undo steps

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152475

LeroyG  changed:

   What|Removed |Added

Version|7.3.7.2 release |7.3.6.2 release

--- Comment #2 from LeroyG  ---
This behavior is no consistent with Writer.

Reproducible with:
Version: 7.3.6.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 1; OS: Linux 5.14; UI render: default; VCL: gtk3
Locale: es-MX (en_US.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113285] [META] Crash report system bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113285

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152477


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152477
[Bug 152477] Upon opening Calc the user is presented with a dialog box stating
that calc had crashed the previous time when it hadn't
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152477] Upon opening Calc the user is presented with a dialog box stating that calc had crashed the previous time when it hadn't

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152477

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||113285
 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
Thanks Howard.

1) Could you please try running LO from the command line, to see if any
interesting messages pop up?
For example with the command:

libreoffice7.4 --calc

(or if that does not work:
https://help.libreoffice.org/latest/he/text/shared/guide/start_parameters.html)

2) Have you tried actually sending the crash report, so we have a link to a
backtrace?

3) Can you reproduce with copying in a different component, e.g. Writer?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113285
[Bug 113285] [META] Crash report system bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152584] Program won't start / documents won't open

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152584

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Glad it resolved itself.
Marking as "works for me" as "resolved - fixed" is for an identified code
change that fixes an issue.
Cheers!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 149934] Constant Colors Fail WCAG 2.1 Contrast Ratio

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149934

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 149934] Constant Colors Fail WCAG 2.1 Contrast Ratio

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149934

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 148085] About dialog hyperlinks look bad (invisible / have no contrast) in dark mode on Windows

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148085

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152580


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152580
[Bug 152580] Unpredictable behavior of axis automatic scale
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43983] Explanation how chart Automatic axis scaling works required (see comment 5)

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43983

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152580] Unpredictable behavior of axis automatic scale

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152580

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=43
   ||983
 CC||stephane.guillou@libreoffic
   ||e.org
 Blocks||90486

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Very much related to bug 43983, which looks at improving the documentation.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103512] [META] AutoFilter-related bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103512

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152334


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152334
[Bug 152334] Autofilter doesn't work on a custom array function range
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152334] Autofilter doesn't work on a custom array function range

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152334

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
  Regression By||Luboš Luňák
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Blocks||103512

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
repro in:

Version: 7.5.0.0.beta1 (X86_64) / LibreOffice Community
Build ID: 3aca23eec42e9d6fbe57071d7633ae1fc4bc5fcc
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103512
[Bug 103512] [META] AutoFilter-related bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152586] Scorrimento e selezione a scatti

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152586

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Please copy, with the button for that, the info in Menu/Help/About LibreOffice

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152580] Unpredictable behavior of axis automatic scale

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152580

m.a.riosv  changed:

   What|Removed |Added

Version|7.4.3.2 release |Inherited From OOo

--- Comment #2 from m.a.riosv  ---
Also the issue with
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 121945] Include useful citation Styles /references (comment #12) in Writer by default and make them available with a drop-down button.

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121945

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||152583


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152583
[Bug 152583] Need a new citation style and autonumbering scheme for simplifed
Chinese
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 101258] [META] Bibliography bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101258

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||152583


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152583
[Bug 152583] Need a new citation style and autonumbering scheme for simplifed
Chinese
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152583] Need a new citation style and autonumbering scheme for simplifed Chinese

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152583

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Need a new endnote  |Need a new citation style
   |autonumbering scheme for|and autonumbering scheme
   |simplifed Chinese   |for simplifed Chinese
Version|7.4.3.2 release |Inherited From OOo
 Blocks||101258
 Depends on||121945
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Hardware|x86-64 (AMD64)  |All
 OS|Windows (All)   |All

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thanks, Li.

Endnotes are not the right part of LibreOffice for this enhancement request.
There is a bibliography tool in LibreOffice, and a request exists for adding
citation styles to it: bug 121945.
It is possible to customise the format of the citations by hand when inserting
a bibliography, and numbers can be used instead of identifiers, but the
enhancement request above would need to be resolved before specific, built-in
citation styles (like the one you suggest) can be added.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101258
[Bug 101258] [META] Bibliography bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=121945
[Bug 121945] Include useful citation Styles /references (comment #12) in Writer
by default and make them available with a drop-down button.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152580] Unpredictable behavior of axis automatic scale

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152580

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  ---
Reproducible, it's an strange behavior calculating the min, also happens
modifying other cells. In example, introducing 2000 in B8.

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9b46020c262045aed0beace4708565235c2523cc
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152584] Program won't start / documents won't open

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152584

danop2...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from danop2...@gmail.com ---
(In reply to Stéphane Guillou (stragu) from comment #1)
> - Which version did you upgrade from (i.e. which version was the last one
> that worked for you)?
> - Which version of Windows are you using?
> - Have you tried uninstalling and reinstalling it once more?
> - Rename your user profile to see if a fresh user profile solves the issue:
> https://wiki.documentfoundation.org/UserProfile#Manual_procedure_.
> 28all_versions.29
> 
> Thank you!

I upgraded from the version immediately before the current most up-to-date
version that is not a beta version from the website. I am using the latest
version of Windows 10. 

I uninstalled LibreOffice while writing this comment and reinstalled 7.4.3.2 at
which point LibreOffice now works. I have no idea whether this issue could have
anything to do with me going to the LibreOffice website through the "you have
an update" prompt shown in the documents themselves.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - hwpfilter/source

2022-12-18 Thread Caolán McNamara (via logerrit)
 hwpfilter/source/hbox.cxx |  132 +++---
 1 file changed, 67 insertions(+), 65 deletions(-)

New commits:
commit 0b4964b6d24a663e0cb33c1f46c06e3bb5c53faf
Author: Caolán McNamara 
AuthorDate: Sun Dec 18 16:31:44 2022 +
Commit: Caolán McNamara 
CommitDate: Sun Dec 18 23:09:08 2022 +

ofz#54402 check bounds

git show -w

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

diff --git a/hwpfilter/source/hbox.cxx b/hwpfilter/source/hbox.cxx
index e72c61434fb7..2e43d0f19691 100644
--- a/hwpfilter/source/hbox.cxx
+++ b/hwpfilter/source/hbox.cxx
@@ -615,78 +615,80 @@ OUString Outline::GetUnicode() const
 {
 char dest[80];
 int l = 0;
-int i = level;
+unsigned i = level;
 if( deco[i][0] ){
 buffer[l++] = deco[i][0];
 }
-/* level starts from zero. ex) '1.1.1.' is the level 2.
-   number has the value. ex) '1.2.1' has '1,2,1'
-   style has the value which starts from 1 according to the definition in 
hbox.h
- */
-switch( user_shape[i] )
+if (i < std::size(user_shape))
 {
-case 0:
-buffer[l++] = '1' + number[i] - 1;
-break;
-case 1: /* Uppercase Roman */
-case 2: /* Lowercase Roman */
-num2roman(number[i], dest);
-if( user_shape[i] == 1 ){
-char *ptr = dest;
-while( *ptr )
-{
-*ptr = 
sal::static_int_cast(rtl::toAsciiUpperCase(static_cast(*ptr)));
-ptr++;
+/* level starts from zero. ex) '1.1.1.' is the level 2.
+   number has the value. ex) '1.2.1' has '1,2,1'
+   style has the value which starts from 1 according 
to the definition in hbox.h */
+switch( user_shape[i] )
+{
+case 0:
+buffer[l++] = '1' + number[i] - 1;
+break;
+case 1: /* Uppercase Roman */
+case 2: /* Lowercase Roman */
+num2roman(number[i], dest);
+if( user_shape[i] == 1 ){
+char *ptr = dest;
+while( *ptr )
+{
+*ptr = 
sal::static_int_cast(rtl::toAsciiUpperCase(static_cast(*ptr)));
+ptr++;
+}
 }
+str2hstr(dest, buffer + l);
+l += strlen(dest);
+break;
+case 3:
+buffer[l++] = 'A' + number[i] -1;
+break;
+case 4:
+buffer[l++] = 'a' + number[i] -1;
+break;
+case 5:
+buffer[l++] = olHanglJaso(number[i] -1, 
OL_HANGL_KANATA);
+break;
+case 6:
+buffer[l++] = olHanglJaso(number[i] -1, 
OL_HANGL_JASO);
+break;
+case 7: /* Chinese numbers: the number represented 
by the general */
+buffer[l++] = '1' + number[i] -1;
+break;
+case 8: /* Circled numbers */
+buffer[l++] = 0x2e00 + number[i];
+break;
+case 9: /* Circled lowercase alphabet */
+buffer[l++] = 0x2c20 + number[i];
+break;
+case 10: /* Circled Korean Alphabet */
+buffer[l++] = 0x2c50 + number[i] -1;
+break;
+case 11: /* Circled Korean Characters */
+buffer[l++] = 0x2c40 + number[i] -1;
+break;
+case 12: /* Sequenced numbers. */
+{
+ OStringBuffer buf;
+ 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - sw/source

2022-12-18 Thread Caolán McNamara (via logerrit)
 sw/source/core/unocore/unofield.cxx |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 870cf09ca56d9c402dcb7ae0fb7e876b69d91a93
Author: Caolán McNamara 
AuthorDate: Sun Dec 18 21:12:24 2022 +
Commit: Caolán McNamara 
CommitDate: Sun Dec 18 23:08:25 2022 +

crashtesting: related to failure on load of forum-en-7529.odt

save SwDoc* before calling DeleteAndJoin, so SetFormatField doesn't
use m_pImpl->m_pDoc potentially cleared by it

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

diff --git a/sw/source/core/unocore/unofield.cxx 
b/sw/source/core/unocore/unofield.cxx
index 36bf1cae1c8d..0e20949b3ced 100644
--- a/sw/source/core/unocore/unofield.cxx
+++ b/sw/source/core/unocore/unofield.cxx
@@ -1999,7 +1999,8 @@ void SAL_CALL SwXTextField::attach(
   && m_pImpl->m_pDoc != nullptr
   && m_pImpl->m_nServiceId == SwServiceType::FieldTypeAnnotation )
 {
-SwUnoInternalPaM aIntPam( *m_pImpl->m_pDoc );
+SwDoc* pDoc = m_pImpl->m_pDoc;
+SwUnoInternalPaM aIntPam( *pDoc );
 if ( !::sw::XTextRangeToSwPaM( aIntPam, xTextRange ) )
 throw lang::IllegalArgumentException();
 
@@ -2007,13 +2008,13 @@ void SAL_CALL SwXTextField::attach(
 // value.
 if (!aIntPam.HasMark() || *aIntPam.Start() != *aIntPam.End())
 {
-UnoActionContext aCont( m_pImpl->m_pDoc );
+UnoActionContext aCont( pDoc );
 // insert copy of annotation at new text range
 std::unique_ptr pPostItField(static_cast< 
SwPostItField* >(m_pImpl->GetFormatField()->GetField()->CopyField().release()));
 SwFormatField aFormatField( *pPostItField );
 pPostItField.reset();
 SwPaM aEnd( *aIntPam.End(), *aIntPam.End() );
-m_pImpl->m_pDoc->getIDocumentContentOperations().InsertPoolItem( 
aEnd, aFormatField );
+pDoc->getIDocumentContentOperations().InsertPoolItem( aEnd, 
aFormatField );
 // delete former annotation
 {
 const SwTextField* pTextField = 
m_pImpl->GetFormatField()->GetTextField();
@@ -2021,14 +2022,14 @@ void SAL_CALL SwXTextField::attach(
 SwPaM aPam( rTextNode, pTextField->GetStart() );
 aPam.SetMark();
 aPam.Move();
-
m_pImpl->m_pDoc->getIDocumentContentOperations().DeleteAndJoin(aPam);
+pDoc->getIDocumentContentOperations().DeleteAndJoin(aPam);
 }
 // keep inserted annotation
 {
 SwTextField *const pTextAttr = 
aEnd.GetPointNode().GetTextNode()->GetFieldTextAttrAt(aEnd.End()->GetContentIndex()-1,
 ::sw::GetTextAttrMode::Default);
 if ( pTextAttr != nullptr )
 {
-
m_pImpl->SetFormatField(const_cast(>GetFormatField()),
 m_pImpl->m_pDoc);
+
m_pImpl->SetFormatField(const_cast(>GetFormatField()),
 pDoc);
 
 if ( *aIntPam.GetPoint() != *aIntPam.GetMark() )
 {


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

2022-12-18 Thread Caolán McNamara (via logerrit)
 sw/source/core/unocore/unofield.cxx |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit ad387d5b984c906505d25685065f710ed55d
Author: Caolán McNamara 
AuthorDate: Mon Jun 27 21:29:11 2022 +0100
Commit: Caolán McNamara 
CommitDate: Sun Dec 18 23:08:05 2022 +

crashtesting: failure on load of forum-en-7529.odt

==324198== Invalid read of size 8
==324198==at 0x2D840D75: std::__uniq_ptr_impl >::_M_ptr() const (unique_ptr.h:191)
==324198==by 0x2D840D54: std::unique_ptr >::get() const (unique_ptr.h:462)
==324198==by 0x2D932B9B: SwFormatField::GetField() (fmtfld.hxx:122)
==324198==by 0x2E740E7B: SwXTextField::Impl::GetField() const 
(unofield.cxx:2634)
==324198==by 0x2E7487EB: SwXTextField::setPropertyValue(rtl::OUString 
const&, com::sun::star::uno::Any const&) (unofield.cxx:2150)
==324198==by 0x1100C123: 
XMLPropertyBackpatcher::ResolveId(rtl::OUString const&, short) 
(XMLPropertyBackpatcher.cxx:73)
==324198==by 0x1100BB0F: 
XMLTextImportHelper::InsertFootnoteID(rtl::OUString const&, short) 
(XMLPropertyBackpatcher.cxx:180)
==324198==by 0x10FF7E71: 
XMLFootnoteImportContext::startFastElement(int, 
com::sun::star::uno::Reference 
const&) (XMLFootnoteImportContext.cxx:99)
==324198==by 0x10C40361: SvXMLImport::startFastElement(int, 
com::sun::star::uno::Reference 
const&) (xmlimp.cxx:812)
==324198==by 0x28FBFE71: (anonymous 
namespace)::Entity::startElement((anonymous namespace)::Event const*) 
(fastparser.cxx:470)
==324198==by 0x28FBED4E: 
sax_fastparser::FastSaxParserImpl::callbackStartElement(unsigned char const*, 
unsigned char const*, unsigned char const*, int, unsigned char const**, int, 
unsigned char const**) (fastparser.cxx:1304)
==324198==by 0x28FBCCAF: (anonymous 
namespace)::call_callbackStartElement(void*, unsigned char const*, unsigned 
char const*, unsigned char const*, int, unsigned char const**, int, int, 
unsigned char const**) (fastparser.cxx:333)
==324198==  Address 0x259e2b68 is 328 bytes inside a block of size 344 
free'd
==324198==at 0x4848669: operator delete(void*) (vg_replace_malloc.c:923)
==324198==by 0x2E4EC2B1: SwFormatField::~SwFormatField() 
(atrfld.cxx:132)
==324198==by 0x8635DA2: SfxItemPool::Remove(SfxPoolItem const&) 
(itempool.cxx:802)
==324198==by 0x2E5BB014: SwTextAttr::Destroy(SwTextAttr*, SfxItemPool&) 
(txatbase.cxx:63)
==324198==by 0x2E594EE2: SwTextNode::DestroyAttr(SwTextAttr*) 
(thints.cxx:1302)
==324198==by 0x2E55C4EC: SwTextNode::~SwTextNode() (ndtxt.cxx:238)
==324198==by 0x2E55CB38: SwTextNode::~SwTextNode() (ndtxt.cxx:227)
==324198==by 0x2DEE048F: SwNodes::RemoveNode(o3tl::strong_int, o3tl::strong_int, bool) 
(nodes.cxx:2325)
==324198==by 0x2DEE50C2: SwNodes::DelNodes(SwNodeIndex const&, 
o3tl::strong_int) (nodes.cxx:1384)
==324198==by 0x2DC87B02: 
sw::DocumentContentOperationsManager::DeleteSection(SwNode*) 
(DocumentContentOperationsManager.cxx:2118)
==324198==by 0x2DD2BB66: 
sw::DocumentLayoutManager::DelLayoutFormat(SwFrameFormat*) 
(DocumentLayoutManager.cxx:285)
==324198==by 0x2DB0900E: DelFlyInRange(SwNodeIndex const&, SwNodeIndex 
const&, SwIndex const*, SwIndex const*) (docedt.cxx:254)

maybe this is a problem since the various changes associated with:

commit 2c9298e4f667a5dd7606d79890fcedfff0f66e26
Date:   Fri Apr 5 23:14:47 2019 +0200

SwXTextField::Impl FieldTypeClient: SwClient no more

commit e18359445fabad9ba1a704600e9ee327112cc6ae
Date:   Sun Apr 14 13:33:35 2019 +0200

[API CHANGE] SwXTextField: no more SwModify/SwClient

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

diff --git a/sw/source/core/unocore/unofield.cxx 
b/sw/source/core/unocore/unofield.cxx
index 0e20949b3ced..84ae8fe2d8f5 100644
--- a/sw/source/core/unocore/unofield.cxx
+++ b/sw/source/core/unocore/unofield.cxx
@@ -1967,6 +1967,7 @@ void SAL_CALL SwXTextField::attach(
 if (!pTextAttr)
 throw uno::RuntimeException("no SwTextAttr inserted?");  // could 
theoretically happen, if paragraph is full
 
+m_pImpl->ClearFieldType();
 const SwFormatField& rField = pTextAttr->GetFormatField();
 m_pImpl->SetFormatField(const_cast(), pDoc);
 
@@ -1990,7 +1991,6 @@ void SAL_CALL SwXTextField::attach(
 m_pImpl->GetFormatField()->SetXTextField(this);
 m_pImpl->m_wThis = this;
 m_pImpl->m_bIsDescriptor = false;
-m_pImpl->ClearFieldType();
 m_pImpl->m_pProps.reset();
 if (m_pImpl->m_bCallUpdate)
 update();
commit 487e1d73393ae9e6fe7961c8a95dd77a3598b510
Author: Caolán McNamara 
AuthorDate: Sun Dec 18 21:12:24 2022 +
Commit: Caolán McNamara 

[Libreoffice-bugs] [Bug 152586] New: Scorrimento e selezione a scatti

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152586

Bug ID: 152586
   Summary: Scorrimento e selezione a scatti
   Product: LibreOffice
   Version: 7.4.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rachele.tarp...@libero.it

Description:
Quando procedo allo scorrimento o alla selezione di elementi mediante pad o
mouse, il movimento delle pagine o del testo risulta molto scattoso, per nulla
fluido e troppo veloce

Steps to Reproduce:
1.Installare una nuova versione
2.Disinstallare e installare di nuovo
3.

Actual Results:
è sempre presente il bug

Expected Results:
Sempre bug


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Nessuna

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152585] Postgres Interval Keyword not Working

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152585

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I assume that this is because the interval datatype is not supported, which is
tracked in bug 51779.

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

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 149934] Constant Colors Fail WCAG 2.1 Contrast Ratio

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149934

--- Comment #7 from flywire  ---
Created attachment 184227
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184227=edit
LO7.5 - Alpha Fails WCAG

Dark theme needs colours for constants that meet WCAG contrast ratios. Can't
read blue text on black background in tooltip.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 149934] Constant Colors Fail WCAG 2.1 Contrast Ratio

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149934

--- Comment #7 from flywire  ---
Created attachment 184227
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184227=edit
LO7.5 - Alpha Fails WCAG

Dark theme needs colours for constants that meet WCAG contrast ratios. Can't
read blue text on black background in tooltip.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152584] Program won't start / documents won't open

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152584

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guillou@libreoffic
   ||e.org
 Ever confirmed|0   |1

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
- Which version did you upgrade from (i.e. which version was the last one that
worked for you)?
- Which version of Windows are you using?
- Have you tried uninstalling and reinstalling it once more?
- Rename your user profile to see if a fresh user profile solves the issue:
https://wiki.documentfoundation.org/UserProfile#Manual_procedure_.28all_versions.29

Thank you!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152577] Database range disappears when deleting a sheet it doesn't belong to

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152577

m.a.riosv  changed:

   What|Removed |Added

   Keywords||regression
   Severity|normal  |major

--- Comment #2 from m.a.riosv  ---
Last working for me:
Version: 7.1.8.1 (x86) / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: es-AR (es_ES); UI: es-ES Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152577] Database range disappears when deleting a sheet it doesn't belong to

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152577

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Reproducible even putting some data on a1:a2
Version: 7.4.3.2 (x64) / LibreOffice Community
Build ID: 1048a8393ae2eeec98dff31b5c133c5f1d08b890
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US 
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9b46020c262045aed0beace4708565235c2523cc
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threadedCalc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152029] Visually draw attention to in-view bookmark or hyperlink when selecting/hovering it in the Navigator

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152029

--- Comment #42 from V Stuart Foote  ---
(In reply to Jim Raykowski from comment #41)
> Hover over is now implemented for all content types. Much thanks to Noel for
> review of the patches.
> 
> Is this enough to mark as resolved or should the flash on select also be
> done?

@Jim, these mouse-over canvas/navigator "attention" features alone are very
effective additions to the Sidebar Navigator UI 

Let's close this out cleanly, and put any "canvas flash on click-selection" on
a back burner as a new enhancement BZ ticket. Maybe a GSOC topic with
hinting/mentorship?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152568] Help page is using old icons for LibreOffice documents

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152568

Olivier Hallot  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Olivier Hallot  ---
Colibre is the current theme used in the Help.

The theme must be updated with the new icons.

Then the page will get its updated icons.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147280] lang pack installer cannot find base installation of libreoffice on macos if spotlight is disabled or not indexed fully

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147280

--- Comment #7 from Arkadiusz Miśkiewicz  ---
Was just testing if anything has changed but no.

7.4.3.2 is buggy.

Still unreliable mdfind is used:

% mdfind "kMDItemContentType =='com.apple.application-bundle' &&
kMDItemDisplayName == 'LibreOffice.app'"


While the LibreOffice is installed:

% mdls  /Applications/LibreOffice.app
kMDItemFSContentChangeDate = 2022-11-18 02:03:10 +
kMDItemFSCreationDate  = 2022-11-18 02:03:10 +
kMDItemFSCreatorCode   = ""
kMDItemFSFinderFlags   = 0
kMDItemFSHasCustomIcon = 0
kMDItemFSInvisible = 0
kMDItemFSIsExtensionHidden = 0
kMDItemFSIsStationery  = 0
kMDItemFSLabel = 0
kMDItemFSName  = "LibreOffice.app"
kMDItemFSNodeCount = 1
kMDItemFSOwnerGroupID  = 80
kMDItemFSOwnerUserID   = 501
kMDItemFSSize  = 1
kMDItemFSTypeCode  = ""
%

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: 2 commits - helpcontent2

2022-12-18 Thread Christian Lohmaier (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c4bd6991ac8e579ad4d61b14ba9cb725f9289a90
Author: Christian Lohmaier 
AuthorDate: Sun Dec 18 22:54:47 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Dec 18 21:54:47 2022 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to 534e501e3ad4fef3ebee8788b45c063e96d50346
  - janitorial cleanup/minor optimizations

mostly making xstlproc and python order-only dependencies, simplifying
some of the print statements/remove sed or grep calls that can be
handled by make's own text functions

Change-Id: If4f8ef145d7721384e914ae79494c500bbf244dc
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144410
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 

diff --git a/helpcontent2 b/helpcontent2
index 6a83788dd620..534e501e3ad4 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 6a83788dd6205cd600327ead7388bc5ad26fc7f7
+Subproject commit 534e501e3ad4fef3ebee8788b45c063e96d50346
commit a89a6026a3139f0d49905203c35518fbf8548aae
Author: Christian Lohmaier 
AuthorDate: Sun Dec 18 22:54:39 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Dec 18 21:54:39 2022 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to 6a83788dd6205cd600327ead7388bc5ad26fc7f7
  - process files for bookmarks.part in bulk

instead of running xsltproc for each file, pass multiple files at once,
greatly reducing the overhead of the processing, especially on
Windows/cygwin. since it not only removes the need for the xsltproc
invocations, but also for the surrounding workarounds with the rm,
touch, rm of the indicator file.

Change-Id: I4588bfc869c668a41da29b5d4080a600ed02223b
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144409
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 

diff --git a/helpcontent2 b/helpcontent2
index 1e092fa52ec2..6a83788dd620 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 1e092fa52ec29ae38cbe77092356c21543377977
+Subproject commit 6a83788dd6205cd600327ead7388bc5ad26fc7f7


[Libreoffice-commits] help.git: 2 commits - CustomTarget_html.mk

2022-12-18 Thread Christian Lohmaier (via logerrit)
 CustomTarget_html.mk |  105 +--
 1 file changed, 44 insertions(+), 61 deletions(-)

New commits:
commit 534e501e3ad4fef3ebee8788b45c063e96d50346
Author: Christian Lohmaier 
AuthorDate: Sun Dec 18 22:16:22 2022 +0100
Commit: Christian Lohmaier 
CommitDate: Sun Dec 18 21:54:47 2022 +

janitorial cleanup/minor optimizations

mostly making xstlproc and python order-only dependencies, simplifying
some of the print statements/remove sed or grep calls that can be
handled by make's own text functions

Change-Id: If4f8ef145d7721384e914ae79494c500bbf244dc
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/144410
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 

diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk
index 72576b04b1..3edcd1df80 100644
--- a/CustomTarget_html.mk
+++ b/CustomTarget_html.mk
@@ -43,10 +43,10 @@ $(eval $(call 
gb_CustomTarget_register_targets,helpcontent2/help3xsl,\
 # trailing space for Windows so that xargs doesn't interpret the final CR (that
 # win-make adds as the newline character) as part of the last filename
 $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/hid2file.js : \
-   $(SRCDIR)/helpcontent2/help3xsl/generate_hid2file.xsl \
-   $(call gb_ExternalExecutable_get_dependencies,xsltproc) \
-   $(foreach module,$(html_TEXT_MODULES),$(call 
gb_AllLangHelp_get_helpfiles_target,$(module))) \
-   $(SRCDIR)/helpcontent2/CustomTarget_html.mk
+$(SRCDIR)/helpcontent2/help3xsl/generate_hid2file.xsl \
+$(foreach module,$(html_TEXT_MODULES),$(call 
gb_AllLangHelp_get_helpfiles_target,$(module))) \
+$(SRCDIR)/helpcontent2/CustomTarget_html.mk \
+| $(call gb_ExternalExecutable_get_dependencies,xsltproc)
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1)
( \
RESPONSEFILE=$(call gb_var2file,$(shell $(gb_MKTEMP)),$(subst 
helpcontent2/source/text/,,$(gb_html_allhelpfiles)$(if $(filter WNT,$(OS)), ))) 
 && \
@@ -69,9 +69,9 @@ endef
 $(eval $(foreach lang,$(gb_HELP_LANGS),$(call html_gen_xaptpl_dep,$(lang
 
 $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/xap_tpl : \
-   $(SRCDIR)/helpcontent2/help3xsl/xap_templ_query.xsl \
-   $(call gb_ExternalExecutable_get_dependencies,xsltproc) \
-   $(SRCDIR)/helpcontent2/CustomTarget_html.mk
+$(SRCDIR)/helpcontent2/help3xsl/xap_templ_query.xsl \
+$(SRCDIR)/helpcontent2/CustomTarget_html.mk \
+| $(call gb_ExternalExecutable_get_dependencies,xsltproc)
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XAT,1)
$(call gb_Helper_abbreviate_dirs,\
$(call gb_ExternalExecutable_get_command,xsltproc) \
@@ -96,10 +96,10 @@ endef
 $(eval $(foreach lang,$(gb_HELP_LANGS),$(call html_gen_noscript_dep,$(lang
 
 $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/noscript.html : \
-   $(SRCDIR)/helpcontent2/help3xsl/noscript.xsl \
-   $(SRCDIR)/helpcontent2/help3xsl/brand.xsl \
-   $(call gb_ExternalExecutable_get_dependencies,xsltproc) \
-   $(SRCDIR)/helpcontent2/CustomTarget_html.mk
+$(SRCDIR)/helpcontent2/help3xsl/noscript.xsl \
+$(SRCDIR)/helpcontent2/help3xsl/brand.xsl \
+$(SRCDIR)/helpcontent2/CustomTarget_html.mk \
+| $(call gb_ExternalExecutable_get_dependencies,xsltproc) \
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),NJS,1)
$(call gb_Helper_abbreviate_dirs,\
$(call gb_ExternalExecutable_get_command,xsltproc) \
@@ -114,12 +114,8 @@ $(call 
gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/noscript.html : \
 
 # set of installed languages - has to be language independent
 $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/languages.js : \
-   $(SRCDIR)/helpcontent2/CustomTarget_html.mk
-   ( \
-   printf 'var languagesSet = new Set([' ; \
-   for lang in $(gb_HELP_LANGS) ; do printf '%s' "'$$lang', " ; 
done | sed 's/, $$//' ; \
-   printf ']);\n' \
-   ) > $@
+$(SRCDIR)/helpcontent2/CustomTarget_html.mk
+   printf 'var languagesSet = new Set([%s]);\n' "$(subst 
$(WHITESPACE),$(COMMA) ,$(patsubst %,'%',$(gb_HELP_LANGS)))" > $@
 
 define html_gen_langnames_js_dep
 $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/$(1)/langnames.js : \
@@ -131,11 +127,10 @@ $(eval $(foreach lang,$(gb_HELP_LANGS),$(call 
html_gen_langnames_js_dep,$(lang))
 
 # names of the languages - has to be translated, ie. per language
 $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/langnames.js : \
-   $(SRCDIR)/helpcontent2/CustomTarget_html.mk
+$(SRCDIR)/helpcontent2/CustomTarget_html.mk
( \
echo 'var languageNames = {' ; \
-   grep ']*id="lang_' $(if 

[Libreoffice-bugs] [Bug 152462] Trend Lines do not get created correctly if a dataset is re-ordered by sorting the table.

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152462

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

   What|Removed |Added

 Blocks||116700


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116700
[Bug 116700] [META] Chart trend line bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 116700] [META] Chart trend line bugs and enhancements

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116700

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

   What|Removed |Added

 Depends on||152462


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152462
[Bug 152462] Trend Lines do not get created correctly if a dataset is
re-ordered by sorting the table.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152531] Basic IDE: Background of the dialog editor does not respect dark mode

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152531

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

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Confirm in

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 68809ffde7d50a5f47afa5a1235025513762df8c
CPU threads: 16; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152571] Very slow save (macOS, ARM)

2022-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152571

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

   What|Removed |Added

Summary|Very slow save  |Very slow save (macOS, ARM)

-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   >