[Libreoffice-bugs] [Bug 151504] Navigator dialog docked above sidebar increases size while editing document

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151504

--- Comment #10 from Stéphane Guillou (stragu) 
 ---
Thanks, Louise. Does that mean it doesn't consistently happen?

Please also:
- paste here the information copied from Help > About LibreOffice, in the
version you have the issue in (if it's too old, we'll recommend to upgrade to a
currently supported version like 7.4, and test again)
- check if you can reproduce the same issue when in safe mode (Help > Restart
in safe mode > Continue in safe mode)

Thank you!

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

[Libreoffice-bugs] [Bug 49920] FILEOPEN PPTX Colors of gradient are wrong

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49920

--- Comment #14 from Lars Jødal  ---
Background is still wrong in LO 7.4.3.2

Version: 7.4.4.2 (x64) / LibreOffice Community
Build ID: 85569322deea74ec9134968a29af2df5663baa21
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: da-DK (da_DK); UI: da-DK
Calc: threaded

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

[Libreoffice-bugs] [Bug 153234] Cheap Website Design Dubai

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153234

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
The content of attachment 184951 has been deleted for the following reason:

spam

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

[Libreoffice-bugs] [Bug 153232] HR SOFTWARE IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153232

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
The content of attachment 184950 has been deleted for the following reason:

spam

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

[Libreoffice-bugs] [Bug 153231] VISITOR MANAGEMENT SYSTEM IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153231

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
The content of attachment 184949 has been deleted

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

[Libreoffice-bugs] [Bug 151548] No access to FormField controls in StarBASIC/VBA

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151548

--- Comment #32 from Commit Notification 
 ---
Justin Luth committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/52d5f2e247e6b0a638fc0ec83f5dbc1cca30d1cd

tdf#151548 sw content controls: preserve tabIndex val="-1"

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-commits] core.git: sw/qa sw/source writerfilter/qa

2023-01-26 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport17.cxx   |4 ++--
 sw/source/filter/ww8/docxattributeoutput.cxx |4 +++-
 writerfilter/qa/cppunittests/dmapper/SdtHelper.cxx   |2 +-
 writerfilter/qa/cppunittests/dmapper/data/sdt-run-rich-text.docx |binary
 4 files changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 52d5f2e247e6b0a638fc0ec83f5dbc1cca30d1cd
Author: Justin Luth 
AuthorDate: Wed Jan 25 16:29:55 2023 -0500
Commit: Miklos Vajna 
CommitDate: Fri Jan 27 07:32:52 2023 +

tdf#151548 sw content controls: preserve tabIndex val="-1"

Either we have to read sal_uInt32
(which I can't figure out how to do)
or else we have to write it out as sal_Int32.

Microsoft isn't much help here because their documentation
does not give any example of a non-tabsltop,
and one errata document indicates that MS Word
simply ignores tabIndex altogether for Sdt (and ffData).

According to the documentation,
tabIndex is a CT_UnsignedDecimalNumber
which we do not have in our model.xml
so it was defined as being a CT_DecimalNumber
which works fine for reading something human sensible like -1.

However, in our exporting we were exporting a sal_uInt32
which creates large, all positive numbers
which were not being read on import.
Nothing I tried worked to read these large numbers.
Perhaps it is even illegal to do so in MS formats?

Since it doesn't seem to matter to MS Word,
and for a human it is easier to understand -1,
and it is easier to solve in export than import,
I'm taking the easy road.

Change-Id: I6b296703c9a37149d9e11f29901e6db32bd041b7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146149
Tested-by: Jenkins
Reviewed-by: Justin Luth 
Reviewed-by: Miklos Vajna 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx
index a04a7813f9c6..bfc09d934343 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport17.cxx
@@ -426,7 +426,7 @@ CPPUNIT_TEST_FIXTURE(Test, testDateContentControlExport)
 xContentControlProps->setPropertyValue("Alias", 
uno::Any(OUString("myalias")));
 xContentControlProps->setPropertyValue("Tag", uno::Any(OUString("mytag")));
 xContentControlProps->setPropertyValue("Id", 
uno::Any(static_cast(123)));
-xContentControlProps->setPropertyValue("TabIndex", 
uno::Any(sal_uInt32(2)));
+xContentControlProps->setPropertyValue("TabIndex", 
uno::Any(sal_uInt32(4294967295))); // -1
 xContentControlProps->setPropertyValue("Lock", 
uno::Any(OUString("sdtLocked")));
 
 xText->insertTextContent(xCursor, xContentControl, /*bAbsorb=*/true);
@@ -453,7 +453,7 @@ CPPUNIT_TEST_FIXTURE(Test, testDateContentControlExport)
 assertXPath(pXmlDoc, "//w:sdt/w:sdtPr/w:alias", "val", "myalias");
 assertXPath(pXmlDoc, "//w:sdt/w:sdtPr/w:tag", "val", "mytag");
 assertXPath(pXmlDoc, "//w:sdt/w:sdtPr/w:id", "val", "123");
-assertXPath(pXmlDoc, "//w:sdt/w:sdtPr/w:tabIndex", "val", "2");
+assertXPath(pXmlDoc, "//w:sdt/w:sdtPr/w:tabIndex", "val", "-1");
 assertXPath(pXmlDoc, "//w:sdt/w:sdtPr/w:lock", "val", "sdtLocked");
 }
 
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 01809ae0c0cc..3280b212064f 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2440,8 +2440,10 @@ void DocxAttributeOutput::WriteContentControlStart()
 
 if (m_pContentControl->GetTabIndex())
 {
+// write the unsigned value as as if it were signed since that is all 
we can import
+const sal_Int32 nTabIndex = 
static_cast(m_pContentControl->GetTabIndex());
 m_pSerializer->singleElementNS(XML_w, XML_tabIndex, FSNS(XML_w, 
XML_val),
-   
OString::number(m_pContentControl->GetTabIndex()));
+   OString::number(nTabIndex));
 }
 
 if (!m_pContentControl->GetLock().isEmpty())
diff --git a/writerfilter/qa/cppunittests/dmapper/SdtHelper.cxx 
b/writerfilter/qa/cppunittests/dmapper/SdtHelper.cxx
index fc99cd2e3416..6300a488b409 100644
--- a/writerfilter/qa/cppunittests/dmapper/SdtHelper.cxx
+++ b/writerfilter/qa/cppunittests/dmapper/SdtHelper.cxx
@@ -78,7 +78,7 @@ CPPUNIT_TEST_FIXTURE(Test, testSdtRunRichText)
 sal_uInt32 nTabIndex = 0;
 xContentControlProps->getPropertyValue("TabIndex") >>= nTabIndex;
 // This was 0
-CPPUNIT_ASSERT_EQUAL(static_cast(5), nTabIndex);
+CPPUNIT_ASSERT_EQUAL(static_cast(4294967295), nTabIndex);
 OUString aLock;
 xContentControlProps->getPropertyValue("Lock") >>= aLock;
 // This was empty.
diff --git a/writerfilter/qa/cppunittests/dmapper/data/sdt-run-rich-text.docx 
b/writerfilter/qa/cppunittests/dmapper/data/sdt-run-rich-text.docx
index 

[Libreoffice-bugs] [Bug 103458] When tracking changes, backspacing over a deleted word should skip over it instead of moving inside it

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103458

--- Comment #8 from Ulrich Windl  ---
Created attachment 184954
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184954=edit
Screencast showing the (d)effect

(In reply to QA Administrators from comment #7)
Version: 7.3.6.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 8; OS: Linux 5.14; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

On the screencast: a word left from the cursor was deleted before (so it really
does not exist any more). However when deleting via "backspace" key from
further right, the cursor is moved inside the word deleted already as if it
were still there.

Can you delete a word multiple times???

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

[Libreoffice-bugs] [Bug 146260] XML Source: Wrong character set is used, thus the contents mapped to the cells are garbage/messy codes

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146260

--- Comment #6 from Commit Notification 
 ---
Kohei Yoshida committed a patch related to this issue.
It has been pushed to "master":

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

tdf#146260: Add more mapping rules on character encoding

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 146260] XML Source: Wrong character set is used, thus the contents mapped to the cells are garbage/messy codes

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146260

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: sc/source

2023-01-26 Thread Kohei Yoshida (via logerrit)
 sc/source/filter/orcus/interface.cxx |   18 ++
 1 file changed, 18 insertions(+)

New commits:
commit edcfb4632a514c5595540d69f7b217b4a12bac5c
Author: Kohei Yoshida 
AuthorDate: Thu Jan 26 21:52:01 2023 -0500
Commit: Noel Grandin 
CommitDate: Fri Jan 27 07:29:58 2023 +

tdf#146260: Add more mapping rules on character encoding

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

diff --git a/sc/source/filter/orcus/interface.cxx 
b/sc/source/filter/orcus/interface.cxx
index 1563a46f6299..2cee042305b2 100644
--- a/sc/source/filter/orcus/interface.cxx
+++ b/sc/source/filter/orcus/interface.cxx
@@ -101,6 +101,21 @@ void 
ScOrcusGlobalSettings::set_character_set(orcus::character_set_t cs)
 {
 switch (cs)
 {
+case orcus::character_set_t::big5:
+mnTextEncoding = RTL_TEXTENCODING_BIG5;
+break;
+case orcus::character_set_t::euc_jp:
+mnTextEncoding = RTL_TEXTENCODING_EUC_JP;
+break;
+case orcus::character_set_t::euc_kr:
+mnTextEncoding = RTL_TEXTENCODING_EUC_KR;
+break;
+case orcus::character_set_t::gb2312:
+mnTextEncoding = RTL_TEXTENCODING_GB_2312;
+break;
+case orcus::character_set_t::gbk:
+mnTextEncoding = RTL_TEXTENCODING_GBK;
+break;
 case orcus::character_set_t::iso_2022_jp:
 case orcus::character_set_t::iso_2022_jp_2:
 mnTextEncoding = RTL_TEXTENCODING_ISO_2022_JP;
@@ -117,6 +132,9 @@ void 
ScOrcusGlobalSettings::set_character_set(orcus::character_set_t cs)
 case orcus::character_set_t::utf_7:
 mnTextEncoding = RTL_TEXTENCODING_UTF7;
 break;
+case orcus::character_set_t::utf_8:
+mnTextEncoding = RTL_TEXTENCODING_UTF8;
+break;
 case orcus::character_set_t::windows_1250:
 mnTextEncoding = RTL_TEXTENCODING_MS_1250;
 break;


[Libreoffice-commits] core.git: bridges/Library_cpp_uno.mk bridges/source solenv/clang-format

2023-01-26 Thread Stephan Bergmann (via logerrit)
 bridges/Library_cpp_uno.mk  |8 
 bridges/source/cpp_uno/gcc3_solaris_intel/callvirtualmethod.cxx |  117 -
 bridges/source/cpp_uno/gcc3_solaris_intel/callvirtualmethod.hxx |   47 
 bridges/source/cpp_uno/gcc3_solaris_intel/cpp2uno.cxx   |  520 
 bridges/source/cpp_uno/gcc3_solaris_intel/except.cxx|  292 
 bridges/source/cpp_uno/gcc3_solaris_intel/share.hxx |   82 -
 bridges/source/cpp_uno/gcc3_solaris_intel/uno2cpp.cxx   |  356 -
 bridges/source/cpp_uno/gcc3_solaris_sparc/cpp2uno.cxx   |  569 
-
 bridges/source/cpp_uno/gcc3_solaris_sparc/except.cxx|  289 
 bridges/source/cpp_uno/gcc3_solaris_sparc/share.hxx |   92 -
 bridges/source/cpp_uno/gcc3_solaris_sparc/uno2cpp.cxx   |  604 
--
 solenv/clang-format/excludelist |   10 
 12 files changed, 2986 deletions(-)

New commits:
commit f43e882629b8027b13370514b3a0b277707a3c2c
Author: Stephan Bergmann 
AuthorDate: Mon Jan 23 11:51:59 2023 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Jan 27 07:29:39 2023 +

Remove Solaris 32-bit SPARC and x86 C++ UNO bridge implementations

As discussed in the mailing list thread starting at


"Plan to remove dead C++ UNO bridge implementations 
(bridges/source/cpp_uno/*)",
the bridge implementations at bridges/source/cpp_uno/gcc3_solaris_intel and
bridges/source/cpp_uno/gcc3_solaris_sparc are apparently dead and should 
thus be
removed.  Those were the only bridge implementations for Solaris, but the
referenced thread mentions that there are recent builds for OpenIndiana 
x86-64
(however they are done; presumably using
bridges/source/cpp_uno/gcc3_linux_x86-64), so keep general support for 
Solaris
intact for now.

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

diff --git a/bridges/Library_cpp_uno.mk b/bridges/Library_cpp_uno.mk
index ca7a3d908ed9..56d86c5aaec2 100644
--- a/bridges/Library_cpp_uno.mk
+++ b/bridges/Library_cpp_uno.mk
@@ -77,10 +77,6 @@ bridges_SELECTED_BRIDGE := gcc3_linux_intel
 bridge_asm_objects := call
 bridge_exception_objects := cpp2uno except uno2cpp
 bridge_noncallexception_objects := callvirtualmethod
-else ifeq ($(OS),SOLARIS)
-bridges_SELECTED_BRIDGE := gcc3_solaris_intel
-bridge_exception_objects := cpp2uno except uno2cpp
-bridge_noncallexception_objects := callvirtualmethod
 else ifeq ($(COM),MSC)
 bridges_SELECTED_BRIDGE := msvc_win32_intel
 bridge_exception_objects := cpp2uno uno2cpp
@@ -162,10 +158,6 @@ bridges_SELECTED_BRIDGE := gcc3_linux_sparc
 bridge_asm_objects := call
 bridge_noopt_objects := except
 bridge_exception_objects := cpp2uno uno2cpp
-else ifeq ($(OS),SOLARIS)
-bridges_SELECTED_BRIDGE := gcc3_solaris_sparc
-bridge_noopt_objects := cpp2uno uno2cpp
-bridge_exception_objects := except
 endif
 
 else ifeq ($(OS)-$(CPUNAME),LINUX-SPARC64)
diff --git a/bridges/source/cpp_uno/gcc3_solaris_intel/callvirtualmethod.cxx 
b/bridges/source/cpp_uno/gcc3_solaris_intel/callvirtualmethod.cxx
deleted file mode 100644
index 1f54296fce11..
--- a/bridges/source/cpp_uno/gcc3_solaris_intel/callvirtualmethod.cxx
+++ /dev/null
@@ -1,117 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include 
-#include "com/sun/star/uno/RuntimeException.hpp"
-#include 
-
-#include "bridge.hxx"
-#include "types.hxx"
-#include "unointerfaceproxy.hxx"
-#include "vtables.hxx"
-
-#include "share.hxx"
-
-#include "callvirtualmethod.hxx"
-
-void CPPU_CURRENT_NAMESPACE::callVirtualMethod(
-void * pAdjustedThisPtr,
-sal_Int32 nVtableIndex,
-void * pRegisterReturn,
-typelib_TypeClass eReturnType,
-sal_Int32 * pStackLongs,
-sal_Int32 nStackLongs )
-{
-// parameter list is mixed list of * and values
-// reference parameters are pointers
-
-assert(pStackLongs && 

[Libreoffice-bugs] [Bug 108804] [META] Print preview bugs and enhancements

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108804

Dieter  changed:

   What|Removed |Added

 Depends on||152976


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152976
[Bug 152976] Print preview should show left/right pages settings
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152976] Print preview should show left/right pages settings

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152976

Dieter  changed:

   What|Removed |Added

Summary|Left/right pages not|Print preview should show
   |properly displayed in   |left/right pages settings
   |preview |
 CC||dgp-m...@gmx.de,
   ||heiko.tietze@documentfounda
   ||tion.org
 Blocks||108804
 OS|Linux (All) |All
 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Dieter  ---
I confirm the described behaviour with

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 1c638b7ac46d8077994c8483e6becc4a33efd12b
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (de_DE); UI: en-GB
Calc: CL threaded

I would expect, that print preview show left and right pages at least in the
following settings:
a) Document is edited in book view
b) Page style has "Left Page" and "Right" page

Not sure, if this is a bug or enhancement request.
Heiko, what do you think?


Referenced Bugs:

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

[Libreoffice-commits] core.git: bridges/Library_cpp_uno.mk bridges/source configure.ac desktop/source desktop/test jvmfwk/inc postprocess/CustomTarget_registry.mk sal/osl solenv/clang-format

2023-01-26 Thread Stephan Bergmann (via logerrit)
 bridges/Library_cpp_uno.mk |7 
 bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx |  693 -
 bridges/source/cpp_uno/gcc3_linux_s390/except.cxx  |  257 ---
 bridges/source/cpp_uno/gcc3_linux_s390/share.hxx   |   83 --
 bridges/source/cpp_uno/gcc3_linux_s390/uno2cpp.cxx |  637 ---
 configure.ac   |5 
 desktop/source/deployment/misc/dp_platform.cxx |2 
 desktop/test/deployment/update/platform/readme.txt |1 
 dev/null   |binary
 jvmfwk/inc/vendorbase.hxx  |2 
 postprocess/CustomTarget_registry.mk   |2 
 sal/osl/unx/system.cxx |2 
 solenv/clang-format/excludelist|4 
 13 files changed, 2 insertions(+), 1693 deletions(-)

New commits:
commit 8ef01413f6522fe47494b3c1d46d633f1d34e297
Author: Stephan Bergmann 
AuthorDate: Mon Jan 23 11:47:08 2023 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Jan 27 07:29:14 2023 +

Remove support for 32-bit S390

As discussed in the mailing list thread starting at


"Plan to remove dead C++ UNO bridge implementations 
(bridges/source/cpp_uno/*)",
the bridge implementation at bridges/source/cpp_uno/gcc3_linux_s390 is
apparently dead and should thus be removed.  However, that was the only 
bridge
implementation for 32-bit S390, which implies that support for the 32-bit 
S390
architecture as a whole is dead and should thus be removed.

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

diff --git a/bridges/Library_cpp_uno.mk b/bridges/Library_cpp_uno.mk
index becb9f66dabe..ca7a3d908ed9 100644
--- a/bridges/Library_cpp_uno.mk
+++ b/bridges/Library_cpp_uno.mk
@@ -148,13 +148,6 @@ bridge_noopt_objects := cpp2uno uno2cpp
 bridge_exception_objects := except
 endif
 
-else ifeq ($(CPUNAME),S390)
-
-ifneq ($(filter DRAGONFLY FREEBSD LINUX NETBSD OPENBSD,$(OS)),)
-bridges_SELECTED_BRIDGE := gcc3_linux_s390
-bridge_exception_objects := cpp2uno except uno2cpp
-endif
-
 else ifeq ($(CPUNAME),S390X)
 
 ifneq ($(filter DRAGONFLY FREEBSD LINUX NETBSD OPENBSD,$(OS)),)
diff --git a/bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx 
b/bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx
deleted file mode 100644
index aca33d1ae511..
--- a/bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx
+++ /dev/null
@@ -1,693 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-
-#include 
-#include 
-#include 
-#include 
-
-#include "bridge.hxx"
-#include "cppinterfaceproxy.hxx"
-#include "types.hxx"
-#include "vtablefactory.hxx"
-
-#include "share.hxx"
-#include 
-#include 
-#include 
-
-using namespace ::com::sun::star::uno;
-
-namespace
-{
-
-static typelib_TypeClass cpp2uno_call(
-bridges::cpp_uno::shared::CppInterfaceProxy * pThis,
-const typelib_TypeDescription * pMemberTypeDescr,
-typelib_TypeDescriptionReference * pReturnTypeRef, // 0 indicates void 
return
-sal_Int32 nParams, typelib_MethodParameter * pParams,
-void ** gpreg, void ** fpreg, void ** ovrflw,
-sal_Int64 * pRegisterReturn /* space for register return */ )
-{
-int ng = 0; //number of gpr registers used
-int nf = 0; //number of fpr registers used
-void ** pCppStack; //temporary stack pointer
-
-// gpreg:  [ret *], this, [gpr params]
-// fpreg:  [fpr params]
-// ovrflw: [gpr or fpr params (properly aligned)]
-
-// return
-typelib_TypeDescription * pReturnTypeDescr = 0;
-if (pReturnTypeRef)
-TYPELIB_DANGER_GET( , pReturnTypeRef );
-
-void * pUnoReturn = 0;
-void * pCppReturn = 0; // complex return ptr: if != 0 && != pUnoReturn, 
reconversion need
-
-if (pReturnTypeDescr)
-{
-if (bridges::cpp_uno::shared::isSimpleType( pReturnTypeDescr ))
-{
-   

[Libreoffice-commits] core.git: helpcontent2

2023-01-26 Thread Stephan Bergmann (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c5224a49fde004e36454da459c7d91a6905c1110
Author: Stephan Bergmann 
AuthorDate: Fri Jan 27 08:28:35 2023 +0100
Commit: Gerrit Code Review 
CommitDate: Fri Jan 27 07:28:35 2023 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to f3f1a7bccd67dbefd2135aca2426f52523673832
  - Remove support for AIX

This is a companion to  
"Remove
support for AIX".

Change-Id: I705f7bf702e9080dd850518b492c8a7be7e325d5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/146063
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/helpcontent2 b/helpcontent2
index dc89de95c085..f3f1a7bccd67 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit dc89de95c0858af3e6116f2d2b736787c30fe213
+Subproject commit f3f1a7bccd67dbefd2135aca2426f52523673832


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

2023-01-26 Thread Stephan Bergmann (via logerrit)
 source/text/scalc/01/04060104.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f3f1a7bccd67dbefd2135aca2426f52523673832
Author: Stephan Bergmann 
AuthorDate: Tue Jan 24 11:05:30 2023 +0100
Commit: Stephan Bergmann 
CommitDate: Fri Jan 27 07:28:34 2023 +

Remove support for AIX

This is a companion to  
"Remove
support for AIX".

Change-Id: I705f7bf702e9080dd850518b492c8a7be7e325d5
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/146063
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/source/text/scalc/01/04060104.xhp 
b/source/text/scalc/01/04060104.xhp
index 65e0076dab..26e59f4f73 100644
--- a/source/text/scalc/01/04060104.xhp
+++ b/source/text/scalc/01/04060104.xhp
@@ -169,7 +169,7 @@
 "system"
 
 
-The 
type of the operating system: "AIX" for Advanced Interactive Executive IBM 
computer operating systems"ANDROID" for Google mobile operating 
system"DRAGONFLY" for DragonFly operating system forked from 
FreeBSD"EMSCRIPTEN" for browser WebAssembly system"FREEBSD", 
"OPENBSD" or "NETBSD" for operating systems based on the Berkeley Software 
Distribution (BSD)"HAIKU" for BeOS compatible operating system"iOS" 
for Apple mobile operating system "LINUX" for GNU/Linux based operating 
systems"MACOSX" for Apple Mac OS X"SOLARIS" for Oracle Solaris 
operating system"WNT" for Microsoft Windows
+The 
type of the operating system: "ANDROID" for Google mobile operating 
system"DRAGONFLY" for DragonFly operating system forked from 
FreeBSD"EMSCRIPTEN" for browser WebAssembly system"FREEBSD", 
"OPENBSD" or "NETBSD" for operating systems based on the Berkeley Software 
Distribution (BSD)"HAIKU" for BeOS compatible operating system"iOS" 
for Apple mobile operating system "LINUX" for GNU/Linux based operating 
systems"MACOSX" for Apple Mac OS X"SOLARIS" for Oracle Solaris 
operating system"WNT" for Microsoft Windows
 
   
   


[Libreoffice-commits] core.git: autogen.sh bridges/Library_cpp_uno.mk bridges/source configure.ac cppu/source cpputools/scripts desktop/scripts desktop/source desktop/unx external/clucene external/cur

2023-01-26 Thread Stephan Bergmann (via logerrit)
 Repository.mk |4 
 autogen.sh|1 
 bridges/Library_cpp_uno.mk|4 
 bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx   |  658 --
 bridges/source/cpp_uno/gcc3_aix_powerpc/except.cxx|  260 -
 bridges/source/cpp_uno/gcc3_aix_powerpc/share.hxx |   89 -
 bridges/source/cpp_uno/gcc3_aix_powerpc/uno2cpp.cxx   |  501 --
 configure.ac  |   43 
 cppu/source/typelib/static_types.cxx  |7 
 cppu/source/typelib/typelib.cxx   |   13 
 cpputools/scripts/uno.sh  |   13 
 desktop/scripts/soffice.sh|4 
 desktop/scripts/unopkg.sh |   17 
 desktop/source/deployment/misc/dp_platform.cxx|2 
 desktop/unx/source/start.c|8 
 external/clucene/UnpackedTarball_clucene.mk   |1 
 external/clucene/patches/clucene-aix.patch|   40 
 external/curl/ExternalPackage_curl.mk |2 
 external/hunspell/ExternalProject_hunspell.mk |1 
 external/icu/ExternalProject_icu.mk   |2 
 external/icu/UnpackedTarball_icu.mk   |1 
 external/icu/icu4c-aix.patch.1|  143 ---
 external/libexttextcat/ExternalProject_libexttextcat.mk   |3 
 external/libnumbertext/ExternalProject_libnumbertext.mk   |1 
 external/lpsolve/ExternalProject_lpsolve.mk   |3 
 external/lpsolve/UnpackedTarball_lpsolve.mk   |1 
 external/lpsolve/lp_solve-aix.patch   |   39 
 external/nss/UnpackedTarball_nss.mk   |1 
 external/nss/nss.aix.patch|  140 --
 external/openldap/ExternalProject_openldap.mk |3 
 external/openssl/openssl-no-ipc-cmd.patch.0   |   23 
 external/python3/ExternalPackage_python3.mk   |2 
 external/python3/ExternalProject_python3.mk   |2 
 external/redland/UnpackedTarball_rasqal.mk|1 
 external/redland/rasqal/rasqal-aix.patch.1|   25 
 external/xmlsec/ExternalProject_xmlsec.mk |1 
 helpcompiler/inc/HelpLinker.hxx   |4 
 include/LibreOfficeKit/LibreOfficeKitInit.h   |7 
 include/osl/endian.h  |7 
 include/sal/alloca.h  |4 
 include/sal/config.h  |4 
 include/sal/main.h|4 
 instsetoo_native/inc_openoffice/unix/find-requires-x11.sh |   10 
 jvmfwk/Package_rcfiles.mk |2 
 odk/CustomTarget_check.mk |3 
 odk/source/unoapploader/unx/unoapploader.c|6 
 sal/osl/unx/file_error_transl.cxx |2 
 sal/osl/unx/module.cxx|   49 -
 sal/osl/unx/system.hxx|   14 
 sal/qa/osl/file/osl_File.cxx  |2 
 scp2/source/ooo/module_hidden_ooo.scp |   53 -
 scp2/source/ooo/module_ooo.scp|   12 
 scp2/source/ooo/ure.scp   |   73 -
 scp2/source/python/file_python_librelogo.scp  |2 
 scp2/source/python/module_python_librelogo.scp|2 
 shell/source/tools/lngconvex/lngconvex.cxx|5 
 shell/source/unix/misc/senddoc.sh |9 
 solenv/bin/concat-deps.c  |4 
 solenv/bin/modules/installer/epmfile.pm   |9 
 solenv/bin/modules/installer/parameter.pm |   10 
 solenv/clang-format/excludelist   |4 
 solenv/gbuild/platform/com_GCC_defs.mk|2 
 soltools/Executable_cpp.mk|2 
 soltools/cpp/_unix.c  |4 
 svx/source/gengal/gengal.sh   |   17 
 tools/source/stream/strmunx.cxx   |2 
 vcl/inc/unx/salunxtime.h  |4 
 vcl/inc/unx/screensaverinhibitor.hxx  |2 
 vcl/unx/generic/app/saldata.cxx   |3 
 vcl/unx/generic/app/saldisp.cxx   |2 
 vcl/unx/generic/window/screensaverinhibitor.cxx   |6 
 vcl/unx/gtk3/a11y/atklistener.cxx |6 
 vcl/unx/gtk3/a11y/atkutil.cxx |6 
 vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx |6 
 

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

2023-01-26 Thread Miklos Vajna (via logerrit)
 sw/qa/core/text/text.cxx   |7 ---
 sw/qa/core/unocore/unocore.cxx |4 ++--
 sw/qa/extras/layout/layout.cxx |8 
 sw/qa/extras/layout/layout2.cxx|   21 -
 sw/qa/extras/ooxmlexport/ooxmlexport.cxx   |2 +-
 sw/qa/extras/ooxmlexport/ooxmlexport15.cxx |   16 
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx   |2 +-
 sw/qa/extras/ooxmlimport/ooxmlimport2.cxx  |5 +++--
 sw/qa/extras/uiwriter/uiwriter2.cxx|   21 -
 sw/qa/extras/ww8export/ww8export3.cxx  |2 +-
 sw/qa/extras/ww8export/ww8export4.cxx  |2 +-
 sw/source/core/text/porfld.cxx |   10 +-
 sw/source/core/text/xmldump.cxx|2 ++
 13 files changed, 52 insertions(+), 50 deletions(-)

New commits:
commit 12a5e9bd92c0969051e035a4f2b7c18f0e3e79b5
Author: Miklos Vajna 
AuthorDate: Thu Jan 26 20:03:44 2023 +0100
Commit: Miklos Vajna 
CommitDate: Fri Jan 27 07:26:53 2023 +

sw: avoid copy in SwFieldPortion::dumpAsXml()

Improve SwFont::dumpAsXml() a little, then we can just call it.

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

diff --git a/sw/qa/core/text/text.cxx b/sw/qa/core/text/text.cxx
index 0ddc9a0885d8..d16e7b324656 100644
--- a/sw/qa/core/text/text.cxx
+++ b/sw/qa/core/text/text.cxx
@@ -914,8 +914,9 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, 
testNumberPortionFormat)
 // - Actual  : 240
 // i.e. the numbering portion font size was 12pt, not 24pt (but only when 
the doc had a
 // bookmark).
-assertXPath(pXmlDoc, 
"//SwParaPortion/SwLineLayout/child::*[@type='PortionType::Number']",
-"font-height", "480");
+assertXPath(pXmlDoc,
+
"//SwParaPortion/SwLineLayout/child::*[@type='PortionType::Number']/SwFont",
+"height", "480");
 }
 
 CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testNumberPortionNoformat)
@@ -933,7 +934,7 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, 
testNumberPortionNoformat)
 // i.e. the run color affected the color of the number portion in Writer, 
but not in Word.
 CPPUNIT_ASSERT_EQUAL(
 OUString(""),
-getXPath(pXmlDoc, "//SwParaPortion/SwLineLayout/SwFieldPortion", 
"font-color"));
+getXPath(pXmlDoc, 
"//SwParaPortion/SwLineLayout/SwFieldPortion/SwFont", "color"));
 }
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sw/qa/core/unocore/unocore.cxx b/sw/qa/core/unocore/unocore.cxx
index d17b1e19940a..342ca6c2eaab 100644
--- a/sw/qa/core/unocore/unocore.cxx
+++ b/sw/qa/core/unocore/unocore.cxx
@@ -881,7 +881,7 @@ CPPUNIT_TEST_FIXTURE(SwCoreUnocoreTest, 
testParagraphMarkerODFExport)
 // i.e. the custom "red" color was lost as RES_PARATR_LIST_AUTOFMT was not 
serialized to ODT.
 CPPUNIT_ASSERT_EQUAL(
 OUString("00ff"),
-getXPath(pXmlDoc, "//SwParaPortion/SwLineLayout/SwFieldPortion", 
"font-color"));
+getXPath(pXmlDoc, 
"//SwParaPortion/SwLineLayout/SwFieldPortion/SwFont", "color"));
 }
 
 CPPUNIT_TEST_FIXTURE(SwCoreUnocoreTest, testParagraphMarkerFormattedRun)
@@ -900,7 +900,7 @@ CPPUNIT_TEST_FIXTURE(SwCoreUnocoreTest, 
testParagraphMarkerFormattedRun)
 // i.e. the numbering portion was bold, while its weight should be normal.
 CPPUNIT_ASSERT_EQUAL(
 OUString("normal"),
-getXPath(pXmlDoc, "//SwParaPortion/SwLineLayout/SwFieldPortion", 
"font-weight"));
+getXPath(pXmlDoc, 
"//SwParaPortion/SwLineLayout/SwFieldPortion/SwFont", "weight"));
 }
 
 CPPUNIT_TEST_FIXTURE(SwCoreUnocoreTest, testFlySplit)
diff --git a/sw/qa/extras/layout/layout.cxx b/sw/qa/extras/layout/layout.cxx
index 71cb32fd9fda..4b8236f51b72 100644
--- a/sw/qa/extras/layout/layout.cxx
+++ b/sw/qa/extras/layout/layout.cxx
@@ -4223,10 +4223,10 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf64222)
 {
 createSwDoc("tdf64222.docx");
 xmlDocUniquePtr pXmlDoc = parseLayoutDump();
-assertXPath(
-pXmlDoc,
-
"/root/page/body/txt[2]/SwParaPortion/SwLineLayout/child::*[@type='PortionType::Number']",
-"font-height", "560");
+assertXPath(pXmlDoc,
+"/root/page/body/txt[2]/SwParaPortion/SwLineLayout/"
+"child::*[@type='PortionType::Number']/SwFont",
+"height", "560");
 }
 
 CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf113014)
diff --git a/sw/qa/extras/layout/layout2.cxx b/sw/qa/extras/layout/layout2.cxx
index 6ff56e5ac49c..5e2f134c8793 100644
--- a/sw/qa/extras/layout/layout2.cxx
+++ b/sw/qa/extras/layout/layout2.cxx
@@ -2247,9 +2247,10 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter2, testTdf117923)
 
"/root/page/body/tab/row/cell/txt[3]/SwParaPortion/SwLineLayout/SwFieldPortion",
 "expand", "2.");
 // The numbering height was 960.
-assertXPath(pXmlDoc,
-

ESC meeting minutes: 2023-01-26

2023-01-26 Thread Miklos Vajna

* Present:
+ Heiko, Olivier, Caolan, Cloph, Michael S, Hossein, Xisco, Eike, Ilmari, 
Michael W, Stephan, Miklos, Stephane, Kendy, Gabriel, Thorsten, Rico

* Completed Action Items:

* Pending Action Items:

* Release Engineering update (Cloph) 
+ 7.5.0 status: rc3 was tagged yesterday

+ 7.4.5 was released today
  + 7.4.6 is just as planned

* Documentation (Olivier)
+ New Help 
   + fix in build (Sberg)

+ Helpcontent2
   + updates and fixes (ohallot, rlima. stragu, fitoshido)
+ Guides
   + Published Getting Started Guide and Draw Guide 7.4 as HTML.
 https://books.libreofffice.org.
+ Bugzilla Documentation statistics
254(254) bugs open
+ Updates:
BZ changes   1 week   1 month   3 months   12 months  
   created 16(4)43(7)  98(3)  307(1)  
 commented 16(0)66(9) 296(-2)1056(-43)
  resolved  4(-1)   16(2)  47(1)  186(-1) 
+ top 10 contributors:

  Stéphane Guillou made 61 changes in 1 month, and 113 changes in 1 year
  Olivier Hallot made 35 changes in 1 month, and 439 changes in 1 year
  Ilmari Lauhakangas made 29 changes in 1 month, and 93 changes in 1 
year
  Seth Chaiklin made 18 changes in 1 month, and 339 changes in 1 year
  Kaganski, Mike made 8 changes in 1 month, and 115 changes in 1 year
  Bogdan B made 7 changes in 1 month, and 179 changes in 1 year
  Rafael Lima made 7 changes in 1 month, and 119 changes in 1 year
  Vernon, Stuart Foote made 7 changes in 1 month, and 23 changes in 1 
year
  Roman Kuznetsov made 5 changes in 1 month, and 55 changes in 1 year
  Heiko Tietze made 4 changes in 1 month, and 111 changes in 1 year

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
279(279) (topicUI) bugs open, 68(68) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week1 month   3 months   12 months  
 added  7(-1) 14(3) 22(1)   58(2)  
 commented 60(-27)   210(-6)   537(10)2171(-18)
   removed  0(0)   0(0)  8(0)   32(-2) 
  resolved  8(-3) 32(3) 80(4)  301(1)  
+ top 10 contributors:

  Heiko Tietze made 140 changes in 1 month, and 1484 changes in 1 year
  Stéphane Guillou made 65 changes in 1 month, and 135 changes in 1 year
  Ilmari Lauhakangas made 43 changes in 1 month, and 198 changes in 1 
year
  Rafael Lima made 34 changes in 1 month, and 240 changes in 1 year
  Dieter made 31 changes in 1 month, and 215 changes in 1 year
  Kaganski, Mike made 29 changes in 1 month, and 137 changes in 1 year
  Vernon, Stuart Foote made 27 changes in 1 month, and 158 changes in 1 
year
  Eyal Rozenberg made 26 changes in 1 month, and 230 changes in 1 year
  David Melik made 16 changes in 1 month, and 16 changes in 1 year
  Kainz, Andreas made 9 changes in 1 month, and 32 changes in 1 year
+ [Bug 151090] [UI] The spreadsheet shifts when we drag'n'drop content from
   outside the window
 -> + [Bug 150148] Backup copies of all files are saved to a single folder
+ [Bug 109272] Wrong cursor position when deleting a selection in Show 
Changes mode
+ [Bug 153171] suggestion: add option to add x number of rows/columns in 
the menu
 -> + [Bug 95405] Sidebar deck for find/search and replace
  + like the idea (Miklos)
+ [Bug 149905] Add an option to automatically adjust cell width based on 
row height
+ [Bug 153168] Please remove the "finished" dialog after restoring Documents
+ [Bug 153127] "Book preview" should be separate from other page preview 
buttons
   in Print Preview toolbar
+ [Bug 143660] Application Color Theme Name is Not Translatable
+ [Bug 139016] LibreOffice Math background color on input box doesn't change
   with Application Colors
+ [Bug 129905] Cannot turn off section boundaries with Options-Application 
Colors


* Crash Testing (Caolan)
+ 117(+13) import failure, 5(+1) export failures

- fixes for new regressions in this round pushed

- proposed fix for one of the older calc issues

https://gerrit.libreoffice.org/c/core/+/146166

 - help with Calc threaded issues are appreciated, see the recent dev 
mailing list post
+ 3 coverity issues

- fixes in gerrit

+ 6 ossfuzz issue

- no crashes


* Crash Reporting (Xisco)
   + https://crashreport.libreoffice.org/stats/version/7.3.7.2
 + (+61) 901 840 606 533 431 460 855 217 0 
   + https://crashreport.libreoffice.org/stats/version/7.4.3.2
 + (-344) 1119 1463 1790 1246 910 712 0 
   + https://crashreport.libreoffice.org/stats/version/7.4.4.2
 + (+511) 1343 832 0 
   + looking forward to 7.4.5 results


* Easyhack update (Hossein) 
  committer...   1 week 1 month 3 months  

[Libreoffice-qa] ESC meeting minutes: 2023-01-26

2023-01-26 Thread Miklos Vajna

* Present:
+ Heiko, Olivier, Caolan, Cloph, Michael S, Hossein, Xisco, Eike, Ilmari, 
Michael W, Stephan, Miklos, Stephane, Kendy, Gabriel, Thorsten, Rico

* Completed Action Items:

* Pending Action Items:

* Release Engineering update (Cloph) 
+ 7.5.0 status: rc3 was tagged yesterday

+ 7.4.5 was released today
  + 7.4.6 is just as planned

* Documentation (Olivier)
+ New Help 
   + fix in build (Sberg)

+ Helpcontent2
   + updates and fixes (ohallot, rlima. stragu, fitoshido)
+ Guides
   + Published Getting Started Guide and Draw Guide 7.4 as HTML.
 https://books.libreofffice.org.
+ Bugzilla Documentation statistics
254(254) bugs open
+ Updates:
BZ changes   1 week   1 month   3 months   12 months  
   created 16(4)43(7)  98(3)  307(1)  
 commented 16(0)66(9) 296(-2)1056(-43)
  resolved  4(-1)   16(2)  47(1)  186(-1) 
+ top 10 contributors:

  Stéphane Guillou made 61 changes in 1 month, and 113 changes in 1 year
  Olivier Hallot made 35 changes in 1 month, and 439 changes in 1 year
  Ilmari Lauhakangas made 29 changes in 1 month, and 93 changes in 1 
year
  Seth Chaiklin made 18 changes in 1 month, and 339 changes in 1 year
  Kaganski, Mike made 8 changes in 1 month, and 115 changes in 1 year
  Bogdan B made 7 changes in 1 month, and 179 changes in 1 year
  Rafael Lima made 7 changes in 1 month, and 119 changes in 1 year
  Vernon, Stuart Foote made 7 changes in 1 month, and 23 changes in 1 
year
  Roman Kuznetsov made 5 changes in 1 month, and 55 changes in 1 year
  Heiko Tietze made 4 changes in 1 month, and 111 changes in 1 year

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
279(279) (topicUI) bugs open, 68(68) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week1 month   3 months   12 months  
 added  7(-1) 14(3) 22(1)   58(2)  
 commented 60(-27)   210(-6)   537(10)2171(-18)
   removed  0(0)   0(0)  8(0)   32(-2) 
  resolved  8(-3) 32(3) 80(4)  301(1)  
+ top 10 contributors:

  Heiko Tietze made 140 changes in 1 month, and 1484 changes in 1 year
  Stéphane Guillou made 65 changes in 1 month, and 135 changes in 1 year
  Ilmari Lauhakangas made 43 changes in 1 month, and 198 changes in 1 
year
  Rafael Lima made 34 changes in 1 month, and 240 changes in 1 year
  Dieter made 31 changes in 1 month, and 215 changes in 1 year
  Kaganski, Mike made 29 changes in 1 month, and 137 changes in 1 year
  Vernon, Stuart Foote made 27 changes in 1 month, and 158 changes in 1 
year
  Eyal Rozenberg made 26 changes in 1 month, and 230 changes in 1 year
  David Melik made 16 changes in 1 month, and 16 changes in 1 year
  Kainz, Andreas made 9 changes in 1 month, and 32 changes in 1 year
+ [Bug 151090] [UI] The spreadsheet shifts when we drag'n'drop content from
   outside the window
 -> + [Bug 150148] Backup copies of all files are saved to a single folder
+ [Bug 109272] Wrong cursor position when deleting a selection in Show 
Changes mode
+ [Bug 153171] suggestion: add option to add x number of rows/columns in 
the menu
 -> + [Bug 95405] Sidebar deck for find/search and replace
  + like the idea (Miklos)
+ [Bug 149905] Add an option to automatically adjust cell width based on 
row height
+ [Bug 153168] Please remove the "finished" dialog after restoring Documents
+ [Bug 153127] "Book preview" should be separate from other page preview 
buttons
   in Print Preview toolbar
+ [Bug 143660] Application Color Theme Name is Not Translatable
+ [Bug 139016] LibreOffice Math background color on input box doesn't change
   with Application Colors
+ [Bug 129905] Cannot turn off section boundaries with Options-Application 
Colors


* Crash Testing (Caolan)
+ 117(+13) import failure, 5(+1) export failures

- fixes for new regressions in this round pushed

- proposed fix for one of the older calc issues

https://gerrit.libreoffice.org/c/core/+/146166

 - help with Calc threaded issues are appreciated, see the recent dev 
mailing list post
+ 3 coverity issues

- fixes in gerrit

+ 6 ossfuzz issue

- no crashes


* Crash Reporting (Xisco)
   + https://crashreport.libreoffice.org/stats/version/7.3.7.2
 + (+61) 901 840 606 533 431 460 855 217 0 
   + https://crashreport.libreoffice.org/stats/version/7.4.3.2
 + (-344) 1119 1463 1790 1246 910 712 0 
   + https://crashreport.libreoffice.org/stats/version/7.4.4.2
 + (+511) 1343 832 0 
   + looking forward to 7.4.5 results


* Easyhack update (Hossein) 
  committer...   1 week 1 month 3 months  

Re: does the CLI option --cat (text to stdout) work?

2023-01-26 Thread Michael Weghorn

On 27/01/2023 01.00, Jono wrote:

LibreOffice-still.basic-x86_64.AppImage --version
LibreOffice 7.0.5.2 64390860c6cd0aca4beafafcfd84613dd9dfb63a


This LibreOffice version is outdated.


LibreOffice-still.basic-x86_64.AppImage --help

reports:

--cat   Dump text content of the following files to console
(implies --headless). Cannot be used with --convert-to.


but the following produces no output:

./LibreOffice-still.basic-x86_64.AppImage --cat test.odt

Does this feature work?


For a "test.odt" that contains the text "Test 123", this gives the 
expected result for me for both, a current development version and the 
Debian-provided LibreOffice 7.4.4:


$ libreoffice --cat /tmp/test.odt
Test 123

If it doesn't work with an up to date LibreOffice version, please report 
a bug in our Bugzilla issue tracker (and attach the test.odt you're using):

https://bugs.documentfoundation.org/

Since you're using an AppImage version of LibreOffice, I'd also suggest 
to first check whether it works when using the version from the official 
LibreOffice download page [1] instead.


[1] https://www.libreoffice.org/download/download-libreoffice/


[Libreoffice-bugs] [Bug 152848] When using accents in a table (spanish), a cell break occurs.

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152848

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from Dieter  ---
Zchronos, to be certain the reported issue is not  related to corruption in the
user profile, could you please reset your Libreoffice profile
(https://wiki.documentfoundation.org/UserProfile) and re-test? Could you please
also paste information frome Help -> About LibreOffice?
=> NEEDINFO

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

[Libreoffice-bugs] [Bug 153216] File Dialogue Hangs

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153216

Robert Großkopf  changed:

   What|Removed |Added

  Component|Base|Writer

--- Comment #2 from Robert Großkopf  ---
Have tested with LO 7.2.0.4 (version 7.2.0.1 is chosen above …)
Couldn't reproduce the bug.

If reporter hasn't tried to reproduce - why should this be a bug of LO?

Tested with OpenSUSE 15.3 64bit rpm Linux.

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

[Libreoffice-bugs] [Bug 153231] VISITOR MANAGEMENT SYSTEM IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153231

Buovjaga  changed:

   What|Removed |Added

  Component|Documentation   |deletionRequest
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Libreoffice-bugs] [Bug 153232] HR SOFTWARE IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153232

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED
  Component|Documentation   |deletionRequest
URL|https://zapiotech.com/hr-so |
   |ftware-dubai.html   |

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

[Libreoffice-bugs] [Bug 153234] Cheap Website Design Dubai

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153234

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |INVALID
  Component|Documentation   |deletionRequest
 Status|UNCONFIRMED |RESOLVED

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

[Libreoffice-bugs] [Bug 153226] The document size is much larger when embedding fonts options are enable

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153226

mohammadreza shahedi  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 153226] The document size is much larger when embedding fonts options are enable

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153226

--- Comment #5 from mohammadreza shahedi  ---
Hi, it is a heavy Persian font for title and heading, First it was "B Titr"
from "B series" that was made by "Borna Rayaneh"(http://www.bornaray.com) and
then became "IRTitr" from "IR series", that has some enhancements, and was
modified by "parwiniha"(https://parwiniha.ir).

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

[Libreoffice-bugs] [Bug 151504] Navigator dialog docked above sidebar increases size while editing document

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151504

--- Comment #9 from Louise  ---
Oops, the Images attached are the incorrect way round.  LibreOfficeII is the
Initial setup and LibreOffice I is how the style navigation bar was migrating
while working in the document.

LibreOfficeII image is the document I have been working in today and it all
seems to be staying in the original position I place it in. 

Many thanks, and sorry for the confusion
Louise

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

[Libreoffice-bugs] [Bug 151504] Navigator dialog docked above sidebar increases size while editing document

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151504

--- Comment #8 from Louise  ---
Created attachment 184953
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184953=edit
Subsequent migration of lower navigation bar towards bottom of page

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

[Libreoffice-bugs] [Bug 151504] Navigator dialog docked above sidebar increases size while editing document

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151504

--- Comment #7 from Louise  ---
Created attachment 184952
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184952=edit
Initial docking setup for dual navigation bars

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

[Libreoffice-bugs] [Bug 153234] New: Cheap Website Design Dubai

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153234

Bug ID: 153234
   Summary: Cheap Website Design Dubai
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aswinzapiot...@gmail.com
CC: olivier.hal...@libreoffice.org

Created attachment 184951
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184951=edit
web design dubai, website design dubai, website design company in dubai

Studies show that visitors judge the trustworthiness of a website in just about
50 milliseconds. That’s why you need a professional website that catches your
target audience’s attention and encourages them to browse through the pages.
This is what ultimately contributes to the growth of the bottom line of your
business. When it comes to website design in Dubai, we stand out among our
competitors. Well-known as a web design company in Dubai, Zapiotech.com
specializes in creating simple, attractive and custom websites that project
your brand’s image and provide the best UX. Looking for a company that develops
cheap website design dubai? Zapio can help you!

As an online business owner, it is important that you have a responsive website
for your company. This is to ensure that PC, smartphone, and tablet users have
the same experience when they access your site on their device. A responsive
web design dubai also makes navigating your site easier for visitors. At Zapio,
we have a team of expert developers who craft cheap website design dubai that
offer the best user experience. As an affordable web design agency in Dubai, we
have helped many companies take their business to the next level of success
with website design in Dubai. Highly skilled programmers in our team are
well-known for developing truly engaging but cheap website design dubai that
keep visitors hooked on to your content.

Your company’s website serves as your business card. Prospective customers
visit your website first and then decide whether they should buy your products/
services or not. Visitors form an impression based on what they see on your
website. You benefit if their first impression is good. That’s why it is
important to have a visually appealing business website. When you entrust the
job to Zapio, we create website design in Dubai keeping in mind aspects such as
the latest technologies, loading speed, and call-to-action buttons. Further,
when it comes to web design in Dubai, experienced developers at Zapio make sure
that your website remains current for a longer period of time. Additionally,
our service – cheap website design in Dubai – is focused on enhancing your
website’s aesthetic appeal and ensuring effective organization to make
navigation extremely intuitive. This way your website keeps the visitors
engaged for a longer time!

Know more….
mail us:   i...@zapiotech.com
Call on: +971 52 7081010
Website   : www.zapiotech.com

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - 2 commits - sw/inc sw/source

2023-01-26 Thread Tomaž Vajngerl (via logerrit)
 sw/inc/docsh.hxx   |3 +++
 sw/source/core/model/ThemeColorChanger.cxx |   17 +
 sw/source/uibase/app/docst.cxx |   13 +
 3 files changed, 33 insertions(+)

New commits:
commit 76d63bb1f6385175238ab3a44f0aa3d877df4c79
Author: Tomaž Vajngerl 
AuthorDate: Wed Jan 25 18:09:15 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Fri Jan 27 06:06:54 2023 +

sw: change or create the selected theme in SdrPage on theme change

When the theme color changes (from the UI), also the theme that
is set to the SdrPage needs to change. If there is no theme set
yet, a new theme needs to be created (from a set of defaults).

Change-Id: I5e3d6d9f973712ddb875a41adba1aff04395ca7a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146129
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit 784ee6e9fad22560add4a0767828ef07b8567bc2)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146153
Tested-by: Tomaž Vajngerl 

diff --git a/sw/source/core/model/ThemeColorChanger.cxx 
b/sw/source/core/model/ThemeColorChanger.cxx
index 4c739547685b..87f1901083c4 100644
--- a/sw/source/core/model/ThemeColorChanger.cxx
+++ b/sw/source/core/model/ThemeColorChanger.cxx
@@ -19,6 +19,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include 
@@ -234,8 +235,24 @@ ThemeColorChanger::~ThemeColorChanger() {}
 void ThemeColorChanger::apply(svx::ColorSet const& rColorSet)
 {
 SwDoc* pDocument = mpDocSh->GetDoc();
+if (!pDocument)
+return;
+
 pDocument->GetIDocumentUndoRedo().StartUndo(SwUndoId::EMPTY, nullptr);
 
+SdrPage* pPage = 
pDocument->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0);
+svx::Theme* pTheme = pPage->getSdrPageProperties().GetTheme();
+if (pTheme)
+{
+pTheme->SetColorSet(std::make_unique(rColorSet));
+}
+else
+{
+
pPage->getSdrPageProperties().SetTheme(std::make_unique("Office"));
+pTheme = pPage->getSdrPageProperties().GetTheme();
+pTheme->SetColorSet(std::make_unique(rColorSet));
+}
+
 SfxStyleSheetBasePool* pPool = mpDocSh->GetStyleSheetPool();
 SwDocStyleSheet* pStyle;
 
commit 4f50daccaa206058df53959875d13827af267364
Author: Tomaž Vajngerl 
AuthorDate: Wed Jan 25 16:55:14 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Fri Jan 27 06:06:47 2023 +

sw: support theme colors in color picker in writer

Implements SfxDocumentShell::GetThemeColors, which allows the
color picker to use the theme colors and change them in Writer.

Change-Id: Ic13d2086d4ff037b377b475630b02ed1509fdf3d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146120
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
(cherry picked from commit cae93bc7a401cb6ddaf33b7a23e2ff3c3bfada40)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146152
Tested-by: Tomaž Vajngerl 

diff --git a/sw/inc/docsh.hxx b/sw/inc/docsh.hxx
index 8d051b4fb54a..74fa2225ae93 100644
--- a/sw/inc/docsh.hxx
+++ b/sw/inc/docsh.hxx
@@ -253,6 +253,9 @@ public:
bool bTemplate = false ) const override;
 
 virtual std::set GetDocColors() override;
+
+virtual std::vector GetThemeColors() override;
+
 sfx::AccessibilityIssueCollection runAccessibilityCheck() override;
 
 virtual void LoadStyles( SfxObjectShell& rSource ) override;
diff --git a/sw/source/uibase/app/docst.cxx b/sw/source/uibase/app/docst.cxx
index f13b90b70af6..e3cc7b0f6b6e 100644
--- a/sw/source/uibase/app/docst.cxx
+++ b/sw/source/uibase/app/docst.cxx
@@ -81,6 +81,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 using namespace ::com::sun::star;
 
@@ -1575,6 +1577,17 @@ std::set SwDocShell::GetDocColors()
 return m_xDoc->GetDocColors();
 }
 
+std::vector SwDocShell::GetThemeColors()
+{
+SdrPage* pPage = 
m_xDoc->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0);
+if (!pPage)
+return {};
+svx::Theme* pTheme = pPage->getSdrPageProperties().GetTheme();
+if (!pTheme)
+return {};
+return pTheme->GetColors();
+}
+
 void  SwDocShell::LoadStyles( SfxObjectShell& rSource )
 {
 LoadStyles_(rSource, false);


[Libreoffice-bugs] [Bug 153232] HR SOFTWARE IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153232

zapiotechnology  changed:

   What|Removed |Added

URL||https://zapiotech.com/hr-so
   ||ftware-dubai.html

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

[Libreoffice-bugs] [Bug 153233] New: Text changing to strike through format when using hyphen.

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153233

Bug ID: 153233
   Summary: Text changing to strike through format when using
hyphen.
   Product: LibreOffice
   Version: 7.3.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rame...@protonmail.com

Description:
Text changing to strike through format in LibreOffice writer when using hyphen
before and after of a text.

LibreOffice Version info:-
Version: 7.3.6.2 (x64) / LibreOffice Community
Build ID: c28ca90fd6e1a19e189fc16c05f8f8924961e12e
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-IN (en_IN); UI: en-GB
Calc: CL

Steps to Reproduce:
1. Open LibreOffice Writer
2. In a blank document type the text -abcd-


Actual Results:
1. The text will be changed to abcd and strike through format automatically
applying to the text.
2. Formatting button for 'strike-through' format seen as activated.

Expected Results:
-abcd-


Reproducible: Always


User Profile Reset: No

Additional Info:
The issue also appeared when using Malayalam text.

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

[Libreoffice-bugs] [Bug 153232] New: HR SOFTWARE IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153232

Bug ID: 153232
   Summary: HR SOFTWARE IN DUBAI - UAE
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aswinzapiot...@gmail.com
CC: olivier.hal...@libreoffice.org

Created attachment 184950
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184950=edit
hr software in dubai

The advent of innovation and technology in business in Dubai has exponentially
increased the importance of HRMS in organizations. The scope of HR today has
widened immensely along with a competitive market for businesses. Companies
have to put in place a comprehensive HRMS to manage an extensive, talented, and
growing workforce. The HR software in Dubai today has to be robust, automated,
and capable of integrating many human resource activities to provide unified
services.

Cloud-based HRMS in UAE provide organizations with the computational power and
flexibility required to survive and progress in the digital age. A cloud-based
HR system in Dubai can bring many benefits to your organization and create
immense value contributing to your company’s stature, reputation and growth in
the market. The HRMS system in UAE acquired by a firm is aimed at enhancing the
performance of employees to reach the business goals of the company.

Cloud-based HRMS in Dubai provide organizations with the computational power
and flexibility required to survive and progress in the digital age. A
cloud-based HR system in dubai can bring many benefits to your organization and
create immense value contributing to your company’s stature, reputation and
growth in the market. The HRMS system in UAE acquired by a firm is aimed at
enhancing the performance of employees to reach the business goals of the
company.

Know more….
mail us:   i...@zapiotech.com
Call on: +971 52 7081010
Website   : www.zapiotech.com

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

[Libreoffice-bugs] [Bug 153231] VISITOR MANAGEMENT SYSTEM IN DUBAI - UAE

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153231

--- Comment #1 from zapiotechnology  ---
Created attachment 184949
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184949=edit
visitor management system in dubai

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

[Libreoffice-bugs] [Bug 108660] [META] Formula bar (input line) bugs and enhancements

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108660
Bug 108660 depends on bug 151682, which changed state.

Bug 151682 Summary: Calc: Editing area in Formula bar appears cropped
https://bugs.documentfoundation.org/show_bug.cgi?id=151682

   What|Removed |Added

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

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

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

2023-01-26 Thread Samuel Mehrbrodt (via logerrit)
 sc/source/ui/app/inputwin.cxx |9 +
 sc/source/ui/inc/inputwin.hxx |2 --
 2 files changed, 1 insertion(+), 10 deletions(-)

New commits:
commit f7544650cc4e31da67873898e2d587afa846b9b4
Author: Samuel Mehrbrodt 
AuthorDate: Thu Jan 26 16:52:32 2023 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Fri Jan 27 05:42:19 2023 +

tdf#151682 Fix gap above input bar

Remove vertical offset, looks like it's not needed anymore.

Change-Id: If0f7f7dce7a7e4249036930b60fe353890b495fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146179
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index c41899dc3166..7b9e208aec14 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -496,7 +496,7 @@ void ScInputWindow::Resize()
 if (pGroupBar->GetNumLines() > 1)
 {
 Size aGroupBarSize = pGroupBar->GetSizePixel();
-aSize.setHeight(aGroupBarSize.Height() + 2 * 
(pGroupBar->GetVertOffset() + 1));
+aSize.setHeight(aGroupBarSize.Height());
 }
 }
 
@@ -850,7 +850,6 @@ ScInputBarGroup::ScInputBarGroup(vcl::Window* pParent, 
ScTabViewShell* pViewSh)
 , mxTextWndGroup(new ScTextWndGroup(*this, pViewSh))
 , mxButtonUp(m_xBuilder->weld_button("up"))
 , mxButtonDown(m_xBuilder->weld_button("down"))
-, mnVertOffset(0)
 {
 InitControlBase(m_xContainer.get());
 
@@ -1086,12 +1085,6 @@ void ScInputBarGroup::TriggerToolboxLayout()
 ScInputWindow  = dynamic_cast(*w);
 SfxViewFrame* pViewFrm = SfxViewFrame::Current();
 
-// Capture the vertical position of this window in the toolbar, when we 
increase
-// the size of the toolbar to accommodate expanded line input we need to 
take this
-// into account
-if ( !mnVertOffset )
-mnVertOffset = rParent.GetItemPosRect( rParent.GetItemCount() - 1 
).Top();
-
 if ( !pViewFrm )
 return;
 
diff --git a/sc/source/ui/inc/inputwin.hxx b/sc/source/ui/inc/inputwin.hxx
index 12bc461f2836..ac96062af137 100644
--- a/sc/source/ui/inc/inputwin.hxx
+++ b/sc/source/ui/inc/inputwin.hxx
@@ -262,7 +262,6 @@ public:
 voidDecrementVerticalSize();
 voidNumLinesChanged();
 virtual tools::LongGetNumLines() const override { return 
mxTextWndGroup->GetNumLines(); }
-tools::LongGetVertOffset() const { return  
mnVertOffset; }
 
 int GetPixelHeightForLines() const
 {
@@ -278,7 +277,6 @@ private:
 std::unique_ptr mxTextWndGroup;
 std::unique_ptr mxButtonUp;
 std::unique_ptr mxButtonDown;
-tools::Long   mnVertOffset;
 
 DECL_LINK(ClickHdl, weld::Button&, void);
 };


[Libreoffice-bugs] [Bug 74056] EDITING: Index Quirks

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74056

--- Comment #9 from Frank  ---
In response to your request that I recheck this bug to see if it has been
accidentally fixed by someone, I did so just for grins.

I used version 7.4.4.2 of LibreOffice Writer (marked as community edition) and
followed the instructions for reproducing the bug that I had posted exactly
nine years ago.

The bug is still there - exactly as described.

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

[Libreoffice-bugs] [Bug 153199] LibreOffice freezes after closing Adobe Illustrator

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153199

--- Comment #6 from fadil.fikril...@gmail.com ---
yup, it still freezes 

Version: 7.4.5.1 (x64) / LibreOffice Community
Build ID: 9c0871452b3918c1019dde9bfac75448afc4b57f
CPU threads: 12; OS: Windows 10.0 Build 22000; UI render: Skia/Raster; VCL: win
Locale: id-ID (id_ID); UI: id-ID
Calc: CL

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

[Libreoffice-bugs] [Bug 147892] Corrupt DOCX document after saving (track changes involved)

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147892

Telesto  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

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

[Libreoffice-bugs] [Bug 153230] Auto spell check red wavy line disappear depending on font an zoom level

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153230

Telesto  changed:

   What|Removed |Added

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

--- Comment #4 from Telesto  ---


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

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

[Libreoffice-bugs] [Bug 153223] Red wavy lines under misspelt words disappears when viewing page at zoom factor of 160% or greater

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153223

Telesto  changed:

   What|Removed |Added

 CC||koll...@kollien.de

--- Comment #3 from Telesto  ---
*** Bug 153230 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 127424] Rework fix for Bug 63955 in ViewInformation per Armin's Suggestion

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127424

Telesto  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #2 from Telesto  ---


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

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

[Libreoffice-bugs] [Bug 94319] Copy/Paste of lines (and grouped object with lines inside) places the copy in unpredictable location

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94319

Telesto  changed:

   What|Removed |Added

 CC||lukebe...@hotmail.com

--- Comment #40 from Telesto  ---
*** Bug 127424 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 94319] Copy/Paste of lines (and grouped object with lines inside) places the copy in unpredictable location

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94319

--- Comment #39 from Telesto  ---
Bug 63955 comment 8 / bug 63955 comment 19 regarding the commit causing the
problem:

Armin Le Grand 2018-02-22 17:33:56 UTC
Oh man, why was this fixed *in the primitive creation* ? Prinitive creation
should always represent the 'truth' about the geometry. If decomposition takes
too long, the fix should be where it gets decomposed. Each decomposition
implementation at the primitive level *has* ViewInformation exactly for that
purpose (!)
Did I mention that for dashed lines when *clipping* against *something* the
dash *will move* and not be the same as when started from the line's start ???

Armin Le Grand 2018-02-22 17:36:49 UTC
The fix also does not prevent a 18km long line be feeded to rendering from
other sources, only one source is elliminated. That's why it should be fixed
where it gets visualized/discretisized.

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

[Libreoffice-bugs] [Bug 152493] FILESAVE WebDAV upload fails with Calc spreadsheet in 7.4

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152493

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 152998] Bottom of Print Dialog Is Cut Off on 13" MacBook Pro

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152998

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 147892] Corrupt DOCX document after saving (track changes involved)

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147892

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 152993] Line spacing appears to change when entering/existing textbox in Impress

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152993

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 152992] Regularly selecting a textbox instead of entering it (Impress)

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152992

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 153227] TOC Dialog Does Not Fit Screen

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153227

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

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

[Libreoffice-bugs] [Bug 153227] TOC Dialog Does Not Fit Screen

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153227

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 153206] Calc sort order wrong

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153206

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 153206] Calc sort order wrong

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153206

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

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

[Libreoffice-bugs] [Bug 149769] automatic erroneous correction for "AUTRICE-REALISATRICE"

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149769

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 149769] automatic erroneous correction for "AUTRICE-REALISATRICE"

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149769

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

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 147786] Some circles do not print adequatly

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147786

--- Comment #5 from QA Administrators  ---
Dear b.dusoulier,

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 144361] Image filter not found

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144361

--- Comment #9 from QA Administrators  ---
Dear hollnagel.erik,

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 96702] Index is with Link text (underline)

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96702

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

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 94437] Editing: entries from a deleted alphabetic index reappear when a new index is inserted

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94437

--- Comment #21 from QA Administrators  ---
Dear Bernard Moreton,

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 74056] EDITING: Index Quirks

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74056

--- Comment #8 from QA Administrators  ---
Dear Frank,

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 122987] Cell movement by ALT + drag on multiple selected sheets.

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122987

--- Comment #5 from QA Administrators  ---
Dear jun meguro,

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 135025] Empty pages are added after undoing content removal

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135025

--- Comment #6 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 135003] Image in exported DOC moves the wrong direction (jump right when pressing down)

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135003

--- Comment #5 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 122485] UI: the black border of the selected cell visible through the comment box

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122485

--- Comment #6 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 122474] FILEOPEN XLSX, Pivot table gets refreshed automatically when opened in LO

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122474

--- 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 122476] FILEOPEN XLSX, Pivot table with extendable line gets distorted and its pivot diagram messed up

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122476

--- 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 118451] Vertical Ruler is not Adapted if Whitespace is Hidden

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118451

--- Comment #6 from QA Administrators  ---
Dear Harald Koester,

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 122465] FILEOPEN XLSX, Extra Data line and button appears in pivot table in Calc.

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122465

--- 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 122462] FILEOPEN XLSX, Xlsx cells have border in LO while they do not in MSO.

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122462

--- Comment #11 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 103458] When tracking changes, backspacing over a deleted word should skip over it instead of moving inside it

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103458

--- Comment #7 from QA Administrators  ---
Dear Ulrich Windl,

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 103751] RTL outline numbering not working as expected...

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103751

--- Comment #18 from QA Administrators  ---
Dear Nima Az,

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 108106] [FILEOPEN DOCX] Character properties of the chart legends are not displayed correctly in DOCX files created with MS Word 2013

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108106

--- Comment #6 from QA Administrators  ---
Dear Gabor Kelemen,

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 101188] Exclude header from alphabetical index

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101188

--- Comment #5 from QA Administrators  ---
Dear carlos.camara,

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 94319] Copy/Paste of lines (and grouped object with lines inside) places the copy in unpredictable location

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94319

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: docmodel/Library_docmodel.mk docmodel/source include/docmodel include/oox include/svx oox/inc oox/source sd/source svx/qa svx/source sw/qa sw/source writerfilter/source

2023-01-26 Thread Tomaž Vajngerl (via logerrit)
 docmodel/Library_docmodel.mk |1 
 docmodel/source/theme/Theme.cxx  |  158 ++
 include/docmodel/theme/Theme.hxx |  163 +++
 include/oox/drawingml/theme.hxx  |4 
 include/oox/export/ThemeExport.hxx   |8 -
 include/svx/ColorSets.hxx|  186 ---
 include/svx/dialog/ThemeDialog.hxx   |5 
 include/svx/svdmodel.hxx |6 
 include/svx/svdpage.hxx  |8 -
 oox/inc/drawingml/textfont.hxx   |4 
 oox/source/drawingml/textfont.cxx|4 
 oox/source/drawingml/theme.cxx   |   30 ++--
 oox/source/export/ThemeExport.cxx|   10 -
 sd/source/filter/eppt/epptooxml.hxx  |6 
 sd/source/filter/eppt/pptx-epptooxml.cxx |6 
 sd/source/ui/docshell/docshell.cxx   |2 
 sd/source/ui/func/fuconstr.cxx   |2 
 sd/source/ui/func/fupage.cxx |4 
 sd/source/ui/unoidl/unomodel.cxx |4 
 sd/source/ui/unoidl/unopage.cxx  |4 
 svx/qa/unit/ThemeTest.cxx|4 
 svx/source/dialog/ThemeDialog.cxx|3 
 svx/source/styles/ColorSets.cxx  |  136 ---
 svx/source/svdraw/svdmodel.cxx   |8 -
 svx/source/svdraw/svdpage.cxx|4 
 sw/qa/core/theme/ThemeTest.cxx   |4 
 sw/source/core/model/ThemeColorChanger.cxx   |4 
 sw/source/filter/xml/xmlfmte.cxx |2 
 sw/source/uibase/app/docst.cxx   |4 
 sw/source/uibase/shells/basesh.cxx   |4 
 sw/source/uibase/sidebar/ThemePanel.cxx  |4 
 writerfilter/source/dmapper/ThemeHandler.cxx |8 -
 xmloff/source/draw/sdxmlexp.cxx  |2 
 33 files changed, 402 insertions(+), 400 deletions(-)

New commits:
commit c9fb441c55d03f55877ed3bb2f5c39310d1ec44b
Author: Tomaž Vajngerl 
AuthorDate: Fri Jan 27 08:41:16 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Fri Jan 27 03:22:22 2023 +

move Theme class to own file inside docmodel

Also move Theme from svx to model namespace so it is consistent
with other classes in docmodel.

Theme header also includes ThemeSupplementalFont, ThemeFont,
FontScheme classes that are used by the Theme and were also moved
to docmodel. These may be moved to its own file in the future when
they are used in more places.

Change-Id: Ic409bea8e5298adc2b039b529c4f7b01cf64f03e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146221
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/docmodel/Library_docmodel.mk b/docmodel/Library_docmodel.mk
index 22ecdfa59ac4..7974027a7a9e 100644
--- a/docmodel/Library_docmodel.mk
+++ b/docmodel/Library_docmodel.mk
@@ -12,6 +12,7 @@ $(eval $(call gb_Library_Library,docmodel))
 $(eval $(call gb_Library_add_exception_objects,docmodel,\
 docmodel/source/uno/UnoThemeColor \
 docmodel/source/theme/ColorSet \
+docmodel/source/theme/Theme \
 ))
 
 $(eval $(call gb_Library_set_include,docmodel,\
diff --git a/docmodel/source/theme/Theme.cxx b/docmodel/source/theme/Theme.cxx
new file mode 100644
index ..0f8ff8002870
--- /dev/null
+++ b/docmodel/source/theme/Theme.cxx
@@ -0,0 +1,158 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ */
+
+#include 
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+using namespace com::sun::star;
+
+namespace model
+{
+Theme::Theme(OUString const& rName)
+: maName(rName)
+{
+}
+
+void Theme::SetColorSet(std::unique_ptr pColorSet)
+{
+mpColorSet = std::move(pColorSet);
+}
+
+const model::ColorSet* Theme::GetColorSet() const { return mpColorSet.get(); }
+
+model::ColorSet* Theme::GetColorSet() { return mpColorSet.get(); }
+
+void Theme::SetName(const OUString& rName) { maName = rName; }
+
+const OUString& Theme::GetName() const { return maName; }
+
+void Theme::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+(void)xmlTextWriterStartElement(pWriter, BAD_CAST("Theme"));
+(void)xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("ptr"), "%p", 
this);
+(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("maName"),
+  BAD_CAST(maName.toUtf8().getStr()));
+
+if (mpColorSet)
+{
+mpColorSet->dumpAsXml(pWriter);
+}
+
+(void)xmlTextWriterEndElement(pWriter);
+}
+
+void Theme::ToAny(uno::Any& rVal) const
+{
+comphelper::SequenceAsHashMap aMap;
+aMap["Name"] <<= maName;
+
+if (mpColorSet)
+

[Libreoffice-bugs] [Bug 148872] Right-Click at the right end of Selected Text, the selection will be released

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148872

nobu  changed:

   What|Removed |Added

Version|7.3.0.3 release |7.3.0.2 rc

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

[Libreoffice-bugs] [Bug 146260] XML Source: Wrong character set is used, thus the contents mapped to the cells are garbage/messy codes

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146260

--- Comment #5 from Kohei Yoshida  ---
With the latest version of orcus (0.18.0) now on master and this change
https://gerrit.libreoffice.org/c/core/+/146223, this issue should be fixed.

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

[Libreoffice-commits] core.git: docmodel/Library_docmodel.mk docmodel/source include/docmodel include/oox include/svx oox/source sd/source svx/Library_svx.mk svx/source sw/qa sw/source writerfilter/so

2023-01-26 Thread Tomaž Vajngerl (via logerrit)
 docmodel/Library_docmodel.mk |5 +
 docmodel/source/theme/ColorSet.cxx   |   74 +++
 include/docmodel/theme/ColorSet.hxx  |   45 ++
 include/oox/drawingml/clrscheme.hxx  |4 -
 include/svx/ColorSets.hxx|   41 +++--
 include/svx/dialog/ThemeColorValueSet.hxx|6 -
 include/svx/theme/IThemeColorChanger.hxx |4 -
 include/svx/theme/ThemeColorChanger.hxx  |6 -
 oox/source/drawingml/clrscheme.cxx   |2 
 oox/source/drawingml/theme.cxx   |3 
 oox/source/export/ThemeExport.cxx|4 -
 sd/source/filter/eppt/pptx-epptooxml.cxx |4 -
 svx/Library_svx.mk   |1 
 svx/source/dialog/ThemeColorValueSet.cxx |4 -
 svx/source/dialog/ThemeDialog.cxx|3 
 svx/source/styles/ColorSets.cxx  |   84 +--
 svx/source/theme/ThemeColorChanger.cxx   |   11 +--
 sw/qa/core/theme/ThemeTest.cxx   |2 
 sw/source/core/inc/ThemeColorChanger.hxx |4 -
 sw/source/core/model/ThemeColorChanger.cxx   |   12 +--
 sw/source/uibase/sidebar/ThemePanel.cxx  |6 -
 writerfilter/source/dmapper/ThemeHandler.cxx |1 
 22 files changed, 191 insertions(+), 135 deletions(-)

New commits:
commit 69c6f7bccec838b7288a25a29a83b7f782ba7586
Author: Tomaž Vajngerl 
AuthorDate: Thu Jan 26 23:43:00 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Fri Jan 27 01:41:22 2023 +

move ColorSet class to own file inside docmodel

Also move ColorSet from svx to model namespace so it is consistent
with other classes in docmodel.

Change-Id: Iacbdbdf5ece4015c628a0e45adf6a732b2d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146220
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/docmodel/Library_docmodel.mk b/docmodel/Library_docmodel.mk
index 3e0d28dfda28..22ecdfa59ac4 100644
--- a/docmodel/Library_docmodel.mk
+++ b/docmodel/Library_docmodel.mk
@@ -11,6 +11,7 @@ $(eval $(call gb_Library_Library,docmodel))
 
 $(eval $(call gb_Library_add_exception_objects,docmodel,\
 docmodel/source/uno/UnoThemeColor \
+docmodel/source/theme/ColorSet \
 ))
 
 $(eval $(call gb_Library_set_include,docmodel,\
@@ -18,6 +19,10 @@ $(eval $(call gb_Library_set_include,docmodel,\
 -I$(SRCDIR)/docmodel/inc \
 ))
 
+$(eval $(call gb_Library_use_externals,docmodel,\
+   libxml2 \
+))
+
 $(eval $(call gb_Library_add_defs,docmodel,\
 -DDOCMODEL_DLLIMPLEMENTATION \
 ))
diff --git a/docmodel/source/theme/ColorSet.cxx 
b/docmodel/source/theme/ColorSet.cxx
new file mode 100644
index ..55c03dadba8c
--- /dev/null
+++ b/docmodel/source/theme/ColorSet.cxx
@@ -0,0 +1,74 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ */
+
+#include 
+#include 
+#include 
+#include 
+#include 
+
+namespace model
+{
+ColorSet::ColorSet(OUString const& rName)
+: maName(rName)
+{
+}
+
+void ColorSet::add(model::ThemeColorType eType, Color aColorData)
+{
+if (eType == model::ThemeColorType::Unknown)
+return;
+maColors[sal_Int16(eType)] = aColorData;
+}
+
+Color ColorSet::getColor(model::ThemeColorType eType) const
+{
+if (eType == model::ThemeColorType::Unknown)
+{
+SAL_WARN("svx", "ColorSet::getColor with ThemeColorType::Unknown");
+return COL_AUTO;
+}
+return maColors[size_t(eType)];
+}
+
+Color ColorSet::resolveColor(model::ThemeColor const& rThemeColor) const
+{
+auto eType = rThemeColor.getType();
+if (eType == model::ThemeColorType::Unknown)
+{
+SAL_WARN("svx", "ColorSet::resolveColor with ThemeColorType::Unknown");
+return COL_AUTO;
+}
+Color aColor = getColor(eType);
+return rThemeColor.applyTransformations(aColor);
+}
+
+void ColorSet::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+(void)xmlTextWriterStartElement(pWriter, BAD_CAST("ColorSet"));
+(void)xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("ptr"), "%p", 
this);
+(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("maName"),
+  BAD_CAST(maName.toUtf8().getStr()));
+
+for (const auto& rColor : maColors)
+{
+(void)xmlTextWriterStartElement(pWriter, BAD_CAST("Color"));
+std::stringstream ss;
+ss << rColor;
+(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("value"), 
BAD_CAST(ss.str().c_str()));
+(void)xmlTextWriterEndElement(pWriter);
+}
+
+(void)xmlTextWriterEndElement(pWriter);
+}
+
+} // end of namespace svx
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git 

[Libreoffice-commits] core.git: 2 commits - include/svx schema/libreoffice svx/Library_svxcore.mk svx/source sw/source

2023-01-26 Thread Tomaž Vajngerl (via logerrit)
 include/svx/ColorSets.hxx   |2 
 include/svx/theme/IThemeColorChanger.hxx|2 
 include/svx/theme/ThemeColorChanger.hxx |   39 ++
 schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng |8 
 svx/Library_svxcore.mk  |1 
 svx/source/styles/ColorSets.cxx |  104 ---
 svx/source/svdraw/svdpage.cxx   |6 
 svx/source/theme/ThemeColorChanger.cxx  |  161 
 sw/source/core/inc/ThemeColorChanger.hxx|8 
 sw/source/core/model/ThemeColorChanger.cxx  |  106 ---
 sw/source/filter/xml/xmlexp.hxx |3 
 sw/source/filter/xml/xmlfmte.cxx|   77 +
 12 files changed, 306 insertions(+), 211 deletions(-)

New commits:
commit 9cbc3a64492e0670427f17b753d0908657c8c5bd
Author: Tomaž Vajngerl 
AuthorDate: Thu Jan 26 21:19:31 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Fri Jan 27 01:41:08 2023 +

use ThemeColorChanger also in svx, when changing theme for SdrPage

This refactors the code in the Theme class to remove code that is
responsible for changing the color for the SdrPage and adds an
implementation of IThemeColorChanger - svx::ThemeColorChanger,
that is performing the same task from now on.

The svx::ThemeColorChanger is also partially used in Writer by
sw::ThemeColorChanger, when it needs to change the colors in the
common (Sdr) objects.

Change-Id: I39cfa278d31bdd802a5bf36eeaf6d472c8013dba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146173
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/svx/ColorSets.hxx b/include/svx/ColorSets.hxx
index 4c833a14..68da92152431 100644
--- a/include/svx/ColorSets.hxx
+++ b/include/svx/ColorSets.hxx
@@ -244,8 +244,6 @@ public:
 
 static std::unique_ptr FromAny(const css::uno::Any& rVal);
 
-void UpdateSdrPage(const SdrPage* pPage);
-
 std::vector GetColors() const;
 
 Color GetColor(model::ThemeColorType eType) const;
diff --git a/include/svx/theme/IThemeColorChanger.hxx 
b/include/svx/theme/IThemeColorChanger.hxx
index 5f90f273ee37..93cba5870b96 100644
--- a/include/svx/theme/IThemeColorChanger.hxx
+++ b/include/svx/theme/IThemeColorChanger.hxx
@@ -14,7 +14,7 @@
 
 namespace svx
 {
-class SVX_DLLPUBLIC IThemeColorChanger
+class SVXCORE_DLLPUBLIC IThemeColorChanger
 {
 public:
 virtual ~IThemeColorChanger() = default;
diff --git a/include/svx/theme/ThemeColorChanger.hxx 
b/include/svx/theme/ThemeColorChanger.hxx
new file mode 100644
index ..cf4071824d9c
--- /dev/null
+++ b/include/svx/theme/ThemeColorChanger.hxx
@@ -0,0 +1,39 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#pragma once
+
+#include 
+#include 
+#include 
+#include 
+#include 
+
+namespace svx
+{
+namespace theme
+{
+SVXCORE_DLLPUBLIC void updateSdrObject(svx::ColorSet const& rColorSet, 
SdrObject* pObject);
+}
+
+class SVXCORE_DLLPUBLIC ThemeColorChanger : public IThemeColorChanger
+{
+private:
+SdrPage* mpPage;
+
+public:
+ThemeColorChanger(SdrPage* pPage);
+virtual ~ThemeColorChanger() override;
+
+void apply(svx::ColorSet const& rColorSet) override;
+};
+
+} // end svx namespace
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk
index 439ae516427c..9ecc9ec58fc4 100644
--- a/svx/Library_svxcore.mk
+++ b/svx/Library_svxcore.mk
@@ -428,6 +428,7 @@ $(eval $(call gb_Library_add_exception_objects,svxcore,\
 svx/source/table/tablerows \
 svx/source/table/tableundo \
 svx/source/table/viewcontactoftableobj \
+svx/source/theme/ThemeColorChanger \
 svx/source/tbxctrls/extrusioncontrols \
 svx/source/tbxctrls/fontworkgallery \
 svx/source/tbxctrls/linectrl \
diff --git a/svx/source/styles/ColorSets.cxx b/svx/source/styles/ColorSets.cxx
index 66a5e3e91016..eada260cf076 100644
--- a/svx/source/styles/ColorSets.cxx
+++ b/svx/source/styles/ColorSets.cxx
@@ -11,15 +11,9 @@
 #include 
 
 #include 
+#include 
 
 #include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-
 #include 
 #include 
 #include 
@@ -28,86 +22,10 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 
 using namespace com::sun::star;
 
-namespace
-{
-/// Updates a text portion to match a new color set, in case it already uses 
theme colors.
-void UpdateTextPortionColorSet(const uno::Reference& 
xPortion,
-   const svx::ColorSet& rColorSet)
-{
-if 

[Libreoffice-bugs] [Bug 147620] FILEOPEN: Certain SpreadsheetML style settings are ignored (ss:WrapText)

2023-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147620

--- Comment #4 from Commit Notification 
 ---
Kohei Yoshida committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/14c0efccba84a002050d081c961bb0b6e90b009f

tdf#147620: Pick up wrap-text and shrink-to-fit flags in Excel 2003 XML

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-commits] core.git: sc/qa sc/source

2023-01-26 Thread Kohei Yoshida (via logerrit)
 sc/qa/unit/data/xml/wrap-and-shrink.xml |   82 
 sc/qa/unit/subsequent_filters_test2.cxx |   34 +
 sc/source/filter/orcus/interface.cxx|6 ++
 3 files changed, 122 insertions(+)

New commits:
commit 14c0efccba84a002050d081c961bb0b6e90b009f
Author: Kohei Yoshida 
AuthorDate: Thu Jan 26 19:41:16 2023 -0500
Commit: Kohei Yoshida 
CommitDate: Fri Jan 27 01:38:03 2023 +

tdf#147620: Pick up wrap-text and shrink-to-fit flags in Excel 2003 XML

Change-Id: I8afd0522b441a90b431ff433ff87e0c095c8cb95
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146222
Tested-by: Jenkins
Reviewed-by: Kohei Yoshida 

diff --git a/sc/qa/unit/data/xml/wrap-and-shrink.xml 
b/sc/qa/unit/data/xml/wrap-and-shrink.xml
new file mode 100644
index ..429110c64399
--- /dev/null
+++ b/sc/qa/unit/data/xml/wrap-and-shrink.xml
@@ -0,0 +1,82 @@
+
+
+http://www.w3.org/TR/REC-html40;>
+ 
+  Kohei Yoshida
+  Kohei Yoshida
+  2022-05-18T00:46:32Z
+  2022-05-18T01:44:54Z
+  16.00
+ 
+ 
+  
+ 
+ 
+  15990
+  29040
+  32767
+  32767
+  False
+  False
+ 
+ 
+  
+   
+   
+   
+   
+   
+   
+  
+  
+   
+  
+  
+   
+  
+ 
+ 
+  
+   
+   
+   
+Default
+Text long enough to spill over
+   
+   
+Wrap text
+Text long enough to spill 
over
+   
+   
+Shrink to fit
+Text long enough to spill 
over
+   
+  
+  
+   
+
+
+
+   
+   
+
+0
+   
+   
+   
+
+ 3
+ 9
+ 14
+
+   
+   False
+   False
+  
+ 
+
diff --git a/sc/qa/unit/subsequent_filters_test2.cxx 
b/sc/qa/unit/subsequent_filters_test2.cxx
index da79b48af6b5..56e5e85ecdf6 100644
--- a/sc/qa/unit/subsequent_filters_test2.cxx
+++ b/sc/qa/unit/subsequent_filters_test2.cxx
@@ -153,6 +153,7 @@ public:
 void testHiddenRowsColumnsXLSXML();
 void testColumnWidthRowHeightXLSXML();
 void testCharacterSetXLSXML();
+void testWrapAndShrinkXLSXML();
 void testTdf137091();
 void testTdf141495();
 void testTdf70455();
@@ -272,6 +273,7 @@ public:
 CPPUNIT_TEST(testHiddenRowsColumnsXLSXML);
 CPPUNIT_TEST(testColumnWidthRowHeightXLSXML);
 CPPUNIT_TEST(testCharacterSetXLSXML);
+CPPUNIT_TEST(testWrapAndShrinkXLSXML);
 CPPUNIT_TEST(testCondFormatFormulaListenerXLSX);
 CPPUNIT_TEST(testTdf137091);
 CPPUNIT_TEST(testTdf141495);
@@ -1986,6 +1988,38 @@ void ScFiltersTest2::testCharacterSetXLSXML()
 CPPUNIT_ASSERT_EQUAL(aExpected, aVal);
 }
 
+void ScFiltersTest2::testWrapAndShrinkXLSXML()
+{
+createScDoc("xml/wrap-and-shrink.xml");
+ScDocument* pDoc = getScDoc();
+
+CPPUNIT_ASSERT_EQUAL(SCTAB(1), pDoc->GetTableCount());
+
+struct Check
+{
+SCCOL nCol;
+SCROW nRow;
+
+bool bWrapText;
+bool bShrinkToFit;
+};
+
+constexpr Check aChecks[] = {
+{ 1, 0, false, false },
+{ 1, 1, true, false },
+{ 1, 2, false, true },
+};
+
+for (const auto& rC : aChecks)
+{
+const ScLineBreakCell* pLB = pDoc->GetAttr(rC.nCol, rC.nRow, 0, 
ATTR_LINEBREAK);
+CPPUNIT_ASSERT_EQUAL(pLB->GetValue(), rC.bWrapText);
+
+const ScShrinkToFitCell* pSTF = pDoc->GetAttr(rC.nCol, rC.nRow, 0, 
ATTR_SHRINKTOFIT);
+CPPUNIT_ASSERT_EQUAL(pSTF->GetValue(), rC.bShrinkToFit);
+}
+}
+
 void ScFiltersTest2::testCondFormatXLSB()
 {
 createScDoc("xlsb/cond_format.xlsb");
diff --git a/sc/source/filter/orcus/interface.cxx 
b/sc/source/filter/orcus/interface.cxx
index a26beeb5a19c..1563a46f6299 100644
--- a/sc/source/filter/orcus/interface.cxx
+++ b/sc/source/filter/orcus/interface.cxx
@@ -2258,6 +2258,12 @@ void ScOrcusStyles::applyXfToItemSet( SfxItemSet& rSet, 
const ScOrcusXf& rXf )
 rSet.Put(SvxJustifyMethodItem(rXf.meHorAlignMethod, 
ATTR_HOR_JUSTIFY_METHOD));
 rSet.Put(SvxJustifyMethodItem(rXf.meVerAlignMethod, 
ATTR_VER_JUSTIFY_METHOD));
 }
+
+if (rXf.mbWrapText)
+rSet.Put(ScLineBreakCell(*rXf.mbWrapText));
+
+if (rXf.mbShrinkToFit)
+rSet.Put(ScShrinkToFitCell(*rXf.mbShrinkToFit));
 }
 
 void ScOrcusStyles::applyXfToItemSet( SfxItemSet& rSet, std::size_t xfId )


[Libreoffice-bugs] [Bug 147620] FILEOPEN: Certain SpreadsheetML style settings are ignored (ss:WrapText)

https://bugs.documentfoundation.org/show_bug.cgi?id=147620

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 147620] FILEOPEN: Certain SpreadsheetML style settings are ignored (ss:WrapText)

https://bugs.documentfoundation.org/show_bug.cgi?id=147620

--- Comment #3 from Kohei Yoshida  ---
This should fix the wrap text and shrink to fit properties

https://gerrit.libreoffice.org/c/core/+/146222

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

[Libreoffice-bugs] [Bug 153048] Export a document with TTF fonts to PDF leads to text not displayed

https://bugs.documentfoundation.org/show_bug.cgi?id=153048

خالد حسني  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #12 from خالد حسني  ---
(In reply to Kalytis from comment #11)
> 2.7.4.1-ubuntu3.1

I’m afraid, variable fonts won’t work with this. You will have to either use
TDF builds or wait until system HarfBuzz is updated.

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

[Libreoffice-bugs] [Bug 153222] Manual Changes to Table of Contents Reset on Update Index or Update All

https://bugs.documentfoundation.org/show_bug.cgi?id=153222

--- Comment #7 from MissingEscapement  ---
Created attachment 184948
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184948=edit
Test file showing a minimal work around.

Here is a copy of the test file with the work around I describe. The Test
chapters listed in the TOC now match the page styles on the pages for each
chapter.

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

[Libreoffice-bugs] [Bug 153222] Manual Changes to Table of Contents Reset on Update Index or Update All

https://bugs.documentfoundation.org/show_bug.cgi?id=153222

--- Comment #6 from MissingEscapement  ---
Yes, that seems to be the case. I merely wished to match the color of
chapters', top of the page, headers with their listings in the TOC. It makes
for a more streamlined & user friendly book.

Thank you, for the suggestions!

Building upon styles, I was able to do a limited work around. I simply made new
child paragraph styles under the Header 1 paragraph style. Each has a different
Highlight color. I edited the index so that each test Level uses one of those
new paragraph styles. When the TOC is updated each chapter listed has a
different color. This works perfectly...except that there's only 10 levels and
I need 100+ levels to make it work for a full book.

The setting, [Edit Index>Type>Create Index or Table of Contents>For: Entire
Document>Evaluate up to level:_], will only go up to 10.

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

does the CLI option --cat (text to stdout) work?

>
> Message: 3
> Date: Wed, 25 Jan 2023 21:31:14 -0500
> From: Kohei Yoshida 
> To: libreoffice-dev 
> Subject: Re: Upgrading mdds and orcus coming soon
> Message-ID: <23e7292419f95766546deee590b76...@libreoffice.org>
> Content-Type: text/plain; charset=US-ASCII; format=flowed
>
> On 24.01.2023 23:30, Kohei Yoshida wrote:
>> On 17.01.2023 16:55, Kohei Yoshida wrote:
>>> Hi there,
>>> 
>>> I'll be working on upgrading the mdds and orcus libraries to versions
>>> 2.1.0 and 0.18.0 respectively.  Not sure how long the process will
>>> take, but hopefully it will be finished with a week.
>> 
>> Turns out one week was a bit too optimistic.  It will take a little
>> while longer.
>
> It's landed:
>
> https://cgit.freedesktop.org/libreoffice/core/commit/?id=516bc904e94971b61e4b13af632bf321b0a4a640
>
> Kohei
>
>
> --
>
> Message: 4
> Date: Thu, 26 Jan 2023 11:07:36 +1100
> From: David 
> To: Stephan Bergmann ,
>   libreoffice@lists.freedesktop.org
> Subject: Re: Question re the uno-skeletonmaker'-t' CLI qualifier
> Message-ID: 
> Content-Type: text/plain; charset="utf-8"
>
> On 25/1/23 20:05, Stephan Bergmann wrote:
>> On 25/01/2023 05:14, David [minor edit] wrote:
>>> However treating the '-t' option as a service rather than an interface, as 
>>> follows, works.? An  directory tree is created in 
>>> the directory where the skeletonmaker CLI command was run, and a very 
>>> plausible skeleton CalcDL1.java file was created in  though I haven't 
>>> been through it in detail.
>>> Your comment "[...] So I would assume that -t must specify that interface 
>>> type." is what I'd expect too.? That's reinforced by the HELP text which 
>>> states:? "-t  specifies a UNOIDL type name, e.g. 
>>> com.sun.star.text.XText (can be used more than once". Not much doubt 
>>> there... 
>> So the uno-skeletonmaker help and diagnostic output apparently uses, 
>> somewhat consistently but maybe also somewhat confusingly, the term "type" 
>> to mean both UNOIDL interfaces and UNOIDL services. 
>
> That's the problem in a nutshell.
>
> In common programming terminology, the word "type" refers to a single 
> variable or symbol.? A strongly-typed language will flag a compilation 
> error if incompatible types are used, for example 'i=x' where 'i' is 
> declared to be an integer type and 'x' is declared floating-point.? 
> Extending this concept of "type" to a complex structure like a UNOIDL 
> interface, which may include many different atomic types, makes sense.? 
> But I can't see how it can possibly refer to a "service".
>
> An IDL interface and an IDL service are different things entirely, 
> conventionally distinguished by prefixing 'X' to interface names.
>
> And in the case of the uno-skeletonmaker 'calc-add-in command', 
> specifying a service works but specifying an interface fails.? So I 
> argue that the documentation and HELP text are plainly wrong and should 
> be corrected.? After all, skeletonmaker is only at version 0.4!
>
> Perhaps it would be worthwhile checking that this inconsistency doesn't 
> hide some deeper problem.? It feels to me like the result of a 
> misunderstanding or a sudden change of design which may have further 
> ramifications.
>
> D.
> -- next part --
> An HTML attachment was scrubbed...
> URL: 
> <https://lists.freedesktop.org/archives/libreoffice/attachments/20230126/88b580e2/attachment-0001.htm>
>
> --
>
> Subject: Digest Footer
>
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice
>
>
> --
>
> End of LibreOffice Digest, Vol 149, Issue 27
> 


[Libreoffice-bugs] [Bug 153230] Auto spell check red wavy line disappear depending on font an zoom level

https://bugs.documentfoundation.org/show_bug.cgi?id=153230

--- Comment #3 from Kollien  ---
Created attachment 184947
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184947=edit
Font Arial at zoom 122 red line on wrong words disappear

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

[Libreoffice-bugs] [Bug 153230] Auto spell check red wavy line disappear depending on font an zoom level

https://bugs.documentfoundation.org/show_bug.cgi?id=153230

Kollien  changed:

   What|Removed |Added

 Attachment #184945|0   |1
is obsolete||

--- Comment #2 from Kollien  ---
Created attachment 184946
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184946=edit
Font Arial at zoom 121 showes red line on wrong words

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

[Libreoffice-bugs] [Bug 153230] Auto spell check red wavy line disappear depending on font an zoom level

https://bugs.documentfoundation.org/show_bug.cgi?id=153230

--- Comment #1 from Kollien  ---
Created attachment 184945
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184945=edit
Font Arial at zoom 121 showes red line on wrong words

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

[Libreoffice-bugs] [Bug 153230] New: Auto spell check red wavy line disappear depending on font an zoom level

https://bugs.documentfoundation.org/show_bug.cgi?id=153230

Bug ID: 153230
   Summary: Auto spell check red wavy line disappear depending on
font an zoom level
   Product: LibreOffice
   Version: 7.3.6.2 release
  Hardware: x86-64 (AMD64)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: koll...@kollien.de

Description:
I recognized a strange display behaviour with the auto spell check and a
combination of font and zoom level. The bug appeared to me first on a document
with the font "Arial" and a zoom level of 140%. First it seemed, auto spell
didn't work any more. After a lot of testing (different LO versions, resetting
registry and so on) I found, that only the red wavy line on errors disappear in
different combinations of font type and zoom level. So with "Arial" and
"Liberation Sans" at 122% the indicator line disappears. With font "Monaco"
this happens at zoom 102%. "AppleGothic" is on 100% (works only 99% and less).

Steps to Reproduce:
1. New Writer document
2. Set auto spell checking to on
3. Type some wrong written words (f.e.: fjlaf olajf asjfolajf asjf)
4. The wrong words get the red wavy lines
5. Increase the zoom level until the red wavy lines disappear.

Actual Results:
The indicator line for wrong written words of the disappears at a specific zoom
level independent of the font you choose. You can format the document with
different fonts and readjust the zoom level until the red line appears or
disappears.

Expected Results:
The red indicator line for wrong words should be visible at any zoom level on
every font.


Reproducible: Always


User Profile Reset: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: de
Module: Writer
[Information guessed from browser]
OS: Mac OS X 13.2
OS is 64bit: yes

I'm not sure, if this bug raised with macos 13.2. Also, maybe the bug is on LO
previous to 7.3.6.2. Cannot test this.

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

[Libreoffice-bugs] [Bug 153048] Export a document with TTF fonts to PDF leads to text not displayed

https://bugs.documentfoundation.org/show_bug.cgi?id=153048

--- Comment #11 from Kalytis  ---
2.7.4.1-ubuntu3.1

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

[Libreoffice-bugs] [Bug 104442] [META] OOXML shape (DrawingML and VML) related issues

https://bugs.documentfoundation.org/show_bug.cgi?id=104442

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||153107


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153107
[Bug 153107] The background image of the pasted object changes after saving to
PPTX
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 129824] Crash in: SwDocUpdateField::MakeFieldList_(SwDoc &, int) after "Insert" of a "User Field" with cursor in value field of dialog box ( steps in comment 3 )

https://bugs.documentfoundation.org/show_bug.cgi?id=129824

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #15 from Stéphane Guillou (stragu) 
 ---
(In reply to Dieter from comment #13)
> If you have a look at summary of crash signature, you can see, that crashes
> are related to Windows:
> https://crashreport.libreoffice.org/stats/signature/SwDocUpdateField::
> MakeFieldList_(SwDoc%20&,int)

On Linux, using the steps in Comment 3, it crashed too but gives a different
signature:
- SwTextField::ExpandTextField in 7.1
- SwTextField::ExpandTextField(bool) const in 7.2
https://crashreport.libreoffice.org/stats/crash_details/595e0da6-95d4-4dc0-b1d7-5ccf52fdefbd
Only a handful of reports for that one, just on Linux. So that might be what
other Linux testers here were seeing. The commit Ilmari found in his Comment 9
bibisect is consistent with that.
I haven't found these signatures in existing bug reports, but I can't reproduce
since 7.3 (the inserting process is a bit more erratic).

About the Windows-only crash we are talking about here, I tested on Windows 10
with LO 7.4.5.1 and couldn't crash it.

Version: 7.4.5.1 (x64) / LibreOffice Community
Build ID: 9c0871452b3918c1019dde9bfac75448afc4b57f
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

However, I see on the crash report website that the crash has happened in 7.4.

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

[Libreoffice-bugs] [Bug 153227] TOC Dialog Does Not Fit Screen

https://bugs.documentfoundation.org/show_bug.cgi?id=153227

--- Comment #3 from kit...@tutanota.com ---
Created attachment 184944
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184944=edit
Screenshot

SafeMode made no difference.

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

[Libreoffice-bugs] [Bug 50716] FORMCONTROLS: Listbox FormControl - "contents of the linked cell" reverts to "Position" not "Selected Entry"

https://bugs.documentfoundation.org/show_bug.cgi?id=50716

--- Comment #14 from Justin L  ---
repro 7.6+.

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

  1   2   3   4   >