[Bug 118765] [META] MathML bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118765
Bug 118765 depends on bug 75930, which changed state.

Bug 75930 Summary: IMPORT MathML: some characters are missing
https://bugs.documentfoundation.org/show_bug.cgi?id=75930

   What|Removed |Added

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

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

[Bug 75930] IMPORT MathML: some characters are missing

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75930

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #15 from Mike Kaganski  ---
Fixed in 6.1 by commit bf46b46a1d734348096936284fb8a76e977936d0 (Moving
XSAXDocumentBuilder2 to use XFastDocumentHandler:, 2018-03-14)

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

[Bug 160800] Libreoffice App in F-Droid outdated

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160800

Michael Weghorn  changed:

   What|Removed |Added

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

--- Comment #2 from Michael Weghorn  ---
(In reply to Michael Weghorn from comment #1)
> Versions are published on F-Droid as well, but there's currently an
> infra/connectivity issue causing the F-Droid build to fail, see
> https://gitlab.com/fdroid/fdroiddata/-/merge_requests/14775#note_1843871640 .
> This will hopefully be fixed when the tarballs have been migrated to a new
> server.

Server migration is done and the latest F-Droid build succeeded:
https://gitlab.com/fdroid/fdroiddata/-/merge_requests/14775#note_1889440186

New versions should show up in F-Droid automatically, but it might take a few
days until they're available.

Closing as WORKSFORME

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

core.git: drawinglayer/CppunitTest_drawinglayer_processors.mk solenv/gbuild writerperfect/CppunitTest_writerperfect_epubexport.mk

2024-05-01 Thread Stephan Bergmann (via logerrit)
 drawinglayer/CppunitTest_drawinglayer_processors.mk   |2 +-
 solenv/gbuild/extensions/post_SpeedUpTargets.mk   |3 +++
 solenv/gbuild/gbuild.mk   |8 
 solenv/gbuild/platform/EMSCRIPTEN_INTEL_GCC.mk|2 --
 writerperfect/CppunitTest_writerperfect_epubexport.mk |2 +-
 5 files changed, 13 insertions(+), 4 deletions(-)

New commits:
commit a3d758d528d3408fcccd7d3673439b5d68347e30
Author: Stephan Bergmann 
AuthorDate: Tue Apr 30 16:51:21 2024 +0200
Commit: Stephan Bergmann 
CommitDate: Thu May 2 07:52:03 2024 +0200

Prepare to run (select) tests during Emscripten build

...by e.g. executing generated Wasm code with node.  This requires check 
targets
to not be skipped unconditionally, unlike for other CROSS_COMPILING builds, 
so
introduce gb_CAN_EXECUTE_HOST_CODE to distinguish these cases.

Which revealed that some CppunitTest targets unconditionally used artefacts 
that
are covered by some ENABLE_WASM_STRIP_*, so made those uses conditional
accordingly (even though the resulting binaries might actually be 
dysfunctional,
lacking relevant parts; we'll fix that if and when we actually build and run
them).

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

diff --git a/drawinglayer/CppunitTest_drawinglayer_processors.mk 
b/drawinglayer/CppunitTest_drawinglayer_processors.mk
index fcbbf247f10a..627809b814a8 100644
--- a/drawinglayer/CppunitTest_drawinglayer_processors.mk
+++ b/drawinglayer/CppunitTest_drawinglayer_processors.mk
@@ -16,7 +16,7 @@ $(eval $(call gb_CppunitTest_use_api,drawinglayer_processors,\
 
 $(eval $(call gb_CppunitTest_use_libraries,drawinglayer_processors, \
basegfx \
-   cppcanvas \
+   $(if $(ENABLE_WASM_STRIP_CANVAS),,cppcanvas) \
cppu \
cppuhelper \
sal \
diff --git a/solenv/gbuild/extensions/post_SpeedUpTargets.mk 
b/solenv/gbuild/extensions/post_SpeedUpTargets.mk
index 44539cc5576d..18f1277a8039 100644
--- a/solenv/gbuild/extensions/post_SpeedUpTargets.mk
+++ b/solenv/gbuild/extensions/post_SpeedUpTargets.mk
@@ -9,6 +9,9 @@
 
 ifneq ($(CROSS_COMPILING),)
 gb_Module_add_targets_for_build :=
+endif
+
+ifeq ($(gb_CAN_EXECUTE_HOST_CODE),$(false))
 gb_Module_SKIPTARGETS := check coverage slowcheck screenshot subsequentcheck 
uicheck
 endif
 
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index 2f5704896d42..ab6132e3b5d2 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -166,6 +166,14 @@ ifneq ($(strip $(ENVCFLAGSCXX)),)
 gb__ENV_CXXFLAGS := $(ENVCFLAGSCXX)
 endif
 
+ifeq ($(CROSS_COMPILING),)
+gb_CAN_EXECUTE_HOST_CODE := $(true)
+else ifeq ($(OS),EMSCRIPTEN)
+gb_CAN_EXECUTE_HOST_CODE := $(true)
+else
+gb_CAN_EXECUTE_HOST_CODE := $(false)
+endif
+
 include $(GBUILDDIR)/ExternalExecutable.mk
 include $(GBUILDDIR)/TargetLocations.mk
 
diff --git a/solenv/gbuild/platform/EMSCRIPTEN_INTEL_GCC.mk 
b/solenv/gbuild/platform/EMSCRIPTEN_INTEL_GCC.mk
index e660c20cc650..7cd4d3c6fa02 100644
--- a/solenv/gbuild/platform/EMSCRIPTEN_INTEL_GCC.mk
+++ b/solenv/gbuild/platform/EMSCRIPTEN_INTEL_GCC.mk
@@ -92,8 +92,6 @@ $(call gb_LinkTarget_add_auxtargets,$(2),\
 
 endef
 
-gb_SUPPRESS_TESTS := $(true)
-
 define gb_Library_get_rpath
 endef
 
diff --git a/writerperfect/CppunitTest_writerperfect_epubexport.mk 
b/writerperfect/CppunitTest_writerperfect_epubexport.mk
index 298a045b32e3..ff8410b345be 100644
--- a/writerperfect/CppunitTest_writerperfect_epubexport.mk
+++ b/writerperfect/CppunitTest_writerperfect_epubexport.mk
@@ -30,7 +30,7 @@ $(eval $(call 
gb_CppunitTest_use_libraries,writerperfect_epubexport, \
 ))
 
 $(eval $(call gb_CppunitTest_use_externals,writerperfect_epubexport,\
-epubgen \
+$(if $(ENABLE_WASM_STRIP_EPUB),,epubgen) \
 libxml2 \
 revenge \
 ))


core.git: vcl/inc vcl/jsdialog

2024-05-01 Thread Tomaž Vajngerl (via logerrit)
 vcl/inc/jsdialog/jsdialogbuilder.hxx |2 ++
 vcl/jsdialog/jsdialogbuilder.cxx |8 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 79b1a61303af8dc8716c03151b28bfce13162eb0
Author: Tomaž Vajngerl 
AuthorDate: Wed May 1 18:52:03 2024 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu May 2 07:47:49 2024 +0200

jsdialog: fix updating on container "reorder_child" or "move"

The accessibility checker sidebar did not update properly when
new issues were added or were removed. The accessiblity checker
is adding and removing new widget parts (one for each new issues)
to the grids, which is using "reorder_child" and "move" methods.
If we call "reorder_child" with update, it fails in online as it
doesn't find the parent "box" ("box_document" for example) because
the id is not set properly. Doing a full update on "reorder_child"
fixes the updating problem.

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

diff --git a/vcl/inc/jsdialog/jsdialogbuilder.hxx 
b/vcl/inc/jsdialog/jsdialogbuilder.hxx
index 2c544146dfad..7491582e1550 100644
--- a/vcl/inc/jsdialog/jsdialogbuilder.hxx
+++ b/vcl/inc/jsdialog/jsdialogbuilder.hxx
@@ -544,6 +544,8 @@ class JSContainer final : public 
JSWidget
 public:
 JSContainer(JSDialogSender* pSender, vcl::Window* pContainer, 
SalInstanceBuilder* pBuilder,
 bool bTakeOwnership);
+
+void move(weld::Widget* pWidget, weld::Container* pNewParent) override;
 };
 
 class JSScrolledWindow final : public JSWidget
diff --git a/vcl/jsdialog/jsdialogbuilder.cxx b/vcl/jsdialog/jsdialogbuilder.cxx
index fa574088c7c6..cb9378f471f8 100644
--- a/vcl/jsdialog/jsdialogbuilder.cxx
+++ b/vcl/jsdialog/jsdialogbuilder.cxx
@@ -1475,6 +1475,12 @@ JSContainer::JSContainer(JSDialogSender* pSender, 
vcl::Window* pContainer,
 {
 }
 
+void JSContainer::move(weld::Widget* pWidget, weld::Container* pNewParent)
+{
+SalInstanceContainer::move(pWidget, pNewParent);
+sendFullUpdate();
+}
+
 JSScrolledWindow::JSScrolledWindow(JSDialogSender* pSender, 
::VclScrolledWindow* pContainer,
SalInstanceBuilder* pBuilder, bool 
bTakeOwnership,
bool bUserManagedScrolling)
@@ -2340,7 +2346,7 @@ JSBox::JSBox(JSDialogSender* pSender, VclBox* pBox, 
SalInstanceBuilder* pBuilder
 void JSBox::reorder_child(weld::Widget* pWidget, int nNewPosition)
 {
 SalInstanceBox::reorder_child(pWidget, nNewPosition);
-sendUpdate();
+sendFullUpdate();
 }
 
 JSImage::JSImage(JSDialogSender* pSender, FixedImage* pImage, 
SalInstanceBuilder* pBuilder,


[Bug 144687] ISLEAPYEAR gives FALSE for years displaying Feb 29th

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144687

--- Comment #4 from Mike Kaganski  ---
Still repro using Version: 24.2.3.1 (X86_64) / LibreOffice Community
Build ID: fc604d5980a783e74808a001f1918a603d920494
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: en-GB (ru_RU); UI: en-GB
Calc: CL threaded

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

[Bug 108226] [META] PPTX (OOXML) bug tracker

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108226
Bug 108226 depends on bug 148616, which changed state.

Bug 148616 Summary: FILEOPEN PPTX A certain POTX template is slow to open
https://bugs.documentfoundation.org/show_bug.cgi?id=148616

   What|Removed |Added

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

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

core.git: oox/inc oox/source

2024-05-01 Thread Aron Budea (via logerrit)
 oox/inc/drawingml/customshapeproperties.hxx|   33 ++--
 oox/source/drawingml/customshapegeometry.cxx   |   30 +++
 oox/source/drawingml/customshapeproperties.cxx |   99 -
 oox/source/drawingml/shape.cxx |2 
 oox/source/drawingml/transform2dcontext.cxx|   12 +--
 5 files changed, 113 insertions(+), 63 deletions(-)

New commits:
commit 2a5fc2a414517bfcef164f527ef7ab1658fcef5d
Author: Aron Budea 
AuthorDate: Tue Apr 30 03:39:15 2024 +0200
Commit: Aron Budea 
CommitDate: Thu May 2 06:32:02 2024 +0200

tdf#148616 Speed up finding custom shape guide value

Use a lookup hash map instead of linear search

Change-Id: I54c9509740d90ca3f7479dfc16a6aeffd82a405d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166879
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
Reviewed-by: Aron Budea 

diff --git a/oox/inc/drawingml/customshapeproperties.hxx 
b/oox/inc/drawingml/customshapeproperties.hxx
index 4b9ee40503cd..1c627ec7448f 100644
--- a/oox/inc/drawingml/customshapeproperties.hxx
+++ b/oox/inc/drawingml/customshapeproperties.hxx
@@ -42,6 +42,28 @@ struct CustomShapeGuide
 OUString   maFormula;
 };
 
+class CustomShapeGuideContainer
+{
+public:
+sal_Int32 GetCustomShapeGuideValue( const OUString& rFormulaName ) const;
+sal_Int32 SetCustomShapeGuideValue( const CustomShapeGuide& rGuide );
+
+void push_back( const CustomShapeGuide& rGuide );
+size_t size() const { return maGuideList.size(); };
+bool empty() const { return maGuideList.empty(); };
+std::vector< CustomShapeGuide >::const_iterator begin() const { return 
maGuideList.begin(); };
+std::vector< CustomShapeGuide >::const_iterator end() const { return 
maGuideList.end(); };
+const CustomShapeGuide& operator[](size_t nIndex) const { return 
maGuideList[ nIndex ]; };
+
+private:
+std::vector< CustomShapeGuide > maGuideList;
+mutable std::unordered_map< OUString, sal_Int32 > maGuideListLookupMap;
+mutable bool mbLookupMapStale = false;
+mutable sal_Int32 mnPreviousActSize = 0;
+
+void ActualizeLookupMap() const;
+};
+
 struct AdjustHandle
 {
 boolpolar;
@@ -106,8 +128,8 @@ public:
 boolgetShapeTypeOverride() const { return 
mbShapeTypeOverride; };
 voidsetShapeTypeOverride( bool 
bShapeTypeOverride ) { mbShapeTypeOverride = bShapeTypeOverride; };
 
-std::vector< CustomShapeGuide >&getAdjustmentGuideList(){ return 
maAdjustmentGuideList; };
-std::vector< CustomShapeGuide >&getGuideList(){ return maGuideList; };
+CustomShapeGuideContainer&  getAdjustmentGuideList(){ return 
maAdjustmentGuideList; };
+CustomShapeGuideContainer&  getGuideList(){ return maGuideList; };
 std::vector< AdjustHandle >&getAdjustHandleList(){ return 
maAdjustHandleList; };
 std::vector< ConnectionSite >&  getConnectionSiteList(){ return 
maConnectionSiteList; };
 std::optional< GeomRect >&  getTextRect(){ return maTextRect; };
@@ -119,9 +141,6 @@ public:
 voidsetTextCameraZRotateAngle( sal_Int32 
nAngle ) { mnTextCameraZRotateAngle = nAngle; };
 voidsetTextAreaRotateAngle(sal_Int32 
nAngle) { moTextAreaRotateAngle = nAngle; };
 
-static sal_Int32 SetCustomShapeGuideValue( std::vector< CustomShapeGuide 
>& rGuideList, const CustomShapeGuide& rGuide );
-static sal_Int32 GetCustomShapeGuideValue( const std::vector< 
CustomShapeGuide >& rGuideList, std::u16string_view rFormulaName );
-
 sal_Int32 getArcNum() { return mnArcNum++; }
 sal_Int32 countArcTo() { return mnArcNum; }
 PropertyMap& getExtrusionPropertyMap() { return maExtrusionPropertyMap; }
@@ -136,8 +155,8 @@ private:
 
 sal_Int32   mnShapePresetType;
 boolmbShapeTypeOverride;
-std::vector< CustomShapeGuide > maAdjustmentGuideList;
-std::vector< CustomShapeGuide > maGuideList;
+CustomShapeGuideContainer   maAdjustmentGuideList;
+CustomShapeGuideContainer   maGuideList;
 std::vector< AdjustHandle > maAdjustHandleList;
 std::vector< ConnectionSite >   maConnectionSiteList;
 std::optional< GeomRect >   maTextRect;
diff --git a/oox/source/drawingml/customshapegeometry.cxx 
b/oox/source/drawingml/customshapegeometry.cxx
index 01b86b4eea1b..b029957959d8 100644
--- a/oox/source/drawingml/customshapegeometry.cxx
+++ b/oox/source/drawingml/customshapegeometry.cxx
@@ -224,7 +224,7 @@ static EnhancedCustomShapeParameter GetAdjCoordinate( 
CustomShapeProperties& rCu
 aGuide.maName = rValue;
 aGuide.maFormula = "logheight" ;
 
-aRet.Value <<= 
CustomShapeProperties::SetCustomShapeGuideValue( 
rCustomShapeProperties.getGuideList(), aGuide );
+

[Bug 87409] Inserting manual page break does not work with bullets and numbering with the cursor at the very beginning of the line

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87409

--- Comment #12 from J_A  ---
Hello,

This bug is still present in the latest version and master build


Tested using:
Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 16; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded


and

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: bc7501d30ab9a3a5edec66d2f0022177f85d6127
CPU threads: 16; OS: Windows 10 (10.0 build 19045); UI render: Skia/Vulkan;
VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

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

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160898


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160898
[Bug 160898] Crash selecting all (Ctrl+A) in a temporarily visible paragraph
under a table inside a table
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 107200] [META] Writer table and cell selection issues

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107200

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160898


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160898
[Bug 160898] Crash selecting all (Ctrl+A) in a temporarily visible paragraph
under a table inside a table
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160898] Crash selecting all (Ctrl+A) in a temporarily visible paragraph under a table inside a table

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160898

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

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

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||137202


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137202
[Bug 137202] SEGFAULT if window closed shortly after reload
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 137202, which changed state.

Bug 137202 Summary: SEGFAULT if window closed shortly after reload
https://bugs.documentfoundation.org/show_bug.cgi?id=137202

   What|Removed |Added

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

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

[Bug 134161] CPU at 100% after opening a particular spreadsheet

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134161

--- Comment #13 from Stéphane Guillou (stragu) 
 ---
*** Bug 137202 has been marked as a duplicate of this bug. ***

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

[Bug 137202] SEGFAULT if window closed shortly after reload

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137202

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
 CC||stephane.guillou@libreoffic
   ||e.org
Version|7.1.0.0.alpha0+ |7.0.0.3 release
 Blocks||133092
Crash report or||["SfxViewFrame::UpdateDocum
crash signature||ent_Impl"]

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
Reproduced with 7.0.0.3 with signature "SfxViewFrame::UpdateDocument_Impl" (as
in comment 4):
https://crashreport.libreoffice.org/stats/crash_details/3725a3b2-936a-4858-b182-9bce941d1792

Not reproduced in 7.1.0.3 nor in recent daily build:

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

Bibisected the fix with linux-64-7.1 repo to first good build
[4477bc3a11a32feb31378f49d0eb7b9db0f9c5d6] which is:

commit  a5b3211f072d982e1ee136e864f153836c76a5ca
author  Xisco Fauli Thu Nov 05 20:35:09 2020 +0100
committer   Xisco Fauli Fri Nov 06 09:53:04 2020 +0100
tdf#134161: Revert "tdf#132137 Rename Default Style in Calc."
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105381

Indeed, it started with 95f0a01a943961db415b6d036b6b4e1e54292716
([6daa1cb2d5626be1ef9341eb15170a2bea8f02b5] in linux-64-7.0 bibisect repo).

Marking as duplicate. (But wondering if there would be other sluggish sample
files where this would be reproducible?)

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


Referenced Bugs:

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

[Bug 160898] New: Crash selecting all (Ctrl+A) in a temporarily visible paragraph under a table inside a table

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160898

Bug ID: 160898
   Summary: Crash selecting all (Ctrl+A) in a temporarily visible
paragraph under a table inside a table
   Product: LibreOffice
   Version: 7.6.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bisected, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 193929
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193929=edit
Table in table

1. Create a table in a text document
2. Inside that table's cell, create another table (see that there is no
paragraphs shown in the outer cell, beside the paragraphs inside the inner
table)
3. When the cursor is inside that inner table, press Arrow Down key, and
eventually arrive to a place outside the inner table, but inside the outer cell
(the hidden paragraph, shown temporarily when the cursor travels there)
4. Press Edit->Select All (Ctrl+A)

=> crash since version 7.6.0.

Regression after commit d81379db730a163c5ff75d4f3a3cddbd7b5eddda (tdf#154877
sw: generalise ExtendedSelectAll(), 2023-05-09)

The attached file contains a simple reproducer. Just press Arrow Down key
twice, to arrive into the described temporarily shown paragraph, then Ctrl+A.

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

core.git: Branch 'libreoffice-24-2' - cui/uiconfig

2024-05-01 Thread Heiko Tietze (via logerrit)
 cui/uiconfig/ui/optviewpage.ui |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 77be21b5bd0bd339b2e629f5ec5ee00887033781
Author: Heiko Tietze 
AuthorDate: Tue Apr 30 09:33:22 2024 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu May 2 05:25:26 2024 +0200

Resolves tdf#141778 - Size issues on view options UI

Change-Id: I08ab47d8f88a0bda16e15377921909f64219c4a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166894
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/cui/uiconfig/ui/optviewpage.ui b/cui/uiconfig/ui/optviewpage.ui
index ce89f11d4d2c..6ad847830136 100644
--- a/cui/uiconfig/ui/optviewpage.ui
+++ b/cui/uiconfig/ui/optviewpage.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -27,7 +27,6 @@
   
 True
 False
-True
 12
 
   


[Bug 160657] Improve how Writer Navigator Headings are displayed when alphabetically sorted

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160657

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160657] Improve how Writer Navigator Headings are displayed when alphabetically sorted

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160657

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160647] LO Writer 7.6.5.2 (and most anterior versions) cannot be used on wide screen monitors due to extreme performance issues

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160647

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160509] Modal Window on FILEOPEN for Read-Only (e.g. out of an eMail) SECOND file is hidden behind

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160509

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160626] Selecting a style in the toolbar list sends it at the bottom of the list

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160626

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160710] Clarify "Save Document as URL"

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160710

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160705] FILESAVE PDF/UA Table caption does not wrap the table as seen in the PAC tool

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160705

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160647] LO Writer 7.6.5.2 (and most anterior versions) cannot be used on wide screen monitors due to extreme performance issues

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160647

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

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

[Bug 160647] LO Writer 7.6.5.2 (and most anterior versions) cannot be used on wide screen monitors due to extreme performance issues

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160647

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Bug 157319] LibreOffice after version 7.5.0.3 Refuses To Install On Window 11 Pro.

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157319

--- Comment #3 from QA Administrators  ---
Dear j...@joeschafer.com,

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.

[Bug 157319] LibreOffice after version 7.5.0.3 Refuses To Install On Window 11 Pro.

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157319

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 156692] Crashing after update, no auto-save

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156692

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 149715] MAILMERGE Data Source not Updated For Email Mail Merge (Filtering and Modifying Data Source Has No Effect)

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149715

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 156692] Crashing after update, no auto-save

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156692

--- Comment #8 from QA Administrators  ---
Dear Kevin Neff,

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.

[Bug 102998] [META] Mail merge bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102998
Bug 102998 depends on bug 149715, which changed state.

Bug 149715 Summary: MAILMERGE Data Source not Updated For Email Mail Merge 
(Filtering and Modifying Data Source Has No Effect)
https://bugs.documentfoundation.org/show_bug.cgi?id=149715

   What|Removed |Added

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

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

[Bug 124620] SVG Export: Only one bullet point is exported

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124620

--- Comment #6 from QA Administrators  ---
Dear Samuel Mehrbrodt (allotropia),

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.

[Bug 149715] MAILMERGE Data Source not Updated For Email Mail Merge (Filtering and Modifying Data Source Has No Effect)

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149715

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

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.

[Bug 158059] saving a spreadsheet

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158059

--- Comment #2 from QA Administrators  ---
Dear Greg Smith,

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.

[Bug 94487] Pivot Table: Fields list doesn't update

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94487

--- Comment #12 from QA Administrators  ---
Dear Rafael Strozi,

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.

[Bug 84687] UI: Property mapping - deletion is neither registered nor effective

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84687

--- Comment #13 from QA Administrators  ---
Dear pierre-yves samyn,

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.

[Bug 81999] FILEOPEN: XLSX: self-contained filtered pivot table. Lost pivot table.

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81999

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

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.

[Bug 75930] IMPORT MathML: some characters are missing

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75930

--- Comment #14 from QA Administrators  ---
Dear Mike Kaganski,

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.

[Bug 47688] Handling of "Record changes", "Show changes" and save status inconsistent

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47688

--- Comment #7 from QA Administrators  ---
Dear Matthew Francis,

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.

[Bug 148570] FILEOPEN RTF Paragraph before section break has its hidden linebreaks after the break

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148570

--- Comment #3 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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.

[Bug 145131] Wrong operations MINUTE() function

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145131

--- Comment #7 from QA Administrators  ---
Dear Jerzy Moruś,

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.

[Bug 144687] ISLEAPYEAR gives FALSE for years displaying Feb 29th

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144687

--- Comment #3 from QA Administrators  ---
Dear Mike Kaganski,

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.

[Bug 132409] Relative isn't unchecked in Image Properties dialog after reset button is pressed

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132409

--- Comment #4 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.

[Bug 143406] FILESAVE DOCX Grouped shapes Contour wrap is not saved

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143406

--- 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.

[Bug 131760] Commands related to styles miscategorized in customization dialog

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131760

--- Comment #23 from QA Administrators  ---
Dear Kenneth Hanson,

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.

[Bug 131388] File save fails when network document is opened on another machine

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131388

--- Comment #5 from QA Administrators  ---
Dear Samuel Mehrbrodt (allotropia),

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.

[Bug 128426] Swapping two commands' keyboard shortcuts is not easy

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128426

--- Comment #6 from QA Administrators  ---
Dear Ming Hua,

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.

[Bug 113734] FILEOPEN DOC: Table border settings read incorrectly

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113734

--- Comment #8 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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.

[Bug 113680] FILEOPEN XLS Named Ranges in form controls are dropped on open

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113680

--- Comment #7 from QA Administrators  ---
Dear Michael Miller,

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.

[Bug 107986] EDITING: The original size will decrease after using compression

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107986

--- Comment #11 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.

[Bug 159385] Crash at undo of RTF Paste

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159385

--- Comment #7 from Esteban  ---
If I follow all the steps with the original Attachment 179694 I get a crash.

However, if I create a new writer document, copy all the contents of the
original attachment into the new one and then repeat the steps I do not get a
crash.


Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

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

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|151086  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151086
[Bug 151086] Writer crashes when insert SVG image with default anchor set to As
Character (STR: comment 4 + comment 10)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 151086] Writer crashes when insert SVG image with default anchor set to As Character (STR: comment 4 + comment 10)

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151086

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||stephane.guillou@libreoffic
   ||e.org
 Blocks|133092  |
Crash report or||["IsAnchoredObjShown(SwText
crash signature||Frame const
   ||&,SwFormatAnchor const
   ||&)","GetFrameOfModify(SwRoo
   ||tFrame const
   ||*,sw::BroadcastingModify
   ||const
   ||&,SwFrameType,SwPosition
   ||const
   ||*,std::pair
   ||const *)","libswlo.so"]
 Status|NEW |RESOLVED

--- Comment #14 from Stéphane Guillou (stragu) 
 ---
The two crash signatures reported by csongor are:
- "IsAnchoredObjShown(SwTextFrame const &,SwFormatAnchor const &)"
- "GetFrameOfModify(SwRootFrame const *,sw::BroadcastingModify const
&,SwFrameType,SwPosition const *,std::pair const *)"

I reproduced in 24.2.2 with uninformative signature "libswlo.so":
https://crashreport.libreoffice.org/stats/crash_details/43fb0764-039a-408d-8090-78f0dc8ec3dc

The issue is the same as described in bug 159379, which is already fixed in
master and the upcoming 24.2.4. I verified with comment 4 steps and:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 2f5ab5b8e7bd7dd06e00153abb77a69e5d192dd2
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: CL threaded

Marking as duplicate, thanks everyone!

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


Referenced Bugs:

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

[Bug 119352] [META] Language issues

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119352
Bug 119352 depends on bug 151830, which changed state.

Bug 151830 Summary: Save as text with coding utf-8 destroys all non-ascii 
characters, replacing with question mark (Norwegian Norsk bokmål UI)
https://bugs.documentfoundation.org/show_bug.cgi?id=151830

   What|Removed |Added

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

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

[Bug 151830] Save as text with coding utf-8 destroys all non-ascii characters, replacing with question mark (Norwegian Norsk bokmål UI)

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151830

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Bug 154602] Scrolling using keyboard very slow (GTK3) with 4K monitor

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154602

--- Comment #19 from Jeff Fortin Tam  ---
Created attachment 193928
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193928=edit
Sysprof 46 capture screenshot - CPU usage

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

[Bug 154602] Scrolling using keyboard very slow (GTK3) with 4K monitor

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154602

--- Comment #18 from Jeff Fortin Tam  ---
Created attachment 193927
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193927=edit
Sysprof 46 capture screenshot - graphics marks

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

[Bug 154602] Scrolling using keyboard very slow (GTK3) with 4K monitor

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154602

--- Comment #17 from Jeff Fortin Tam  ---
Created attachment 193926
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193926=edit
Sysprof 46 capture screenshot - flamegraph

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

[Bug 154602] Scrolling using keyboard very slow (GTK3) with 4K monitor

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154602

--- Comment #16 from Jeff Fortin Tam  ---
Created attachment 193925
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193925=edit
Sysprof 46 performance profiling capture

Let me put some objective measurements into the mix here with a profiling
measurement using Sysprof. I reproduced this by using the provided CSV sample
above and pressing-and-holding the down arrow button on the keyboard of a 4K
HiDPI (@ 2x) Intel Kabylike laptop running Wayland GNOME on Fedora 39, with the
Flatpak flathub version of LibreOffice:

Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 8; OS: Linux 6.8; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Flatpak
Calc: threaded

I will attach screenshots of the essentials of that sysprof capture.

My naïve observations:

* The overwhelming majority of time/efforts are spent in "PaintHelper" and
"SdrPaintView" functions and the like, which ultimately spend a ton of time
doing cairo_paint and cairo_fill everywhere.
* It seems to be single-threaded, as per the CPU usage graphs.

My gut feeling: it's probably spamming the backend as fast and often as
keyboard input events are coming, without any throttling/smoothing. I don't
think it makes sense for the app to be trying to respond to every event, 600
times per second (the 25-seconds sysprof recording shows 15 thousand function
calls...).

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

[Bug 151830] Save as text with coding utf-8 destroys all non-ascii characters, replacing with question mark (Norwegian Norsk bokmål UI)

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151830

Adolfo Jayme Barrientos  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0 target:24.2.4

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

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||136971


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136971
[Bug 136971] Crash in: swlo.dll while using Basic macro to delete a character
while cursor is in a textbox
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103494] [META] Textbox bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||136971


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136971
[Bug 136971] Crash in: swlo.dll while using Basic macro to delete a character
while cursor is in a textbox
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 136971] Crash in: swlo.dll while using Basic macro to delete a character while cursor is in a textbox

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136971

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0 target:24.2.1
   ||target:7.6.5
 Status|NEW |RESOLVED
 CC||matt...@gmail.com,
   ||stephane.guillou@libreoffic
   ||e.org
 Blocks||103494, 133092
 Resolution|--- |FIXED
Version|4.1 all versions|Inherited From OOo
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||2810

--- Comment #10 from Stéphane Guillou (stragu) 
 ---
Reproduced in OOo 3.3 and LO 7.5.9.

Not reproduced anymore in:

Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: CL threaded

Bibisect fix with linux-64-24.2 to first good build
[b497d3d200aad6a5946b4d5fcc50742b71521fc3] which points to
a72dad4e4c0d41b61e453919401fcefc8e5e9b43 which is a cherrypick of:

   commit   19062c98da5b2e9edc7a99068fa06a83c7578826
   author   Matt K  Thu Jan 11 20:37:01 2024 -0600
   committerMike Kaganski   Sat Jan 13 18:21:02 2024 +0100
   tdf#132810 Prevent crashes with gallery objects
   Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161950

Thanks Matt!


Referenced Bugs:

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

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 136971, which changed state.

Bug 136971 Summary: Crash in: swlo.dll while using Basic macro to delete a 
character while cursor is in a textbox
https://bugs.documentfoundation.org/show_bug.cgi?id=136971

   What|Removed |Added

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

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

[Bug 103494] [META] Textbox bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
Bug 103494 depends on bug 136971, which changed state.

Bug 136971 Summary: Crash in: swlo.dll while using Basic macro to delete a 
character while cursor is in a textbox
https://bugs.documentfoundation.org/show_bug.cgi?id=136971

   What|Removed |Added

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

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

[Bug 107659] [META] Macro bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107659
Bug 107659 depends on bug 136971, which changed state.

Bug 136971 Summary: Crash in: swlo.dll while using Basic macro to delete a 
character while cursor is in a textbox
https://bugs.documentfoundation.org/show_bug.cgi?id=136971

   What|Removed |Added

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

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

core.git: sw/source

2024-05-01 Thread Tomaž Vajngerl (via logerrit)
 sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx |  210 +++---
 sw/source/uibase/sidebar/A11yCheckIssuesPanel.hxx |   56 ++---
 2 files changed, 97 insertions(+), 169 deletions(-)

New commits:
commit 9b41d33a00763bebd5fc7078705d35a98a52
Author: Tomaž Vajngerl 
AuthorDate: Tue Apr 30 23:28:10 2024 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu May 2 04:12:40 2024 +0200

sw: simplify widgets in A11yCheckIssuesPanel

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

diff --git a/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx 
b/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx
index a1907c9b6306..7bbbf130678c 100644
--- a/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx
+++ b/sw/source/uibase/sidebar/A11yCheckIssuesPanel.cxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include "A11yCheckIssuesPanel.hxx"
 
@@ -80,13 +81,15 @@ AccessibilityCheckEntry::AccessibilityCheckEntry(
 
 IMPL_LINK_NOARG(AccessibilityCheckEntry, GotoButtonClicked, weld::LinkButton&, 
bool)
 {
-m_pAccessibilityIssue->gotoIssue();
+if (m_pAccessibilityIssue)
+m_pAccessibilityIssue->gotoIssue();
 return true;
 }
 
 IMPL_LINK_NOARG(AccessibilityCheckEntry, FixButtonClicked, weld::Button&, void)
 {
-m_pAccessibilityIssue->quickFixIssue();
+if (m_pAccessibilityIssue)
+m_pAccessibilityIssue->quickFixIssue();
 }
 
 std::unique_ptr A11yCheckIssuesPanel::Create(weld::Widget* 
pParent,
@@ -100,32 +103,34 @@ std::unique_ptr 
A11yCheckIssuesPanel::Create(weld::Widget* pParent,
 
 A11yCheckIssuesPanel::A11yCheckIssuesPanel(weld::Widget* pParent, SfxBindings* 
pBindings)
 : PanelLayout(pParent, "A11yCheckIssuesPanel", 
"modules/swriter/ui/a11ycheckissuespanel.ui")
-, m_xExpanderDocument(m_xBuilder->weld_expander("expand_document"))
-, m_xExpanderStyles(m_xBuilder->weld_expander("expand_styles"))
-, m_xExpanderLinked(m_xBuilder->weld_expander("expand_linked"))
-, m_xExpanderNoAlt(m_xBuilder->weld_expander("expand_no_alt"))
-, m_xExpanderTable(m_xBuilder->weld_expander("expand_table"))
-, m_xExpanderFormatting(m_xBuilder->weld_expander("expand_formatting"))
-, m_xExpanderHyperlink(m_xBuilder->weld_expander("expand_hyperlink"))
-, m_xExpanderFakes(m_xBuilder->weld_expander("expand_fakes"))
-, m_xExpanderNumbering(m_xBuilder->weld_expander("expand_numbering"))
-, m_xExpanderOther(m_xBuilder->weld_expander("expand_other"))
-, m_xBoxDocument(m_xBuilder->weld_box("box_document"))
-, m_xBoxStyles(m_xBuilder->weld_box("box_styles"))
-, m_xBoxLinked(m_xBuilder->weld_box("box_linked"))
-, m_xBoxNoAlt(m_xBuilder->weld_box("box_no_alt"))
-, m_xBoxTable(m_xBuilder->weld_box("box_table"))
-, m_xBoxFormatting(m_xBuilder->weld_box("box_formatting"))
-, m_xBoxHyperlink(m_xBuilder->weld_box("box_hyperlink"))
-, m_xBoxFakes(m_xBuilder->weld_box("box_fakes"))
-, m_xBoxNumbering(m_xBuilder->weld_box("box_numbering"))
-, m_xBoxOther(m_xBuilder->weld_box("box_other"))
 , mpBindings(pBindings)
 , mpDoc(nullptr)
 , maA11yCheckController(FN_STAT_ACCESSIBILITY_CHECK, *pBindings, *this)
 , mnIssueCount(0)
 , mbAutomaticCheckEnabled(false)
 {
+m_xExpanders[0] = m_xBuilder->weld_expander("expand_document");
+m_xExpanders[1] = m_xBuilder->weld_expander("expand_styles");
+m_xExpanders[2] = m_xBuilder->weld_expander("expand_linked");
+m_xExpanders[3] = m_xBuilder->weld_expander("expand_no_alt");
+m_xExpanders[4] = m_xBuilder->weld_expander("expand_table");
+m_xExpanders[5] = m_xBuilder->weld_expander("expand_formatting");
+m_xExpanders[6] = m_xBuilder->weld_expander("expand_hyperlink");
+m_xExpanders[7] = m_xBuilder->weld_expander("expand_fakes");
+m_xExpanders[8] = m_xBuilder->weld_expander("expand_numbering");
+m_xExpanders[9] = m_xBuilder->weld_expander("expand_other");
+
+m_xBoxes[0] = m_xBuilder->weld_box("box_document");
+m_xBoxes[1] = m_xBuilder->weld_box("box_styles");
+m_xBoxes[2] = m_xBuilder->weld_box("box_linked");
+m_xBoxes[3] = m_xBuilder->weld_box("box_no_alt");
+m_xBoxes[4] = m_xBuilder->weld_box("box_table");
+m_xBoxes[5] = m_xBuilder->weld_box("box_formatting");
+m_xBoxes[6] = m_xBuilder->weld_box("box_hyperlink");
+m_xBoxes[7] = m_xBuilder->weld_box("box_fakes");
+m_xBoxes[8] = m_xBuilder->weld_box("box_numbering");
+m_xBoxes[9] = m_xBuilder->weld_box("box_other");
+
 SwDocShell* pDocSh = dynamic_cast(SfxObjectShell::Current());
 if (!pDocSh)
 return;
@@ -158,93 +163,49 @@ void A11yCheckIssuesPanel::ImplDestroy()
 batch->commit();
 mpBindings->Invalidate(SID_ACCESSIBILITY_CHECK_ONLINE);
 }
-m_xExpanderDocument.reset();
-m_xExpanderStyles.reset();
-m_xExpanderLinked.reset();
-m_xExpanderNoAlt.reset();
-

[Bug 103437] [META] Animation deck/tab of the sidebar

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103437

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||142816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142816
[Bug 142816] Object Animation and Slide Transition's Automatic Preview settings
are not saved directly in profile
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103444] [META] Slide transition deck/tab of the sidebar

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103444

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||142816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142816
[Bug 142816] Object Animation and Slide Transition's Automatic Preview settings
are not saved directly in profile
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 107636] [META] User profile (user data/settings) bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107636

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||142816


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142816
[Bug 142816] Object Animation and Slide Transition's Automatic Preview settings
are not saved directly in profile
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 109362] [META] Custom/object animation bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109362

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|142816  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142816
[Bug 142816] Object Animation and Slide Transition's Automatic Preview settings
are not saved directly in profile
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 142816] Object Animation and Slide Transition's Automatic Preview settings are not saved directly in profile

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142816

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks|109362  |103437, 103444, 107636
Summary|Automatic effect preview|Object Animation and Slide
   |does not persist after  |Transition's Automatic
   |crash   |Preview settings are not
   ||saved directly in profile
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
Confirmed that killing LO after deactivating the animation preview results in
setting not saved.
Same with the automatic preview of Slide Transitions.

For comparison, I tried with Display Grid turned on, and the settings is indeed
saved even when killing LO.

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103437
[Bug 103437] [META] Animation deck/tab of the sidebar
https://bugs.documentfoundation.org/show_bug.cgi?id=103444
[Bug 103444] [META] Slide transition deck/tab of the sidebar
https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile (user data/settings) bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=109362
[Bug 109362] [META] Custom/object animation bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 124300] Crash after toggling Hidden in character style a couple of times or doing Update all

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

--- Comment #27 from Stéphane Guillou (stragu) 
 ---
(In reply to Stéphane Guillou (stragu) from comment #25)
> my suggestion is closing as "works for me" and
> open now reports as needed.
Done for layout loop in bug 160897.

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

[Bug 149131] A particular master document with comments is sluggish

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149131

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 124300] Crash after toggling Hidden in character style a couple of times or doing Update all

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

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

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160897


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160897
[Bug 160897] FILEOPEN: layout loop, freeze in master document linked to
subdocument
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160897] New: FILEOPEN: layout loop, freeze in master document linked to subdocument

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160897

Bug ID: 160897
   Summary: FILEOPEN: layout loop, freeze in master document
linked to subdocument
   Product: LibreOffice
   Version: 7.6.3.1 rc
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, perf, regression
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stephane.guil...@libreoffice.org
CC: michael.st...@allotropia.de
Blocks: 101280, 103164

Steps:
1. Download attachment 103519 and attachment 103520
2. Open the .odm

Result: layout loop, console showing warnings including:

   warn:sw.layout:251020:251020:sw/source/core/layout/wsfrm.cxx:3084: footnote
frame on different page than ref frame?
   warn:legacy.osl:277213:277213:sw/source/core/layout/layact.cxx:589:
LoopControl_1 in SwLayAction::InternalAction
   warn:legacy.osl:277437:277437:sw/source/core/layout/layact.cxx:770:
LoopControl_3 in Interrupt formatting in SwLayAction::InternalAction
   warn:sw.layout:277213:277213:sw/source/core/layout/layouter.cxx:190: Looping
Louie: Stage 1!

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: f4ef5435df5560e6b6b061ce4053c71e2819bf51
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: x11
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Also on Windows.

Bibisected with linux-64-7.6 repo to first bad build
[7c9b5f75e3646ec0a55465033fc7c64d13302c28] which points to
5b3fcbf23773ea8d039185dec2b9704981833473 which is a cherrypick of:

commit  c303981cfd95ce1c3881366023d5495ae2edce97
author  Michael Stahl   Wed Aug 23 15:50:59 2023 +0200
committer   Michael Stahl   Thu Aug 24 12:43:25 2023 +0200
tdf#156724 sw: layout: fix tables not splitting due to footnotes differently
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155988

Michael, can you please have a look?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101280
[Bug 101280] [META] Layout loops
https://bugs.documentfoundation.org/show_bug.cgi?id=103164
[Bug 103164] [META] Footnote and Endnote bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 101280] [META] Layout loops

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101280

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160897


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160897
[Bug 160897] FILEOPEN: layout loop, freeze in master document linked to
subdocument
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 124300] Crash after toggling Hidden in character style a couple of times or doing Update all

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

--- Comment #26 from Stéphane Guillou (stragu) 
 ---
(In reply to Stéphane Guillou (stragu) from comment #25)
> - comment 24 (dbg build crash on update all):
>- can't test in recent trunk build because of the layout loop
This eventually settled to a manageable rate, no crash after Update All.
However, still looping with:

warn:legacy.osl:278015:278015:sw/source/core/layout/layact.cxx:589:
LoopControl_1 in SwLayAction::InternalAction
warn:sw.layout:278015:278015:sw/source/core/layout/wsfrm.cxx:3084: footnote
frame on different page than ref frame?

...ad nauseam.

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

core.git: cppuhelper/source cppu/source filter/source

2024-05-01 Thread Noel Grandin (via logerrit)
 cppu/source/typelib/static_types.cxx |   12 ++--
 cppuhelper/source/servicemanager.cxx |   17 ++---
 filter/source/xsltdialog/xmlfiltercommon.hxx |2 
 filter/source/xsltdialog/xmlfiltersettingsdialog.cxx |   56 +--
 4 files changed, 42 insertions(+), 45 deletions(-)

New commits:
commit e8fdc8a4ff60a392f51326e90212fc73d515e270
Author: Noel Grandin 
AuthorDate: Wed May 1 20:07:21 2024 +0200
Commit: Noel Grandin 
CommitDate: Thu May 2 02:51:23 2024 +0200

elide some OUString temporaries

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

diff --git a/cppu/source/typelib/static_types.cxx 
b/cppu/source/typelib/static_types.cxx
index 67b63550e1cd..f91dbed71ddb 100644
--- a/cppu/source/typelib/static_types.cxx
+++ b/cppu/source/typelib/static_types.cxx
@@ -118,11 +118,11 @@ typelib_TypeDescriptionReference ** SAL_CALL 
typelib_static_type_getByTypeClass(
 MutexGuard aGuard( typelib_StaticInitMutex() );
 if (! s_aTypes[eTypeClass])
 {
-static const char * s_aTypeNames[] = {
-"void", "char", "boolean", "byte",
-"short", "unsigned short", "long", "unsigned long",
-"hyper", "unsigned hyper", "float", "double",
-"string", "type", "any" };
+static constexpr OUString s_aTypeNames[] = {
+u"void"_ustr, u"char"_ustr, u"boolean"_ustr, u"byte"_ustr,
+u"short"_ustr, u"unsigned short"_ustr, u"long"_ustr, 
u"unsigned long"_ustr,
+u"hyper"_ustr, u"unsigned hyper"_ustr, u"float"_ustr, 
u"double"_ustr,
+u"string"_ustr, u"type"_ustr, u"any"_ustr };
 
 switch (eTypeClass)
 {
@@ -258,7 +258,7 @@ typelib_TypeDescriptionReference ** SAL_CALL 
typelib_static_type_getByTypeClass(
 }
 default:
 {
-OUString aTypeName( OUString::createFromAscii( 
s_aTypeNames[eTypeClass] ) );
+OUString aTypeName( s_aTypeNames[eTypeClass] );
 ::typelib_typedescriptionreference_new( _aTypes[eTypeClass], 
eTypeClass, aTypeName.pData );
 // another static ref:
 ++s_aTypes[eTypeClass]->nStaticRefCount;
diff --git a/cppuhelper/source/servicemanager.cxx 
b/cppuhelper/source/servicemanager.cxx
index 790a776392c4..415d0edb0e3c 100644
--- a/cppuhelper/source/servicemanager.cxx
+++ b/cppuhelper/source/servicemanager.cxx
@@ -2007,21 +2007,18 @@ void 
cppuhelper::ServiceManager::preloadImplementations() {
 
 // Various rather important uno mappings.
 static struct {
-const char *mpFrom;
-const char *mpTo;
-const char *mpPurpose;
-} const aMappingLoad[] = {
-{ "gcc3", "uno",  "" },
-{ "uno",  "gcc3", "" },
+OUString maFrom;
+OUString maTo;
+OUString maPurpose;
+} constexpr aMappingLoad[] = {
+{ u"gcc3"_ustr, u"uno"_ustr,  u""_ustr },
+{ u"uno"_ustr,  u"gcc3"_ustr, u""_ustr },
 };
 
 static std::vector maMaps;
 for (auto  : aMappingLoad)
 {
-maMaps.push_back(css::uno::Mapping(
- OUString::createFromAscii(it.mpFrom),
- OUString::createFromAscii(it.mpTo),
- OUString::createFromAscii(it.mpPurpose)));
+maMaps.push_back(css::uno::Mapping(it.maFrom, it.maTo, it.maPurpose));
 }
 #endif
 }
diff --git a/filter/source/xsltdialog/xmlfiltercommon.hxx 
b/filter/source/xsltdialog/xmlfiltercommon.hxx
index 9482fb0b2b63..34bf5a04d807 100644
--- a/filter/source/xsltdialog/xmlfiltercommon.hxx
+++ b/filter/source/xsltdialog/xmlfiltercommon.hxx
@@ -70,7 +70,7 @@ struct application_info_impl
 OUString   maXMLImporter;
 OUString   maXMLExporter;
 
-application_info_impl(const char * pDocumentService, const OUString& 
rUINameRes, const char * mpXMLImporter, const char * mpXMLExporter);
+application_info_impl(const OUString& rDocumentService, const OUString& 
rUINameRes, const OUString& rXMLImporter, const OUString& rXMLExporter);
 };
 
 
diff --git a/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx 
b/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
index ce06b716e20b..0248ae75c9c3 100644
--- a/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
+++ b/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx
@@ -,11 +,11 @@ void XMLFilterSettingsDialog::initFilterList()
 }
 }
 
-application_info_impl::application_info_impl( const char * pDocumentService, 
const OUString& rUINameRes, const char * mpXMLImporter, const char * 
mpXMLExporter )
-:   maDocumentService( pDocumentService, strlen( pDocumentService ), 
RTL_TEXTENCODING_ASCII_US ),
+application_info_impl::application_info_impl( const OUString& 
rDocumentService, const OUString& 

[Bug 101280] [META] Layout loops

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101280

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||124300


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124300
[Bug 124300] Crash after toggling Hidden in character style a couple of times
or doing Update all
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 124300] Crash after toggling Hidden in character style a couple of times or doing Update all

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||perf
Crash report or||["SwFrame::GetPhyPageNum()"
crash signature||,"SwFrame::FindFootnoteBoss
   ||Frame(bool)"]
 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED
 Blocks||101280
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||2081
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #25 from Stéphane Guillou (stragu) 
 ---
Testing all with gen VCL plugin:

- comment 0 steps (unhide -> hide):
   - repro in 7.4.0.3 with signature "SwFrame::FindFootnoteBossFrame(bool)":
https://crashreport.libreoffice.org/stats/crash_details/213df40a-f967-4d5c-8150-fe0fdfe67d8f
   - repro in 7.6.6 with signature "SwFrame::GetPhyPageNum() const":
https://crashreport.libreoffice.org/stats/crash_details/028918da-1c92-4436-8856-c21cb5fcef3c
   - in 24.2 and a recent daily build: no crash anymore.
   However, poor perf and daily build's console flooded with a loop of warnings
that include:
   warn:sw.layout:251020:251020:sw/source/core/layout/wsfrm.cxx:3084:
footnote frame on different page than ref frame?
   warn:legacy.osl:277213:277213:sw/source/core/layout/layact.cxx:589:
LoopControl_1 in SwLayAction::InternalAction
   warn:legacy.osl:277437:277437:sw/source/core/layout/layact.cxx:770:
LoopControl_3 in Interrupt formatting in SwLayAction::InternalAction
   warn:sw.layout:277213:277213:sw/source/core/layout/layouter.cxx:190:
Looping Louie: Stage 1!

- comment 10 + comment 14 steps (update links):
   - repro in 7.4.0.3 with signature "SwFrame::FindFootnoteBossFrame(bool)":
https://crashreport.libreoffice.org/stats/crash_details/d3eea219-f10d-4cbc-94c3-36568f6add15
   - no crash anymore in 7.6.6, 24.2.2 and current daily build, but remains
frozen for a while / very sluggish after updating links, one core at 100%.
   In daily build, flood of warnings as described above.

- comment 15 / comment 21 steps (delete table row):
   - repro in 7.4 and 7.5:
https://crashreport.libreoffice.org/stats/crash_details/5076ae70-c6ba-4c5b-a76b-23612cd7e645
   - however, not reproduced in 7.6.6 anymore.

- comment 24 (dbg build crash on update all):
   - can't test in recent trunk build because of the layout loop

Given that (at least) all the non-debug crashes are now gone, and the variety
of cases described, my suggestion is closing as "works for me" and open now
reports as needed.

Daily build used:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: f4ef5435df5560e6b6b061ce4053c71e2819bf51
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: x11
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101280
[Bug 101280] [META] Layout loops
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108014] [META] Writer character style bugs and enhancements

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108014
Bug 108014 depends on bug 124300, which changed state.

Bug 124300 Summary: Crash after toggling Hidden in character style a couple of 
times or doing Update all
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

   What|Removed |Added

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

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

[Bug 133092] [META] Crash bugs

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 124300, which changed state.

Bug 124300 Summary: Crash after toggling Hidden in character style a couple of 
times or doing Update all
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

   What|Removed |Added

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

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

[Bug 101280] [META] Layout loops

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101280
Bug 101280 depends on bug 124300, which changed state.

Bug 124300 Summary: Crash after toggling Hidden in character style a couple of 
times or doing Update all
https://bugs.documentfoundation.org/show_bug.cgi?id=124300

   What|Removed |Added

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

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

core.git: include/xmloff xmloff/source

2024-05-01 Thread Noel Grandin (via logerrit)
 include/xmloff/xmlevent.hxx   |   12 --
 xmloff/source/forms/formevents.cxx|   70 +++---
 xmloff/source/script/XMLEventExport.cxx   |  128 +-
 xmloff/source/script/XMLEventImportHelper.cxx |5 -
 4 files changed, 105 insertions(+), 110 deletions(-)

New commits:
commit e8d1eec3e5cf08ca7de692f7d212b831db66ab96
Author: Noel Grandin 
AuthorDate: Wed May 1 20:18:19 2024 +0200
Commit: Noel Grandin 
CommitDate: Thu May 2 02:45:34 2024 +0200

use more OUString literals in XMLEvent

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

diff --git a/include/xmloff/xmlevent.hxx b/include/xmloff/xmlevent.hxx
index 163437f51af0..86601c415bb9 100644
--- a/include/xmloff/xmlevent.hxx
+++ b/include/xmloff/xmlevent.hxx
@@ -50,14 +50,10 @@ struct XMLEventName
 OUString m_aName;
 
 XMLEventName() : m_nPrefix( 0 ) {}
-XMLEventName( sal_uInt16 n, const char *p ) :
-m_nPrefix( n ),
-m_aName( OUString::createFromAscii(p) )
-   {}
 
-XMLEventName( sal_uInt16 n, OUString s ) :
+XMLEventName( sal_uInt16 n, const OUString& s ) :
 m_nPrefix( n ),
-m_aName(std::move( s ))
+m_aName( s )
{}
 
 bool operator<( const XMLEventName& r ) const
@@ -75,9 +71,9 @@ struct XMLEventName
  */
 struct XMLEventNameTranslation
 {
-const char* sAPIName;
+OUString sAPIName;
 sal_uInt16 nPrefix;// namespace prefix
-const char* sXMLName;
+OUString sXMLName;
 };
 
 /// a translation table for the events defined in the XEventsSupplier service
diff --git a/xmloff/source/forms/formevents.cxx 
b/xmloff/source/forms/formevents.cxx
index 85e3137cbae5..800553d9458c 100644
--- a/xmloff/source/forms/formevents.cxx
+++ b/xmloff/source/forms/formevents.cxx
@@ -25,42 +25,42 @@ namespace xmloff
 {
 
 //= event translation table
-const XMLEventNameTranslation aEventTranslations[] =
+constexpr XMLEventNameTranslation aEventTranslations[] =
 {
-{ "XApproveActionListener::approveAction",  XML_NAMESPACE_FORM, 
"approveaction" }, // "on-approveaction"
-{ "XActionListener::actionPerformed",   XML_NAMESPACE_FORM, 
"performaction" }, // "on-performaction"
-{ "XChangeListener::changed",   XML_NAMESPACE_DOM, 
"change" }, // "on-change"
-{ "XTextListener::textChanged", XML_NAMESPACE_FORM, 
"textchange" }, // "on-textchange"
-{ "XItemListener::itemStateChanged",XML_NAMESPACE_FORM, 
"itemstatechange" }, // "on-itemstatechange"
-{ "XFocusListener::focusGained",XML_NAMESPACE_DOM, 
"DOMFocusIn" }, // "on-focus"
-{ "XFocusListener::focusLost",  XML_NAMESPACE_DOM, 
"DOMFocusOut" }, // "on-blur"
-{ "XKeyListener::keyPressed",   XML_NAMESPACE_DOM, 
"keydown" }, // "on-keydown"
-{ "XKeyListener::keyReleased",  XML_NAMESPACE_DOM, 
"keyup" }, // "on-keyup"
-{ "XMouseListener::mouseEntered",   XML_NAMESPACE_DOM, 
"mouseover" }, // "on-mouseover"
-{ "XMouseMotionListener::mouseDragged", XML_NAMESPACE_FORM, 
"mousedrag" }, // "on-mousedrag"
-{ "XMouseMotionListener::mouseMoved",   XML_NAMESPACE_DOM, 
"mousemove" }, // "on-mousemove"
-{ "XMouseListener::mousePressed",   XML_NAMESPACE_DOM, 
"mousedown" }, // "on-mousedown"
-{ "XMouseListener::mouseReleased",  XML_NAMESPACE_DOM, 
"mouseup" }, // "on-mouseup"
-{ "XMouseListener::mouseExited",XML_NAMESPACE_DOM, 
"mouseout" }, // "on-mouseout"
-{ "XResetListener::approveReset",   XML_NAMESPACE_FORM, 
"approvereset" }, // "on-approvereset"
-{ "XResetListener::resetted",   XML_NAMESPACE_DOM, 
"reset" }, // "on-reset"
-{ "XSubmitListener::approveSubmit", XML_NAMESPACE_DOM, 
"submit" }, // "on-submit"
-{ "XUpdateListener::approveUpdate", XML_NAMESPACE_FORM, 
"approveupdate" }, // "on-approveupdate"
-{ "XUpdateListener::updated",   XML_NAMESPACE_FORM, 
"update" }, // "on-update"
-{ "XLoadListener::loaded",  XML_NAMESPACE_DOM, 
"load" }, // "on-load"
-{ "XLoadListener::reloading",   XML_NAMESPACE_FORM, 
"startreload" }, // "on-startreload"
-{ "XLoadListener::reloaded",XML_NAMESPACE_FORM, 
"reload" }, // "on-reload"
-{ "XLoadListener::unloading",   XML_NAMESPACE_FORM, 
"startunload" }, // "on-startunload"
-{ "XLoadListener::unloaded",XML_NAMESPACE_DOM, 
"unload" }, // "on-unload"
-{ "XConfirmDeleteListener::confirmDelete",  XML_NAMESPACE_FORM, 
"confirmdelete" }, // "on-confirmdelete"
-  

core.git: Branch 'feature/cib_contract49c' - 4 commits - sw/qa sw/source xmloff/source

2024-05-01 Thread Michael Stahl (via logerrit)
 sw/qa/core/text/data/Broken indent demo.odt|binary
 sw/qa/core/text/data/tdf156146.fodt|  281 +
 sw/qa/core/text/text.cxx   |   62 +
 sw/qa/extras/odfexport/odfexport2.cxx  |6 
 sw/source/core/text/inftxt.hxx |6 
 sw/source/core/text/itratr.hxx |2 
 sw/source/core/text/itrtxt.hxx |2 
 sw/source/filter/html/htmlctxt.cxx |3 
 xmloff/source/text/XMLTextListBlockContext.hxx |1 
 xmloff/source/text/txtimp.cxx  |   64 -
 10 files changed, 355 insertions(+), 72 deletions(-)

New commits:
commit f0e6d005ab94e536461a4396f265f8850393c3c4
Author: Michael Stahl 
AuthorDate: Fri Apr 19 18:04:47 2024 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 2 01:20:06 2024 +0200

tdf#114287 tdf#159366 xmloff: ODF import: revert text:list override

This reverts commit ade0a153f453500f15343380ac937252992733e0 "tdf#114287
xmloff: ODF import: fix text:list override of list style" and subsequent
commits 7cf5faec6fdbc27dd77d2d36fb2ff205322cba0d and
1b2a6b98291cf8b7022951be19b915fe2a9e18e6.

It turns out that there is actually a paragraph in ODF 1.2 and later
that gives paragraph's indent priority over the list style's, which i
unfortunately missed when investigating the above issues:

  17.20  
  ...

  The fo:text-indent and fo:margin-left attributes are evaluated only
  for paragraphs inside list items whose paragraph styles do not specify
  them. If one of the two properties, or both, are specified by the
  paragraph style, the text indent and/or left margin are taken from the
  paragraph style. In this case the paragraph style's properties are
  used to determine the indent and margin for the text lines and thus
  also the alignment position.

This is usually interpreted as "on the same level", so applying a
list-style at a paragraph style overrides the indents inherited from a
parent paragraph style, but if the style then specifies its own indents
that overrides the list style's indents.

Furthermore it turns out that Google Docs now imports this bugdoc the
same way as LO 7.5 does; unclear if that changed recently (it shows
it like Word does in the preview, but like LO 7.5 does after opening it).

This means the way MS Word imports the bugdoc, which remains unchanged,
now looks like a bug and we should not change LO to be compatible with
it (when the same structure is created in Word, storing to ODF and
loading again, it looks different too).

Change-Id: I0c65bde38de9e6fcbccec55899c60c3245adb5ba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166309
Reviewed-by: Michael Stahl 
Tested-by: Jenkins
(cherry picked from commit 546741148863ae0b2a25cc994a7323c8113cb573)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166716
Reviewed-by: Xisco Fauli 

diff --git a/sw/qa/extras/odfexport/odfexport2.cxx 
b/sw/qa/extras/odfexport/odfexport2.cxx
index 8654a494b4b3..53c32bdf4045 100644
--- a/sw/qa/extras/odfexport/odfexport2.cxx
+++ b/sw/qa/extras/odfexport/odfexport2.cxx
@@ -941,9 +941,9 @@ DECLARE_ODFEXPORT_TEST(testTdf114287, "tdf114287.odt")
 xmlDocUniquePtr pXmlDoc = parseLayoutDump();
 assertXPath(pXmlDoc, "/root/page[1]/body/txt[2]/infos/prtBounds"_ostr, 
"left"_ostr, "2268");
 assertXPath(pXmlDoc, "/root/page[1]/body/txt[2]/infos/prtBounds"_ostr, 
"right"_ostr, "11339");
-// the problem was that the list style name of the list must override the
-// paragraph style even though it's the same list style
-assertXPath(pXmlDoc, "/root/page[1]/body/txt[9]/infos/prtBounds"_ostr, 
"left"_ostr, "357");
+// the list style name of the list is the same as the list style name of 
the
+// paragraph, but in any case the margins of the paragraph take precedence
+assertXPath(pXmlDoc, "/root/page[1]/body/txt[9]/infos/prtBounds"_ostr, 
"left"_ostr, "2268");
 assertXPath(pXmlDoc, "/root/page[1]/body/txt[9]/infos/prtBounds"_ostr, 
"right"_ostr, "11339");
 assertXPath(pXmlDoc, "/root/page[1]/body/txt[16]/infos/prtBounds"_ostr, 
"left"_ostr, "357");
 assertXPath(pXmlDoc, "/root/page[1]/body/txt[16]/infos/prtBounds"_ostr, 
"right"_ostr, "11339");
diff --git a/xmloff/source/text/XMLTextListBlockContext.hxx 
b/xmloff/source/text/XMLTextListBlockContext.hxx
index 4b18d625cc36..a529afd1e476 100644
--- a/xmloff/source/text/XMLTextListBlockContext.hxx
+++ b/xmloff/source/text/XMLTextListBlockContext.hxx
@@ -66,7 +66,6 @@ public:
 void ResetRestartNumbering() { mbRestartNumbering = false; }
 
 /// does this list have (possibly inherited from parent) list-style-name?
-bool HasListStyleName() { return !msListStyleName.isEmpty(); }
 const css::uno::Reference < css::container::XIndexReplace >& GetNumRules() 
const
 { return mxNumRules; 

[Bug 160894] When I utilize the "optimal height" feature to adjust row heights in CALC the screen goes crazy

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160894

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m_a_riosv  ---
Not repro on Windows
Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

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

[Bug 160893] XLOOKUP problem with date as text

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160893

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m_a_riosv  ---
Created attachment 193924
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193924=edit
Sample file with XLOOKUP and MATCH

It seems to have the same differences as MATCH().

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: f4ef5435df5560e6b6b061ce4053c71e2819bf51
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

Excel   
$71,29  $86,92  =XLOOKUP("2024-01-15";A2:A4;B2:B4;"no invoice";0;2)
33,12   no invoice  =XLOOKUP(DATE(2024;1;15);A2:A4;B2:B4;"no invoice";0;2)
$71,29  $86,92  =XLOOKUP(T("2024-01-15");A2:A4;B2:B4;"no invoice";0;2)
33,12   no invoice  =XLOOKUP(45306;A2:A4;B2:B4;"no invoice";0;2)

$3,00   $2,00   =MATCH("2024-01-15";A2:A4;0)
1   #N/A=MATCH(DATE(2024;1;15);A2:A4;0)
$3,00   $2,00   =MATCH(T("2024-01-15");A2:A4;0)
1   #N/A=MATCH(45306;A2:A4;0)

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

[Bug 66209] inserting/deleting rows: data integrity problem when data for "non-active" charts are updated

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66209

--- Comment #45 from Esteban  ---
Tested following the steps in comment 32, bug is still being reproduced.

Version: 7.3.7.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.7-0ubuntu0.22.04.4
Calc: threaded

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

[Bug 160892] "Write Error. Error in writing sub-document SfxBaseModel::storeSelf: 0x70c23..."

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160892

--- Comment #4 from rgz92  ---
Are you just giving info about the file for others or making a point?
I have other documents with >10K images that work fine. This document isn't
even 40% done. 
I don't see anything unreasonable here.

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

[Bug 160892] "Write Error. Error in writing sub-document SfxBaseModel::storeSelf: 0x70c23..."

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160892

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m_a_riosv  ---
No issue on Windows with:
Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

It is a huge file with more than four thousand images.

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

[Bug 160896] New: Cell Column & Row Base

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160896

Bug ID: 160896
   Summary: Cell Column & Row Base
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: junkyardma...@frontier.com

Description:
Cell and range properties and methods should be one based (1) not zero based
(0).

When counting things in that exist in the physical world the first item is 1,
not 0.  Whether it be marbles or rows and columns.

For example
.getCellByPosition(1,1) ' Should return A1 (first row and column) not B2
(second row and column)
.getCellRangeByName("A1").CellAddress.Row   ' Should return 1 (first row),
not 0
.getCellRangeByName("A1").CellAddress.Column' Should return 1 (first
column), not 0


Steps to Reproduce:
1.Self evident in description
2.
3.

Actual Results:
Self evident in description

Expected Results:
Self evident in description


Reproducible: Always


User Profile Reset: No

Additional Info:
Cell and range properties and methods should be one based (1) not zero based
(0).

When counting things in that exist in the physical world the first item is 1,
not 0.  Whether it be marbles or rows and columns.

For example
.getCellByPosition(1,1) ' Should return A1 (first row and column) not B2
(second row and column)
.getCellRangeByName("A1").CellAddress.Row   ' Should return 1 (first row),
not 0
.getCellRangeByName("A1").CellAddress.Column' Should return 1 (first
column), not 0

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

[Bug 160887] "Pairwise kerning" with "Transparency" creates obstructive white artefact

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160887

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m_a_riosv  ---
Please attach a sample file, reduce the size as much as possible without
private information, and paste the information in Menu/Help/About LibreOffice,
there is a copy icon.

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

[Bug 160885] Libreoffice draw improper handling of texts in pdf with highlights

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160885

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #4 from m_a_riosv  ---
Reproducible
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: f4ef5435df5560e6b6b061ce4053c71e2819bf51
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

When the highlight is no more than a line, 'Arrange - Sent backward', works,
butif it is multiline, only 'Sent to Back' makes the text visible, with no
visible highlight

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

[Bug 160883] Forms: Changing width and height of Checkboxes and Radiobuttons won't change size the controls

2024-05-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160883

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m_a_riosv  ---
In my opinion, it at least should change with the font size.
Reproducible.
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: f4ef5435df5560e6b6b061ce4053c71e2819bf51
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

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

core.git: 2 commits - basegfx/source tools/source

2024-05-01 Thread Caolán McNamara (via logerrit)
 basegfx/source/polygon/b2dpolygontools.cxx |5 ++---
 tools/source/fsys/urlobj.cxx   |3 ++-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 792a4768e1765b6d1f78d8bd5ca9b2a5abfd0a13
Author: Caolán McNamara 
AuthorDate: Wed May 1 20:22:06 2024 +0100
Commit: Caolán McNamara 
CommitDate: Thu May 2 00:13:41 2024 +0200

cid#1596705 Unused value

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

diff --git a/basegfx/source/polygon/b2dpolygontools.cxx 
b/basegfx/source/polygon/b2dpolygontools.cxx
index 92beaa21fd0a..89c8eea90111 100644
--- a/basegfx/source/polygon/b2dpolygontools.cxx
+++ b/basegfx/source/polygon/b2dpolygontools.cxx
@@ -3328,12 +3328,11 @@ namespace basegfx::utils
 
 // get first point and flag
 B2DPoint aNewCoordinatePair(rPointSequenceSource[0].X, 
rPointSequenceSource[0].Y);
-css::drawing::PolygonFlags 
ePolygonFlag(rFlagSequenceSource[0]);
 B2DPoint aControlA;
 B2DPoint aControlB;
 
 // first point is not allowed to be a control point
-OSL_ENSURE(ePolygonFlag != css::drawing::PolygonFlags_CONTROL,
+OSL_ENSURE(rFlagSequenceSource[0] != 
css::drawing::PolygonFlags_CONTROL,
 "UnoPolygonBezierCoordsToB2DPolygon: Start point is a 
control point, illegal input polygon (!)");
 
 // add first point as start point
@@ -3347,7 +3346,7 @@ namespace basegfx::utils
 
 // get next point and flag
 aNewCoordinatePair = B2DPoint(rPointSequenceSource[b].X, 
rPointSequenceSource[b].Y);
-ePolygonFlag = rFlagSequenceSource[b];
+css::drawing::PolygonFlags ePolygonFlag = 
rFlagSequenceSource[b];
 b++;
 
 if(b < nCount && ePolygonFlag == 
css::drawing::PolygonFlags_CONTROL)
commit bea8576e8218cc8fee7966877d7412377e70e204
Author: Caolán McNamara 
AuthorDate: Wed May 1 20:19:24 2024 +0100
Commit: Caolán McNamara 
CommitDate: Thu May 2 00:13:32 2024 +0200

cid#1596706 Dereference after null check

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

diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index aeb85c1c9f1d..611a14145dde 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -2274,7 +2274,8 @@ INetURLObject::PrefixInfo const * 
INetURLObject::getPrefix(sal_Unicode const *&
 sal_Int32 i = 0;
 for (; pFirst < pLast; ++i)
 {
-if (pFirst->m_pPrefix && pFirst->m_pPrefix[i] == '
+assert(pFirst->m_pPrefix && "we start search after the dummy entry");
+if (pFirst->m_pPrefix[i] == '
 {
 pMatch = pFirst++;
 pMatched = p;


core.git: sd/source

2024-05-01 Thread Caolán McNamara (via logerrit)
 sd/source/ui/view/frmview.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ff79a22fd04f9bbb5f4f67f21862db3a531de833
Author: Caolán McNamara 
AuthorDate: Wed May 1 20:17:51 2024 +0100
Commit: Caolán McNamara 
CommitDate: Thu May 2 00:13:16 2024 +0200

cid#1596707 Unchecked dynamic_cast

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

diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx
index 88ae6825738b..1fa0c4eba45d 100644
--- a/sd/source/ui/view/frmview.cxx
+++ b/sd/source/ui/view/frmview.cxx
@@ -282,8 +282,9 @@ void FrameView::Update(SdOptions const * pOptions)
 return;
 
 SdDrawDocument* pDrawDocument = dynamic_cast(());
+const bool bImpress = pDrawDocument && pDrawDocument->GetDocumentType() == 
DocumentType::Impress;
 
-if (pDrawDocument->GetDocumentType() == DocumentType::Impress)
+if (bImpress)
 {
 mbRuler = officecfg::Office::Impress::Layout::Display::Ruler::get();
 SetDragStripes( 
officecfg::Office::Impress::Layout::Display::Guide::get() );


  1   2   3   >