[Bug 160726] SVG: feComposite: nothing displayed when using circles

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160726

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0

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

core.git: drawinglayer/source include/drawinglayer include/vcl svgio/inc svgio/qa svgio/source vcl/source

2024-04-22 Thread Xisco Fauli (via logerrit)
 drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx |3 
 drawinglayer/source/primitive2d/glowprimitive2d.cxx  |3 
 drawinglayer/source/primitive2d/patternfillprimitive2d.cxx   |6 
 drawinglayer/source/primitive2d/shadowprimitive2d.cxx|3 
 drawinglayer/source/primitive2d/softedgeprimitive2d.cxx  |3 
 drawinglayer/source/processor2d/d2dpixelprocessor2d.cxx  |5 
 drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx   |8 
 drawinglayer/source/tools/converters.cxx |   24 -
 include/drawinglayer/converters.hxx  |8 
 include/vcl/BitmapTools.hxx  |4 
 svgio/inc/svgfilternode.hxx  |3 
 svgio/qa/cppunit/SvgImportTest.cxx   |  161 ++-
 svgio/qa/cppunit/data/arithmetic.svg |8 
 svgio/qa/cppunit/data/arithmetic2.svg|8 
 svgio/qa/cppunit/data/tdf160726.svg  |   43 ++
 svgio/source/svgreader/svgfeblendnode.cxx|   72 +++-
 svgio/source/svgreader/svgfecompositenode.cxx|   67 +++-
 svgio/source/svgreader/svgfilternode.cxx |   21 -
 vcl/source/bitmap/BitmapTools.cxx|  114 ---
 19 files changed, 345 insertions(+), 219 deletions(-)

New commits:
commit 4b6e0f2c88debaedb514c868e061c21e15215b6e
Author: Xisco Fauli 
AuthorDate: Sun Apr 21 20:41:55 2024 +0200
Commit: Xisco Fauli 
CommitDate: Mon Apr 22 11:53:41 2024 +0200

tdf#160726, tdf#48062: Simplify how BitmapExs are created

In my initial approach, I tranformed the primitive2DContainers
before converting them to BitmapEx. This caused circles like
https://bugs.documentfoundation.org/attachment.cgi?id=193790
not to be displayed.
Simplify how BitmapExs are created by just using the range both
primitive2DContainers have in common. This way, DrawBitmapInRect
can be dropped now

Change-Id: I2401dc87b98e04b9cf9f5ebade2b5622d884fc3a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166391
Tested-by: Xisco Fauli 
Reviewed-by: Xisco Fauli 

diff --git a/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx 
b/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx
index 22a20f095d24..e50e59a1d76d 100644
--- a/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx
+++ b/drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx
@@ -147,8 +147,7 @@ namespace drawinglayer::unorenderer
 convertToBitmapEx(
 std::move(xEmbedSeq),
 aViewInformation2D,
-nDiscreteWidth,
-nDiscreteHeight,
+basegfx::B2DRange(0, 0, nDiscreteWidth, 
nDiscreteHeight),
 MaximumQuadraticPixels));
 
 if(!aBitmapEx.IsEmpty())
diff --git a/drawinglayer/source/primitive2d/glowprimitive2d.cxx 
b/drawinglayer/source/primitive2d/glowprimitive2d.cxx
index 6bf9dea8af83..5cec7a46f532 100644
--- a/drawinglayer/source/primitive2d/glowprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/glowprimitive2d.cxx
@@ -176,7 +176,8 @@ void GlowPrimitive2D::create2DDecomposition(
 // I have now added a helper that just creates the mask without having
 // to render the content, use it, it's faster
 const AlphaMask aAlpha(::drawinglayer::createAlphaMask(
-std::move(xEmbedSeq), aViewInformation2D, nDiscreteClippedWidth, 
nDiscreteClippedHeight,
+std::move(xEmbedSeq), aViewInformation2D,
+basegfx::B2DRange(0, 0, nDiscreteClippedWidth, nDiscreteClippedHeight),
 nMaximumQuadraticPixels));
 
 if (aAlpha.IsEmpty())
diff --git a/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx 
b/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
index 516b0042d960..8068a386970c 100644
--- a/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/patternfillprimitive2d.cxx
@@ -136,8 +136,7 @@ namespace drawinglayer::primitive2d
 convertToBitmapEx(
 std::move(xEmbedSeq),
 aViewInformation2D,
-mnDiscreteWidth,
-mnDiscreteHeight,
+basegfx::B2DRange(0, 0, mnDiscreteWidth, 
mnDiscreteHeight),
 mnDiscreteWidth * mnDiscreteHeight));
 
 if(!aBitmapEx.IsEmpty())
@@ -197,8 +196,7 @@ namespace drawinglayer::primitive2d
 return convertToBitmapEx(
 std::move(xEmbedSeq),
 aViewInformation2D,
-nWidth,
-nHeight,
+basegfx::B2DRange(0, 0, nWidth, nHeight),
 nWidth * 

[Bug 100037] FILEOPEN DOCX Image arrangement (in Z dimension) not respected

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100037

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Bug 160773] SVG: Nothing is displayed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160773

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #2 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/166425

And after this, bug 159661 gets fixed (because commit
cc3663bbaed4f65d64154e5f9abb51a5f622f710 actually fixed it, except for this
little oversight).

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

[Bug 159290] libwpd - WPD2HTML fails to handle WPD text columns properly

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159290

--- Comment #1 from Dean Glenn  ---
Have you tried adjusting any settings or configurations within WPD2HTML to see
if that resolves the problem?
https://tunnelrushgame.io

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

[Bug 160777] you just some error in software

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160777

--- Comment #3 from jaydeep  ---
(In reply to jaydeep from comment #2)
> (In reply to jaydeep from comment #1)
> > no

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #12 from naruto  ---
https://www.youtube.com/watch?v=1WpRj19hMNI

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

[Bug 89613] Artifacts for icons and other UI elements (KDE3 vclplug is picked instead of GTK under KDE4)

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89613

--- Comment #99 from Janet Gee  ---
Ensuring the comfort of clients and customers, the efficiency of facilities,
and the sustainability of every practice are all the work of a facilities
management provider. UNICCM's Professional Diploma in Facilities Management
consists of 4 modules. Their online classes will perfectly fit your schedule,
as they will be hosted by expert professionals every weekend. facilities
management diploma courses ►
https://www.uniccm.com/course/professional-diploma-in-facilities-management

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

[Bug 160777] you just some error in software

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160777

--- Comment #2 from jaydeep  ---
(In reply to jaydeep from comment #1)
> no

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

[Bug 160771] ola

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160771

Buovjaga  changed:

   What|Removed |Added

  Component|Draw|deletionRequest
 Resolution|--- |INVALID
 Status|NEEDINFO|RESOLVED

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

[Bug 160772] hulu hulu

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160772

Buovjaga  changed:

   What|Removed |Added

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

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

[Bug 160777] you just some error in software

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160777

--- Comment #1 from jaydeep  ---
asds

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

Buovjaga  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID
  Component|UI  |deletionRequest

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

[Bug 160684] The Landscape style is nonsensical while we have neither hierarchical nor composable page styles

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160684

Cor Nouws  changed:

   What|Removed |Added

 CC|c...@nouenoff.nl |

--- Comment #12 from Cor Nouws  ---
let me stop wasting my precious time

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

[Bug 160777] New: you just some error in software

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160777

Bug ID: 160777
   Summary: you just some error in software
   Product: LibreOffice
   Version: 24.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jaydeepb...@gmail.com

Crash at undo of RTF Paste

Steps to Reproduce:
1. Attachment 179694 [details] 
2. CTRL+A
3. CTRL+C
4. CTRL+SHIFT+V
5. Paste as RTF
6. CTRL+Z 2x -> Crash

Bug 148703 is also about similar BigPtrArray crash. This case didn't crash
before. The cause for the crash might be described in: bug 99014

Actual Results:
Crash

Expected Results:
No crash


Reproducible: Always


User Profile Reset: No

Additional Info:
Found in
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 566bb271b8fe5882f24fef230e06c2af4ea12b33
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL threaded

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #11 from tikirah...@rartg.com ---
https://packaged-media.redd.it/hpa4hqfobdlc1/pb/m2-res_480p.mp4?m=DASHPlaylist.mpd=1=1713794400=372bf482a3079dc71eb68a5d42ba88fd3fda56e3

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

[Bug 160776] New: font size does not work in window

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160776

Bug ID: 160776
   Summary: font size does not work in window
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: devanshim0...@gmail.com

in windows screen font size doesn't working proper

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

core.git: solenv/gbuild

2024-04-22 Thread Caolán McNamara (via logerrit)
 solenv/gbuild/platform/LINUX_POWERPC64_GCC.mk |3 +++
 solenv/gbuild/platform/LINUX_X86_64_GCC.mk|2 ++
 solenv/gbuild/platform/com_GCC_defs.mk|6 +++---
 3 files changed, 8 insertions(+), 3 deletions(-)

New commits:
commit 196c22e88138796fb1204610bd5d4ad8b8cd8a85
Author: Caolán McNamara 
AuthorDate: Mon Apr 22 09:03:08 2024 +0100
Commit: Caolán McNamara 
CommitDate: Mon Apr 22 11:27:51 2024 +0200

generic is x86_64-specific

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

diff --git a/solenv/gbuild/platform/LINUX_POWERPC64_GCC.mk 
b/solenv/gbuild/platform/LINUX_POWERPC64_GCC.mk
index 1880b3bad1e4..371fec46751d 100644
--- a/solenv/gbuild/platform/LINUX_POWERPC64_GCC.mk
+++ b/solenv/gbuild/platform/LINUX_POWERPC64_GCC.mk
@@ -10,6 +10,9 @@
 #please make generic modifications to unxgcc.mk or linux.mk
 gb_CPUDEFS += -DPPC
 
+gb_COMPILEROPTFLAGS := -O2 \
+  $(if $(filter 
powerpc64le-unknown-linux-gnu,$(HOST_PLATFORM)),-mtune=powerpc64le)
+
 include $(GBUILDDIR)/platform/linux.mk
 
 # vim: set noet sw=4:
diff --git a/solenv/gbuild/platform/LINUX_X86_64_GCC.mk 
b/solenv/gbuild/platform/LINUX_X86_64_GCC.mk
index c1a1cfd6..3249b4b9a572 100644
--- a/solenv/gbuild/platform/LINUX_X86_64_GCC.mk
+++ b/solenv/gbuild/platform/LINUX_X86_64_GCC.mk
@@ -9,6 +9,8 @@
 
 #please make generic modifications to unxgcc.mk or linux.mk
 
+gb_COMPILEROPTFLAGS := -O2 -mtune=generic
+
 include $(GBUILDDIR)/platform/linux.mk
 
 # vim: set noet sw=4:
diff --git a/solenv/gbuild/platform/com_GCC_defs.mk 
b/solenv/gbuild/platform/com_GCC_defs.mk
index 903424972824..a09ee850e96a 100644
--- a/solenv/gbuild/platform/com_GCC_defs.mk
+++ b/solenv/gbuild/platform/com_GCC_defs.mk
@@ -38,11 +38,11 @@ endif
 gb_COMPILER_SETUP :=
 
 ifeq ($(strip $(gb_COMPILEROPTFLAGS)),)
-gb_COMPILEROPTFLAGS := \
-   -O2 -mtune=generic \
-   $(if $(HARDENING_OPT_CFLAGS),$(HARDENING_OPT_CFLAGS))
+gb_COMPILEROPTFLAGS := -O2
 endif
 
+gb_COMPILEROPTFLAGS += $(HARDENING_OPT_CFLAGS)
+
 gb_AFLAGS := $(AFLAGS)
 
 gb_COMPILERDEFS := \


[Bug 136406] [META] OOXML VML shape related issues

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136406
Bug 136406 depends on bug 67759, which changed state.

Bug 67759 Summary: VIEWING: bitmap image hides my shapes(line, rectangle,..).
https://bugs.documentfoundation.org/show_bug.cgi?id=67759

   What|Removed |Added

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

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

[Bug 67759] VIEWING: bitmap image hides my shapes(line, rectangle,..).

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67759

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||jl...@mail.com
 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #11 from Gabor Kelemen (allotropia)  ---


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

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #10 from tikirah...@rartg.com ---
https://packaged-media.redd.it/hpa4hqfobdlc1/pb/m2-res_480p.mp4

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

[Bug 67759] VIEWING: bitmap image hides my shapes(line, rectangle,..).

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67759

--- Comment #10 from Gabor Kelemen (allotropia)  ---
Created attachment 193797
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193797=edit
The second example file in Word 2016 and Writer master

Looks good in todays nightly, 

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 695e8742da850bbb15c2e6d2b5d4c99a0daf4925
CPU threads: 15; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: default

Supposedly after 

https://git.libreoffice.org/core/commit/00ef339bfc747897b8e4410fa0aa4397c4e45717

tdf#81956 vml import: put groupshape in foreground if positive z-index

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

[Bug 93876] LOOL: 'resetselection' command doesn't work as expected in Calc

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93876

Aron Budea  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

ayush.bugzi...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #9 from ayush.bugzi...@gmail.com ---
MacBook Air 15 pro with windows 12 blasting ?

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #8 from Htanmos  ---
(In reply to naruto from comment #7)
> Contact Bill Gates @ dolly_ki_tapri

kya billu mera laptop louta sakta hai ? puchta hai Bharat

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

[Bug 160770] Crashes on second access of regex matches without VBA support option

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160770

Mike Kaganski  changed:

   What|Removed |Added

 OS|All |Windows (All)
 Status|UNCONFIRMED |NEW
   Keywords||bibisectRequest, regression
 Ever confirmed|0   |1

--- Comment #1 from Mike Kaganski  ---
Repro. This is a two-stage regression (with a brief intermediate breakage).

In OOo 3.2.0 and OOo 3.3.0, it run just fine (and adding a MsgBox to show all
four submatches shown them all).

In LO 3.3.0, it started showing an error, no matter how many attempts to run
the function:
"BASIC runtime error.
An exception occurred 
Type: com.sun.star.uno.RuntimeException
Message: [automation bridge] unexpected exception in
IUnknownWrapper_Impl::getValue ! Message : 
."

In Version 3.4.0, it shown a run-time error on the problematic second TimeHour
assignment line on the first function call: "General Error". Then it crashed on
a second function run.

In 3.5.0, it restored the behavior of 3.3.0; and worked like that till 7.5.0
(inclusive).

In 7.6.0, it started crashing.

The last regression (crash since 7.6) needs bisection.

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #7 from naruto  ---
Contact Bill Gates @ dolly_ki_tapri

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

[Bug 93876] LOOL: 'resetselection' command doesn't work as expected in Calc

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93876

miliprajapat...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #6 from tikirah...@rartg.com ---
Aur kisike laptop pe reproduce kar ke dekh blast hota hai ki nahi

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

ayush.bugzi...@gmail.com changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|REOPENED
 Ever confirmed|0   |1

--- Comment #5 from ayush.bugzi...@gmail.com ---
(In reply to naruto from comment #4)
> Dolly ka Choco

1 cup CHAI

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #4 from naruto  ---
Dolly ka Choco

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

ayush.bugzi...@gmail.com changed:

   What|Removed |Added

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

--- Comment #3 from ayush.bugzi...@gmail.com ---
Drink phenol and your problem will be solved

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

[Bug 160775] New: Incorrect Calculation Result in SUM Function with Mixed Data Types

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160775

Bug ID: 160775
   Summary: Incorrect Calculation Result in SUM Function with
Mixed Data Types
   Product: LibreOffice
   Version: 3.3.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tikirah...@rartg.com

Description:
When using the SUM function in LibreOffice Calc to calculate the sum of a range
containing mixed data types (numeric and non-numeric), the calculation result
is incorrect.

Steps to Reproduce:
1. Open a new Calc spreadsheet.
2. In cell A1, enter the value "10".
3. In cell A2, enter the value "5".
4. In cell A3, enter the text "Test".
5. In cell A4, enter the formula "=SUM(A1:A3)".
6. Press Enter to calculate the sum.

Actual Results:
The actual result is an error, or in some cases, the result may be the
concatenation of numeric and non-numeric values, such as "105Test".

Expected Results:
The expected result is 15, as the SUM function should ignore non-numeric values
and only sum the numeric values in the range A1:A3.


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
It affects users who rely on the SUM function to calculate the sum of ranges
containing mixed data types.
- The issue persists even after recalculating the spreadsheet or restarting the
application.

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #2 from Htanmos  ---
(In reply to naruto from comment #1)
> are dada re...

Bhai Laptop gaya abb bapas kaise milega mujhe loot liya barbad kar diya

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

[Bug 160771] ola

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160771

ayush.bugzi...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from ayush.bugzi...@gmail.com ---
(In reply to naruto from comment #2)
> idk, google it!

You could try updating LibreOffice to the latest version. If your problem is
still not solved you can reach out to their support/community for assistance.

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

[Bug 160774] Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

--- Comment #1 from naruto  ---
are dada re...

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

[Bug 160774] New: Laptop Blast

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160774

Bug ID: 160774
   Summary: Laptop Blast
   Product: LibreOffice
   Version: 3.3.4 release
  Hardware: x86 (IA32)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: somnathkumbhakar...@gmail.com

Description:
My laptop got Blast after opening the Application, 
It was MacbookAir 15. 
I am very Shocked give me my laptop back. 

Steps to Reproduce:
1.Try to open a file 
2.Laptop got blast
3.now i cant able to close the file

Actual Results:
bhai laptop bapas do mera 

Expected Results:
laptop got blast 


Reproducible: Didn't try


User Profile Reset: No

Additional Info:
I want my Laptop back

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

[Bug 160773] SVG: Nothing is displayed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160773

Xisco Faulí  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com,
   ||xiscofa...@libreoffice.org
   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=16
   ||0702
 Ever confirmed|0   |1

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

author  Mike Kaganski  2024-04-16 10:48:06
+0500
committer   Mike Kaganski  2024-04-20
11:28:34 +0200
commit  cc3663bbaed4f65d64154e5f9abb51a5f622f710 (patch)
treeb364a63443222b6690a5ec1359f12cb2d7c8fa0a
parent  cfa9990d470b10548c7fed64eb1182fea11d41e0 (diff)
tdf#160702: improve text positioning

Bisected with: bibisect-linux64-24.8

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

[Bug 160773] New: SVG: Nothing is displayed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160773

Bug ID: 160773
   Summary: SVG: Nothing is displayed
   Product: LibreOffice
   Version: 24.8.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Steps to reproduce:
1. Open attachment 192483 from bug 159661

-> At least the red rectangle should be displayed. Text missing is bug 159661

Reproduced in

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e902fe1b8bf03f9c3747685314f4d443bcea9333
CPU threads: 8; OS: Linux 6.1; UI render: default; VCL: gtk3
Locale: es-ES (es_ES.UTF-8); UI: en-US
Calc: threaded

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

[Bug 120719] tools -> options ability to backup and restore user options and customizations, reuse the profile export / restore from SafeModeDialog

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120719

Heiko Tietze  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #13 from Heiko Tietze  ---
Could also be done per extension. Justin had a talk where he recommended to
apply defaults [1] and I could imagine this can easily be enhanced with an
export option.

[1]
https://events.documentfoundation.org/libreoffice-conference-2023/talk/TCJAU7/

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

[Bug 120719] tools -> options ability to backup and restore user options and customizations, reuse the profile export / restore from SafeModeDialog

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120719

Heiko Tietze  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #13 from Heiko Tietze  ---
Could also be done per extension. Justin had a talk where he recommended to
apply defaults [1] and I could imagine this can easily be enhanced with an
export option.

[1]
https://events.documentfoundation.org/libreoffice-conference-2023/talk/TCJAU7/

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

[Bug 160771] ola

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160771

--- Comment #1 from ayush.bugzi...@gmail.com ---
Can you elaborate the problem ?

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

[Bug 160771] ola

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160771

--- Comment #2 from naruto  ---
idk, google it!

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

[Bug 160772] hulu hulu

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160772

naruto  changed:

   What|Removed |Added

Summary|Incorrect Spellcheck|hulu hulu
   |Suggestions for Compound|
   |Words   |

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

[Bug 160772] New: Incorrect Spellcheck Suggestions for Compound Words

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160772

Bug ID: 160772
   Summary: Incorrect Spellcheck Suggestions for Compound Words
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ayush.bugzi...@gmail.com

Description:
When using the spellcheck feature in LibreOffice Writer, it provides incorrect
suggestions for compound words. The issue occurs when a compound word is
misspelled, and the spellcheck offers suggestions that don't reflect the proper
compound form. For instance, when "desktop" is mistakenly spelled as "desctop,"
the spellcheck may suggest "despot" instead of the correct "desktop."

Steps to Reproduce:
1. Open LibreOffice Writer.
2. Type a compound word containing two or more elements.
3. Intentionally misspell one of the elements of the compound word.
4. Activate the spellcheck feature by pressing F7 or navigating through Tools
>. Spelling and Grammar.
5. Observe the suggestions provided by the spellcheck for the misspelled
compound word.

Actual Results:
The spellcheck suggests words that are not relevant to the compound word or its
intended meaning, leading to confusion and inefficiency in correcting spelling
errors.

Expected Results:
The spellcheck should offer suggestions that include the proper compound form
of the word, considering the context and structure of the compound.


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
This issue affects the accuracy and usability of the spellcheck feature in
LibreOffice Writer, particularly for users who frequently work with compound
words. It can result in wasted time and errors if users rely on the incorrect
suggestions provided by the spellcheck. This bug undermines the overall quality
and reliability of LibreOffice Writer as a word processing tool.

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

[Bug 160771] ola

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160771

Htanmos  changed:

   What|Removed |Added

Summary|having trouble while|ola
   |opening a new document  |

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

[Bug 160767] idk, google it!

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160767

naruto  changed:

   What|Removed |Added

Summary|ohh yeah|idk, google it!

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

[Bug 160767] ohh yeah

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160767

naruto  changed:

   What|Removed |Added

Summary|Mac Mouse and Trackpad  |ohh yeah
   |Freezes Repeatedly, only in |
   |LibreOffice Writer, Mac |
   |Sonoma  |

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

[Bug 160771] New: having trouble while opening a new document

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160771

Bug ID: 160771
   Summary: having trouble while opening a new document
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mileho6...@rartg.com

Description:
Crash if I open the a new document and open 'Options' tab right after that

Steps to Reproduce:
1.open a new document
2.insert an image
3.insert a diagram

Actual Results:
libre office closed unexpectedly!

Expected Results:
image should be inserted into the document along with the selected diagram


Reproducible: Couldn't Reproduce


User Profile Reset: No

Additional Info:
saved the document nicely

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

[Bug 160755] The Footnote page style is nonsensical and should be removed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160755

Heiko Tietze  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #2 from Heiko Tietze  ---
-1

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

[Bug 160755] The Footnote page style is nonsensical and should be removed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160755

Heiko Tietze  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #2 from Heiko Tietze  ---
-1

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

[Bug 160770] New: Crashes on second access of regex matches without VBA support option

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160770

Bug ID: 160770
   Summary: Crashes on second access of regex matches without VBA
support option
   Product: LibreOffice
   Version: 7.6.6.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: junkyardma...@frontier.com

Description:
VB macro using RegEx matches.
Calc crashes on second access of regex matches without VBA support option


Steps to Reproduce:
1.Run the attached macro
2.
3.

Actual Results:
Calc application crashes

Expected Results:
Work properly


Reproducible: Always


User Profile Reset: No

Additional Info:
REM  *  BASIC  *

' Crashes on second access of regex matches (line 19) without VBA support
option.

Private Function RegEx_Matches_Calc_Crash()

Dim regEx As Object
Set regEx = CreateObject("VBScript.RegExp")
regEx.Global = True
regEx.IgnoreCase = True

html = "10:35 AM EDT"

regEx.Pattern = "([0-9]{2}):([0-9]{2}) (AM|PM) (EST|EDT)"
Set Matches = regEx.Execute(html)

If Matches.Count > 0 Then
TimeHour = Matches.Item(0).SubMatches.Item(0)
TimeHour = Matches.Item(0).SubMatches.Item(0)
TimeMinute = Matches.Item(0).SubMatches.Item(1)
TimeAMPM = Matches.Item(0).SubMatches.Item(2)
TimeTZ = Matches.Item(0).SubMatches.Item(3)
End If

End Function


' Version: 7.6.6.3 (X86_64) / LibreOffice Community
' Build ID: d97b2716a9a4a2ce1391dee1765565ea469b0ae7
' CPU threads: 8; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL:
win
' Locale: en-US (en_US); UI: en-US
' Calc: threaded

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

[Bug 160497] FR: Print (or export) only tracked changes

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160497

Heiko Tietze  changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/is-there-any-way-to-prin
   ||t-a-list-of-only-tracked-ch
   ||anges-without-the-rest-of-t
   ||he-document-in-writer/10421
   ||6
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from Heiko Tietze  ---
I wonder if you are aware of the sidebar deck that lists all TC.

Besides, printing sounds very niche (and we have the responsibility of
conservation) but export to Calc might make sense. However, assuming you can
sort in Writer's sidebar (just filtering for now), what is a spreadsheet good
for then?

And last but not least the extension on ask.libreoffice looks promising, if we
decide this to be a special use case for only a few users.

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

[Bug 160497] FR: Print (or export) only tracked changes

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160497

Heiko Tietze  changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/is-there-any-way-to-prin
   ||t-a-list-of-only-tracked-ch
   ||anges-without-the-rest-of-t
   ||he-document-in-writer/10421
   ||6
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from Heiko Tietze  ---
I wonder if you are aware of the sidebar deck that lists all TC.

Besides, printing sounds very niche (and we have the responsibility of
conservation) but export to Calc might make sense. However, assuming you can
sort in Writer's sidebar (just filtering for now), what is a spreadsheet good
for then?

And last but not least the extension on ask.libreoffice looks promising, if we
decide this to be a special use case for only a few users.

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

[Bug 160227] Add timer/clock to single-screen presentation

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160227

--- Comment #7 from Heiko Tietze  ---
(In reply to Tomaz Vajngerl from comment #6)
> I think a timer like that ... could be added to Slide Show Properties...
Feel free to reopen, J22.

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

[Bug 160227] Add timer/clock to single-screen presentation

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160227

--- Comment #7 from Heiko Tietze  ---
(In reply to Tomaz Vajngerl from comment #6)
> I think a timer like that ... could be added to Slide Show Properties...
Feel free to reopen, J22.

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

core.git: Branch 'refs/tags/cp-24.04.1-3' - 0 commits -

2024-04-22 Thread (via logerrit)
Rebased ref, commits from common ancestor:


[Bug 160682] HTML "page style" is not a page style - move this functionality elsewhere

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160682

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

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

[Bug 160682] HTML "page style" is not a page style - move this functionality elsewhere

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160682

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

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

core.git: xmloff/source

2024-04-22 Thread Mike Kaganski (via logerrit)
 xmloff/source/text/txtparae.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit e902fe1b8bf03f9c3747685314f4d443bcea9333
Author: Mike Kaganski 
AuthorDate: Mon Apr 22 08:58:32 2024 +0200
Commit: Mike Kaganski 
CommitDate: Mon Apr 22 10:02:50 2024 +0200

Use designated initializers for clarity

Change-Id: Ie10e657e07981e6fd0f0804371fd30f2b3f143b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166430
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index c95eb4886120..6153fb09d7a8 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -1358,8 +1358,9 @@ struct XMLTextParagraphExport::DocumentListNodes
 for (const auto& node : nodes)
 {
 assert(node.getLength() == 3);
-docListNodes.push_back({ node[0].get(), 
node[1].get(),
- node[2].get() });
+docListNodes.push_back({ .index = node[0].get(),
+ .style_id = node[1].get(),
+ .list_id = node[2].get() });
 }
 
 std::sort(docListNodes.begin(), docListNodes.end(),


[Bug 160768] Changing value in a text box control with a link cell set up, Crash

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160768

--- Comment #3 from nobu  ---
The attached sample file shows that it also crashes with checkbox.

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

[Bug 160253] Heading numbering wrong on file reload

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160253

--- Comment #15 from Mike Kaganski  ---
A way forward seems to be collecting the order of list ids in
XMLTextParagraphExport::exportTextContentEnumeration (in the initial pass, when
bAutoStyles is true); and then using them in the second pass - instead of the
current approach of ShouldSkipListId, which constructs DocumentListNodes,
asking the document for the nodes in lists, sorting them by the ids, and then
checking according to the id order - which is obviously wrong here, where a
node with a higher id (main body) is followed by a node with a lower id
(endnote), and then goes another higher node id (main body).

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

core.git: Branch 'distro/collabora/co-23.05' - desktop/source sc/source sd/source sw/source

2024-04-22 Thread Caolán McNamara (via logerrit)
 desktop/source/lib/init.cxx   |4 
 sc/source/ui/unoobj/docuno.cxx|   16 
 sd/source/ui/unoidl/unomodel.cxx  |   16 
 sw/source/uibase/uno/unotxdoc.cxx |   15 ---
 4 files changed, 51 deletions(-)

New commits:
commit 21d2121b632f5a0dfcf54b5819367140d7977543
Author: Caolán McNamara 
AuthorDate: Fri Apr 19 16:47:43 2024 +0100
Commit: Miklos Vajna 
CommitDate: Mon Apr 22 09:40:19 2024 +0200

Revert early theme setting backports

Revert "add getViewRenderState to LibreOfficeKitDocument"

This reverts commit 46ab144819ea7ee93dcf5441c57977a973cff389.

Change-Id: I46bad0f3a29edbc0f9acfdda2d014773a93a1baf

Revert "support possibility to set Theme early during 
initializeForTiledRendering"

This reverts commit a0a4309c718143a60ac8702fa6f15c1b7c6c2788.

Revert "lok: add property descriptor "Theme""

This reverts commit 1d7ee6942f1f1ccdb8aeb253c1cf8ce0c5f63421.

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

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index ea3159ae80f6..50f8bb24a378 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -6367,10 +6367,6 @@ static char* 
doc_getCommandValues(LibreOfficeKitDocument* pThis, const char* pCo
 {
 return getRulerState(pThis);
 }
-else if (aCommand == ".uno:ViewRenderState")
-{
-return convertOString(pDoc->getViewRenderState());
-}
 else if (o3tl::starts_with(aCommand, aViewRowColumnHeaders))
 {
 tools::Rectangle aRectangle;
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index 8e67eab09413..1520b183beb9 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -21,8 +21,6 @@
 
 #include 
 
-#include 
-#include 
 #include 
 #include 
 #include 
@@ -1313,8 +1311,6 @@ void ScModelObj::initializeForTiledRendering(const 
css::uno::SequenceSetAppOptions(aAppOptions);
 
-OUString sThemeName;
-
 for (const beans::PropertyValue& rValue : rArguments)
 {
 if (rValue.Name == ".uno:SpellOnline" && rValue.Value.has())
@@ -1323,8 +1319,6 @@ void ScModelObj::initializeForTiledRendering(const 
css::uno::Sequence());
 GetDocument()->SetDocOptions(options);
 }
-else if (rValue.Name == ".uno:ChangeTheme" && 
rValue.Value.has())
-sThemeName = rValue.Value.get();
 }
 
 // show us the text exactly
@@ -1341,16 +1335,6 @@ void ScModelObj::initializeForTiledRendering(const 
css::uno::Sequencecommit();
-
-// if we know what theme the user wants, then we can dispatch that now 
early
-if (!sThemeName.isEmpty())
-{
-css::uno::Sequence 
aPropertyValues(comphelper::InitPropertySequence(
-{
-{ "NewTheme", uno::Any(sThemeName) }
-}));
-comphelper::dispatchCommand(".uno:ChangeTheme", aPropertyValues);
-}
 }
 
 uno::Any SAL_CALL ScModelObj::queryInterface( const uno::Type& rType )
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index 5d535707eed3..c9b69575ff49 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -33,10 +33,8 @@
 #include 
 
 #include 
-#include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -2580,8 +2578,6 @@ void 
SdXImpressDocument::initializeForTiledRendering(const css::uno::SequenceGetDrawView();
@@ -2593,8 +2589,6 @@ void 
SdXImpressDocument::initializeForTiledRendering(const css::uno::SequenceSetAuthor(rValue.Value.get());
 else if (rValue.Name == ".uno:SpellOnline" && 
rValue.Value.has())
 mpDoc->SetOnlineSpell(rValue.Value.get());
-else if (rValue.Name == ".uno:ChangeTheme" && 
rValue.Value.has())
-sThemeName = rValue.Value.get();
 }
 
 // Disable comments if requested
@@ -2636,16 +2630,6 @@ void 
SdXImpressDocument::initializeForTiledRendering(const css::uno::Sequence 
aPropertyValues(comphelper::InitPropertySequence(
-{
-{ "NewTheme", uno::Any(sThemeName) }
-}));
-comphelper::dispatchCommand(".uno:ChangeTheme", aPropertyValues);
-}
 }
 
 void SdXImpressDocument::postKeyEvent(int nType, int nCharCode, int nKeyCode)
diff --git a/sw/source/uibase/uno/unotxdoc.cxx 
b/sw/source/uibase/uno/unotxdoc.cxx
index 99c26e6f39dc..9ed0f762a782 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -19,8 +19,6 @@
 
 #include 
 #include 
-#include 
-#include 
 #include 
 #include 
 #include 
@@ -3643,7 +3641,6 @@ void SwXTextDocument::initializeForTiledRendering(const 
css::uno::SequenceGetRedlineAuthor(SW_MOD()->GetRedlineAuthor());
 OUString sAuthor;
 
@@ -3665,8 +3662,6 @@ void 

[Bug 160769] LibreOffice 24.2.1 Document recovery only restores 1 document after crash

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160769

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #1 from Mike Kaganski  ---
(In reply to BikeHelmet from comment #0)
> Expected Results:
> Both versions should recover all previously opened documents.

No, they only should recover *changed* documents (which have something to
recover). Previously, LibreOffice confused people by suggesting them to
"recover" documents that had no changes (bug 57414). That was fixed in version
24.2 (release notes at [1]).

[1] https://wiki.documentfoundation.org/ReleaseNotes/24.2#Core_/_General

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

[Bug 160684] The Landscape style is nonsensical while we have neither hierarchical nor composable page styles

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160684

--- Comment #11 from Eyal Rozenberg  ---
(In reply to Cor Nouws from comment #10)


> (Not sure what I should understand that 'incompatible page styles' means,

Incompatible in any of the properties other than the orientation: Page style,
color, direction, numbering scheme etc.

> The only use case I've been asked for, and helped people with in trainings,
> is in reports where (here and there) one landscape page is required.

And in those reports, the landscape page does not have same paper dimensions as
the portrait pages? The same margins, or rather margins arranged so as to
correspond to the rest of the pages? The same basic text direction (LTR/RTL)?
The same page borders or lack thereof? Background color or lack thereof? ... I
assume that they do, otherwise such pages would stick out physically or
stylistically.

> Oh.. and you didn't notice that it is comment 2 that you missed?

(In reply to Cor Nouws from comment #2)
> > I claim such having such a page style is nonsensical.
> Big words.

There are two kinds of Page Styles in LibreOffice: Custom, arbitrary ones which
one may just apply to any page, and ones which are used for setting the styles
of certain structurally-defined pages. With Landscape being defined by default,
and given its name, the sense one makes of it is the equivalent of the Default
PS, but for pages in landscape rather than portrait orientation.

Except - that it isn't that thing. It is merely a style, with no particular
relation to the Default PS; which doesn't automatically apply to anything; but
merely has the landscape property enabled. That's what's nonsensical. 

Suppose I defined a style and named it "Roman-Numbered". It would be a style
with the page numbering being Roman rather than Western-Arabic by default. It's
not a ridiculous thing to define; and we sometimes have documents with
different numbering schemes in different sections. But it would be nonsensical
to have that as a part of the default list of styles - both because it is not
significant enough; and because it is does not inherit the Default PS, i.e. if
you change the Default PS it would diverge from it in other aspects than the
aspect it's supposed. to

> This page style allows users to insert at a place to their like one page (or
> more pages) landscape oriented (with whatever other properties desired).

Users can also do this by DF'ing their page sequence to be in Landscape
orientation. And if they use a custom style, involving DF, for multiple page
sequences, or just want to keep things tidy - they can define that custom
style. But that does not justify having a Default-PS-dissociated
"featured-lifting" style in the basic set of styles offered to all users. 

> I trained many people that were very happy to learn how easy and flexible
> this is.

How is it more flexible than DF'ing the orientation or defining a custom style?

Also, were they happy to learn that if they want to change, say, the paper
dimension or any other number of properties, they must change this style as
well? I doubt it...

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

[Bug 160768] Changing value in a text box control with a link cell set up, Crash

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160768

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEW
   Severity|normal  |critical
 Ever confirmed|0   |1
   Keywords||bibisectRequest, regression
Summary|Changing value in a control |Changing value in a text
   |with a link cell set up,|box control with a link
   |Crash   |cell set up, Crash

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
Reproduced on Linux too, with attachment 193793: freeze when editing Text Box
Control's contents.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 05a1217921b7be283c6750a35b90e4feda6e993e
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

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

core.git: Branch 'distro/collabora/co-24.04' - sc/source

2024-04-22 Thread Noel Grandin (via logerrit)
 sc/source/filter/oox/extlstcontext.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit b684c805a70abd48ba1fda861b74fe2732dc988d
Author: Noel Grandin 
AuthorDate: Wed Apr 17 14:06:57 2024 +0200
Commit: Noel Grandin 
CommitDate: Mon Apr 22 09:28:31 2024 +0200

tdf#160706 speed up loading conditional formatting rule in XLS

we only need to finalizeImport on the last ExtDxf we loaded, otherwise
we end up with an O(n^2) performance problem

Change-Id: I566ef43189a1bb7ac7c55e1bccf9445c9cea19b9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166179
Tested-by: Noel Grandin 
Reviewed-by: Noel Grandin 
(cherry picked from commit 41895d8fb79001f29bdc0d2aac523eac22fd14c5)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166100
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 
Reviewed-by: Caolán McNamara 

diff --git a/sc/source/filter/oox/extlstcontext.cxx 
b/sc/source/filter/oox/extlstcontext.cxx
index 58e4c7931729..d6af04240572 100644
--- a/sc/source/filter/oox/extlstcontext.cxx
+++ b/sc/source/filter/oox/extlstcontext.cxx
@@ -292,7 +292,8 @@ void ExtConditionalFormattingContext::onEndElement()
 maModel.eOperator = ScConditionMode::Direct;
 }
 
-getStyles().getExtDxfs().forEachMem( ::finalizeImport );
+if (Dxf* pDxf = getStyles().getExtDxfs().get(rStyleIdx).get())
+pDxf->finalizeImport();
 maModel.aStyle = getStyles().createExtDxfStyle(rStyleIdx);
 rStyleIdx++;
 nFormulaCount = 0;


[Bug 157801] Direct formatting is applied opening Character properties dialog (Highlighting tab) and pressing OK

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157801

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 136339] Standard (aka "Reset to Parent") button in paragraph styles doesn't function for the highlighting tab (does not switch between "None" and "Color")

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136339

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||rayk...@gmail.com
Summary|Standard (aka "Reset to |Standard (aka "Reset to
   |Parent") button in  |Parent") button in
   |paragraph styles doesn't|paragraph styles doesn't
   |function for the|function for the
   |highlighting tab|highlighting tab (does not
   ||switch between "None" and
   ||"Color")
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||7801

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
(In reply to Glen Campbell from comment #5)
> perhaps someone did
> some unrelated work that accomplished the fix here.
> could you please retest to confirm
Indeed, if both parent and child use a highlight colour, "Reset to Parent" does
work. I also see it fixed in 24.2.2.2, whereas it does not work in 7.6.6.3.
This can be tested in the sample document with e.g. "First Line Indent",
changing its highlight colour, then resetting to its parent's (Body Text).

However, if I follow the steps in comment 0, it is not completely fixed: the
parent (Default Paragraph Style) uses "None" in the Highlighting tab, whereas
the child (Body Text) uses a colour. Clicking "Reset to Parent" applies a white
highlight colour, which is not correct. It should change the Highlighting from
"Color" to "None".

The relevant commit is:

commit  167fb166e4097c4a855c08a70cdf70c19d4d87ac
author  Jim Raykowski Tue Oct 17 17:21:33 2023 -0800
committer   Jim Raykowski Fri Nov 03 03:18:38 2023 +0100
tdf#157801 Fix direct formatting is applied after pressing OK in the
Character properties dialog when the Highlighting tab Color page is
open and the color has not been changed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158100

... which corresponds to build [642a7091b9e1e4eceaba9c350bd64f653b647845] in
linux-64-24.2 bibisect repo.

Jim, thanks for the side-effect fix!

Let's keep this report open as "Reset to Parent" should also change from
"Color" to "None" in this case (instead of applying a white highlight).

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

[Bug 112874] [META] Bugs related with odd and even pages, header and footer

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112874
Bug 112874 depends on bug 160686, which changed state.

Bug 160686 Summary: "Left Page" and "Right Page" are nonsensical and should be 
removed
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---

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

[Bug 108576] [META] Writer page style bugs and enhancements

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108576
Bug 108576 depends on bug 160686, which changed state.

Bug 160686 Summary: "Left Page" and "Right Page" are nonsensical and should be 
removed
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---

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

[Bug 160686] "Left Page" and "Right Page" are nonsensical and should be removed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

Eyal Rozenberg  changed:

   What|Removed |Added

 Resolution|INVALID |---
 Status|RESOLVED|UNCONFIRMED

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

[Bug 43808] [META] Right-To-Left and Complex Text Layout language issues (RTL/CTL)

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808
Bug 43808 depends on bug 160686, which changed state.

Bug 160686 Summary: "Left Page" and "Right Page" are nonsensical and should be 
removed
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---

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

[Bug 108576] [META] Writer page style bugs and enhancements

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108576
Bug 108576 depends on bug 160684, which changed state.

Bug 160684 Summary: The Landscape style is nonsensical while we have neither 
hierarchical nor composable page styles
https://bugs.documentfoundation.org/show_bug.cgi?id=160684

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---

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

[Bug 160684] The Landscape style is nonsensical while we have neither hierarchical nor composable page styles

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160684

Eyal Rozenberg  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |---

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

[Bug 160598] Remove footnotes and endnotes using the navigator

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160598

Heiko Tietze  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |rayk...@gmail.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #5 from Heiko Tietze  ---
(In reply to Jim Raykowski from comment #4)
> Created attachment 193795 [details]
> Demo of enhancement to remove footnotes/endnotes using the Navigator
Awesome!

What do you think about making the primary function/s (here Delete, Delete All)
more prominent with tool buttons in the tree? A bit like what was suggested in
https://design.blog.documentfoundation.org/2016/07/31/how-the-navigator-may-support-object-handling-in-libreoffice-draw/

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

[Bug 160769] LibreOffice 24.2.1 Document recovery only restores 1 document after crash

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160769

bikehel...@gmail.com changed:

   What|Removed |Added

Summary|LibreOffice 24.2.1  |LibreOffice 24.2.1 Document
   ||recovery only restores 1
   ||document after crash

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

[Bug 160769] New: LibreOffice 24.2.1

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160769

Bug ID: 160769
   Summary: LibreOffice 24.2.1
   Product: LibreOffice
   Version: 24.2.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bikehel...@gmail.com

Description:
LibreOffice 24.2.1+ only recovers a single document on my computer. Possible
regression over the 7.6.x branch. I tend to have a lot of documents open -
usually dozens. I have 128GB of RAM, so should not be an issue. When
LibreOffice 7.6.x and earlier crash, they offer to reopen the documents at next
start, and properly recover all of them. LibreOffice 24.2.1+ only offers to
recover a single document, or sometimes two, with one being completely blank.


Steps to Reproduce:
1. Open a great many large documents.
2. Wait for LibreOffice 24.2.x to crash.
3. Be unable to recover said documents. (Except one.)
4. Uninstall and reinstall 7.6.x
5. Open a great many large documents.
6. Wait for LibreOffice 7.6.x to crash.
7. Recover all of the previously opened documents.

Actual Results:
7.6.x recovers all opened documents.
24.2.x recovers a single document.

Expected Results:
Both versions should recover all previously opened documents.


Reproducible: Always


User Profile Reset: No

Additional Info:
Had a working crash recovery feature.

I have rolled back to 7.6.x:

Version: 7.6.6.3 (X86_64) / LibreOffice Community
Build ID: d97b2716a9a4a2ce1391dee1765565ea469b0ae7
CPU threads: 16; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-CA (en_CA); UI: en-GB
Calc: CL threaded

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

[Bug 160768] Changing value in a control with a link cell set up, Crash

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160768

nobu  changed:

   What|Removed |Added

Summary|Crash when changes are made |Changing value in a control
   |in a control with a link|with a link cell set up,
   |cell set up |Crash

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

[Bug 148647] LO pastes previously copied content instead of what was last copied from other app (Windows 10; see comment 11)

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148647

--- Comment #25 from bikehel...@gmail.com ---
(In reply to Mike Kaganski from comment #24)
> In
> https://ask.libreoffice.org/t/is-there-a-way-to-get-libreoffice-to-paste-
> text-in-windows/104986, TeamViewer was reported as affecting/causing this
> problem. Could you please check if this is related to this case, or not?
> Thanks.

Well, I encountered that just today. I was remotely working on a computer and
needed to copy some numbers across. They won't paste directly into LibreOffice.
I need to dump them into Metapad, Notepad++, a web browser text box, Wordpad,
Word, an email program like Thunderbird, etc, then re-copy from there to paste
into LibreOffice. Basically, any program other than LibreOffice that can work
with the data type.

At this point I have just gotten used to incorporating more copy+paste steps.

I still occasionally need to tell LibreOffice to Reload the open document, to
get the ability to Copy+Paste anything at all.

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

[Bug 160742] Saving a CSV with tab delimiter, saves with coma delimiter

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160742

--- Comment #2 from Gabriel Masei  ---
We are aware of this issue and working on it. The previous feature of allowing
saving/loading the entire configuration of Import dialog will be preserved.

@Bert Could you provide the csv source file that generated current issue ? Or
something similar if you cannot share the original one? It could help us
improve the detection algorithm.

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

core.git: Branch 'libreoffice-24-2' - sc/source

2024-04-22 Thread Justin Luth (via logerrit)
 sc/source/filter/excel/excrecds.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit c3bbc3b5c06b743a206a33111c061d4d7d011f21
Author: Justin Luth 
AuthorDate: Thu Apr 18 14:46:30 2024 -0400
Commit: Miklos Vajna 
CommitDate: Mon Apr 22 08:38:57 2024 +0200

xlsx export: fix corrupt file for Excel: protectedRange must have sqref

Excel refuses to open a file if there is no sqref specified

  


In this case, import failed to import sqref="10:131".
A follow-up commit avoids exporting these shorthand ranges.

I don't see much point in trying to create a unit test for this.
(I assume protectedRange is simply round-tripped
because I doubt LO has working support for protectedRanges.)

commit 9cee6a45632623d3d7e5a574128940f96d8c926b
Author: Eike Rathke on Thu Mar 20 10:16:50 2014 +0100
added ScEnhancedProtection to ScTableProtection

Change-Id: I97ef1ee801898bdcace067d62890c4ce0e7cf1d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166265
Reviewed-by: Justin Luth 
Reviewed-by: Miklos Vajna 
Tested-by: Justin Luth 
(cherry picked from commit 78bd5e2523d077a67468b752d4788a2c3b43fb5f)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166220
Tested-by: Jenkins

diff --git a/sc/source/filter/excel/excrecds.cxx 
b/sc/source/filter/excel/excrecds.cxx
index 86afa5a6c163..f18e9f829bbe 100644
--- a/sc/source/filter/excel/excrecds.cxx
+++ b/sc/source/filter/excel/excrecds.cxx
@@ -478,6 +478,9 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream& rStrm 
)
 rWorksheet->startElement(XML_protectedRanges);
 for (const auto& rProt : rProts)
 {
+if (!rProt.maRangeList.is())
+continue; // Excel refuses to open if sqref is missing from a 
protectedRange
+
 SAL_WARN_IF( rProt.maSecurityDescriptorXML.isEmpty() && 
!rProt.maSecurityDescriptor.empty(),
 "sc.filter", "XclExpSheetProtection::SaveXml: losing BIFF 
security descriptor");
 rWorksheet->singleElement( XML_protectedRange,
@@ -492,7 +495,7 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream& rStrm 
)
 XML_hashValue, 
sax_fastparser::UseIf(rProt.maPasswordHash.maHashValue, 
!rProt.maPasswordHash.maHashValue.isEmpty()),
 XML_saltValue, 
sax_fastparser::UseIf(rProt.maPasswordHash.maSaltValue, 
!rProt.maPasswordHash.maSaltValue.isEmpty()),
 XML_spinCount, 
sax_fastparser::UseIf(OString::number(rProt.maPasswordHash.mnSpinCount), 
rProt.maPasswordHash.mnSpinCount != 0),
-XML_sqref, rProt.maRangeList.is() ? XclXmlUtils::ToOString( 
rStrm.GetRoot().GetDoc(), *rProt.maRangeList).getStr() : nullptr);
+XML_sqref, XclXmlUtils::ToOString(rStrm.GetRoot().GetDoc(), 
*rProt.maRangeList).getStr());
 }
 rWorksheet->endElement( XML_protectedRanges);
 }


core.git: Branch 'distro/collabora/co-23.05' - sc/source

2024-04-22 Thread Justin Luth (via logerrit)
 sc/source/filter/excel/excrecds.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 6c82e96e849c4a312feaa6cba21093c48a0d9d46
Author: Justin Luth 
AuthorDate: Thu Apr 18 14:46:30 2024 -0400
Commit: Miklos Vajna 
CommitDate: Mon Apr 22 08:39:10 2024 +0200

xlsx export: fix corrupt file for Excel: protectedRange must have sqref

Excel refuses to open a file if there is no sqref specified

  


In this case, import failed to import sqref="10:131".

I don't see much point in trying to create a unit test for this.
(I assume protectedRange is simply round-tripped
because I doubt LO has working support for protectedRanges.)

commit 9cee6a45632623d3d7e5a574128940f96d8c926b
Author: Eike Rathke on Thu Mar 20 10:16:50 2014 +0100
added ScEnhancedProtection to ScTableProtection

Change-Id: I97ef1ee801898bdcace067d62890c4ce0e7cf1d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166265
Reviewed-by: Justin Luth 
Reviewed-by: Miklos Vajna 
Tested-by: Justin Luth 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166344
Tested-by: Jenkins CollaboraOffice 

diff --git a/sc/source/filter/excel/excrecds.cxx 
b/sc/source/filter/excel/excrecds.cxx
index 3db3d653073c..0dfba784f97c 100644
--- a/sc/source/filter/excel/excrecds.cxx
+++ b/sc/source/filter/excel/excrecds.cxx
@@ -478,6 +478,9 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream& rStrm 
)
 rWorksheet->startElement(XML_protectedRanges);
 for (const auto& rProt : rProts)
 {
+if (!rProt.maRangeList.is())
+continue; // Excel refuses to open if sqref is missing from a 
protectedRange
+
 SAL_WARN_IF( rProt.maSecurityDescriptorXML.isEmpty() && 
!rProt.maSecurityDescriptor.empty(),
 "sc.filter", "XclExpSheetProtection::SaveXml: losing BIFF 
security descriptor");
 rWorksheet->singleElement( XML_protectedRange,
@@ -492,7 +495,7 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream& rStrm 
)
 XML_hashValue, rProt.maPasswordHash.maHashValue.isEmpty() ? 
nullptr : rProt.maPasswordHash.maHashValue.toUtf8().getStr(),
 XML_saltValue, rProt.maPasswordHash.maSaltValue.isEmpty() ? 
nullptr : rProt.maPasswordHash.maSaltValue.toUtf8().getStr(),
 XML_spinCount, rProt.maPasswordHash.mnSpinCount ? 
OString::number( rProt.maPasswordHash.mnSpinCount).getStr() : nullptr,
-XML_sqref, rProt.maRangeList.is() ? XclXmlUtils::ToOString( 
rStrm.GetRoot().GetDoc(), *rProt.maRangeList).getStr() : nullptr);
+XML_sqref, XclXmlUtils::ToOString(rStrm.GetRoot().GetDoc(), 
*rProt.maRangeList).getStr());
 }
 rWorksheet->endElement( XML_protectedRanges);
 }


core.git: Changes to 'refs/tags/cp-24.04.1-3'

2024-04-22 Thread Andras Timar (via logerrit)
Tag 'cp-24.04.1-3' created by Andras Timar  at 
2024-04-22 06:34 +

cp-24.04.1-3

Changes since cp-24.04.1-2-80:
---
 0 files changed
---


translations.git: Changes to 'refs/tags/cp-24.04.1-3'

2024-04-22 Thread Christian Lohmaier (via logerrit)
Tag 'cp-24.04.1-3' created by Andras Timar  at 
2024-04-22 06:34 +

cp-24.04.1-3

Changes since cp-24.04.1-2-1:
---
 0 files changed
---


help.git: Changes to 'refs/tags/cp-24.04.1-3'

2024-04-22 Thread Juan José González (via logerrit)
Tag 'cp-24.04.1-3' created by Andras Timar  at 
2024-04-22 06:34 +

cp-24.04.1-3

Changes since cp-24.04.1-2-1:
---
 0 files changed
---


dictionaries.git: Changes to 'refs/tags/cp-24.04.1-3'

2024-04-22 Thread László Németh (via logerrit)
Tag 'cp-24.04.1-3' created by Andras Timar  at 
2024-04-22 06:34 +

cp-24.04.1-3

Changes since cp-24.04.1-2-3:
---
 0 files changed
---


core.git: Branch 'distro/collabora/co-24.04' - configure.ac

2024-04-22 Thread Andras Timar (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3cb9a5ebaa7527efb1dd154be0db34db62c0c8e0
Author: Andras Timar 
AuthorDate: Mon Apr 22 08:29:39 2024 +0200
Commit: Andras Timar 
CommitDate: Mon Apr 22 08:29:39 2024 +0200

Bump version to 24.04.1.3

Change-Id: I4daf190e1d5816db1f49f5741d2a497a12a49e07

diff --git a/configure.ac b/configure.ac
index 507f473c34a3..46ee6aa34278 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([Collabora Office],[24.04.1.2],[],[],[https://collaboraoffice.com/])
+AC_INIT([Collabora Office],[24.04.1.3],[],[],[https://collaboraoffice.com/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


core.git: Branch 'distro/collabora/co-24.04' - 2 commits - cui/source svgio/inc svgio/qa svgio/source

2024-04-22 Thread Leonid Ryzhov (via logerrit)
 cui/source/options/optlanguagetool.cxx |   35 -
 svgio/inc/SvgNumber.hxx|4 +--
 svgio/inc/svgnode.hxx  |4 ---
 svgio/qa/cppunit/SvgImportTest.cxx |   14 -
 svgio/qa/cppunit/SvgNumberTest.cxx |2 -
 svgio/source/svgreader/SvgNumber.cxx   |2 -
 svgio/source/svgreader/svgnode.cxx |   21 +++
 7 files changed, 44 insertions(+), 38 deletions(-)

New commits:
commit dd7a4b519e5dcc6943f0c49c1e04b88a2c282969
Author: Leonid Ryzhov 
AuthorDate: Wed Mar 20 23:21:18 2024 +0300
Commit: Andras Timar 
CommitDate: Mon Apr 22 08:28:28 2024 +0200

tdf#159395-LanguageTool use correct default URL when username/APIkey set

Change-Id: I31e1c2f1dfd96d87f60b6be1e5abce4837827a76
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165079
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 155a6af93a8ac90cab15968f5dd499ab77ad9f72)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166097
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/cui/source/options/optlanguagetool.cxx 
b/cui/source/options/optlanguagetool.cxx
index 8c56a40e728f..3979b42c0521 100644
--- a/cui/source/options/optlanguagetool.cxx
+++ b/cui/source/options/optlanguagetool.cxx
@@ -25,6 +25,7 @@
 
 using LanguageToolCfg = 
officecfg::Office::Linguistic::GrammarChecking::LanguageTool;
 constexpr OUString LANGUAGETOOL_DEFAULT_URL = 
u"https://api.languagetool.org/v2"_ustr;
+constexpr OUString LANGUAGETOOLPLUS_DEFAULT_URL = 
u"https://api.languagetoolplus.com/v2"_ustr;
 
 OptLanguageToolTabPage::OptLanguageToolTabPage(weld::Container* pPage,
weld::DialogController* 
pController,
@@ -81,20 +82,21 @@ IMPL_LINK_NOARG(OptLanguageToolTabPage, CheckHdl, 
weld::Toggleable&, void)
 void OptLanguageToolTabPage::Reset(const SfxItemSet*)
 {
 // tdf#150494 If no URL has been set, use the default URL
-OUString aBaseURL = LanguageToolCfg::BaseURL::get().value_or("");
-if (aBaseURL.isEmpty())
-m_xBaseURLED->set_text(LANGUAGETOOL_DEFAULT_URL);
-else
-m_xBaseURLED->set_text(aBaseURL);
+OUString aUsername = LanguageToolCfg::Username::get().value_or("");
+OUString aApiKey = LanguageToolCfg::ApiKey::get().value_or("");
+OUString aBaseURL = LanguageToolCfg::BaseURL::get().value_or(
+(aUsername.isEmpty() && aApiKey.isEmpty()) ? LANGUAGETOOL_DEFAULT_URL
+   : 
LANGUAGETOOLPLUS_DEFAULT_URL);
 
+m_xBaseURLED->set_text(aBaseURL);
 m_xBaseURLED->set_sensitive(!LanguageToolCfg::BaseURL::isReadOnly());
 m_xBaseURLImg->set_visible(LanguageToolCfg::BaseURL::isReadOnly());
 
-m_xUsernameED->set_text(LanguageToolCfg::Username::get().value_or(""));
+m_xUsernameED->set_text(aUsername);
 m_xUsernameED->set_sensitive(!LanguageToolCfg::Username::isReadOnly());
 m_xUsernameImg->set_visible(LanguageToolCfg::Username::isReadOnly());
 
-m_xApiKeyED->set_text(LanguageToolCfg::ApiKey::get().value_or(""));
+m_xApiKeyED->set_text(aApiKey);
 m_xApiKeyED->set_sensitive(!LanguageToolCfg::ApiKey::isReadOnly());
 m_xApiKeyImg->set_visible(LanguageToolCfg::ApiKey::isReadOnly());
 
@@ -139,14 +141,21 @@ bool OptLanguageToolTabPage::FillItemSet(SfxItemSet*)
 auto batch(comphelper::ConfigurationChanges::create());
 
 // tdf#150494 If no URL has been set, then save the default URL
+// tdf#159395 If Username and ApiKey are set, then save the default URL 
for paid service
 OUString aBaseURL = m_xBaseURLED->get_text();
-if (aBaseURL.isEmpty())
-LanguageToolCfg::BaseURL::set(LANGUAGETOOL_DEFAULT_URL, batch);
-else
-LanguageToolCfg::BaseURL::set(aBaseURL, batch);
+OUString aUsername = m_xUsernameED->get_text();
+OUString aApiKey = m_xApiKeyED->get_text();
 
-LanguageToolCfg::Username::set(m_xUsernameED->get_text(), batch);
-LanguageToolCfg::ApiKey::set(m_xApiKeyED->get_text(), batch);
+if (aBaseURL.isEmpty()
+|| (aUsername.isEmpty() && aApiKey.isEmpty() && aBaseURL == 
LANGUAGETOOLPLUS_DEFAULT_URL))
+aBaseURL = LANGUAGETOOL_DEFAULT_URL;
+
+if (!aUsername.isEmpty() && !aApiKey.isEmpty() && aBaseURL == 
LANGUAGETOOL_DEFAULT_URL)
+aBaseURL = LANGUAGETOOLPLUS_DEFAULT_URL;
+
+LanguageToolCfg::BaseURL::set(aBaseURL, batch);
+LanguageToolCfg::Username::set(aUsername, batch);
+LanguageToolCfg::ApiKey::set(aApiKey, batch);
 LanguageToolCfg::RestProtocol::set(m_xRestProtocol->get_text(), batch);
 
LanguageToolCfg::SSLCertVerify::set(!m_xSSLDisableVerificationBox->get_active(),
 batch);
 batch->commit();
commit 6cb6c3f5ffaa2f769e47a30afbdcf844ab291885
Author: Mike Kaganski 
AuthorDate: Tue Apr 9 16:04:40 2024 +0500
Commit: Andras Timar 
CommitDate: Mon Apr 22 08:28:28 2024 +0200

tdf#160717: fix ex handling

Same as in commit 

[Bug 160427] LibreLogo PICTURE SVG opens new window "untitled 1" and hangs LO.

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160427

--- Comment #8 from Roland Chee  ---
(In reply to Robert Großkopf from comment #7)
> I have tried this in following way:
> Activated Libre Logo toolbar.
> Activated turtle and 2 page layout by the wand.
> Wrote the following code for my German Linux system:
> 
> BILD "/home/robby/circle.svg" [
> KREIS 50
> ]
> 
> Executed the code.
> circle.svg will be created in my home directory.
> Turtle sits inside the circle on the first page of LibreLogo layout.
> 
> Works also if I try to write direct to "circle.svg" without any path.
> 
> My system: OpenSUSE 15.6 64bit rpm Linux with LO 24.2.2.2

Thank you for the attempt to reproduce this bug.
If no problem on Linux, maybe the problem is on MacOS?
I am on MacOS 11.7.10 (Big Sur). Same bug with LO 24.2.2 and LO 7.5.9.2.
Of interest, LO has produced the SVG image before LO hangs.
Maybe a script could not finish or close?

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

[Bug 108576] [META] Writer page style bugs and enhancements

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108576
Bug 108576 depends on bug 160686, which changed state.

Bug 160686 Summary: "Left Page" and "Right Page" are nonsensical and should be 
removed
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Bug 112874] [META] Bugs related with odd and even pages, header and footer

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112874
Bug 112874 depends on bug 160686, which changed state.

Bug 160686 Summary: "Left Page" and "Right Page" are nonsensical and should be 
removed
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Bug 43808] [META] Right-To-Left and Complex Text Layout language issues (RTL/CTL)

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808
Bug 43808 depends on bug 160686, which changed state.

Bug 160686 Summary: "Left Page" and "Right Page" are nonsensical and should be 
removed
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Bug 160686] "Left Page" and "Right Page" are nonsensical and should be removed

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160686

Cor Nouws  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #27 from Cor Nouws  ---
(In reply to Eyal Rozenberg from comment #26)
> (In reply to Cor Nouws from comment #25)
> > If you don't even notice that people describe use cases, how can we then
> > help?
> 
> My point is, that when one actually spells out a supposed use case for these
speaking of a 'supposed use case' looks like a nasty habit of making other
people's experiences ridiculous or fake.
I strongly object that behavior.

> styles - either the use case is reasonable/common, but then - the pair of
> styles don't fit the use case on a closer inspection; or the use case is
> convoluted and contrived, in which case it does not merit to have a pair of
> styles pre-defined for it.
I can't help that for you the altering of left and right pages is not a clear
use case. But it is. And the option (offered in the UI) to insert blank pages
on print/expert, is just an extra support to get the desired result.
Looking at a simple constructed 3 page document to 'prove' that it is weird, is
not a serious use case.

> With David's use case, it has been the second option: As we examined the
> behavior of the two page styles, and David verified that this behavior is
> his use case (well, I'll take him at his word anyway) - it became clear it
> is a niche and rather weird use case, with inconsistently-styled blank-page
> inserts, sometimes without the user having requested them.
David showed that it works as designed. You make that ridiculous by creating a
green border on one special page and complaining that inserted blank pages are
missing header/footer information - which to me is just expected.

> The contrivance is more obvious when one considers RTL documents, or
> documents which are partly RTL and partly LTR, where some simplifying
> assumptions cannot be made. Realizing this fact made Regina and Heiko
> suggest "salvaging" this pair of styles as "odd" and "even" - but here too:
> If one spells out that use case fully, one reaches the same dichotomy.
So the only issue that there seems to be, but it is one that I cannot oversee -
is that it (maybe) not serves the RTL use case.
Please do make a clear report with examples that also people not used to RTL
can understand.
Thanks,
Cor

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

core.git: 2 commits - sc/inc sc/qa sc/source

2024-04-22 Thread Tomaž Vajngerl (via logerrit)
 sc/inc/pivot/PivotTableFormatOutput.hxx
|1 
 sc/qa/unit/PivotTableFormatsImportExport.cxx   
|  168 ++
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_10_FormatDefinitionNotMatchingPivotTable.xlsx
   |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_11_WholeDataColumnSelected.xlsx
 |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_12_WholeLabelColumnSelected.xlsx
|binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_13_SelectionInLabelAndData.xlsx
 |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_14_TwoRowsDataFieldInColumn_LabelColor.xlsx
 |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_15_TwoDataFieldColumns_WholeDataColumnSelected.xlsx
 |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_2_DataFieldInRow_ColumnLabelColor.xlsx
  |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_8_DataFieldInRow_DataColor.xlsx
 |binary
 
sc/qa/unit/data/xlsx/pivot-table/PivotTableCellFormatsTest_9_MultipleSelections.xlsx
   |binary
 sc/source/core/data/PivotTableFormatOutput.cxx 
|  161 +
 sc/source/filter/oox/PivotTableFormat.cxx  
|2 
 13 files changed, 261 insertions(+), 71 deletions(-)

New commits:
commit c0f44787c0bcbd28ac61dab66483f025578f095c
Author: Tomaž Vajngerl 
AuthorDate: Wed Apr 17 16:08:45 2024 +0900
Commit: Tomaž Vajngerl 
CommitDate: Mon Apr 22 08:22:04 2024 +0200

pivot: handle whole row/column selections, added many tests

This adds support for selecting whole rows/columns, where the field
reference is set but no indices are present. This means that all
the data cells apply (selecting the whole thing), which are not
subtotals. For this the support for multiple matching and maybe
matching results was added (previously max 1 would apply), which
would apply the pattern to multiple cells in the pivot table.

In addition handle labels of columns with multiple data fields
correctly.

This also adds many more test scenarios, which all cover the
changes mentioned above.

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

diff --git a/sc/inc/pivot/PivotTableFormatOutput.hxx 
b/sc/inc/pivot/PivotTableFormatOutput.hxx
index 0aeb492cc34a..3bbd19b28f36 100644
--- a/sc/inc/pivot/PivotTableFormatOutput.hxx
+++ b/sc/inc/pivot/PivotTableFormatOutput.hxx
@@ -41,6 +41,7 @@ struct FormatOutputField
 tools::Long nDimension = -2;
 OUString aName;
 sal_Int32 nIndex = -1;
+bool bMatchesAll = false;
 bool bSet = false;
 };
 
diff --git a/sc/qa/unit/PivotTableFormatsImportExport.cxx 
b/sc/qa/unit/PivotTableFormatsImportExport.cxx
index f1cf83d225cd..0ea867a1 100644
--- a/sc/qa/unit/PivotTableFormatsImportExport.cxx
+++ b/sc/qa/unit/PivotTableFormatsImportExport.cxx
@@ -335,6 +335,174 @@ CPPUNIT_TEST_FIXTURE(ScPivotTableFormatsImportExport,
 CPPUNIT_ASSERT_EQUAL(u"60"_ustr, rDoc.GetString(aAddress));
 }
 
+CPPUNIT_TEST_FIXTURE(ScPivotTableFormatsImportExport,
+ PivotTableCellFormatsTest_11_WholeDataColumnSelected)
+{
+auto assertDocument = [](ScDocument& rDoc) {
+CPPUNIT_ASSERT_EQUAL(COL_YELLOW, getBackgroundColor(rDoc, u"G2"_ustr));
+CPPUNIT_ASSERT_EQUAL(COL_YELLOW, getBackgroundColor(rDoc, u"G3"_ustr));
+CPPUNIT_ASSERT_EQUAL(COL_YELLOW, getBackgroundColor(rDoc, u"G4"_ustr));
+CPPUNIT_ASSERT_EQUAL(COL_YELLOW, getBackgroundColor(rDoc, u"G5"_ustr));
+CPPUNIT_ASSERT_EQUAL(COL_YELLOW, getBackgroundColor(rDoc, u"G6"_ustr));
+CPPUNIT_ASSERT_EQUAL(COL_YELLOW, getBackgroundColor(rDoc, u"G7"_ustr));
+
+// Make sure the other cells have the font color or background set to 
default
+auto aEmptyAddresses = std::to_array({
+u"F1"_ustr,
+u"G1"_ustr,
+u"F2"_ustr,
+u"F3"_ustr,
+u"F4"_ustr,
+u"F5"_ustr,
+u"F6"_ustr,
+u"F7"_ustr,
+u"F8"_ustr,
+u"G8"_ustr,
+});
+CPPUNIT_ASSERT_EQUAL(OUString(), checkNonEmptyAddresses(rDoc, 
aEmptyAddresses));
+};
+
+
createScDoc("xlsx/pivot-table/PivotTableCellFormatsTest_11_WholeDataColumnSelected.xlsx");
+assertDocument(*getScDoc());
+saveAndReload("Calc Office Open XML");
+assertDocument(*getScDoc());
+}
+
+CPPUNIT_TEST_FIXTURE(ScPivotTableFormatsImportExport,
+ 

[Bug 160253] Heading numbering wrong on file reload

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160253

--- Comment #14 from Mike Kaganski  ---
Created attachment 193796
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193796=edit
A better minimal reproducer without outline numbering

This attachment has a normal numbering, with a "numbered" paragraph in endnote;
it shows the same problem.

So, when the current list needs to restart:

* If there is no intermediate endnote with a numbered paragraph, the continuing
list has simply text:continue-numbering="true";
* With the intermediate endnote with a numbered paragraph, it has
text:continue-list="list933972954".

In both cases, the original list has no xml:id attribute (because the endnote
numbered paragraph is in another sub-document, and its node is numbered
separately from the main body paragraphs - checked in ShouldSkipListId); but it
is important (using text:continue-numbering="true" instead of
text:continue-list="list1" in the attached document breaks the numbering).

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

core.git: android/source

2024-04-22 Thread Weblate (via logerrit)
 android/source/res/values-ia/strings.xml |   78 +++
 1 file changed, 78 insertions(+)

New commits:
commit 7de034b1e4467dd39bd08c7bab53b5a00c5269fd
Author: Weblate 
AuthorDate: Wed Apr 17 04:37:32 2024 +0200
Commit: Michael Weghorn 
CommitDate: Mon Apr 22 08:15:38 2024 +0200

Update translation files for android-viewer

Updated by "Remove blank strings" hook in Weblate.

Change-Id: I860c8e56454c26123414f842517461507b8a0f3f

android-viewer translated using Weblate

Interlingua currently translated at 63.5% (75 of 118 strings)

Change-Id: I9159b9b5b3c37adabb078af9b394214217564538

Added translation for android-viewer using Weblate (Interlingua)

Change-Id: I1e6a22c54275747ac05825459574e522e1b0ea40
Co-authored-by: SoftInterlingua 
Co-authored-by: Weblate 
Translate-URL: 
https://translations.documentfoundation.org/projects/android-viewer/android-strings/
Translate-URL: 
https://translations.documentfoundation.org/projects/android-viewer/android-strings/ia/
Translation: android-viewer/android-strings
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166116
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/android/source/res/values-ia/strings.xml 
b/android/source/res/values-ia/strings.xml
new file mode 100644
index ..09a33ba1608f
--- /dev/null
+++ b/android/source/res/values-ia/strings.xml
@@ -0,0 +1,78 @@
+
+
+Activar le modo disveloppator 
ubi tu pote inviar commandos UNO intra le application. Usa lo sub tu proprie 
risco.
+LibreOffice Viewer es un visualisator de 
documentos basate sur LibreOffice.
+Monstrar
+Modo de disveloppator
+Cancellar
+Crear un nove file
+Celar
+Inviar commando UNO
+sin titulo
+A proposito de
+Activar formato
+Contrasigno
+Typo
+Retro
+Bmp non valide!
+Collar
+OK
+SALVEGUARDAR
+Nove folio de calculo
+Selige un file a aperir
+Non poteva exportar a PDF
+Salveguardar como…
+Color de littera
+Nove designo
+Automatic
+Refacer
+icone de file
+Files recente
+Pagina
+Inserer
+Stylo
+Seliger un imagine
+NON
+Nove documento de texto
+Imprimer
+Nove presentation
+Modo experimental
+Deler
+Disfacer
+Iste version es fornite per $VENDOR.
+Insere le contrasigno
+OK
+Partes
+Definir le lingua predefinite del 
interfacie
+General
+Texto copiate al area de 
transferentia
+Exportar a PDF
+Monstrar le claviero
+Politica de confidentialitate
+Presentation de diapositivas
+Seliger un photo
+Copiar
+Inserer
+Cerca
+Necun camera trovate
+Error
+Parametros del visualisator de 
LibreOffice
+Le nomine fornite jam es in uso.
+Salveguardar
+OK
+Parametros
+Version: %1$sbrID de compilation: a 
href=https://hub.libreoffice.org/git-core/%2$s%2$s/a;
+Monstrar le licentia
+Tote le files
+Non poteva salveguardar le file
+Visualisator de LibreOffice
+Adder un diapositiva
+Cancellar
+Lingua a monstrar
+Trovar le sequente
+Trovar le previe
+Activar le modo de 
modification experimental. Usa lo sub tu proprie risco.
+Iste file es solo lectura
+Monstrar le aviso
+Cancellar
+
\ No newline at end of file


[Bug 108576] [META] Writer page style bugs and enhancements

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108576
Bug 108576 depends on bug 160684, which changed state.

Bug 160684 Summary: The Landscape style is nonsensical while we have neither 
hierarchical nor composable page styles
https://bugs.documentfoundation.org/show_bug.cgi?id=160684

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Bug 160684] The Landscape style is nonsensical while we have neither hierarchical nor composable page styles

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160684

Cor Nouws  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

--- Comment #10 from Cor Nouws  ---
(In reply to Eyal Rozenberg from comment #9)
> The most common usage scenario is for "landscape pages" to be in the same
Well, we can have a poll to find out which is more.
The only use case I've been asked for, and helped people with in trainings, is
in reports where (here and there) one landscape page is required.

>> I miss any effort to reply to the questions and explanation in my comment 4.
>> So how can you claim these are proving the opposite?
> 
> Comment 4 is my comment, continuing a reply to Heiko.
Oh.. and you didn't notice that it is comment 2 that you missed?

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

[Bug 82664] Impress: Character tab with FONT SCALING, etc. missing in styles dialog

2024-04-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82664

--- Comment #29 from Cor Nouws  ---
(In reply to Eyal Rozenberg from comment #28)
> ... but in
> the other direction it probably would.
Serious? How then?

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

<    1   2   3   4   5   >