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

2023-10-10 Thread Noel Grandin (via logerrit)
 sc/inc/attarray.hxx  |2 +-
 sc/source/core/data/attarray.cxx |9 ++---
 2 files changed, 7 insertions(+), 4 deletions(-)

New commits:
commit 6c247c2c867281181d3d35157bca5e72a3c0bca8
Author: Noel Grandin 
AuthorDate: Tue Oct 10 12:55:20 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Oct 11 07:28:20 2023 +0200

cool#7330 calc perf: PaintTile's FillInfo

try to spend a little less time here, when searching twice, we can use
the index result of the first search as a hint

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

diff --git a/sc/inc/attarray.hxx b/sc/inc/attarray.hxx
index cbc8f7cfe2f9..521f3b7bb1d6 100644
--- a/sc/inc/attarray.hxx
+++ b/sc/inc/attarray.hxx
@@ -183,7 +183,7 @@ public:
 boolApplyFlags( SCROW nStartRow, SCROW nEndRow, ScMF nFlags );
 boolRemoveFlags( SCROW nStartRow, SCROW nEndRow, ScMF nFlags );
 
-boolSearch( SCROW nRow, SCSIZE& nIndex ) const;
+boolSearch( SCROW nRow, SCSIZE& nIndex, std::optional 
nIndexHint = {} ) const;
 
 boolHasAttrib( SCROW nRow1, SCROW nRow2, HasAttrFlags nMask ) const;
 boolHasAttrib( SCROW nRow, HasAttrFlags nMask, SCROW* nStartRow = 
nullptr, SCROW* nEndRow = nullptr ) const;
diff --git a/sc/source/core/data/attarray.cxx b/sc/source/core/data/attarray.cxx
index 2efd31c7675f..b6d062b93d66 100644
--- a/sc/source/core/data/attarray.cxx
+++ b/sc/source/core/data/attarray.cxx
@@ -190,9 +190,11 @@ bool ScAttrArray::Concat(SCSIZE nPos)
  *
  * Iterative implementation of Binary Search
  * The same implementation was used inside ScMarkArray::Search().
+ *
+ * @param oIndexHint, hint for the start of the search, useful when searching 
twice for successive values
  */
 
-bool ScAttrArray::Search( SCROW nRow, SCSIZE& nIndex ) const
+bool ScAttrArray::Search( SCROW nRow, SCSIZE& nIndex, std::optional 
oIndexHint ) const
 {
 /*auto it = std::lower_bound(mvData.begin(), mvData.end(), nRow,
 [] (const ScAttrEntry , SCROW nRow)
@@ -209,7 +211,8 @@ bool ScAttrArray::Search( SCROW nRow, SCSIZE& nIndex ) const
 
 tools::Long nHi = static_cast(mvData.size()) - 1;
 tools::Long i = 0;
-tools::Long nLo = 0;
+assert((!oIndexHint || *oIndexHint <= nHi) && "bad index hint");
+tools::Long nLo = oIndexHint ? *oIndexHint : 0;
 
 while ( nLo <= nHi )
 {
@@ -1405,7 +1408,7 @@ bool ScAttrArray::HasAttrib( SCROW nRow1, SCROW nRow2, 
HasAttrFlags nMask ) cons
 SCSIZE nEndIndex;
 Search( nRow1, nStartIndex );
 if (nRow1 != nRow2)
-Search( nRow2, nEndIndex );
+Search( nRow2, nEndIndex, /*hint*/nStartIndex );
 else
 nEndIndex = nStartIndex;
 bool bFound = false;


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

2023-10-10 Thread Michael Weghorn (via logerrit)
 winaccessibility/source/UAccCOM/AccTextBase.cxx |   59 +++-
 winaccessibility/source/UAccCOM/AccTextBase.h   |2 
 2 files changed, 28 insertions(+), 33 deletions(-)

New commits:
commit 3b6366773389c55c127f097d5d82d27d5efaa69a
Author: Michael Weghorn 
AuthorDate: Tue Oct 10 12:52:49 2023 +0100
Commit: Michael Weghorn 
CommitDate: Wed Oct 11 07:20:21 2023 +0200

wina11y: Drop CAccTextBase::GetXInterface

Just use the private `pRXText` member directly. The separate
getter doesn't really help regarding readability,
in particular since the typical usage pattern
involved first checking the member directly, then
using the getter, making it less obvious that this
was about the same object/reference e.g.

if(!pRXText.is())
{
return E_FAIL;
}

if( offset < 0 || offset > GetXInterface()->getCharacterCount() )
return E_FAIL;

Change-Id: Iaf786220b94a37e79a46985f58e0586252846f56
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157766
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/winaccessibility/source/UAccCOM/AccTextBase.cxx 
b/winaccessibility/source/UAccCOM/AccTextBase.cxx
index 131d001b27df..37eb1d6fcf70 100644
--- a/winaccessibility/source/UAccCOM/AccTextBase.cxx
+++ b/winaccessibility/source/UAccCOM/AccTextBase.cxx
@@ -108,7 +108,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_addSelection(long startOffse
 }
 else
 {
-GetXInterface()->setSelection(startOffset, endOffset);
+pRXText->setSelection(startOffset, endOffset);
 return S_OK;
 }
 
@@ -137,12 +137,12 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_attributes(long offset, long
 return E_FAIL;
 }
 
-if( offset < 0 || offset > GetXInterface()->getCharacterCount() )
+if (offset < 0 || offset > pRXText->getCharacterCount() )
 return E_FAIL;
 
 OUStringBuffer strAttrs("Version:1;");
 
-Sequence< css::beans::PropertyValue > pValues = 
GetXInterface()->getCharacterAttributes(offset, Sequence< OUString >());
+Sequence  pValues = 
pRXText->getCharacterAttributes(offset, Sequence());
 int nCount = pValues.getLength();
 
 sal_Int16 numberingLevel = 0;
@@ -220,9 +220,9 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_attributes(long offset, long
 SysFreeString(*textAttributes);
 *textAttributes = 
SysAllocString(o3tl::toW(strAttrs.makeStringAndClear().getStr()));
 
-if( offset < GetXInterface()->getCharacterCount() )
+if (offset < pRXText->getCharacterCount())
 {
-TextSegment textSeg = GetXInterface()->getTextAtIndex(offset, 
AccessibleTextType::ATTRIBUTE_RUN);
+TextSegment textSeg = pRXText->getTextAtIndex(offset, 
AccessibleTextType::ATTRIBUTE_RUN);
 *startOffset = textSeg.SegmentStart;
 *endOffset = textSeg.SegmentEnd;
 }
@@ -257,7 +257,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_caretOffset(long * offset)
 return S_OK;
 }
 
-*offset = GetXInterface()->getCaretPosition();
+*offset = pRXText->getCaretPosition();
 return S_OK;
 
 } catch(...) { return E_FAIL; }
@@ -283,7 +283,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_characterCount(long * nChara
 return S_OK;
 }
 
-*nCharacters = GetXInterface()->getCharacterCount();
+*nCharacters = pRXText->getCharacterCount();
 return S_OK;
 
 } catch(...) { return E_FAIL; }
@@ -310,11 +310,11 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_characterExtents(long offset
 if(!pRXText.is())
 return E_FAIL;
 
-if(offset < 0 || offset > GetXInterface()->getCharacterCount() )
+if (offset < 0 || offset > pRXText->getCharacterCount())
 return E_FAIL;
 
 css::awt::Rectangle rectangle;
-rectangle = GetXInterface()->getCharacterBounds(offset);
+rectangle = pRXText->getCharacterBounds(offset);
 
 //IA2Point aPoint;
 css::awt::Point aPoint;
@@ -346,10 +346,10 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_characterExtents(long offset
 *x = rectangle.X;
 *y = rectangle.Y;
 
-// GetXInterface()->getCharacterBounds() have different implement in 
different acc component
+// pRXText->getCharacterBounds() have different implement in different acc 
component
 // But we need return the width/height == 1 for every component when 
offset == text length.
-// So we ignore the return result of GetXInterface()->getCharacterBounds() 
when offset == text length.
-if( offset == GetXInterface()->getCharacterCount() )
+// So we ignore the return result of pRXText->getCharacterBounds() when 
offset == text length.
+if (offset == pRXText->getCharacterCount())
 {
 *width = 1;
 *height = 1;
@@ -395,7 +395,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_nSelections(long * nSelectio
 return S_OK;
 }
 
-

[Libreoffice-bugs] [Bug 42787] Functionality request for Writer: Add deleting of Sections using the Delete function inside of the Navigator

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42787

--- Comment #8 from Jim Raykowski  ---
Took me a while to figure out how to do this :-).
Here's a link to a patch that adds the ability to delete sections using the
Navigator:
https://gerrit.libreoffice.org/c/core/+/157802

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

[Libreoffice-bugs] [Bug 157693] "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

--- Comment #5 from Kira Tubo  ---
Also, please reproduce in safe mode, as this is the most consistent way to
reproduce the bug.

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

[Libreoffice-bugs] [Bug 157693] "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

Kira Tubo  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
  Regression By||Pranam Lashkari
Version|7.5.5.2 release |7.4.0.0 alpha0+
 CC||lpra...@collabora.com

--- Comment #4 from Kira Tubo  ---
Bibisected win64-7.4. Added Pranam Lashkari to cc. 

Regression introduced by:
https://git.libreoffice.org/core/+/fb4cf97f3d6a1efc3b3914067ebff304bb45ccf1

-

commit  fb4cf97f3d6a1efc3b3914067ebff304bb45ccf1[log]
author  Pranam Lashkari  Fri Apr 01 00:29:15 2022 +0530
committer   Pranam Lashkari  Fri Apr 01 06:57:44
2022 +0200
tree18a4e25483ba6410d65c0649d620436b1d99716f
parent  fd6f8f39fe82532dfee6b8d5a02179e087203bef [diff]

-

commit 4778ed5023416f6fc0aa41b04046576123fc702a
Author: Norbert Thiebaud 
Date:   Thu Mar 31 22:07:14 2022 -0700

source sha:fb4cf97f3d6a1efc3b3914067ebff304bb45ccf1

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

[Libreoffice-bugs] [Bug 157413] URLlink Button placed on top of a chart presents a URL tip popup when the mouse hovers anywhere over the chart

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157413

--- Comment #14 from Colin  ---
(In reply to Colin from comment #13)
> (In reply to m.a.riosv from comment #11)
> > (In reply to Buovjaga from comment #9)
> > > (In reply to m.a.riosv from comment #7)
> 
> > It shows empty tooltips for second to fourth button.
> 
> They were intentionally "nulled" to avoid unnecessary tooltip intrusions

Correction: When a button is first created the link address automatically
appears as a "help" popup if the user doesn't provide an alternative. The only
way to suppress it was to force a space character in the help attribute.

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

[Libreoffice-bugs] [Bug 108843] [META] Clipboard bugs and enhancements

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108843
Bug 108843 depends on bug 133870, which changed state.

Bug 133870 Summary: Page wrap and anchoring changes copy/paste using Windows 
clipboard (since 6.4)
https://bugs.documentfoundation.org/show_bug.cgi?id=133870

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740
Bug 87740 depends on bug 133870, which changed state.

Bug 133870 Summary: Page wrap and anchoring changes copy/paste using Windows 
clipboard (since 6.4)
https://bugs.documentfoundation.org/show_bug.cgi?id=133870

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 133870] Page wrap and anchoring changes copy/paste using Windows clipboard (since 6.4)

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133870

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 133870] Page wrap and anchoring changes copy/paste using Windows clipboard (since 6.4)

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133870

--- Comment #8 from Commit Notification 
 ---
Mike Kaganski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/3191b322b59cab22ec4c67c0d83520ff577f7ae8

tdf#133870: read OBJECTDESCRIPTOR from clipboard

It will be available in 24.2.0.

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

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

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

[Libreoffice-bugs] [Bug 133870] Page wrap and anchoring changes copy/paste using Windows clipboard (since 6.4)

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133870

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

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

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

2023-10-10 Thread Mike Kaganski (via logerrit)
 vcl/source/treelist/transfer.cxx |   41 +++
 1 file changed, 41 insertions(+)

New commits:
commit 3191b322b59cab22ec4c67c0d83520ff577f7ae8
Author: Mike Kaganski 
AuthorDate: Tue Oct 10 15:59:04 2023 +0300
Commit: Mike Kaganski 
CommitDate: Wed Oct 11 06:14:17 2023 +0200

tdf#133870: read OBJECTDESCRIPTOR from clipboard

This extends commit 8ad0c29f56e5069a3679560d404b603332dcf38a
(sw: prefer ODF over RTF when pasting from Writer, 2020-04-22).
To see that the clipboard contains a matching EMBED_SOURCE from
another instance of the program, the content of OBJECTDESCRIPTOR
needs to be read into mxObjDesc of TransferableDataHelper.

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

diff --git a/vcl/source/treelist/transfer.cxx b/vcl/source/treelist/transfer.cxx
index 812b9609b07f..4ca968e84b8d 100644
--- a/vcl/source/treelist/transfer.cxx
+++ b/vcl/source/treelist/transfer.cxx
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -109,6 +110,43 @@ SvStream& WriteTransferableObjectDescriptor( SvStream& 
rOStm, const Transferable
 return rOStm;
 }
 
+static void TryReadTransferableObjectDescriptor(SvStream& rIStm,
+TransferableObjectDescriptor& 
rObjDesc)
+{
+auto nStartPos = rIStm.Tell();
+comphelper::ScopeGuard streamPosRestore([nStartPos, ] { 
rIStm.Seek(nStartPos); });
+
+sal_uInt32 size;
+rIStm.ReadUInt32(size);
+
+SvGlobalName className;
+rIStm >> className;
+
+sal_uInt32 viewAspect;
+rIStm.ReadUInt32(viewAspect);
+
+sal_Int32 width, height;
+rIStm.ReadInt32(width).ReadInt32(height);
+
+sal_Int32 dragStartPosX, dragStartPosY;
+rIStm.ReadInt32(dragStartPosX).ReadInt32(dragStartPosY);
+
+const OUString typeName = 
rIStm.ReadUniOrByteString(osl_getThreadTextEncoding());
+const OUString displayName = 
rIStm.ReadUniOrByteString(osl_getThreadTextEncoding());
+
+sal_uInt32 nSig1, nSig2;
+rIStm.ReadUInt32(nSig1).ReadUInt32(nSig2);
+
+if (!rIStm.good() || rIStm.Tell() - nStartPos != size || nSig1 != TOD_SIG1 
|| nSig2 != TOD_SIG2)
+return;
+
+rObjDesc.maClassName = className;
+rObjDesc.mnViewAspect = viewAspect;
+rObjDesc.maSize = Size(width, height);
+rObjDesc.maDragStartPos = Point(dragStartPosX, dragStartPosY);
+rObjDesc.maTypeName = typeName;
+rObjDesc.maDisplayName = displayName;
+}
 
 // the reading of the parameter is done using the special service 
css::datatransfer::MimeContentType,
 // a similar approach should be implemented for creation of the mimetype 
string;
@@ -1279,6 +1317,9 @@ void TransferableDataHelper::InitFormats()
 if( SotClipboardFormatId::OBJECTDESCRIPTOR == format.mnSotId )
 {
 ImplSetParameterString(*mxObjDesc, format);
+auto data = GetSequence(format, {});
+SvMemoryStream aSrcStm(data.getArray(), data.getLength(), 
StreamMode::READ);
+TryReadTransferableObjectDescriptor(aSrcStm, *mxObjDesc);
 break;
 }
 }


[Libreoffice-bugs] [Bug 157413] URLlink Button placed on top of a chart presents a URL tip popup when the mouse hovers anywhere over the chart

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157413

--- Comment #13 from Colin  ---
(In reply to m.a.riosv from comment #11)
> (In reply to Buovjaga from comment #9)
> > (In reply to m.a.riosv from comment #7)

> It shows empty tooltips for second to fourth button.

They were intentionally "nulled" to avoid unnecessary tooltip intrusions

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

[Libreoffice-bugs] [Bug 157693] "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

Kira Tubo  changed:

   What|Removed |Added

   Severity|normal  |trivial
   Priority|medium  |low

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

[Libreoffice-bugs] [Bug 157693] "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

Kira Tubo  changed:

   What|Removed |Added

 CC||kira.t...@gmail.com
   Keywords||regression
Version|7.6.2.1 release |7.5.5.2 release
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Kira Tubo  ---
Reproduced in:

Version: 7.5.5.2 (X86_64) / LibreOffice Community
Build ID: ca8fe7424262805f223b9a2334bc7181abbcbf5e
CPU threads: 6; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: dd7fc07f83416a3d8a444947b7d28f7347520d6a
CPU threads: 6; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

Not reproduced in 7.3.3.2 => Regression:

Version: 7.3.3.2 (x64) / LibreOffice Community
Build ID: d1d0ea68f081ee2800a922cac8f79445e4603348
CPU threads: 6; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 157674] Heading Indent lost on Reopening File in Writer

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157674

--- Comment #3 from Tim Chambers  ---
Problem persists in troubleshoot mode

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

[Libreoffice-bugs] [Bug 157674] Heading Indent lost on Reopening File in Writer

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157674

--- Comment #2 from Tim Chambers  ---
Created attachment 190134
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190134=edit
File in which the problem occurs

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

[Libreoffice-bugs] [Bug 101370] Undo/Redo don't refresh page/slide pane thumbnail after changing page/slide properties

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101370

Kira Tubo  changed:

   What|Removed |Added

   Severity|normal  |minor

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

[Libreoffice-bugs] [Bug 101370] Undo/Redo don't refresh page/slide pane thumbnail after changing page/slide properties

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101370

Kira Tubo  changed:

   What|Removed |Added

 CC||kira.t...@gmail.com

--- Comment #14 from Kira Tubo  ---
I can reproduce as originally reported and Comment 6.

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: dd7fc07f83416a3d8a444947b7d28f7347520d6a
CPU threads: 6; OS: Windows 10.0 Build 22621; 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.

[Libreoffice-bugs] [Bug 157346] Print or export to PDF by chapters/sections

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157346

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 157392] Cannot input full-width commas and periods

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157392

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-ux-advise] [Bug 157346] Print or export to PDF by chapters/sections

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157346

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 118017] [META] macOS Dark Mode bugs and enhancements

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118017
Bug 118017 depends on bug 153849, which changed state.

Bug 153849 Summary: Icons in Libre Office are nearly invisible when Tinker Tool 
limits macOS dark mode to menu
https://bugs.documentfoundation.org/show_bug.cgi?id=153849

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 157325] Copying from an excel (From Excel 2019 program) to CSV (opened in Calc 7.5.6.2)

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157325

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 154147] libreOffice 7.5 problems during the conversion to pdf format

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154147

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154147] libreOffice 7.5 problems during the conversion to pdf format

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154147

--- Comment #4 from QA Administrators  ---
Dear JB Muffat,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 103440] [META] Sidebar accessibility bugs and enhancements

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103440
Bug 103440 depends on bug 102033, which changed state.

Bug 102033 Summary: Sidebar's settings control exposed without a label
https://bugs.documentfoundation.org/show_bug.cgi?id=102033

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153849] Icons in Libre Office are nearly invisible when Tinker Tool limits macOS dark mode to menu

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153849

--- Comment #8 from QA Administrators  ---
Dear Frank Jäger,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 103434] [META] SIDEBAR: Tab bar bugs and enhancements

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103434
Bug 103434 depends on bug 102033, which changed state.

Bug 102033 Summary: Sidebar's settings control exposed without a label
https://bugs.documentfoundation.org/show_bug.cgi?id=102033

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 102033] Sidebar's settings control exposed without a label

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102033

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154779] Libreoffice draw - text isn't centered in a text box

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154779

--- Comment #2 from QA Administrators  ---
Dear Szasz-Fabian Jozsef,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 102033] Sidebar's settings control exposed without a label

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102033

--- Comment #10 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 154783] PDF: importing to Writer

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154783

--- Comment #2 from QA Administrators  ---
Dear Geoff Rushworth,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 154541] Playing music files Then left to right scroll the mouse in POSITION option , Music files is not Running.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154541

--- Comment #4 from QA Administrators  ---
Dear Purushothaman S,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 154480] EDITING: Crashes when deleting column in defined range

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154480

--- Comment #4 from QA Administrators  ---
Dear Carl Hallinan,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 154392] New Automatic Line Adjust row height, takes a lot of time.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154392

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 154388] Unable to pin open documents

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154388

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 92829] Black smears when cell content dragged

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92829

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 88226] Excessive text in Presentation Notes is not printed

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88226

--- Comment #6 from QA Administrators  ---
Dear karlowski.natan,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 68471] Vertical text alignment of shapes doesn't follow style

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68471

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 64438] Dockable panels in LibreOffice not dockable using KDE

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64438

--- Comment #26 from QA Administrators  ---
Dear S.,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 38139] Copy and paste with mouse between spreadsheets on different computers results in OLE object

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38139

--- Comment #16 from QA Administrators  ---
Dear Frank Steiner,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 140749] Editing settings from a drop down menu from SQL to Value List and/or back, draws window black partially

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140749

--- Comment #3 from QA Administrators  ---
Dear Peter Ludwig,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 157694] New: Scrolling using trackpad is impossibly fast

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157694

Bug ID: 157694
   Summary: Scrolling using trackpad is impossibly fast
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r29...@gmail.com

Description:
Scrolling in LibreOffice Writer using a trackpad, either in a document, in
preferences or in a list (such as the font selector), is so fast that a few
increments (representing roughly two millimeters on the trackpad) covers an
entire page. It is effectively unusable. In order to match other programs, this
sensitivity would have to be cut down by quite a lot -probably a factor of
seven or eight, by my own approximation.

I am using a Lenovo Legion from 2020 if that is any help. I'm inclined to think
this is unrelated to the hardware however.

Steps to Reproduce:
1. Simply start scrolling in any document

Actual Results:
Scrolling is really fast

Expected Results:
Scrolling shouldn't be this fast


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Vulkan; VCL: win
Locale: fr-FR (fr_FR); UI: fr-FR
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 157628] No line breaks in the text in text frame

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157628

Kira Tubo  changed:

   What|Removed |Added

  Regression By||Vasily Melenchuk
 CC||kira.t...@gmail.com,
   ||vasily.melenc...@cib.de
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   Keywords||bibisected, bisected,
   ||regression
Version|7.6.2.1 release |7.3.0.1 rc

--- Comment #2 from Kira Tubo  ---
Bibisected win64-7.3. Added Vasily Melenchuk to cc. 

Regression started at: 
https://git.libreoffice.org/core/+/a4432eb0946c0bc775b3d30b634bef5d66544f8d

-

commit  a4432eb0946c0bc775b3d30b634bef5d66544f8d[log]
author  Vasily Melenchuk   Wed Nov 24 14:50:12
2021 +0300
committer   Thorsten BehrensTue Dec
21 23:23:51 2021 +0100
tree67b339d47ba727f55b989322091f20804d9c6c09
parent  c3d3eb7bdcb07824af7d205112f36201634aee59 [diff]

-

commit cf472b9ae9ea6e8bdc21a6f2b1768c3e4f6a6988
Author: Norbert Thiebaud 
Date:   Tue Dec 21 15:18:48 2021 -0800

source sha:a4432eb0946c0bc775b3d30b634bef5d66544f8d

--

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: dd7fc07f83416a3d8a444947b7d28f7347520d6a
CPU threads: 6; OS: Windows 10.0 Build 22621; 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.

[Libreoffice-bugs] [Bug 157487] tab does not recognise tab settings

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157487

Kira Tubo  changed:

   What|Removed |Added

 CC||kira.t...@gmail.com

--- Comment #2 from Kira Tubo  ---
Created attachment 190133
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190133=edit
Right align text box on Windows

Not able to reproduce. May be a Linux-only bug?

Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 6; OS: Windows 10.0 Build 22621; 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.

[Libreoffice-bugs] [Bug 157390] Converting powerpoint to PDF causes overlap in artistic text

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157390

wei  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 157390] Converting powerpoint to PDF causes overlap in artistic text

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157390

--- Comment #3 from wei  ---
Created attachment 190132
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190132=edit
this is the target  PDF file

this is the target  PDF file. Thanks.

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

[Libreoffice-bugs] [Bug 157390] Converting powerpoint to PDF causes overlap in artistic text

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157390

--- Comment #2 from wei  ---
Created attachment 190131
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190131=edit
this is the origin ppt file.

The file "powerpoint.pptx" is origin file. Thanks.

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

[Libreoffice-bugs] [Bug 157692] (Dark Theme) Invisible types of line/arrowheads in the Properties Panel

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157692

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
Created attachment 190130
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190130=edit
Screenshot with ver 24.02

Reproducible with
Version: 7.6.1.2 (X86_64) / LibreOffice Community
Build ID: f5defcebd022c5bc36bbb79be232cb6926d8f674
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

But seems to work fine with master.
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9eb419b0b0f019f5fbc48ff1a11977e8b041edee
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded Jumbo

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

[Libreoffice-bugs] [Bug 157688] After insert a basic shape, when you try to change any of the area options, libre crashes.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157688

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
And please test in safe mode, Menu/Help/Restart in Safe Mode

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

[Libreoffice-bugs] [Bug 157686] UI freezes after setting new master password

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157686

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
For me LibreOffice crash
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9eb419b0b0f019f5fbc48ff1a11977e8b041edee
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded Jumbo

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

[Libreoffice-bugs] [Bug 157684] writing a Document with pictures got an odd workflow

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157684

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
Looks like a duplicate of tdf#49992

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

[Libreoffice-bugs] [Bug 157659] Cut / Copy / Paste / Delete of Rows in Calc 7.5+ is slow

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157659

q326...@protonmail.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #3 from q326...@protonmail.com ---
Thanks for responding. Since this bug affects all spreadsheets, you can just
create a new document.  I've attached a simple test document created on my
computer, should it help.

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

[Libreoffice-bugs] [Bug 157659] Cut / Copy / Paste / Delete of Rows in Calc 7.5+ is slow

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157659

--- Comment #2 from q326...@protonmail.com ---
Created attachment 190129
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190129=edit
OpenDocument Spreadsheet for testing

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

[Libreoffice-bugs] [Bug 157642] Microsoft Word Document consistently not responding while opening using LibreOffice 7.5.7.1, and Windows

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157642

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=66
   ||398
   Keywords|bibisectRequest |bibisected, bisected
  Regression By||Serge Krot
 CC||serge.k...@cib.de

--- Comment #4 from Aron Budea  ---
This is a regression from the following commit, bibisected using repo
bibisect-win32-6.0.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=f5c266695a4a88da7db971a21915e2bbf758d48e
author  Serge Krot   2017-10-09 12:15:05 +0200
committer   Thorsten Behrens   2017-10-10
19:35:28 +0200

tdf#66398 Parse and output permissions for DOCX using bookmarks

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

[Libreoffice-bugs] [Bug 153306] Cursor leftovers keep being displayed when using Skia Vulkan/Metal

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153306

--- Comment #20 from Victor Graus  ---
Yes, forcing/disabling Skia is a workaround, but in my case it works, I hope it
does for you.

Anyway I don't see any difference between using one render mode or another
(though I don't know much about computers/libraries).

If in the next versions (wait a few months) the bug persists perhaps you could
mark it as "Reopened".

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

[Libreoffice-bugs] [Bug 157413] URLlink Button placed on top of a chart presents a URL tip popup when the mouse hovers anywhere over the chart

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157413

--- Comment #12 from m.a.riosv  ---
(In reply to m.a.riosv from comment #11)
> 
> It shows empty tooltips for second to fourth button.
Ok my bad, the same behavior as with the chart.

Passing the validator to the file for version 1.3 extended:
URLError.ods/content.xml[2,77434]: Error: attribute "table:cell-range-address"
has a bad value
I don't know if it has something to do.

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

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

2023-10-10 Thread Rafael Lima (via logerrit)
 sc/inc/table.hxx  |4 
 sc/qa/unit/data/ods/tdf156815.ods |binary
 sc/qa/unit/ucalc_solver.cxx   |   33 +
 sc/source/core/data/document.cxx  |5 +
 sc/source/ui/inc/docfunc.hxx  |2 +-
 5 files changed, 43 insertions(+), 1 deletion(-)

New commits:
commit cb46ad4c4602fbb6aeab482e9370e31495e12cfe
Author: Rafael Lima 
AuthorDate: Tue Sep 12 19:17:47 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Oct 11 00:05:52 2023 +0200

tdf#156815 Reset solver settings when a sheet is renamed

When a sheet is renamed, the SolverSettings object needs to be reset so 
that the updated references of the named ranges are reloaded the next time the 
Solver dialog is opened.

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

diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 34e0f9d27784..68b4c614c68b 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -451,6 +451,10 @@ public:
 
 SC_DLLPUBLIC std::shared_ptr GetSolverSettings();
 
+// tdf#156815 Sets the solver settings object to nullptr to force 
reloading Solver settings the
+// next time the dialog is opened. This is required when sheets are renamed
+void ResetSolverSettings() { m_pSolverSettings.reset(); }
+
 /**
  * Takes ownership of pCell
  *
diff --git a/sc/qa/unit/data/ods/tdf156815.ods 
b/sc/qa/unit/data/ods/tdf156815.ods
new file mode 100644
index ..cc797ee8619b
Binary files /dev/null and b/sc/qa/unit/data/ods/tdf156815.ods differ
diff --git a/sc/qa/unit/ucalc_solver.cxx b/sc/qa/unit/ucalc_solver.cxx
index 7a8d76cc7534..47770ec0c0e5 100644
--- a/sc/qa/unit/ucalc_solver.cxx
+++ b/sc/qa/unit/ucalc_solver.cxx
@@ -10,6 +10,7 @@
 #include 
 #include "helper/qahelper.hxx"
 #include 
+#include 
 #include 
 #include 
 
@@ -130,4 +131,36 @@ CPPUNIT_TEST_FIXTURE(SolverTest, testSingleModel)
 TestConstraintsModelA(pSettings.get());
 }
 
+// Tests if references remain valid after a sheet is renamed
+CPPUNIT_TEST_FIXTURE(SolverTest, tdf156815)
+{
+createScDoc("ods/tdf156815.ods");
+ScDocument* pDoc = getScDoc();
+ScTable* pTable = pDoc->FetchTable(0);
+std::shared_ptr pSettings = 
pTable->GetSolverSettings();
+CPPUNIT_ASSERT(pSettings);
+
+// Check current values in the solver model
+CPPUNIT_ASSERT_EQUAL(OUString("$Sheet2.$A$1"), 
pSettings->GetParameter(SP_OBJ_CELL));
+CPPUNIT_ASSERT_EQUAL(OUString("$Sheet2.$A$3:$B$3"), 
pSettings->GetParameter(SP_VAR_CELLS));
+
+std::vector aConstraints = pSettings->GetConstraints();
+CPPUNIT_ASSERT_EQUAL(OUString("$Sheet2.$A$2"), aConstraints[0].aLeftStr);
+CPPUNIT_ASSERT_EQUAL(OUString("$Sheet2.$B$2"), aConstraints[0].aRightStr);
+
+// Rename Sheet2 to NewName
+ScDocFunc& rDocFunc = getScDocShell()->GetDocFunc();
+rDocFunc.RenameTable(1, "NewName", false, true);
+
+// Check whether the ranges where updated
+pSettings = pTable->GetSolverSettings();
+CPPUNIT_ASSERT(pSettings);
+CPPUNIT_ASSERT_EQUAL(OUString("$NewName.$A$1"), 
pSettings->GetParameter(SP_OBJ_CELL));
+CPPUNIT_ASSERT_EQUAL(OUString("$NewName.$A$3:$B$3"), 
pSettings->GetParameter(SP_VAR_CELLS));
+
+aConstraints = pSettings->GetConstraints();
+CPPUNIT_ASSERT_EQUAL(OUString("$NewName.$A$2"), aConstraints[0].aLeftStr);
+CPPUNIT_ASSERT_EQUAL(OUString("$NewName.$B$2"), aConstraints[0].aRightStr);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 0880fdf8a857..8996577b588e 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -865,7 +865,12 @@ bool ScDocument::RenameTab( SCTAB nTab, const OUString& 
rName, bool bExternalDoc
 for (const auto& pTable : maTabs)
 {
 if (pTable)
+{
 pTable->SetStreamValid( false );
+// tdf#156815 Reset solver settings so next time they're 
loaded they come with
+// the updated sheet name
+pTable->ResetSolverSettings();
+}
 }
 
 if (comphelper::LibreOfficeKit::isActive() && GetDrawLayer())
diff --git a/sc/source/ui/inc/docfunc.hxx b/sc/source/ui/inc/docfunc.hxx
index 6419e285d5b7..aa9755566ef3 100644
--- a/sc/source/ui/inc/docfunc.hxx
+++ b/sc/source/ui/inc/docfunc.hxx
@@ -147,7 +147,7 @@ public:
bool bCut, bool bRecord, bool bPaint, 
bool bApi );
 
 SC_DLLPUBLIC bool InsertTable( SCTAB nTab, const OUString& rName, bool 
bRecord, bool bApi );
-boolRenameTable( SCTAB nTab, const OUString& rName, bool 
bRecord, bool bApi );
+SC_DLLPUBLIC bool RenameTable( SCTAB nTab, const OUString& rName, bool 
bRecord, bool bApi );
 boolDeleteTable( SCTAB 

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

2023-10-10 Thread Caolán McNamara (via logerrit)
 svx/source/svdraw/svdedtv.cxx |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit aaa86a71ddf1e351117f24edcabd2342dae11bdd
Author: Caolán McNamara 
AuthorDate: Thu Oct 5 21:23:49 2023 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Oct 11 00:03:41 2023 +0200

Related: cool#7373 set name of object before broadcasting ScDrawChanged

which adding it to undo does. That way the object already has a name
when the navigator looks for the new object's name, and so a drawing
shape appears in the navigator when it appears in the document.

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

diff --git a/svx/source/svdraw/svdedtv.cxx b/svx/source/svdraw/svdedtv.cxx
index 58812d849403..c93e2d950793 100644
--- a/svx/source/svdraw/svdedtv.cxx
+++ b/svx/source/svdraw/svdedtv.cxx
@@ -995,12 +995,6 @@ bool SdrEditView::InsertObjectAtView(SdrObject* pObj, 
SdrPageView& rPV, SdrInser
 if (!pObj->IsInserted()) {
 rPV.GetObjList()->InsertObject(pObj, SAL_MAX_SIZE);
 }
-if( IsUndoEnabled())
-{
-bool bDontDeleteReally = true;
-EndTextEditCurrentView(bDontDeleteReally);
-AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoNewObject(*pObj));
-}
 
 css::uno::Reference 
xServices(GetModel()->getUnoModel(),
   css::uno::UNO_QUERY);
@@ -1013,6 +1007,13 @@ bool SdrEditView::InsertObjectAtView(SdrObject* pObj, 
SdrPageView& rPV, SdrInser
 GetModel()->EnableUndo(bUndo);
 }
 
+if (IsUndoEnabled())
+{
+bool bDontDeleteReally = true;
+EndTextEditCurrentView(bDontDeleteReally);
+AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoNewObject(*pObj));
+}
+
 if (!(nOptions & SdrInsertFlags::DONTMARK)) {
 if (!(nOptions & SdrInsertFlags::ADDMARK)) UnmarkAllObj();
 MarkObj(pObj,);


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - desktop/source sfx2/source svx/source

2023-10-10 Thread Marco Cecchetti (via logerrit)
 desktop/source/lib/init.cxx  |2 
 sfx2/source/view/viewsh.cxx  |  133 ---
 svx/source/accessibility/ChildrenManagerImpl.cxx |8 -
 3 files changed, 125 insertions(+), 18 deletions(-)

New commits:
commit b6807298c8dce696152c52447d8fe7759a6f683a
Author: Marco Cecchetti 
AuthorDate: Tue Oct 3 12:34:45 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Oct 11 00:02:54 2023 +0200

lok: a11y: impress: screen reader support for text shape editing

Now accessibility support can be enabled in Impress.
Fixed an issue that prevented to receive accessibility event when a
shape text content was edited.
Some rectangles overlapping check is performed for excluding not
visible shapes from the a11y tree
Anyway client and core visible area can differ some shape was wrongly
pruned from the a11y tree.
The problem has been fixed by not performing the overlapping test in
the LOK case: we already do the same for shape area invalidation.
In order to avoid the screen reader to report no more focused
paragraph we send an empty paragraph to clear the editable area when
shape selection state changes. When shape ediding becomes active the
text content of the shape is sent to the client.

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

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 3bd6fa10fe68..5b50b0d8181c 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -7182,7 +7182,7 @@ static void 
doc_setAccessibilityState(SAL_UNUSED_PARAMETER LibreOfficeKitDocumen
 SolarMutexGuard aGuard;
 
 int nDocType = getDocumentType(pThis);
-if (nDocType != LOK_DOCTYPE_TEXT)
+if (!(nDocType == LOK_DOCTYPE_TEXT || nDocType == 
LOK_DOCTYPE_PRESENTATION))
 return;
 
 SfxLokHelper::setAccessibilityState(nId, nEnabled);
diff --git a/sfx2/source/view/viewsh.cxx b/sfx2/source/view/viewsh.cxx
index 8ad4fe841c88..7fcb8c1920d8 100644
--- a/sfx2/source/view/viewsh.cxx
+++ b/sfx2/source/view/viewsh.cxx
@@ -267,6 +267,28 @@ bool isFocused(const accessibility::AccessibleEventObject& 
aEvent)
 return hasState(aEvent, accessibility::AccessibleStateType::FOCUSED);
 }
 
+sal_Int16 getParentRole(const uno::Reference& 
xAccObject)
+{
+if (!xAccObject.is())
+return 0;
+
+uno::Reference xContext(xAccObject, 
uno::UNO_QUERY);
+if (xContext.is())
+{
+uno::Reference xParent = 
xContext->getAccessibleParent();
+if (xParent.is())
+{
+uno::Reference 
xParentContext(xParent,
+ 
uno::UNO_QUERY);
+if (xParentContext.is())
+{
+return xParentContext->getAccessibleRole();
+}
+}
+}
+return 0;
+}
+
 // Put in rAncestorList all ancestors of xTable up to xAncestorTable or
 // up to the first not-a-table ancestor if xAncestorTable is not an ancestor.
 // xTable is included in the list, xAncestorTable is not included.
@@ -360,6 +382,16 @@ void aboutEvent(std::string msg, const 
accessibility::AccessibleEventObject& aEv
 << "\n  parent: " << 
xContext->getAccessibleParent().get()
 << "\n  child count: " << 
xContext->getAccessibleChildCount());
 }
+else
+{
+SAL_INFO("lok.a11y", msg << ": event id: " << aEvent.EventId
+ << ", no accessible context!");
+}
+}
+else
+{
+SAL_INFO("lok.a11y", msg << ": event id: " << aEvent.EventId
+ << ", no accessible source!");
 }
 uno::Reference< accessibility::XAccessible > xOldValue;
 aEvent.OldValue >>= xOldValue;
@@ -687,6 +719,7 @@ private:
  bool force, std::string msg = "");
 void updateAndNotifyParagraph(const 
uno::Reference& xAccText,
   bool force, std::string msg = "");
+void resetParagraphInfo();
 };
 
 LOKDocumentFocusListener::LOKDocumentFocusListener(const SfxViewShell* 
pViewShell)
@@ -887,6 +920,20 @@ bool LOKDocumentFocusListener::updateParagraphInfo(const 
uno::ReferencegetSelectionEnd();
 m_nListPrefixLength = getListPrefixSize(xAccText);
 
+// Inside a text shape when there is no selection, selection-start and 
selection-end are
+// set to current caret position instead of -1. Moreover, inside a 
text shape pressing
+// delete or backspace with an empty selection really deletes text and 
not only the empty
+// selection as it occurs in a text paragraph in Writer.
+// So whenever selection-start == selection-end, 

[Libreoffice-bugs] [Bug 157561] Invalid error message opening .mdb/.accdb file

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157561

--- Comment #5 from garth.hutchin...@ca.inter.net ---
Item #1: 
I should have printed the entire messages

The file 'Hymns.mdb' is corrupt and therefore cannot be opened. LibreOffice
can try to repair the file.
The corruption could be the result of document manipulation or of
structural document damage due to data transmission.
We recommend that you do not trust the content of the repaired document.
Execution of macros is disabled for this document.
Should LibreOffice attempt to repair the file?

This message is in error because the file is NOT CORRUPT.  The same happens
with .accdb files.  These files are processable by MS Access and have valid
internal signatures in the files: x(000100) + "Standard Jet DB" for .mdb; 
x(000100) + :Standard ACE DB" for .accdb.  LibreOffice should either open it
(as such utilities as MDBViewer can) or otherwise the messages should be "File
type .x is not supported for direct reading" or some such.

Item #2:
Re reply to Ilya:  connecting a new .odb file to Hymns.mdb, going through the
process and using the table wizard, I get the message

The connection to the data source "Hymns" could not be established.
The connection could not be created. Maybe the necessary data provider is
not installed?

More …

on clicking More I get the additional message

SQL Status: HY000
The connection could not be created. Maybe the necessary data provider is
not installed?

on exiting this message  (the first time only, afterwards unless you delete the
.odb file, then you do not) you get this message

JRE Required

LibreOffice requires a 64-bit Java runtime environment (JRE) to perform
this task. Please install a JRE and restart LibreOffice.
https://hub.libreoffice.org/InstallJava/?LOlocale=en-GB

installed the right JRE and same result.

Checked the ODBC Data Source Administrator (64-bit) and found, among others
that for MS Access Database on 64-bit Platform there is installed "Microsoft
Access Driver (*.mdb, *.accdb).  Surely you don't have to set up System DSN for
each file!

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

[Libreoffice-bugs] [Bug 153306] Cursor leftovers keep being displayed when using Skia Vulkan/Metal

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153306

--- Comment #19 from Patrick Luby  ---
(In reply to lupurus from comment #18)
> I just downloaded LibreOffice_7.6.2.1_MacOS_aarch64.dmg from September 27.
> The bug is still there. So why is this bug marked as fixed?

As I noted in https://bugs.documentfoundation.org/show_bug.cgi?id=153306#c15, I
marked this resolved/fixed starting with LibreOffice 24.2.

AFAICT, this bug was within the third-party Skia code which was shipped with
LibreOffice 7.6. A newer version of Skia is in LibreOffice 24.2 (i.e. the next
release) and that appears to fix the Skia bug that causes this bug.

I'm just a volunteer here and I am not a Skia expert so I don't know if there
are any plans to backport the newer Skia version to LibreOffice 7.6 so feel
free to reset the status to whatever you want. It's your bug.

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

[Libreoffice-bugs] [Bug 157413] URLlink Button placed on top of a chart presents a URL tip popup when the mouse hovers anywhere over the chart

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157413

--- Comment #11 from m.a.riosv  ---
(In reply to Buovjaga from comment #9)
> (In reply to m.a.riosv from comment #7)
> ...
> How is the issue seen after you delete the chart? I did it and I only see
> the tooltip when hovering over the buttons. I wonder what are the
> reproduction steps from scratch or with the data.
It shows empty tooltips for second to fourth button.

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

[Libreoffice-bugs] [Bug 157693] "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

--- Comment #2 from robomurphy98  ---
Created attachment 190128
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190128=edit
Before select the table

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

[Libreoffice-bugs] [Bug 157693] "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

--- Comment #1 from robomurphy98  ---
Created attachment 190127
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190127=edit
After select the table

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

[Libreoffice-bugs] [Bug 157693] New: "Slide" reappears in the Properties side panel after selecting a table.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157693

Bug ID: 157693
   Summary: "Slide" reappears in the Properties side panel after
selecting a table.
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pabloaria...@hotmail.com

Description:
When inserting a table in LibreOffice Draw and working with it, deselecting it
in the Properties side panel (which said Page) now says Slide.

Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: es-ES
Calc: CL threaded

Steps to Reproduce:
1. Insert a table.
2. Select and unselect.
3. In the panel Properties now says Slide.

Actual Results:
In the panel Properties says Slide.

Expected Results:
In the panel Properties must be say Page.


Reproducible: Always


User Profile Reset: No

Additional Info:
Skia enabled, Windows 10 OS.

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

[Libreoffice-bugs] [Bug 157692] (Dark Theme) Invisible types of line/arrowheads in the Properties Panel

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157692

--- Comment #3 from robomurphy98  ---
Created attachment 190126
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190126=edit
Types of line in light mode

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

[Libreoffice-bugs] [Bug 157692] (Dark Theme) Invisible types of line/arrowheads in the Properties Panel

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157692

--- Comment #2 from robomurphy98  ---
Created attachment 190125
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190125=edit
Types of line in dark mode

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

[Libreoffice-bugs] [Bug 157692] (Dark Theme) Invisible types of line/arrowheads in the Properties Panel

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157692

--- Comment #1 from robomurphy98  ---
Created attachment 190124
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190124=edit
Arrowheads in dark theme

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

[Libreoffice-bugs] [Bug 157692] New: (Dark Theme) Invisible types of line/arrowheads in the Properties Panel

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157692

Bug ID: 157692
   Summary: (Dark Theme) Invisible types of line/arrowheads in the
Properties Panel
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pabloaria...@hotmail.com

Description:
Hello, good evening everyone. I use LibreOffice on a computer in its dark theme
and while I was deleting margins on an image when I was going to make the frame
more transparent from the Properties of the side panel I cannot see the types
of lines it gives me to choose from. I understand that they are white and with
the transparent background they cannot be seen. This happens either if we
insert a photo and change the format of the line borders of the image or if we
insert an arrow and change its shape from the panel. When you open the button
the arrowheads are not visible either.

I understand that it is a common bug since it happened to me in Calc but it
also happens in Draw. I attach images in both light and dark themes, in light
you can see the arrows.

Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: es-ES
Calc: CL threaded

Steps to Reproduce:
1. Insert a image or a shape.
2. Modify the borders of the image or the shape in the lateral panel
Properties.
3. In the line section, in the combobox of arrowheads and or trace types they
are not seen.

Actual Results:
You can't see the lines or arrowheads.

Expected Results:
Let them be seen in dark theme too.


Reproducible: Always


User Profile Reset: No

Additional Info:
Bug located in the lateral Properties panel -> section Line -> comboBox of
types of lines and arrowheads in dark theme.

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

[Libreoffice-bugs] [Bug 153306] Cursor leftovers keep being displayed when using Skia Vulkan/Metal

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153306

--- Comment #18 from lupu...@web.de ---
@Victor Graus: Changing the render mode is not a bug fix, it's a workaround.
Using Skia is actually the reason of the bug.

-

I just downloaded LibreOffice_7.6.2.1_MacOS_aarch64.dmg from September 27. The
bug is still there. So why is this bug marked as fixed?

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

[Libreoffice-bugs] [Bug 157691] MailMerge sends oversized pdf-attachments when mailing list > 200 recipients

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157691

Reinhard Klapproth  changed:

   What|Removed |Added

 CC||i...@reinhard-klapproth.de

--- Comment #1 from Reinhard Klapproth  ---
Created attachment 190123
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190123=edit
zip-file containing used odt-file and generated pdf-files

zip-file contains odt-file used for mailmerge
pdf-file no.1 generated by mailmerging 1 address
pdf-file no.2 generated by mailmerging > 200 addresses

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

[Libreoffice-bugs] [Bug 157690] After updating to Version 7.6.2.1 page orientation for printing enveloppes is not saved

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157690

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
no repro with Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9f44f9fad759dea644356b67b9cd0fab030e8b77
CPU threads: 4; OS: Linux 6.2; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 157691] New: MailMerge sends oversized pdf-attachments when mailing list > 200 recipients

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157691

Bug ID: 157691
   Summary: MailMerge sends oversized pdf-attachments when mailing
list > 200 recipients
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: i...@reinhard-klapproth.de

Description:
Sending e-mails via MailMerge as a pdf-file produces a pdf-attachment of around
120 K when the number of sent mails is low (< 10). When the list of mail
addresses is larger (> 200) MailMerge enlarges the pdf-file to 1.2 M each.
Mailmerging the same address list for saving on hard drive produces normal
sized pdf-files. 

Steps to Reproduce:
1. Load odt-file using Libreoffice Writer
2. Tools->Mail Merge Wizard -> 
Starting Document: Current
Document Type: Email Message
-> Next Step -> Finish 
3. Press Icon "Send merged document as email" of toolbar Mailmerge
4. Enter "To", "Subject", "Send as": pdf
5. "Copy To"-dialogue: CC: no entry, BCC: enter an e-mail-address
6. "Properties"-dialogue: "Write your message here": Enter message and press
"OK"
7. Press "Send Documents"

Actual Results:
Sent pdf-file of size 1.2 MB to every e-mail-address.

Expected Results:
Sent pdf-file of size 120 KB to every e-mail-address.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 9d0b4c0791fc17bc4181a67fd90c5aaed576d1c0
CPU threads: 12; OS: Linux 6.2; UI render: default; VCL: gtk3
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Calc: threaded

OS: Ubuntu 22.04.3 LTS

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

[Libreoffice-bugs] [Bug 157675] right-click on right half of last character in selection loses the selection

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157675

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
(In reply to Stéphane Guillou (stragu) from comment #6)
> That fact that Calc does not have the same problem makes me think it is
> indeed a bug that needs fixing.
(nor Draw, nor Impress)

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

[Libreoffice-bugs] [Bug 157675] right-click on right half of last character in selection loses the selection

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157675

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
That fact that Calc does not have the same problem makes me think it is indeed
a bug that needs fixing.

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

[Libreoffice-bugs] [Bug 112182] [META] Text and object selection issues

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112182

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||157675


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=157675
[Bug 157675] right-click on right half of last character in selection loses the
selection
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157675] right-click on right half of last character in selection loses the selection

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157675

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|7.5.6.2 release |Inherited From OOo
Summary|right-click after selection |right-click on right half
   |of text by mouse will   |of last character in
   |collapsed the selection |selection loses the
   ||selection
   Priority|medium  |low
 Status|NEEDINFO|NEW
   Keywords||needsDevAdvice
 Blocks||112182
 OS|Windows (All)   |All
   Severity|normal  |minor

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
I can see how right-clicking on the right half of the last character in the
selection makes the selection disappear. It is more obvious with a high zoom
level, and more problematic for a 1-character selection.

Marking as new although I'm not sure if there's a good reason it is this way.

Reproduced in OOo 3.3 as well as a recent trunk build:

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112182
[Bug 112182] [META] Text and object selection issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157452] LibO crashes when opening print dialog on gtk4 VCL

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157452

--- Comment #3 from Caolán McNamara  ---
As an aside, using the gtk3 instead of gtk4 vclplug is likely to get better
results.

The error is a bit odd, what's supposed to happen is that in:
vcl/unx/gtk4/convert3to4.cxx we remove any gtk3-style "window-position"
properties in the .ui files when we runtime convert them to gtk4

and anyway

git grep window.position */uiconfig

doesn't have any hits in the vcl print dialog of

vcl/uiconfig/ui/printdialog.ui

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

[Libreoffice-ux-advise] [Bug 157482] Turn Security Warnings popup windows into infobars

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157482

Balázs Varga (allotropia)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |balazs.varga...@gmail.com
   |desktop.org |
 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 157482] Turn Security Warnings popup windows into infobars

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157482

Balázs Varga (allotropia)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |balazs.varga...@gmail.com
   |desktop.org |
 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 153283] Application crashes when printing in Windows 10 from Writer or Calc (HP LaserJet Printer)

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153283

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|7.6.2.1 release |7.4.5.1 release
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #14 from Stéphane Guillou (stragu) 
 ---
(In reply to Alan S Kay from comment #13)
> No crashes with 7.6.2.1

Great news, thank you Alan!
Marking as "works for me" then, because we don't know which commit fixed it.

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

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 153283, which changed state.

Bug 153283 Summary: Application crashes when printing in Windows 10 from Writer 
or Calc (HP LaserJet Printer)
https://bugs.documentfoundation.org/show_bug.cgi?id=153283

   What|Removed |Added

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

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

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

2023-10-10 Thread Caolán McNamara (via logerrit)
 sc/source/ui/view/formatsh.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6cfd36a392ec3710304ff3df3cb0f42e0d8b53d9
Author: Caolán McNamara 
AuthorDate: Tue Oct 10 16:29:16 2023 +0100
Commit: Caolán McNamara 
CommitDate: Tue Oct 10 21:44:09 2023 +0200

tdf#154142 null-deref in SfxUndoManager::SetMaxUndoActionCount

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

diff --git a/sc/source/ui/view/formatsh.cxx b/sc/source/ui/view/formatsh.cxx
index 0eea4d0f6bdf..028fdc77b3b0 100644
--- a/sc/source/ui/view/formatsh.cxx
+++ b/sc/source/ui/view/formatsh.cxx
@@ -135,7 +135,7 @@ ScFormatShell::ScFormatShell(ScViewData& rData) :
 SetPool( >GetPool() );
 SfxUndoManager* pMgr = rViewData.GetSfxDocShell()->GetUndoManager();
 SetUndoManager( pMgr );
-if ( !rViewData.GetDocument().IsUndoEnabled() )
+if (pMgr && !rViewData.GetDocument().IsUndoEnabled())
 {
 pMgr->SetMaxUndoActionCount( 0 );
 }


[Libreoffice-bugs] [Bug 37134] Tabbed UI: Document-per-tab (similar to Firefox, Opera, gedit) MDI

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37134

--- Comment #90 from Maximilian Kohler  ---
I need this. Atlantis Word Processor has this and it’s very useful, especially
when paired with “Reload open documents at startup”.

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

[Libreoffice-commits] core.git: sd/qa

2023-10-10 Thread Xisco Fauli (via logerrit)
 sd/qa/unit/PNGExportTests.cxx |   48 ++
 sd/qa/unit/data/odp/tdf157652.odp |binary
 2 files changed, 48 insertions(+)

New commits:
commit 0cd5b97acbb3419eb7f550e39a291691373bd878
Author: Xisco Fauli 
AuthorDate: Tue Oct 10 14:02:39 2023 +0200
Commit: Xisco Fauli 
CommitDate: Tue Oct 10 21:35:50 2023 +0200

tdf#157502, tdf#157652: sd_png_export: Add unittest

Change-Id: I19bf2738496e0289e9fe07ac5241781b4c0bc416
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157758
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/sd/qa/unit/PNGExportTests.cxx b/sd/qa/unit/PNGExportTests.cxx
index 58cd828b677b..7c28b7d51654 100644
--- a/sd/qa/unit/PNGExportTests.cxx
+++ b/sd/qa/unit/PNGExportTests.cxx
@@ -202,6 +202,54 @@ CPPUNIT_TEST_FIXTURE(SdPNGExportTest, testTdf136632)
 CPPUNIT_ASSERT(!pReadAccess);
 }
 
+CPPUNIT_TEST_FIXTURE(SdPNGExportTest, testTdf157652)
+{
+loadFromURL(u"odp/tdf157652.odp");
+uno::Reference xContext = getComponentContext();
+CPPUNIT_ASSERT(xContext.is());
+uno::Reference xGraphicExporter
+= drawing::GraphicExportFilter::create(xContext);
+
+uno::Sequence aFilterData{
+comphelper::makePropertyValue("PixelWidth", sal_Int32(100)),
+comphelper::makePropertyValue("PixelHeight", sal_Int32(100))
+};
+
+uno::Sequence aDescriptor{
+comphelper::makePropertyValue("URL", maTempFile.GetURL()),
+comphelper::makePropertyValue("FilterName", OUString("PNG")),
+comphelper::makePropertyValue("FilterData", aFilterData)
+};
+
+uno::Reference 
xDrawPagesSupplier(mxComponent, uno::UNO_QUERY);
+uno::Reference 
xPage(xDrawPagesSupplier->getDrawPages()->getByIndex(0),
+   uno::UNO_QUERY);
+xGraphicExporter->setSourceDocument(xPage);
+xGraphicExporter->filter(aDescriptor);
+
+SvFileStream aFileStream(maTempFile.GetURL(), StreamMode::READ);
+vcl::PngImageReader aPNGReader(aFileStream);
+BitmapEx aBMPEx = aPNGReader.read();
+
+// make sure the bitmap is not empty and correct size (PNG export->import 
was successful)
+Size aSize = aBMPEx.GetSizePixel();
+CPPUNIT_ASSERT_EQUAL(Size(100, 100), aSize);
+Bitmap aBMP = aBMPEx.GetBitmap();
+Bitmap::ScopedReadAccess pReadAccess(aBMP);
+for (tools::Long nX = 1; nX < aSize.Width() - 1; ++nX)
+{
+for (tools::Long nY = 1; nY < aSize.Height() - 1; ++nY)
+{
+const Color aColor = pReadAccess->GetColor(nY, nX);
+
+// Without the fix in place, this test would have failed with
+// - Expected: rgba[]
+// - Actual  : rgba[ff953eff]
+CPPUNIT_ASSERT_EQUAL(COL_WHITE, aColor);
+}
+}
+}
+
 CPPUNIT_TEST_FIXTURE(SdPNGExportTest, testTdf157635)
 {
 loadFromURL(u"pptx/tdf157635.pptx");
diff --git a/sd/qa/unit/data/odp/tdf157652.odp 
b/sd/qa/unit/data/odp/tdf157652.odp
new file mode 100644
index ..11fb34b0c38d
Binary files /dev/null and b/sd/qa/unit/data/odp/tdf157652.odp differ


[Libreoffice-commits] core.git: Branch 'libreoffice-7-6' - filter/source include/vcl vcl/qa vcl/source

2023-10-10 Thread Michael Stahl (via logerrit)
 filter/source/pdf/pdfexport.cxx |4 
 include/vcl/pdfextoutdevdata.hxx|2 
 vcl/qa/cppunit/pdfexport/data/transparentshape.fodp |  439 
 vcl/qa/cppunit/pdfexport/pdfexport.cxx  |   16 
 vcl/source/gdi/pdfextoutdevdata.cxx |   14 
 5 files changed, 471 insertions(+), 4 deletions(-)

New commits:
commit 2865050bf82c717ea403bf7635bf4072b1876f41
Author: Michael Stahl 
AuthorDate: Tue Oct 10 12:15:37 2023 +0200
Commit: Caolán McNamara 
CommitDate: Tue Oct 10 21:32:39 2023 +0200

tdf#157182 vcl,filter: PDF/A export: fix crash due to SE ID mismatch

The SE IDs in PDFExtOutDevData and PDFWriterImpl are supposed to match.
If PDF/A-1 is exported then RemoveTransparenciesFromMetaFile() is
called and that does unspeakable things to the Metafile and then we just
throw away the PDF related data for the page in
PDFExtOutDevData::ResetSyncData().

This means that then EnsureStructureElement are called on
PDFExtOutDevData but not on PDFWriterImpl, so on the next page the IDs
will no longer match, which is noticed if there is no transparency to be
removed on that page.

pdfextoutdevdata.cxx:347: bool vcl::PageSyncData::PlaySyncPageAct(): 
Assertion `id == -1 || id == mParaInts.front()' failed.

Guess the easiest way to deal with this is to have the premature
ResetSyncData() replay only the EnsureStructureElement actions, which is
only possible because they don't really require any extra data stored in
the ridiculous vectors in PageSyncData; PDFWriterImpl will eventually
remove the elements as they are never initialised.

(regression from commit 07d790ca473cd6e71f0343419b819fa6b485dc01)

Change-Id: I8eb295504067edff00608e28fd86b0c86d547083
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157748
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit c50bca0fc298973bbeda697072528e3dfc887ac5)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157771
Reviewed-by: Caolán McNamara 

diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index 1d3d9185b7a4..ad269b1bf4c4 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -1174,7 +1174,7 @@ void PDFExport::ImplExportPage( vcl::PDFWriter& rWriter, 
vcl::PDFExtOutDevData&
 // Throw them all away in the absence of a way to reposition them to 
new positions of
 // their replacements.
 if (aCtx.m_bTransparenciesWereRemoved)
-rPDFExtOutDevData.ResetSyncData();
+rPDFExtOutDevData.ResetSyncData();
 }
 else
 {
@@ -1190,7 +1190,7 @@ void PDFExport::ImplExportPage( vcl::PDFWriter& rWriter, 
vcl::PDFExtOutDevData&
 
 rWriter.PlayMetafile( aMtf, aCtx,  );
 
-rPDFExtOutDevData.ResetSyncData();
+rPDFExtOutDevData.ResetSyncData(nullptr);
 
 if (!msWatermark.isEmpty())
 {
diff --git a/include/vcl/pdfextoutdevdata.hxx b/include/vcl/pdfextoutdevdata.hxx
index 3afec3bd934e..9c860944023c 100644
--- a/include/vcl/pdfextoutdevdata.hxx
+++ b/include/vcl/pdfextoutdevdata.hxx
@@ -105,7 +105,7 @@ public:
 virtual ~PDFExtOutDevData() override;
 
 bool PlaySyncPageAct( PDFWriter& rWriter, sal_uInt32& rCurGDIMtfAction, 
const GDIMetaFile& rMtf );
-void ResetSyncData();
+void ResetSyncData(PDFWriter * pWriterIfRemoveTransparencies);
 
 void PlayGlobalActions( PDFWriter& rWriter );
 
diff --git a/vcl/qa/cppunit/pdfexport/data/transparentshape.fodp 
b/vcl/qa/cppunit/pdfexport/data/transparentshape.fodp
new file mode 100644
index ..2fddc3ac0db4
--- /dev/null
+++ b/vcl/qa/cppunit/pdfexport/data/transparentshape.fodp
@@ -0,0 +1,439 @@
+
+http://www.w3.org/TR/css3-text/; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooow="http://ope
 noffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 

[Libreoffice-bugs] [Bug 119638] Text boxes copied from Draw to Writer get wrapped

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119638

--- Comment #19 from Michael Zapf  ---
Still reproducible on LO 7.6.1.2 (x86_64).

Note that the used font and the font size are relevant.

I can safely reproduce the effect with "Liberation Sans" at 18pt. With "Times
New Roman", the effect does not occur for any sample between 12pt and 36pt (at
least).

The effect for Liberation Sans 18 pt is that the width of the text box ("12")
is reduced by 0.01cm when pasted into the new Writer document (see comment 6).

Observation: The width of the text box "12" using this Liberation Sans 18pt is
1.21 cm with "Fit width to text". If this setting is disabled and the size is
changed to 1.22cm, then back to 1.21cm, copy/pasting the text box is done
correctly without wrapping. My guess is that the auto-width is fractional and
rounded, and that the digit resolution during copying is changed so that
rounding on paste yields a slightly smaller dimension, thus wrapping the
content.

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

[Libreoffice-bugs] [Bug 121720] [TABLE] A merged table cell across page (due to other columns containing multiple rows) would cause Writer hang forever

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121720

--- Comment #27 from Timur  ---
In 7.5 opening seemed faster. But results are not consistent for a bisect.

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

[Libreoffice-bugs] [Bug 157690] New: After updating to Version 7.6.2.1 page orientation for printing enveloppes is not saved

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157690

Bug ID: 157690
   Summary: After updating to Version 7.6.2.1 page orientation for
printing enveloppes is not saved
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 09fab...@proton.me

Description:
Recently I have updated to Libre Office Version 7.6.2.1. Due to that I
encounter now the issue that if I want to print enveloppes, the page
orientation is not being saved.
NEW

Steps to Reproduce:
1.Insert
2.Enveloppe
3.Enter Adress and Enveloppe Format
4.New Document
5.Print

Actual Results:
The address on the enveloppe is being printed rotated 90°. Printing in portrait
mode

Expected Results:
Text should be printed in landscape mode.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-CH (de_CH); UI: de-DE
Calc: threaded

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

[Libreoffice-bugs] [Bug 157688] After insert a basic shape, when you try to change any of the area options, libre crashes.

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157688

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

   What|Removed |Added

 CC||79045_79...@mail.ru
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
No repro without full and correct steps

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

Please write here info about your LibreOffice using Copy button in Help->About
dialog and please describe step by step what did you do

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

[Libreoffice-bugs] [Bug 132261] [META] Table layouting: PrepareMake, MakeAll loops and crashes

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132261
Bug 132261 depends on bug 121720, which changed state.

Bug 121720 Summary: [TABLE] A merged table cell across page (due to other 
columns containing multiple rows) would cause Writer hang forever
https://bugs.documentfoundation.org/show_bug.cgi?id=121720

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 121720] [TABLE] A merged table cell across page (due to other columns containing multiple rows) would cause Writer hang forever

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121720

Timur  changed:

   What|Removed |Added

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

--- Comment #26 from Timur  ---
This bug seems to have become a dumpster for different duplicates. 
Some seems fixed to me, I closed them. If not fixed, New. One remained that may
be a dupe of some other. 
And this one is no more "hang forever" so I close.
There is some CPU but that is another issue, after searching for many similar
bugs..

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

[Libreoffice-bugs] [Bug 142773] Adding 4 new rows in complex table causes hang

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142773

Timur  changed:

   What|Removed |Added

 CC||ti...@libreoffice.org
 Resolution|DUPLICATE   |---
 Status|RESOLVED|NEW

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

[Libreoffice-bugs] [Bug 138026] FILEOPEN Big table in DOCX cause writer hangs - regression

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138026

Timur  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

--- Comment #5 from Timur  ---
Hangs in 24.2.

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

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

2023-10-10 Thread Ashod Nakashian (via logerrit)
 vcl/source/gdi/impgraph.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 27b05720c99b933a6cbb7a881433a70766962195
Author: Ashod Nakashian 
AuthorDate: Tue Jul 18 21:23:13 2023 -0400
Commit: Caolán McNamara 
CommitDate: Tue Oct 10 20:50:09 2023 +0200

vcl: swap out the BinaryDataContainer too

Signed-off-by: Ashod Nakashian 
Change-Id: I2e6ac88ff95903acf2df2070a7c23f4fc135c253
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154606
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 896fc921cd72b5f0198772f2d4c569b59f51222c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154615
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx
index 35a2145aa8e4..f3f877d3b939 100644
--- a/vcl/source/gdi/impgraph.cxx
+++ b/vcl/source/gdi/impgraph.cxx
@@ -1308,6 +1308,8 @@ bool ImpGraphic::swapOut()
 // reset the swap file
 mpSwapFile.reset();
 
+mpGfxLink->getDataContainer().swapOut();
+
 // mark as swapped out
 mbSwapOut = true;
 


[Libreoffice-commits] core.git: 2 commits - cui/source external/python3 sw/source vcl/jsdialog

2023-10-10 Thread Andras Timar (via logerrit)
 cui/source/dialogs/QrCodeGenDialog.cxx  |   27 +++
 cui/source/factory/dlgfact.cxx  |4 ++--
 cui/source/factory/dlgfact.hxx  |2 +-
 cui/source/inc/QrCodeGenDialog.hxx  |5 -
 external/python3/ExternalPackage_python3.mk |6 ++
 sw/source/uibase/uiview/viewdlg2.cxx|6 --
 vcl/jsdialog/enabled.cxx|1 +
 7 files changed, 45 insertions(+), 6 deletions(-)

New commits:
commit d4f1db07753396efee9b59cffed79adde141293c
Author: Andras Timar 
AuthorDate: Sun May 21 17:20:17 2023 +0200
Commit: Caolán McNamara 
CommitDate: Tue Oct 10 20:49:23 2023 +0200

fix internal python build on aarch64-unknown-linux-gnu

Change-Id: I74189af9edd8384cbb1d65a805a29cea91646eeb
(cherry picked from commit 77ebb08e5f93ea9b9e82ddc3de0698babe0630a8)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157752
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/external/python3/ExternalPackage_python3.mk 
b/external/python3/ExternalPackage_python3.mk
index 1f29c9efbebb..143e64700dc1 100644
--- a/external/python3/ExternalPackage_python3.mk
+++ b/external/python3/ExternalPackage_python3.mk
@@ -146,6 +146,11 @@ $(eval $(call 
gb_ExternalPackage_add_files,python3,$(LIBO_BIN_FOLDER)/python-cor
 LO_lib/_sysconfigdata_$(if 
$(ENABLE_DBGUTIL),d)_linux_powerpc64le-linux-gnu.py \
 ))
 else
+ifeq ($(HOST_PLATFORM),aarch64-unknown-linux-gnu)
+$(eval $(call 
gb_ExternalPackage_add_files,python3,$(LIBO_BIN_FOLDER)/python-core-$(PYTHON_VERSION)/lib,\
+LO_lib/_sysconfigdata_$(if 
$(ENABLE_DBGUTIL),d)_linux_aarch64-linux-gnu.py \
+))
+else
 # note: python configure overrides config.guess with something that doesn't
 # put -pc in its linux platform triplets, so filter that...
 ifneq ($(OS),WNT)
@@ -160,6 +165,7 @@ $(eval $(call 
gb_ExternalPackage_add_files,python3,$(LIBO_BIN_FOLDER)/python-cor
 endif
 endif
 endif
+endif
 
 
 # packages not shipped:
commit 39f9c0020505719517972bbf262306c2e0defd9c
Author: Darshan-upadhyay1110 
AuthorDate: Thu Sep 7 13:00:50 2023 +0530
Commit: Caolán McNamara 
CommitDate: Tue Oct 10 20:49:08 2023 +0200

Enable QR and barcode dialog for online

 - enable QR and barcode genration dialog for online
 - Change Qr code genration dialog to async

Change-Id: Ia46b8e27a3002adcc893e5ef4c2545d7edcc3e41
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156642
Reviewed-by: Szymon Kłos 
Tested-by: Jenkins CollaboraOffice 
(cherry picked from commit 6ed38adb5578d0b52d11d8f2077e345f9a8c7ade)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157728
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/cui/source/dialogs/QrCodeGenDialog.cxx 
b/cui/source/dialogs/QrCodeGenDialog.cxx
index 0058ea362128..8a25e3b364e7 100644
--- a/cui/source/dialogs/QrCodeGenDialog.cxx
+++ b/cui/source/dialogs/QrCodeGenDialog.cxx
@@ -250,6 +250,33 @@ short QrCodeGenDialog::run()
 #endif
 }
 
+bool QrCodeGenDialog::runAsync(const std::shared_ptr& 
rController,
+   const std::function& rFunc)
+{
+#if ENABLE_ZXING
+
+weld::GenericDialogController::runAsync(rController, [rController, 
rFunc](sal_Int32 nResult) {
+if (nResult == RET_OK)
+{
+try
+{
+rController->Apply();
+}
+catch (const std::exception&)
+{
+std::unique_ptr 
xBox(Application::CreateMessageDialog(
+rController->GetParent(), VclMessageType::Warning, 
VclButtonsType::Ok,
+CuiResId(RID_CUISTR_QRCODEDATALONG)));
+xBox->run();
+}
+}
+
+rFunc(nResult);
+});
+#endif
+return true;
+}
+
 void QrCodeGenDialog::Apply()
 {
 #if ENABLE_ZXING
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index f558f9e4a37d..086fd01c5af3 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -113,7 +113,6 @@ IMPL_ABSTDLG_CLASS(AbstractGraphicFilterDialog)
 IMPL_ABSTDLG_CLASS(AbstractHangulHanjaConversionDialog)
 IMPL_ABSTDLG_CLASS(AbstractInsertObjectDialog)
 IMPL_ABSTDLG_CLASS(AbstractLinksDialog)
-IMPL_ABSTDLG_CLASS(AbstractQrCodeGenDialog)
 IMPL_ABSTDLG_CLASS(AbstractScreenshotAnnotationDlg)
 IMPL_ABSTDLG_CLASS(AbstractSignatureLineDialog)
 IMPL_ABSTDLG_CLASS(AbstractSignSignatureLineDialog)
@@ -132,6 +131,7 @@ IMPL_ABSTDLG_CLASS(AbstractSvxZoomDialog)
 IMPL_ABSTDLG_CLASS(AbstractTitleDialog)
 IMPL_ABSTDLG_CLASS(AbstractURLDlg)
 
IMPL_ABSTDLG_CLASS_ASYNC(AbstractPasswordToOpenModifyDialog,weld::DialogController)
+IMPL_ABSTDLG_CLASS_ASYNC(AbstractQrCodeGenDialog,QrCodeGenDialog)
 IMPL_ABSTDLG_CLASS_ASYNC(AbstractPasteDialog,SfxDialogController)
 IMPL_ABSTDLG_CLASS_ASYNC(AbstractScriptSelectorDialog,SfxDialogController)
 IMPL_ABSTDLG_CLASS_ASYNC(AbstractSpellDialog,SfxDialogController)
@@ 

[Libreoffice-ux-advise] [Bug 157420] Allow setting a default Date and Time subtype (fixed vs non-fixed) and format so they can be inserted with shortcuts

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157420

--- Comment #6 from FaithfulScuff  ---
I do believe the request made here would also apply to fixing the Bug 157337,
as they are also asking about inserted time and date via keyboard shortcuts.

Sorry, I don't see how to add a hyperlink to this message.

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

[Libreoffice-bugs] [Bug 157420] Allow setting a default Date and Time subtype (fixed vs non-fixed) and format so they can be inserted with shortcuts

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157420

--- Comment #6 from FaithfulScuff  ---
I do believe the request made here would also apply to fixing the Bug 157337,
as they are also asking about inserted time and date via keyboard shortcuts.

Sorry, I don't see how to add a hyperlink to this message.

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

  1   2   3   4   >