[Libreoffice-bugs] [Bug 155839] When propmpted about missing hyphenation data - I should be offered a download/package install link

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155839

--- Comment #22 from Eyal Rozenberg  ---
(In reply to Rene Engelhard from comment #21)
> Be it fonts or hyphenation patterns or whatever.

Ok, now I get it. And indeed, we bundle fonts and install them, we don't tell
the user "go install this-and-that font".

> > 2. Suppose I adopt your position and believe that LO shouldn't download/
> > install stuff. If that's the case - what's the justification for these 
> > patterns not being part of the LO download (Windows installer / set-of-
> > DEB/RPM packages)?
> 
> They *are* part of it. TTBOMK it includes hyphenation patterns.

Ah, well - it doesn't, or I would not have opened this bug. I didn't perform a
partial install or pick-and-choose packages. But perhaps let someone else shed
light on whether hyphenation patterns are included or not.

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

[Libreoffice-bugs] [Bug 158109] New: FILESAVE: Exporting to PDF

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158109

Bug ID: 158109
   Summary: FILESAVE:  Exporting to PDF
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xoano...@yahoo.com

Created attachment 190714
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190714=edit
Draw file

I very seldom use Draw; I mostly use Calc.  I used Draw to create a memorial
for my father, to be posted on social media.  

When I exported to PDF, the result was a Screen Print.  I was able to
successfully export to a PNG file.  

I have no idea whether this problem appeared in other versions or platforms.  

Since this system won't allow more than one file to be attached, I'm just
sending the Draw file, with my Dad's name redacted.

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

[Libreoffice-bugs] [Bug 158108] Build failure with ICU 74

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158108

Robert Großkopf  changed:

   What|Removed |Added

  Component|Base|LibreOffice

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

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

2023-11-07 Thread Noel Grandin (via logerrit)
 include/vcl/toolkit/treelistbox.hxx |2 +-
 vcl/source/treelist/treelistbox.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 33897a3dce5d31d0b869bc1507eed2ddcd3b1664
Author: Noel Grandin 
AuthorDate: Tue Nov 7 14:44:11 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 08:18:03 2023 +0100

loplugin:fieldcast in SvTreeListBox

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

diff --git a/include/vcl/toolkit/treelistbox.hxx 
b/include/vcl/toolkit/treelistbox.hxx
index da6785679ad5..ecbd489fd853 100644
--- a/include/vcl/toolkit/treelistbox.hxx
+++ b/include/vcl/toolkit/treelistbox.hxx
@@ -229,7 +229,7 @@ class VCL_DLLPUBLIC SvTreeListBox
 sal_Int8mnDragAction;
 
 SvTreeListEntry*pEdEntry;
-SvLBoxItem* pEdItem;
+SvLBoxString*   pEdItem;
 
 rtl::Reference m_xTransferHelper;
 
diff --git a/vcl/source/treelist/treelistbox.cxx 
b/vcl/source/treelist/treelistbox.cxx
index e944214c5b88..b97abc3b 100644
--- a/vcl/source/treelist/treelistbox.cxx
+++ b/vcl/source/treelist/treelistbox.cxx
@@ -2459,7 +2459,7 @@ void SvTreeListBox::EditedText( const OUString& rStr )
 {
 if( EditedEntry( pEdEntry, rStr ) )
 {
-static_cast(pEdItem)->SetText( rStr );
+pEdItem->SetText( rStr );
 pModel->InvalidateEntry( pEdEntry );
 }
 if( GetSelectionCount() == 0 )


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

2023-11-07 Thread Noel Grandin (via logerrit)
 vbahelper/source/vbahelper/vbashaperange.cxx |8 +---
 vbahelper/source/vbahelper/vbashapes.cxx |6 +++---
 2 files changed, 8 insertions(+), 6 deletions(-)

New commits:
commit cc772833a1166151bac2911037659582df655bcf
Author: Noel Grandin 
AuthorDate: Tue Nov 7 14:42:15 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 08:17:55 2023 +0100

loplugin:fieldcast in VbShapeRangeEnumHelper

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

diff --git a/vbahelper/source/vbahelper/vbashaperange.cxx 
b/vbahelper/source/vbahelper/vbashaperange.cxx
index 4dd837259bf7..73af31d69145 100644
--- a/vbahelper/source/vbahelper/vbashaperange.cxx
+++ b/vbahelper/source/vbahelper/vbashaperange.cxx
@@ -26,6 +26,8 @@
 #include 
 #include 
 #include 
+#include 
+
 using namespace ::ooo::vba;
 using namespace ::com::sun::star;
 
@@ -33,18 +35,18 @@ namespace {
 
 class VbShapeRangeEnumHelper : public EnumerationHelper_BASE
 {
-uno::Reference< XCollection > m_xParent;
+rtl::Reference< ScVbaShapeRange > m_xParent;
 uno::Reference m_xIndexAccess;
 sal_Int32 nIndex;
 public:
-VbShapeRangeEnumHelper( uno::Reference< XCollection > xParent, 
uno::Reference< container::XIndexAccess > xIndexAccess ) : m_xParent(std::move( 
xParent )), m_xIndexAccess(std::move( xIndexAccess )), nIndex( 0 ) {}
+VbShapeRangeEnumHelper( rtl::Reference< ScVbaShapeRange > xParent, 
uno::Reference< container::XIndexAccess > xIndexAccess ) : m_xParent(std::move( 
xParent )), m_xIndexAccess(std::move( xIndexAccess )), nIndex( 0 ) {}
 virtual sal_Bool SAL_CALL hasMoreElements(  ) override
 {
 return ( nIndex < m_xIndexAccess->getCount() );
 }
 virtual uno::Any SAL_CALL nextElement(  ) override
 {
-ScVbaShapeRange* pCollectionImpl = dynamic_cast< 
ScVbaShapeRange* >(m_xParent.get());
+ScVbaShapeRange* pCollectionImpl = m_xParent.get();
 if ( pCollectionImpl && hasMoreElements() )
 return pCollectionImpl->createCollectionObject(  
m_xIndexAccess->getByIndex( nIndex++ ) );
 throw container::NoSuchElementException();
commit d31bb122bc5d7ca75a02d659bcf9dee3d429a165
Author: Noel Grandin 
AuthorDate: Tue Nov 7 14:41:18 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 08:17:48 2023 +0100

loplugin:fieldcast in VbShapeEnumHelper

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

diff --git a/vbahelper/source/vbahelper/vbashapes.cxx 
b/vbahelper/source/vbahelper/vbashapes.cxx
index 02630a75c520..e96cda4ac926 100644
--- a/vbahelper/source/vbahelper/vbashapes.cxx
+++ b/vbahelper/source/vbahelper/vbashapes.cxx
@@ -52,18 +52,18 @@ namespace {
 
 class VbShapeEnumHelper : public EnumerationHelper_BASE
 {
-uno::Reference m_xParent;
+rtl::Reference m_xParent;
 uno::Reference m_xIndexAccess;
 sal_Int32 nIndex;
 public:
-VbShapeEnumHelper( uno::Reference< msforms::XShapes > xParent, 
uno::Reference< container::XIndexAccess > xIndexAccess ) : m_xParent(std::move( 
xParent )), m_xIndexAccess(std::move( xIndexAccess )), nIndex( 0 ) {}
+VbShapeEnumHelper( rtl::Reference< ScVbaShapes > xParent, uno::Reference< 
container::XIndexAccess > xIndexAccess ) : m_xParent(std::move( xParent )), 
m_xIndexAccess(std::move( xIndexAccess )), nIndex( 0 ) {}
 virtual sal_Bool SAL_CALL hasMoreElements(  ) override
 {
 return ( nIndex < m_xIndexAccess->getCount() );
 }
 virtual uno::Any SAL_CALL nextElement(  ) override
 {
-ScVbaShapes* pShapes = dynamic_cast< ScVbaShapes* 
>(m_xParent.get());
+ScVbaShapes* pShapes = m_xParent.get();
 if ( pShapes && hasMoreElements() )
 return pShapes->createCollectionObject(  
m_xIndexAccess->getByIndex( nIndex++ ) );
 throw container::NoSuchElementException();


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - include/tools sfx2/source tools/source

2023-11-07 Thread Caolán McNamara (via logerrit)
 include/tools/urlobj.hxx |5 +
 sfx2/source/doc/iframe.cxx   |6 +-
 tools/source/fsys/urlobj.cxx |8 
 3 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit bd9263bb6d0222e89e44fbff51d0d094dad8e281
Author: Caolán McNamara 
AuthorDate: Fri Nov 3 17:14:26 2023 +
Commit: Miklos Vajna 
CommitDate: Wed Nov 8 08:08:43 2023 +0100

add some protocols that don't make sense as floating frame targets

Change-Id: Id900a5eef248731d1184c1df501a2cf7a2de7eb9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158910
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
(cherry picked from commit 11ebdfef16501c6d35c3e3d0d62507f706557c71)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158901
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 
(cherry picked from commit ca5225ae4a53a8e99640cfa9440e112f3b39b11b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159033

diff --git a/include/tools/urlobj.hxx b/include/tools/urlobj.hxx
index 82b30fe2676b..07e31409c0e9 100644
--- a/include/tools/urlobj.hxx
+++ b/include/tools/urlobj.hxx
@@ -915,6 +915,11 @@ public:
 
 void changeScheme(INetProtocol eTargetScheme);
 
+// INetProtocol::Macro, INetProtocol::Uno, INetProtocol::Slot,
+// vnd.sun.star.script, etc. All the types of URLs which shouldn't
+// be accepted from an outside controlled source
+bool IsExoticProtocol() const;
+
 private:
 // General Structure:
 
diff --git a/sfx2/source/doc/iframe.cxx b/sfx2/source/doc/iframe.cxx
index 08dfee998c6d..23d6208d4d1c 100644
--- a/sfx2/source/doc/iframe.cxx
+++ b/sfx2/source/doc/iframe.cxx
@@ -18,6 +18,7 @@
  */
 
 #include 
+#include 
 
 #include 
 #include 
@@ -167,8 +168,11 @@ sal_Bool SAL_CALL IFrameObject::load(
 xTrans->parseStrict( aTargetURL );
 
 INetURLObject aURLObject(aTargetURL.Complete);
-if (aURLObject.GetProtocol() == INetProtocol::Macro || 
aURLObject.isSchemeEqualTo(u"vnd.sun.star.script"))
+if (aURLObject.IsExoticProtocol())
+{
+SAL_WARN("sfx", "IFrameObject::load ignoring: " << 
aTargetURL.Complete);
 return false;
+}
 
 uno::Reference xParentFrame = 
xFrame->getCreator();
 SfxObjectShell* pDoc = SfxMacroLoader::GetObjectShell(xParentFrame);
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index 7b86fe0f5261..187190b0dfe3 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -4829,4 +4829,12 @@ OUString INetURLObject::CutExtension()
 ? aTheExtension : OUString();
 }
 
+bool INetURLObject::IsExoticProtocol() const
+{
+return m_eScheme == INetProtocol::Slot ||
+   m_eScheme == INetProtocol::Macro ||
+   m_eScheme == INetProtocol::Uno ||
+   isSchemeEqualTo(u"vnd.sun.star.script");
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


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

2023-11-07 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/mailmerge/mailmerge.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit ea7233bc1174b781c809db55d2c55af0011ce0e0
Author: Miklos Vajna 
AuthorDate: Tue Nov 7 20:11:43 2023 +0100
Commit: Miklos Vajna 
CommitDate: Wed Nov 8 08:08:11 2023 +0100

CppunitTest_sw_mailmerge: clean up not needed preTest()

1) preTest() retuns a unique_ptr which has to be hold till the test
   runs, which didn't happen here.

2) This was just copy probably, since preTest() is not overwritten
   in this suite.

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

diff --git a/sw/qa/extras/mailmerge/mailmerge.cxx 
b/sw/qa/extras/mailmerge/mailmerge.cxx
index 2b0881850207..5cec05290685 100644
--- a/sw/qa/extras/mailmerge/mailmerge.cxx
+++ b/sw/qa/extras/mailmerge/mailmerge.cxx
@@ -82,7 +82,6 @@ public:
 {
 maMMtestFilename = filename;
 header();
-preTest(filename);
 
 utl::TempFileNamed aTempDir(nullptr, true);
 aTempDir.EnableKillingFile();


[Libreoffice-bugs] [Bug 158090] No way to run signed macros from unsigned document in Medium security level

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158090

Mike Kaganski  changed:

   What|Removed |Added

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

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

This change fixed "Document is NOT signed, macro is signed trusted" and
"Document is NOT signed, macro is signed untrusted" cases from comment 1.
Specifically, with it:

* Document is NOT signed, macro is signed trusted:   allow silently
unconditionally
* Document is NOT signed, macro is signed untrusted: ask and follow the choice

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

[Libreoffice-bugs] [Bug 158099] Auto numbering needs more options for RTL languages to change direction of numbers

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158099

--- Comment #6 from M.Mahdi  ---
(In reply to ajlittoz from comment #4)

Thanks for your informing about how the system works. Now the issue make sense.

> Presently, list styles don't allow to change the intermediate level
> separator which is hard-wired to U+002E FULL STOP. There is no workaround.

> Part of the solution goes through improving list style configuration by
> allowing more control on the intermediate separator. A probably elegant
> solution not involving scanning the item number could be to add U+200C ZERO
> WIDTH NON-JOINER before and after the intermediate separator (and perhaps
> also before and after separators). Should this be done automatically or left
> under user control (for more fancy formatting)?

And it's another feature request! But not in this place. I should search about
previous related requests first
According to your comment, the main issue is intermediate separators that if it
could be U+2013 EN DASH character, then the system don't change the direction
of numbers. Anyway, I tested U+200C ZERO WIDTH NON-JOINER in a regular RTL text
and in this case it did nothing and the issue is still there. If I write
Persian letters as separator between numbers, then the whole numbering will be
RTL. Characters like zwnj or U+002D HYPHEN-MINUS not work.

> A possible ugly fix would be to scan the numeric string for multiple decimal
> separators. If more than one is found, the string is split; then numbers and
> separators are individually sent to output.
> 
> However this does not solve the case of a level-2 numbering of the form 2.1
> without final dot.

Nope, this solution isn't good. In some situations like versioning it make
wrong text.

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

[Libreoffice-bugs] [Bug 33614] Impress [FILEOPEN] did not import double lines from a Powerpoint .ppt correctly.

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33614

Buovjaga  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #24 from Buovjaga  ---
Setting to needinfo risks this being automatically closed, so let's stay with
new status.

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

[Libreoffice-bugs] [Bug 158099] Auto numbering needs more options for RTL languages to change direction of numbers

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158099

--- Comment #5 from M.Mahdi  ---
(In reply to Hossein from comment #3)
> @M.Mahdi:
> Can you provide an example, in which in MS Word the rendering is as you
> want, but the same file renders incorrectly in LibreOffice Writer?

Unfortunately, I haven't MS Office and can't test it.

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

[Libreoffice-bugs] [Bug 133020] Problems rendering SVG from Draw.io: HTML inside foreignObject

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133020

Kira Tubo  changed:

   What|Removed |Added

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

--- Comment #25 from Kira Tubo  ---
I get the same results as Piotr in Comment 24. Imported SVG looks more or less
like Telesto's image in Comment 9.

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 676e0527d2f31556eccae314fbb12ce204f02ec7
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

Interestingly, in older versions, like 5.4 and 4.0, the imported SVG is
editable, though there are a few additional issues, like missing text and
background colors in the shapes.

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

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

--- Comment #27 from Chris Sherlock  ---
Zhang Qide, it looks like the spacing between the characters is too much. Is
this the case?

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

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

2023-11-07 Thread Noel Grandin (via logerrit)
 vcl/inc/animate/AnimationRenderer.hxx |2 +-
 vcl/source/animate/Animation.cxx  |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c71edc1f2e8226d4ac0f06a87f4f7f7107158f82
Author: Noel Grandin 
AuthorDate: Tue Nov 7 14:40:22 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:50:46 2023 +0100

loplugin:fieldcast in AnimationData

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

diff --git a/vcl/inc/animate/AnimationRenderer.hxx 
b/vcl/inc/animate/AnimationRenderer.hxx
index f75b88e29541..bc86e65e3f46 100644
--- a/vcl/inc/animate/AnimationRenderer.hxx
+++ b/vcl/inc/animate/AnimationRenderer.hxx
@@ -33,7 +33,7 @@ struct AnimationData
 Point maOriginStartPt;
 Size maStartSize;
 VclPtr mpRenderContext;
-void* mpRendererData;
+AnimationRenderer* mpRendererData;
 tools::Long mnRendererId;
 bool mbIsPaused;
 
diff --git a/vcl/source/animate/Animation.cxx b/vcl/source/animate/Animation.cxx
index 5f2b8ce153ee..9063b9846a24 100644
--- a/vcl/source/animate/Animation.cxx
+++ b/vcl/source/animate/Animation.cxx
@@ -310,7 +310,7 @@ void Animation::PopulateRenderers()
 }
 else
 {
-pRenderer = 
static_cast(pDataItem->mpRendererData);
+pRenderer = pDataItem->mpRendererData;
 }
 
 pRenderer->pause(pDataItem->mbIsPaused);


[Libreoffice-commits] core.git: 2 commits - compilerplugins/clang solenv/CompilerTest_compilerplugins_clang.mk vcl/source xmlsecurity/source

2023-11-07 Thread Noel Grandin (via logerrit)
 compilerplugins/clang/fieldcast.cxx   |  199 +
 compilerplugins/clang/fieldcast.py|   71 
 compilerplugins/clang/fieldcast.results   | 1038 ++
 compilerplugins/clang/test/fieldcast.cxx  |   34 
 solenv/CompilerTest_compilerplugins_clang.mk  |1 
 vcl/source/window/menu.cxx|4 
 vcl/source/window/menubarwindow.cxx   |2 
 vcl/source/window/menufloatingwindow.cxx  |2 
 vcl/source/window/menuitemlist.hxx|2 
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |   12 
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx |2 
 11 files changed, 1355 insertions(+), 12 deletions(-)

New commits:
commit 3b8e58b3bea6fd67cb7c5dc25115a32ca6975117
Author: Noel Grandin 
AuthorDate: Tue Nov 7 13:29:51 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:50:35 2023 +0100

loplugin:fieldcast in vcl

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

diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 60673fbe434e..3a66b962ebd6 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -747,7 +747,7 @@ void Menu::SetPopupMenu( sal_uInt16 nItemId, PopupMenu* 
pMenu )
 return;
 
 // same menu, nothing to do
-if ( static_cast(pData->pSubMenu.get()) == pMenu )
+if ( pData->pSubMenu.get() == pMenu )
 return;
 
 // remove old menu
@@ -779,7 +779,7 @@ PopupMenu* Menu::GetPopupMenu( sal_uInt16 nItemId ) const
 MenuItemData* pData = pItemList->GetData( nItemId );
 
 if ( pData )
-return static_cast(pData->pSubMenu.get());
+return pData->pSubMenu.get();
 else
 return nullptr;
 }
diff --git a/vcl/source/window/menubarwindow.cxx 
b/vcl/source/window/menubarwindow.cxx
index e77b600ea445..c52b0cf6787a 100644
--- a/vcl/source/window/menubarwindow.cxx
+++ b/vcl/source/window/menubarwindow.cxx
@@ -287,7 +287,7 @@ void MenuBarWindow::ImplCreatePopup( bool bPreSelectFirst )
  ( pItemData->pSubMenu != m_pActivePopup )) )
 return;
 
-m_pActivePopup = static_cast(pItemData->pSubMenu.get());
+m_pActivePopup = pItemData->pSubMenu.get();
 tools::Long nX = 0;
 MenuItemData* pData = nullptr;
 for ( sal_uLong n = 0; n < m_nHighlightedItem; n++ )
diff --git a/vcl/source/window/menufloatingwindow.cxx 
b/vcl/source/window/menufloatingwindow.cxx
index 3fb13ee1deee..95a0d3f4d02a 100644
--- a/vcl/source/window/menufloatingwindow.cxx
+++ b/vcl/source/window/menufloatingwindow.cxx
@@ -336,7 +336,7 @@ IMPL_LINK( MenuFloatingWindow, HighlightChanged, Timer*, 
pTimer, void )
 if ( !(pItemData->bEnabled && pItemData->pSubMenu && 
pItemData->pSubMenu->GetItemCount() && ( pItemData->pSubMenu != pActivePopup )) 
)
 return;
 
-pActivePopup = static_cast(pItemData->pSubMenu.get());
+pActivePopup = pItemData->pSubMenu.get();
 tools::Long nY = nScrollerHeight+ImplGetStartY();
 MenuItemData* pData = nullptr;
 for ( sal_uLong n = 0; n < nHighlightedItem; n++ )
diff --git a/vcl/source/window/menuitemlist.hxx 
b/vcl/source/window/menuitemlist.hxx
index 4cd89b478577..fc25a402922d 100644
--- a/vcl/source/window/menuitemlist.hxx
+++ b/vcl/source/window/menuitemlist.hxx
@@ -35,7 +35,7 @@ struct MenuItemData
 sal_uInt16  nId;// SV Id
 MenuItemTypeeType;  // MenuItem-Type
 MenuItemBitsnBits;  // MenuItem-Bits
-VclPtrpSubMenu;   // Pointer to SubMenu
+VclPtr pSubMenu; // Pointer to SubMenu
 OUStringaText;  // Menu-Text
 SalLayoutGlyphs aTextGlyphs;///< Text layout of aText.
 OUStringaHelpText;  // Help-String
commit 74f884d48ed27e1ce861620a57802ad156a86d15
Author: Noel Grandin 
AuthorDate: Tue Nov 7 12:50:17 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:50:24 2023 +0100

new loplugin:fieldcast

new plugin to look for class fields that are always cast to some
subtype, which indicates that they should probably just be declared to
be that subtype.

Perform one of the suggested improvements in xmlsecurity/

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

diff --git a/compilerplugins/clang/fieldcast.cxx 
b/compilerplugins/clang/fieldcast.cxx
new file mode 100644
index ..7f2b728e8e22
--- /dev/null
+++ b/compilerplugins/clang/fieldcast.cxx
@@ -0,0 +1,199 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * 

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

--- Comment #26 from Chris Sherlock  ---
Created attachment 190713
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190713=edit
Second screenshot showing LO vs Word

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

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

--- Comment #25 from Chris Sherlock  ---
Created attachment 190712
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190712=edit
First screenshot showing LO vs Word

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

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

--- Comment #24 from Chris Sherlock  ---
Created attachment 190711
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190711=edit
further test document

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

[Libreoffice-bugs] [Bug 149089] FILEOPEN: docx: get extra mini space between Chinese character when open docx file

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149089

Chris Sherlock  changed:

   What|Removed |Added

 CC||chris.sherloc...@gmail.com

--- Comment #23 from Chris Sherlock  ---
Created attachment 190710
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190710=edit
example PDF

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

[Libreoffice-bugs] [Bug 130664] Bulleted entries with special bullets aren't exported properly to SVG

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130664

Kira Tubo  changed:

   What|Removed |Added

Version|7.0.0.0.alpha0+ |5.4 all versions

--- Comment #6 from Kira Tubo  ---
Also reproduced in 5.4 as described in Comment 3

Version: 5.4.0.0.alpha1 (x64)
Build ID: 0b9f9bef65bb21ebb6a64aafad448f7f62dc824a
CPU threads: 6; OS: Windows 6.19; UI render: GL; 
Locale: en-US (en_US); Calc: CL

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

[Libreoffice-bugs] [Bug 130664] Bulleted entries with special bullets aren't exported properly to SVG

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130664

Kira Tubo  changed:

   What|Removed |Added

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

--- Comment #5 from Kira Tubo  ---
Created attachment 190709
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190709=edit
Export slide 7 to SVG with 24.2 on Windwos

Reproduced as described in Comment 3

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 676e0527d2f31556eccae314fbb12ce204f02ec7
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 155839] When propmpted about missing hyphenation data - I should be offered a download/package install link

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155839

--- Comment #21 from Rene Engelhard  ---
> 1. You're saying that your position is different than what we do in other 
> cases. 

No, I am not. Actually it's consistent with the other cases. That's why I
disable this. No install. Be it fonts or hyphenation patterns or whatever. Just
that these were added and I needed too patch it out (actually a version of the
patch earlier was bigger (before all that was in a config):
https://salsa.debian.org/libreoffice-team/libreoffice/libreoffice/-/commit/175015a30228ef08f1c98db513d8fdd80bf6168f

> 2. Suppose I adopt your position and believe that LO shouldn't 
> download/install stuff. If that's the case - what's the justification for 
> these patterns not being part of the LO download (Windows installer / 
> set-of-DEB/RPM packages)?

Thex *are* part of it. TTBOMK it includes hyphenation patterns. If people don't
install them Just not everything else on the net which may be provided for
it.
And actually I believe LO also is not a "let's include everything you find on
the net so as people might deem it useful" conglomeration.

(And there is https://packages.debian.org/search?keywords=hyphen- in Debian
proper)

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

[Libreoffice-bugs] [Bug 117462] FORMATING: Rendering of svg file (LO-Logo) is incorrect and corrupt after rotation

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117462

Kira Tubo  changed:

   What|Removed |Added

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

--- Comment #19 from Kira Tubo  ---
Created attachment 190708
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190708=edit
24.2 on windows

Reproduced on 24.2 for Windows

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 676e0527d2f31556eccae314fbb12ce204f02ec7
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-commits] core.git: 2 commits - vcl/inc vcl/source vcl/unx

2023-11-07 Thread Noel Grandin (via logerrit)
 vcl/inc/unx/cupsmgr.hxx |4 +++-
 vcl/source/window/menubarwindow.cxx |4 ++--
 vcl/source/window/menubarwindow.hxx |2 +-
 vcl/unx/generic/printer/cupsmgr.cxx |   12 ++--
 4 files changed, 12 insertions(+), 10 deletions(-)

New commits:
commit c049ac6503c0f0f6bb7170b68c19ccb400c525f7
Author: Noel Grandin 
AuthorDate: Tue Nov 7 13:48:52 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:02:12 2023 +0100

loplugin:fieldcast in CUPSManager

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

diff --git a/vcl/inc/unx/cupsmgr.hxx b/vcl/inc/unx/cupsmgr.hxx
index 36d837d558b7..096efdea6e77 100644
--- a/vcl/inc/unx/cupsmgr.hxx
+++ b/vcl/inc/unx/cupsmgr.hxx
@@ -24,6 +24,8 @@
 #include 
 #include 
 
+class cups_dest_s;
+
 namespace psp
 {
 
@@ -39,7 +41,7 @@ class CUPSManager final : public PrinterInfoManager
 {
 std::unordered_map< FILE*, OString, FPtrHash > m_aSpoolFiles;
 intm_nDests;
-void*  m_pDests;
+cups_dest_s*   m_pDests;
 bool   m_bNewDests;
 std::unordered_map< OUString, int >  m_aCUPSDestMap;
 
diff --git a/vcl/unx/generic/printer/cupsmgr.cxx 
b/vcl/unx/generic/printer/cupsmgr.cxx
index b81f630cd788..1fab7a172353 100644
--- a/vcl/unx/generic/printer/cupsmgr.cxx
+++ b/vcl/unx/generic/printer/cupsmgr.cxx
@@ -214,7 +214,7 @@ CUPSManager::~CUPSManager()
 }
 
 if (m_nDests && m_pDests)
-cupsFreeDests( m_nDests, static_cast(m_pDests) );
+cupsFreeDests( m_nDests, m_pDests );
 }
 
 void CUPSManager::runDestThread( void* pThis )
@@ -325,7 +325,7 @@ void CUPSManager::initialize()
 // introduced in dests with 1.2
 // this is needed to check for %%IncludeFeature support
 // (#i65684#, #i65491#)
-cups_dest_t* pDest = static_cast(m_pDests);
+cups_dest_t* pDest = m_pDests;
 
 rtl_TextEncoding aEncoding = osl_getThreadTextEncoding();
 int nPrinter = m_nDests;
@@ -338,7 +338,7 @@ void CUPSManager::initialize()
 // with the same name as a CUPS printer, overwrite it
 while( nPrinter-- )
 {
-pDest = static_cast(m_pDests)+nPrinter;
+pDest = m_pDests+nPrinter;
 OUString aPrinterName = OStringToOUString( pDest->name, aEncoding );
 if( pDest->instance && *pDest->instance )
 {
@@ -470,7 +470,7 @@ const PPDParser* CUPSManager::createCUPSParser( const 
OUString& rPrinter )
 m_aCUPSDestMap.find( aPrinter );
 if( dest_it != m_aCUPSDestMap.end() )
 {
-cups_dest_t* pDest = static_cast(m_pDests) + 
dest_it->second;
+cups_dest_t* pDest = m_pDests + dest_it->second;
 OString aPPDFile = threadedCupsGetPPD( pDest->name );
 SAL_INFO("vcl.unx.print",
 "PPD for " << aPrinter << " is " << aPPDFile);
@@ -890,7 +890,7 @@ bool CUPSManager::endSpool( const OUString& rPrintername, 
const OUString& rJobTi
 sJobName = OUStringToOString(rFaxNumber, aEnc);
 }
 
-cups_dest_t* pDest = static_cast(m_pDests) + 
dest_it->second;
+cups_dest_t* pDest = m_pDests + dest_it->second;
 nJobID = cupsPrintFile(pDest->name,
 it->second.getStr(),
 sJobName.getStr(),
@@ -943,7 +943,7 @@ bool CUPSManager::checkPrintersChanged( bool bWait )
 // there is no way to query CUPS whether the printer list has 
changed
 // so get the dest list anew
 if( m_nDests && m_pDests )
-cupsFreeDests( m_nDests, static_cast(m_pDests) );
+cupsFreeDests( m_nDests, m_pDests );
 m_nDests = 0;
 m_pDests = nullptr;
 runDests();
commit 1f27c361531af17a13510deb86f0b8917d4d4276
Author: Noel Grandin 
AuthorDate: Tue Nov 7 13:31:14 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:02:00 2023 +0100

loplugin:fieldcast in MenuBarWindow

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

diff --git a/vcl/source/window/menubarwindow.cxx 
b/vcl/source/window/menubarwindow.cxx
index 89e6b9246148..e77b600ea445 100644
--- a/vcl/source/window/menubarwindow.cxx
+++ b/vcl/source/window/menubarwindow.cxx
@@ -224,7 +224,7 @@ IMPL_LINK_NOARG(MenuBarWindow, CloseHdl, ToolBox *, void)
 // #i106052# call close hdl asynchronously to ease handler 
implementation
 // this avoids still being in the handler while the DecoToolBox already
 // gets destroyed
-
Application::PostUserEvent(static_cast(m_pMenu.get())->GetCloseButtonClickHdl());
+

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

2023-11-07 Thread Noel Grandin (via logerrit)
 vcl/inc/window.h   |2 +-
 vcl/source/window/dlgctrl.cxx  |8 
 vcl/source/window/window.cxx   |1 +
 xmlscript/source/xmldlg_imexp/imp_share.hxx|4 ++--
 xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx |8 +++-
 5 files changed, 11 insertions(+), 12 deletions(-)

New commits:
commit 1356892777b89b09ad7695e53d9e5ef1fca4f934
Author: Noel Grandin 
AuthorDate: Tue Nov 7 12:59:44 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:01:50 2023 +0100

loplugin:fieldcast in xmlscript

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

diff --git a/xmlscript/source/xmldlg_imexp/imp_share.hxx 
b/xmlscript/source/xmldlg_imexp/imp_share.hxx
index c05460ddf274..9eec588c48f3 100644
--- a/xmlscript/source/xmldlg_imexp/imp_share.hxx
+++ b/xmlscript/source/xmldlg_imexp/imp_share.hxx
@@ -586,7 +586,7 @@ public:
 class ComboBoxElement
 : public ControlElement
 {
-css::uno::Reference< css::xml::input::XElement > _popup;
+rtl::Reference< MenuPopupElement > _popup;
 public:
 virtual css::uno::Reference< css::xml::input::XElement >
 SAL_CALL startChildElement(
@@ -605,7 +605,7 @@ public:
 class MenuListElement
 : public ControlElement
 {
-css::uno::Reference< css::xml::input::XElement > _popup;
+rtl::Reference< MenuPopupElement > _popup;
 public:
 virtual css::uno::Reference< css::xml::input::XElement >
 SAL_CALL startChildElement(
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx 
b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
index 03344a5b7c4a..e64e60eabb3d 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
@@ -1371,11 +1371,10 @@ void MenuListElement::endElement()
 bool bHasSrcRange = ctx.importDataAwareProperty( "source-cell-range" , 
_xAttributes );
 if (_popup.is())
 {
-MenuPopupElement * p = static_cast< MenuPopupElement * >( _popup.get() 
);
 if ( !bHasSrcRange )
-xControlModel->setPropertyValue( "StringItemList", Any( 
p->getItemValues() ) );
+xControlModel->setPropertyValue( "StringItemList", Any( 
_popup->getItemValues() ) );
 if ( !bHasLinkedCell )
-xControlModel->setPropertyValue( "SelectedItems", Any( 
p->getSelectedItems() ) );
+xControlModel->setPropertyValue( "SelectedItems", Any( 
_popup->getSelectedItems() ) );
 
 }
 ctx.importEvents( _events );
@@ -1441,8 +1440,7 @@ void ComboBoxElement::endElement()
 bool bHasSrcRange = ctx.importDataAwareProperty( "source-cell-range" , 
_xAttributes );
 if (_popup.is() && !bHasSrcRange )
 {
-MenuPopupElement * p = static_cast< MenuPopupElement * >( _popup.get() 
);
-xControlModel->setPropertyValue( "StringItemList", Any( 
p->getItemValues() ) );
+xControlModel->setPropertyValue( "StringItemList", Any( 
_popup->getItemValues() ) );
 }
 
 ctx.importEvents( _events );
commit 1d1156b70d74033adecdb616c8276288785b84ac
Author: Noel Grandin 
AuthorDate: Tue Nov 7 13:38:41 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Nov 8 06:01:39 2023 +0100

loplugin:fieldcast in WindowImpl

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

diff --git a/vcl/inc/window.h b/vcl/inc/window.h
index 7ddbb340c0fe..199fed977c4c 100644
--- a/vcl/inc/window.h
+++ b/vcl/inc/window.h
@@ -242,7 +242,7 @@ public:
 VclPtr mpNext;
 VclPtr mpNextOverlap;
 VclPtr mpLastFocusWindow;
-VclPtr mpDlgCtrlDownWindow;
+VclPtr mpDlgCtrlDownWindow;
 std::vector> maEventListeners;
 int mnEventListenersIteratingCount;
 std::set> maEventListenersDeleted;
diff --git a/vcl/source/window/dlgctrl.cxx b/vcl/source/window/dlgctrl.cxx
index 8db4402d9ef8..adf416b21769 100644
--- a/vcl/source/window/dlgctrl.cxx
+++ b/vcl/source/window/dlgctrl.cxx
@@ -754,7 +754,7 @@ bool Window::ImplDlgCtrl( const KeyEvent& rKEvt, bool 
bKeyInput )
 {
 if ( mpWindowImpl->mpDlgCtrlDownWindow.get() != pButtonWindow )
 {
-
static_cast(mpWindowImpl->mpDlgCtrlDownWindow.get())->SetPressed( 
false );
+mpWindowImpl->mpDlgCtrlDownWindow->SetPressed( false );
 mpWindowImpl->mpDlgCtrlDownWindow = nullptr;
 return true;
 }
@@ -965,12 +965,12 @@ bool Window::ImplDlgCtrl( const KeyEvent& rKEvt, bool 
bKeyInput )
 {
 if ( mpWindowImpl->mpDlgCtrlDownWindow && 
(mpWindowImpl->mpDlgCtrlDownWindow.get() != pButtonWindow) )
 {
-
static_cast(mpWindowImpl->mpDlgCtrlDownWindow.get())->SetPressed( 
false );
+

[Libreoffice-bugs] [Bug 139993] Extreme lagging with SVG's containing gradients

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139993

Kira Tubo  changed:

   What|Removed |Added

 CC||kira.t...@gmail.com
 OS|All |Linux (All)

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

[Libreoffice-bugs] [Bug 141842] Undo stack cleared when editing text boxes in multiple windows at the same time in Impress

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141842

Aron Budea  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #3 from Aron Budea  ---
Thanks for checking, the video is H.264, and works fine here.

However, the bug indeed seems gone, closing as WFM.
Interestingly, the undo steps after finalizing the editing the first time (3rd
steps) are slightly different, the video at 0:24 shows: Insert Slide / Insert /
Edit text of Outline Text.
In current version: Insert Slide / Edit text of Outline Text.

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 41d9584179ef7b4e18eda47c2c0a955df8c087a5
CPU threads: 16; OS: Linux 6.2; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 141843] [META] Bugs when file opened in multiple windows

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141843
Bug 141843 depends on bug 141842, which changed state.

Bug 141842 Summary: Undo stack cleared when editing text boxes in multiple 
windows at the same time in Impress
https://bugs.documentfoundation.org/show_bug.cgi?id=141842

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 105948] [META] Undo/Redo bugs and enhancements

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948
Bug 105948 depends on bug 141842, which changed state.

Bug 141842 Summary: Undo stack cleared when editing text boxes in multiple 
windows at the same time in Impress
https://bugs.documentfoundation.org/show_bug.cgi?id=141842

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 146319] [SVG] load/export of W3C SVG example car.svg is slow

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146319

Kira Tubo  changed:

   What|Removed |Added

 CC||kira.t...@gmail.com
 OS|Linux (All) |All

--- Comment #4 from Kira Tubo  ---
On Windows, it seems the problem got worse in the more recent LO builds,
particularly in 7.6 and above. 

LO 7.0.3.1
Open SVG: ~3 seconds in safe mode
Export as PDF: ~20 seconds in safe mode

LO 7.3.3.2
Open SVG: ~9 seconds in safe mode
Export as PDF: ~26 seconds in safe mode

LO 7.5.5.2
Open SVG: ~5-8 seconds in safe mode
Export as PDF: ~15 seconds in safe mode 

LO 7.6.0.3 & 7.6.2.1 & 24.2
Open SVG: ~18-20 seconds in safe mode
Export as PDF: ~28-30 seconds in safe mode

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 676e0527d2f31556eccae314fbb12ce204f02ec7
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

Processor   AMD Ryzen 5 4500U with Radeon Graphics 2.38 GHz
Installed RAM   16.0 GB 
System type 64-bit operating system, x64-based processor

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

[Libreoffice-bugs] [Bug 158097] [EDITING] Anchor marker (icon) on objects obstructs mouse operation

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158097

--- Comment #4 from zzz  ---
  > m.a.riosv 2023-11-07 15:42:34 UTC
  >Maybe you can solve using a bit greater zoom.
That's why I said that there are alternative ways.

  >I have not problem to do the mentioned drag operations.
Strange.
A. On your environment, are the anchor icon and the handle boxes the same sizes
as ScreenshotOfAnchorMark.png ? (at zoom 100%)
B. Did you try to drag the handles which are behind the anchor on object B3: at
the left corners, left edge, top edge, lower edge?
C. Is there any option that switches how the anchor icon grabs focus, and I am
setting it in a wrong mode?

And a more basic question is, why does the icon grab the focus, when it seems
it's doing nothing useful but hindrance? Shouldn't it be designed to not grab
the focus?

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

[Libreoffice-bugs] [Bug 155839] When propmpted about missing hyphenation data - I should be offered a download/package install link

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155839

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 155839] When propmpted about missing hyphenation data - I should be offered a download/package install link

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155839

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

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

[Libreoffice-bugs] [Bug 154749] White space selection after selecting text

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154749

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 144403] FILEOPEN libreoffice crashes when opening/creating new document

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144403

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 154749] White space selection after selecting text

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154749

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

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 144403] FILEOPEN libreoffice crashes when opening/creating new document

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144403

--- Comment #13 from QA Administrators  ---
Dear florian.k2000,

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 155250] Does not print more than first page

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155250

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

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 146806] printing, custom paper size, 2pages in 1, duplicate

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146806

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

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 141842] Undo stack cleared when editing text boxes in multiple windows at the same time in Impress

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141842

--- Comment #2 from QA Administrators  ---
Dear Aron Budea,

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 139449] When signing Libreoffice won't ask for token password

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139449

--- Comment #2 from QA Administrators  ---
Dear 4ae66ceadc,

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 97052] Dialog Designer: Scrolling object properties container also scrolls the preview area

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97052

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

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 61297] UI - Forms incorrectly switching from print to web layout and back

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61297

--- Comment #11 from QA Administrators  ---
Dear Kurt,

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 49059] position information in status bar in TextEdit of draw objects is updated only with large delay

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49059

--- Comment #10 from QA Administrators  ---
Dear Regina Henschel,

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 58818] Shortcut Keys for Resizing Frames and Graphics don't work

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58818

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

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 45393] [sw] printing a Writer/Web document changes layout to "Print layout"

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45393

--- Comment #15 from QA Administrators  ---
Dear Michael Stahl (allotropia),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 45034] Presenter Console: no scrolling with mouse wheel in slide overview possible

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45034

--- Comment #15 from QA Administrators  ---
Dear hdv.jadev,

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 133811] The program does not continue with 'Dim' or 'ReDim' following 'If' in one line statement.

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133811

--- Comment #3 from QA Administrators  ---
Dear Nukool Chompuparn,

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 40027] Data point symbols are wrong in import Excel xls-files

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40027

--- Comment #14 from QA Administrators  ---
Dear Regina Henschel,

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 117790] Caption order, caption positions for Lithuanian language

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117790

--- Comment #23 from QA Administrators  ---
Dear opensuse.lietuviu.kalba,

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 117141] SharePoint directory list in Calc loses all hyperlinks pointing to the files

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117141

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117142] Calc adds a number and "; #" characters to the beginning of the names in SharePoint lists

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117142

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117140] SharePoint directory list in Calc does not contain the files in subdirectories

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117140

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

Re: Import of curved connectors from OOXML

2023-11-07 Thread Regina Henschel

Hi Thorsten, hi Tibor, hi all,

Thorsten Behrens schrieb am 04.11.2023 um 13:52:

Hi Regina,

Regina Henschel wrote:

It is not an ODF problem.


Oh ok - then what I implied, was instead of trying to emulate the
curvedConnector3 connector by mapping it to our existing ones, why not
implement the missing drawingml ones natively?


I have tried some more days to get at least for curvedConnector3 a 
satisfactory approximation, but without success. So it seems we really 
need to have a second way to render curved connectors.


I do not want to replace the current way of the connector path, because 
our path is nicer than the OOOXML way. Our path uses symmetric 
transitions in the Bézier-curve, that is not the case in OOXML.


If we are in running LibreOffice we could distinguish two ways by a new 
constant in enum class SdrCompatibilityFlag, for example. But how to 
save such information to ODF?
Keep path definition as vague as it is now and put the information into 
settings.xml?
Add a new value "curveOOXML" to draw:type (19.229.2) to specify a path 
as in OOXML?


Tibor, you have assigned some connector related bugs to you. Do you have 
already started the work?


Another question is, whether I should continue with my work on 
https://gerrit.libreoffice.org/c/core/+/156629 or postpone it until the 
connector problems are solved? In current state of my patch import uses 
them with default routing.


Kind regards,
Regina





[Libreoffice-bugs] [Bug 33614] Impress [FILEOPEN] did not import double lines from a Powerpoint .ppt correctly.

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33614

Edgar P.  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #23 from Edgar P.  ---
Is there any progress for this bug?

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

[Libreoffice-bugs] [Bug 119257] SVG export of non-horizontal measure shape has displaces dimension value text

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119257

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 122203] FILESAVE: Rotated text with special char 'middledot' in exported SVG file is corrupted

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122203

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 119393] Draw - SVG Export of rotated textbox causes multiple lines of text to be displayed on top of each other.

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119393

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||filter:svg
 CC||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||2203,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||9257

--- Comment #18 from Stéphane Guillou (stragu) 
 ---
same in:

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

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

[Libreoffice-bugs] [Bug 61558] High CPU load when scrolling a document with many comments

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61558

--- Comment #63 from Justin L  ---
repro 24.2+
Memory climbs (slowly, but constantly) when holding page-up to scroll.
Scrolling is definitely not fast.

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

[Libreoffice-bugs] [Bug 156915] Cannot access document themes option using tabbed UI

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156915

--- Comment #6 from Justin L  ---
(In reply to Timur from comment #4)
> If those exist in Classic, they should also be in Tabbed. 
No, Notebookbar is much more space constrained than Classic. Only useful things
should be on the Notebookbar.

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

[Libreoffice-bugs] [Bug 156915] Cannot access document themes option using tabbed UI

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156915

--- Comment #5 from Justin L  ---
(In reply to Timur from comment #4)
> Calc has Theme button in Layout. 
That is .uno:ChooseDesign, not ThemeDialog.

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

[Libreoffice-bugs] [Bug 157809] the MSI archive contains all translations and all language dictionaries

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157809

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||cl...@documentfoundation.or
   ||g,
   ||stephane.guillou@libreoffic
   ||e.org

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
I agree with "won't fix" and would also suggest in-house custom installers or
contracting someone to tailor that for you.
Cloph, do you agree?

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

[Libreoffice-bugs] [Bug 149483] Copy/Paste of partial cell contents string with hyperlink in recent versions, string with link appears _twice_

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149483

--- Comment #6 from Justin L  ---
We don't have much to work with in exportTextRangeEnumeration
-just some range properties with TextPortionType == TextField
-an XTextRange that can getString.

In the 6 "" 6 case the length is zero, but in the 5 "\x001" 6 case it is two,
or "is". So what happens if the URL is empty? Probably a hacky solution would
be to avoid exporting hyperlinks that are have an empty XTextRange.

But I think I'll just leave this bug for a UNO expert, so they can fix whatever
fundamental problem underlies this.

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

[Libreoffice-bugs] [Bug 157911] Wrong borders for tables splitted in multiple pages

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157911

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Ever confirmed|0   |1
 Blocks||107701
 Status|UNCONFIRMED |NEW
 OS|Windows (All)   |All
   Keywords||bibisectRequest, regression

--- Comment #8 from Stéphane Guillou (stragu) 
 ---
With attachment 190661, reproduced as in screenshot attachment 190401 in:

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

and recent trunk build:

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

But not in 7.5:

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

-> regression.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 107701] [META] Table border bugs and enhancements

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107701

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||157911


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=157911
[Bug 157911] Wrong borders for tables splitted in multiple pages
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149483] Copy/Paste of partial cell contents string with hyperlink in recent versions, string with link appears _twice_

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149483

--- Comment #5 from Justin L  ---
Debug suggests that the ODS FLAT TEXT created has two a href= entries?

sax/source/fastparser/fastparser.cxx:332: ::callbackStartElement[body]
ax/source/fastparser/fastparser.cxx:332: ::callbackStartElement[p]
sax/source/fastparser/fastparser.cxx:332: ::callbackStartElement[a]
xmloff/source/text/txtfldi.cxx:2885:
XMLUrlFieldImportContext::ProcessAttribute[https://bugs.documentfoundation.org/show_bug.cgi?id=115317]
Token[459717][href]
xmloff/source/text/txtfldi.cxx:2885:
XMLUrlFieldImportContext::ProcessAttribute[simple]
Token[460728][type]\xmloff/source/text/txtfldi.cxx:2898: unknown attribute
http://www.w3.org/1999/xlink xlink:type=simple
sax/source/fastparser/fastparser.cxx:332: ::callbackStartElement[a]
xmloff/source/text/txtfldi.cxx:2885:
XMLUrlFieldImportContext::ProcessAttribute[https://bugs.documentfoundation.org/show_bug.cgi?id=115317]
Token[459717][href]
xmloff/source/text/txtfldi.cxx:2885:
XMLUrlFieldImportContext::ProcessAttribute[simple] Token[460728][type]
xmloff/source/text/txtfldi.cxx:2898: unknown attribute
http://www.w3.org/1999/xlink xlink:type=simple
sc/source/ui/view/viewfunc.cxx:765: ::aEngine.GetText returned[isis]


It looks like this is going to get rather hairy. On the "export to clipboard"
XMLTextParagraphExport::exportParagraph creates an enumeration that has TWO
TextFields (if the selection ends on a textfield).

So I expect the problem to be in xTextEnum = xEA->createEnumeration();

Yup - there are three "portions" here. "This ", "is", " a link". So the
enumeration (based on the selection) creates portions
 5 "" 5 (Text)
 5 "\x001" 6(TextField)
 6 "" 6 (TextField)

If the selection had gone to 7, then the last portion would be 6 " " 7 and be
considered a Text portion. So why would 6, 6 be considered a TextField? Well
this is all UNO garbage, so it is a mystery as to what properties becomes what.
And we immediately lose all knowledge of start/end/selection etc. Boy I HATE
UNO.

make sd.check says that it isn't enough to say
SvxUnoTextRangeEnumeration::SvxUnoTextRangeEnumeration
-   if( nEndPos < rSel.nStartPos )
+   if( nEndPos <= rSel.nStartPos )
continue;

So, it looks like some hacky solution may be needed for
XMLTextParagraphExport::exportTextRangeEnumeration.

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

[Libreoffice-bugs] [Bug 157880] Can't choose an icon when creating an OLE object

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157880

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||0425
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
I guess that if we were to accept another icon, we'd accept any other image. So
the feature should also be renamed.

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

[Libreoffice-bugs] [Bug 120425] Different icon sizes for different filetypes inserted as icons

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120425

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 129244] FILEOPEN: Blurred EMF image

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129244

--- Comment #10 from Stéphane Guillou (stragu) 
 ---
Icons look good in 6.0.0.3 (before 302af8c2da58719844d22483b65a9fe5b3674684 was
reverted)

Blur reproduced in recent trunk build:

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

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

[Libreoffice-bugs] [Bug 118272] Context menu on document OLE object should always have "Edit" and "Save Copy as.." actions

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118272

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 157881] Can't change most OLE object properties after insertion

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157881

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 157881] Can't change most OLE object properties after insertion

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157881

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|
   Severity|normal  |enhancement
 Status|UNCONFIRMED |NEEDINFO
  Component|LibreOffice |UI
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I did:

Open Writer > Insert > OLE Object > OLE Object... > Create from file >
Search... > Select an ODS file > Open.
"Display as icon" option is available before pressing OK.

Confirmed that it would be better if we could also switch between Icon and
Contents display _after_ it was created.

(In reply to Eyal Rozenberg from comment #0)
> Speaking of the context menu - it has entries for name, alt text, and
> interaction - while missing the basic OLE object properties.

I do have "Properties" in the context menu to open the OLE Object dialog, but
can't see Name, Alt Text, Interaction.
Which kind of OLE object exactly did you create?

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

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

[Libreoffice-bugs] [Bug 152911] VIEWING - High CPU and lag when scrolling on Wayland with modified display scale (KF5)

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152911

--- Comment #8 from Dan Dascalescu  ---
As a sanity/insanity check, can folks try reproducing when running LO as root?

I see far slower scrolling on the same OS (Fedora 38 now, but saw this with
Ubuntu 20 too) - https://bugs.documentfoundation.org/show_bug.cgi?id=153985#c15

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

[Libreoffice-bugs] [Bug 155036] Very slow sheet scrolling in Calc on macOS

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155036

--- Comment #3 from Dan Dascalescu  ---
Scrolling is also painfully slow if running LibreOffice as root, see
https://bugs.documentfoundation.org/show_bug.cgi?id=153985#c15

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

[Libreoffice-bugs] [Bug 151855] Freeze on start on Windows

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151855

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
Version|unspecified |7.4.3.2 release
 Ever confirmed|0   |1

--- Comment #14 from Stéphane Guillou (stragu) 
 ---
I'm wondering if this is another "network printer unavailable" slowdowns (bug
42673). I see in your screenshots "WinSalInstance::GetDefaultPrinter",
mentioned in bug 42673 comment 44. And you say the issue is only sometimes
reproduced.

Does the freeze only happen when connected to a network and a printer is
unavailable?

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

[Libreoffice-bugs] [Bug 154044] Undoing the first applied cell formatting only works for column A

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154044

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 158106] Fill color formatting for previously color filled lines doesn't reset after "select all" and set to any other color or no fill at all

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158106

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
(In reply to Nowitsky Nikolay from comment #2)
> More on that:
> If you Undo all operations, the lines filled with yellow still remain. Like
> it was not an operation that could be undone.
...and the undo issue started in LO 7.4, it is tracked in bug 154044.

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

[Libreoffice-bugs] [Bug 144521] FILESAVE: Stop storing empty cells

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144521

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #20 from Stéphane Guillou (stragu) 
 ---
Given the analysis and the reference to the ODF specs given by Mike, and the
opinions of Mike and Eike on the suggestion, I understand the current behaviour
to be justified and I am closing as "won't fix".

Robert, please feel free to open a new report if you can suggest file format
optimisation, but please be concise and refrain from using language that only
you understand.

Thanks everyone.

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

[Libreoffice-bugs] [Bug 158051] Problem with s in Greek Language

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158051

--- Comment #1 from LeroyG  ---
See use case: "σ' αγαπώ"
https://el.wiktionary.org/wiki/%CF%83%27_%CE%B1%CE%B3%CE%B1%CF%80%CF%8E

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

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

[Libreoffice-bugs] [Bug 153527] LibreOffice 7.5 Calc: unable to apply formatting to all cells in spreadsheet

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153527

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||sonick@gmail.com

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

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

[Libreoffice-bugs] [Bug 158106] Fill color formatting for previously color filled lines doesn't reset after "select all" and set to any other color or no fill at all

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158106

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 CC||stephane.guillou@libreoffic
   ||e.org
Version|7.6.2.1 release |7.5.8.2 release
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Thank you for the report.
This started in LO 7.5 and is already tracked in bug 153527, so marking as
duplicate.

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

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

[Libreoffice-bugs] [Bug 39969] Applying formatting doesnt work correctly if cell contains multiple direct formatting sequences

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39969

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||kaese...@gmail.com

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

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

[Libreoffice-bugs] [Bug 108252] [META] Cell-related bugs and enhancements (including formatting)

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108252

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|83415   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83415
[Bug 83415] EDITING: Changing format of cell content with select-all (ctrl+A)
not applied to all lines
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 83415] EDITING: Changing format of cell content with select-all (ctrl+A) not applied to all lines

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83415

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Hardware|Other   |All
 Resolution|--- |DUPLICATE
 Blocks|108252  |

--- Comment #9 from Stéphane Guillou (stragu) 
 ---


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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108252
[Bug 108252] [META] Cell-related bugs and enhancements (including formatting)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153985] Horrible performance scrolling up with PgUp when Automatic Spell Checking is on [kf5 (cairo+xcb), X11]

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153985

--- Comment #15 from Dan Dascalescu  ---
I've upgraded to 7.6.2.1. Scrolling is much slower when running LibreCalc as
root, even with Automatic Spell Checking off.

Graphics Output settings are the same for both my user and root, all on:
* use hardware acceleration
* use anti-aliasing

```
$ sudo libreoffice7.6 
javaldx: Could not find a Java Runtime Environment!
Warning: failed to read path from javaldx

** (soffice:272859): WARNING **: 14:56:45.260: AT-SPI: Could not obtain desktop
path or name


** (soffice:272859): WARNING **: 14:56:45.264: atk-bridge: GetRegisteredEvents
returned message with unknown signature

** (soffice:272859): WARNING **: 14:56:45.264: atk-bridge:
get_device_events_reply: unknown signature
```

When running as my user, scrolling is fast and:
- LO can't find a Java runtime  either
- those other two warnings don't appear. Instead I see:

```
$ libreoffice7.6 
javaldx: Could not find a Java Runtime Environment!
Warning: failed to read path from javaldx
qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
```

OpenCL is not used by either. I don't know what other difference in settings to
look for.

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

[Libreoffice-bugs] [Bug 158107] v7.6.2.1 crashes with Unspecified Application Error on Alpine Linux

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158107

--- Comment #2 from timo.te...@iki.fi ---
Trying to just comment out the calls to null pointer does fix the immediate
crash, but the next crash is at:

(gdb) where
#0  (anonymous namespace)::ResourceMenuController::updatePopupMenu()
(this=0x7fffe21f6cd0)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/uielement/resourcemenucontroller.cxx:228
#1  0x76ff865a in framework::MenuBarManager::Activate(Menu*)
(this=0x7fffdfa49980, pMenu=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/uielement/menubarmanager.cxx:705
#2  framework::MenuBarManager::LinkStubActivate(void*, Menu*)
(instance=0x7fffdfa49980, data=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/uielement/menubarmanager.cxx:552
#3  0x7460ec4a in Link::Call(Menu*) const
(this=0x7fffe22405e0, data=0x7fffe22405b0) at include/tools/link.hxx:111
#4  Menu::Activate() (this=0x7fffe22405b0) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menu.cxx:266
#5  0x74617328 in Menu::HandleMenuActivateEvent(Menu*) const
(this=0x7fffe223f790, pMenu=0x7fffe22405b0)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menu.cxx:2546
#6  0x70de51c4 in GtkSalMenu::ActivateAllSubmenus(Menu*)
(this=0x7fffe21dbcc0, pMenuBar=0x7fffe223f790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1449
#7  0x70de51fd in GtkSalMenu::ActivateAllSubmenus(Menu*)
(this=0x7fffe223bfc0, pMenuBar=0x7fffe223f790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1455
#8  0x70de51fd in GtkSalMenu::ActivateAllSubmenus(Menu*)
(this=0x7fffe223bcb0, pMenuBar=0x7fffe223f790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1455
#9  0x70de34d8 in GtkSalMenu::UpdateFull() (this=0x7fffe223bcb0) at
vcl/inc/unx/gtk/gtksalmenu.hxx:119
#10 GtkSalMenu::SetFrame(SalFrame const*) (this=0x7fffe223bcb0,
pFrame=) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1162
#11 0x7461bcc1 in MenuBarWindow::SetMenu(MenuBar*)
(this=0x7fffe223e790, pMen=0x7fffe223f790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menubarwindow.cxx:191
#12 0x74617032 in MenuBar::ImplCreate(vcl::Window*, vcl::Window*,
MenuBar*) (pParent=0x7fffe8b76710, pWindow=0x7fffe223e790,
pMenu=0x7fffe223f790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menu.cxx:2454
#13 0x74654a3f in SystemWindow::SetMenuBar(MenuBar*)
(this=0x7fffe300f3c0, pMenuBar=0x7fffe223f790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/syswin.cxx:874
#14 0x76f315c6 in
framework::LayoutManager::implts_createMenuBar(rtl::OUString const&)
(this=0x7fffedbf1ba0, rMenuBarName=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/layoutmanager/layoutmanager.cxx:191
#15 0x76f391a3 in framework::LayoutManager::createElement(rtl::OUString
const&) (this=0x7fffedbf1ba0, aName=...)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/layoutmanager/layoutmanager.cxx:1444
#16 0x7677bea5 in SfxDispatcher::SetMenu_Impl() (this=0x7fffe4ad9930)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/sfx2/source/control/dispatch.cxx:1028
#17 SfxDispatcher::Update_Impl(bool) (this=0x7fffe4ad9930, bForce=) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/sfx2/source/control/dispatch.cxx:1093
#18 0x766ea2fa in SfxApplication::SetViewFrame_Impl(SfxViewFrame*)
(this=, pFrame=0x7fffeda44cd0)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/sfx2/source/appl/app.cxx:280
#19 0x769ef97e in SfxViewFrame::SetViewFrame(SfxViewFrame*)
(pFrame=0x7fffeda44cd0)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/sfx2/source/view/viewfrm.cxx:3576
#20 SfxViewFrame::MakeActive_Impl(bool) (this=0x7fffeda44cd0, bGrabFocus=true)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/sfx2/source/view/viewfrm.cxx:2181
#21 0x74628ba6 in vcl::Window::ImplGrabFocus(GetFocusFlags)
(this=0x7fffe8b87820, nFlags=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/mouse.cxx:384
#22 0x750dfffb in VCLXWindow::setFocus() (this=0x7fffeb93e790) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/toolkit/source/awt/vclxwindow.cxx:1023
#23 0x76f852bd in (anonymous
namespace)::XFrameImpl::focusGained(com::sun::star::awt::FocusEvent const&)
(this=)
at

[Libreoffice-bugs] [Bug 157698] [META] Unify lockdown UX in the Options dialog

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157698
Bug 157698 depends on bug 158004, which changed state.

Bug 158004 Summary: Unify lockdown behavior of Options dialog page Connections
https://bugs.documentfoundation.org/show_bug.cgi?id=158004

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153985] Horrible performance scrolling up with PgUp when Automatic Spell Checking is on [kf5 (cairo+xcb), X11]

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153985

--- Comment #14 from Dan Dascalescu  ---
I see much slower scrolling if running the same LibreCalc as root on the same
OS, than if I run it as my regular user. What could explain that?

LO 7.6.1.2
Fedora 38 KDE spin

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

[Libreoffice-bugs] [Bug 147031] Different file picker when opening files if LO run as another user on KDE

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147031

--- Comment #4 from Dan Dascalescu  ---
Created attachment 190707
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190707=edit
screenshot

I tried `sudo kompare` and the file picker dialog also looks very different.

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

[Libreoffice-bugs] [Bug 158107] v7.6.2.1 crashes with Unspecified Application Error on Alpine Linux

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158107

--- Comment #1 from timo.te...@iki.fi ---
Backtrace with debug info:

(gdb) where
#0  __pthread_mutex_lock (m=0x40) at src/thread/pthread_mutex_lock.c:5
#1  0x750acc3f in __gthread_mutex_lock(pthread_mutex_t*) (__mutex=0x40)
at
/usr/bin/../lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../include/c++/13.2.1/x86_64-alpine-linux-musl/bits/gthr-default.h:749
#2  std::mutex::lock() (this=0x40) at
/usr/bin/../lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../include/c++/13.2.1/bits/std_mutex.h:113
#3  std::unique_lock::lock() (this=0x7fffdd88) at
/usr/bin/../lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../include/c++/13.2.1/bits/unique_lock.h:141
#4  std::unique_lock::unique_lock(std::mutex&)
(this=0x7fffdd88, __m=...)
at
/usr/bin/../lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../include/c++/13.2.1/bits/unique_lock.h:71
#5 
VCLXMenu::addMenuListener(com::sun::star::uno::Reference
const&) (this=0x0, rxListener=...)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/toolkit/source/awt/vclxmenu.cxx:262
#6  0x75567f86 in
svt::PopupMenuControllerBase::setPopupMenu(com::sun::star::uno::Reference
const&)
(this=0x7fffef2a03d0, xPopupMenu=) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/svtools/source/uno/popupmenucontrollerbase.cxx:348
#7  0x76ffa011 in
framework::MenuBarManager::CreatePopupMenuController(framework::MenuBarManager::MenuItemHandler*,
com::sun::star::uno::Reference
const&, rtl::OUString const&) (this=,
pMenuItemHandler=, rDispatchProvider=,
rModuleIdentifier=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/uielement/menubarmanager.cxx:893
#8  0x76ff88a0 in framework::MenuBarManager::Activate(Menu*)
(this=0x7fffeb9b8150, pMenu=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/uielement/menubarmanager.cxx:674
#9  framework::MenuBarManager::LinkStubActivate(void*, Menu*)
(instance=0x7fffeb9b8150, data=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/uielement/menubarmanager.cxx:552
#10 0x7460ec4a in Link::Call(Menu*) const
(this=0x7fffeda387c0, data=0x7fffeda38790) at include/tools/link.hxx:111
#11 Menu::Activate() (this=0x7fffeda38790) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menu.cxx:266
#12 0x74617328 in Menu::HandleMenuActivateEvent(Menu*) const
(this=0x7fffee1a0690, pMenu=0x7fffeda38790)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menu.cxx:2546
#13 0x70de51c4 in GtkSalMenu::ActivateAllSubmenus(Menu*)
(this=0x7fffeb9b7980, pMenuBar=0x7fffee1a0690)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1449
#14 0x70de51fd in GtkSalMenu::ActivateAllSubmenus(Menu*)
(this=0x7fffeb9b71d0, pMenuBar=0x7fffee1a0690)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1455
#15 0x70de34d8 in GtkSalMenu::UpdateFull() (this=0x7fffeb9b71d0) at
vcl/inc/unx/gtk/gtksalmenu.hxx:119
#16 GtkSalMenu::SetFrame(SalFrame const*) (this=0x7fffeb9b71d0,
pFrame=) at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/unx/gtk3/gtksalmenu.cxx:1162
#17 0x7461bcc1 in MenuBarWindow::SetMenu(MenuBar*)
(this=0x7fffee4880b0, pMen=0x7fffee1a0690)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menubarwindow.cxx:191
#18 0x74617032 in MenuBar::ImplCreate(vcl::Window*, vcl::Window*,
MenuBar*) (pParent=0x7fffed655590, pWindow=0x7fffee4880b0,
pMenu=0x7fffee1a0690)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/menu.cxx:2454
#19 0x74654a3f in SystemWindow::SetMenuBar(MenuBar*)
(this=0x7fffed6543d0, pMenuBar=0x7fffee1a0690)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/vcl/source/window/syswin.cxx:874
#20 0x76f315c6 in
framework::LayoutManager::implts_createMenuBar(rtl::OUString const&)
(this=0x7fffed56d340, rMenuBarName=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/layoutmanager/layoutmanager.cxx:191
#21 0x76f391a3 in framework::LayoutManager::createElement(rtl::OUString
const&) (this=0x7fffed56d340, aName=...)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/framework/source/layoutmanager/layoutmanager.cxx:1444
#22 0x766d1643 in (anonymous
namespace)::BackingComp::attachFrame(com::sun::star::uno::Reference
const&) (this=0x7fffeda3e790, xFrame=)
at
/home/tteras/aports/community/libreoffice/src/libreoffice-7.6.2.1/sfx2/source/dialog/backingcomp.cxx:364
#23 0x77e20c36 in
desktop::Desktop::ShowBackingComponent(desktop::Desktop*)
(progress=0x7fffe6d0)
at

[Libreoffice-bugs] [Bug 158108] New: Build failure with ICU 74

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158108

Bug ID: 158108
   Summary: Build failure with ICU 74
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nc...@alpinelinux.org

Build fails with ICU 74 (Alpine Linux edge, with musl libc):


[build BRK] CustomTarget/i18npool/breakiterator/edit_word.brk
S=/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1 &&
I=$S/instdir && W=$S/workdir &&  /usr/bin/genbrk  -r
$W/CustomTarget/i18npool/breakiterator/edit_word.txt -o
$W/CustomTarget/i18npool/breakiterator/edit_word.brk > /dev/null
[build CCD] CustomTarget/i18npool/breakiterator/edit_word_brk.c
S=/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1 &&
I=$S/instdir && W=$S/workdir &&  /usr/sbin/genccode -n OpenOffice -d
$W/CustomTarget/i18npool/breakiterator/
$W/CustomTarget/i18npool/breakiterator/edit_word.brk > /dev/null
sed -e "s#\[:LineBreak =  Close_Punctuation:\]#\[& \[:LineBreak =
Close_Parenthesis:\]\]#" \
 \
 \
-e "/Prepend/d" \
   
/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1/i18npool/source/breakiterator/data/line.txt
>
/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1/workdir/CustomTarget/i18npool/breakiterator/line.txt
[build BRK] CustomTarget/i18npool/breakiterator/line.brk
S=/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1 &&
I=$S/instdir && W=$S/workdir &&  /usr/bin/genbrk  -r
$W/CustomTarget/i18npool/breakiterator/line.txt -o
$W/CustomTarget/i18npool/breakiterator/line.brk > /dev/null
createRuleBasedBreakIterator: ICU Error "U_BRK_UNRECOGNIZED_OPTION"  at line
17, column 14
make[1]: ***
[/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1/i18npool/CustomTarget_breakiterator.mk:90:
/home/ncopa/aports/community/libreoffice/src/libreoffice-7.6.3.1/workdir/CustomTarget/i18npool/breakiterator/line.brk]
Error 12


Line 17 in line.txt contains:

!!LBCMNoChain;

https://github.com/LibreOffice/core/blob/ff3fb42b48c70ba5788507a6177bf0a9f3b50fdb/i18npool/source/breakiterator/data/line.txt#L17

This appears to have been removed in ICU in this commit:
https://github.com/unicode-org/icu/commit/84e47620692be90950d090f2f4722494b020ad96

And genbrk fails...

I am not sure what the proper fix here is.

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

[Libreoffice-bugs] [Bug 155839] When propmpted about missing hyphenation data - I should be offered a download/package install link

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155839

--- Comment #19 from Eyal Rozenberg  ---
(In reply to Rene Engelhard from comment #18)
> > or perform a distribution-specific package installation package, when 
> > possible. So, if we're on Linux - clicking the link/button would execute 
> > something like apt, dnf, zypper or yum to install the package (or a GUI 
> > client).
> 
> No. LO is not a package installer. 
> That's what I meant with my packagekit part.

Oh, I'm sorry, I didn't (and still don't quite) know what packagekit is so I
missed it.

So, two points: 

1. You're saying that your position is different than what we do in other
cases. Would you say that installing hyphenation patterns or not is a similar
choice as those other cases, or is it worse/more disagreeable in your opinion
(and if so why)?

2. Suppose I adopt your position and believe that LO shouldn't download/install
stuff. If that's the case - what's the justification for these patterns not
being part of the LO download (Windows installer / set-of-DEB/RPM packages)?

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

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

2023-11-07 Thread Michael Weghorn (via logerrit)
 android/source/build.gradle |1 -
 1 file changed, 1 deletion(-)

New commits:
commit ff3fb42b48c70ba5788507a6177bf0a9f3b50fdb
Author: Michael Weghorn 
AuthorDate: Tue Nov 7 17:27:49 2023 +0100
Commit: Michael Weghorn 
CommitDate: Tue Nov 7 22:17:35 2023 +0100

android: Don't add "-editing" suffix to version/vendor

Don't append "-editing" to the version string, which
would then end up to be something like
"24.2.0.0.alpha0+/7763190f7ec2/The Document Foundation-editing"
when the build was configured with
`--with-vendor="The Document Foundation"` and would result
in the "About" dialog/widget saying
"This release was supplied by The Document Foundation-editing."
(s. `AboutDialogFragment#onCreateDialog`).

While it's useful to have the different build flavors
(with or without the experimental editing support), I see no need
to have the build config reflected in the version string.
(Whether experimental editing support was enabled during the
build can easily be seen by checking whether the "Experimental
Mode" option is available in the settings.)

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

diff --git a/android/source/build.gradle b/android/source/build.gradle
index f4f74338284c..f207ddedf267 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -82,7 +82,6 @@ android {
 strippedUIEditing {
 dimension "default"
 buildConfigField 'boolean', 'ALLOW_EDITING', 'true'
-versionNameSuffix "-editing"
 }
 fullUI.dimension "default"
 }


[Libreoffice-bugs] [Bug 158099] Auto numbering needs more options for RTL languages to change direction of numbers

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158099

Hossein  changed:

   What|Removed |Added

 Attachment #190698|For better insights, I  |Wrong (upper part) and
description|posted a screenshot about   |correct (lower part)
   |wrong (upper part) and  |autonumbering
   |correct (lower part)|
   |autonumbering in|
   |LibreOffice environment |

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

[Libreoffice-bugs] [Bug 155470] Numbers in a Farsi (and Arabic) document change to latin, after saving in docx format.

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155470

Hossein  changed:

   What|Removed |Added

   Keywords||filter:docx
 Whiteboard|target:24.2.0   |

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

[Libreoffice-bugs] [Bug 155470] Numbers in a Farsi (and Arabic) document change to latin, after saving in docx format.

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155470

Hossein  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 158099] Auto numbering needs more options for RTL languages to change direction of numbers

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158099

Hossein  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 158099] Auto numbering needs more options for RTL languages to change direction of numbers

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158099

--- Comment #4 from ajlittoz  ---
IMHO, the problem comes from too simplistic a number recognition.

In Arabic/Persian, text is written RTL but numbers are written the same as in
European scripts, i.e. most significant digit at left, least significant at
right. Then numbers look LTR.

A number can contain a decimal separator. Depending on country, this separator
is either U+002E FULL STOP or U+002C COMMA. Both these characters are
"direction neutral". This means that when met in a sequence of characters they
won't change the "directionality" nor create a break. Then any sequence of
digits, full stops and commas constitutes a block which will be inserted as is
in the output flow.

After the multi-level list item number has been generated, it is passed to the
layout engine and its "multi-part" semantics is lost. Though it is an invalid
number dues to the presence of several decimal separators, the text engine only
sees a "homogeneous" sequence and will lay it out as a whole instead of
considering each component (level) in its turn and each decimal as a word
separator (which would also change the position of the separator).

Presently, list styles don't allow to change the intermediate level separator
which is hard-wired to U+002E FULL STOP. There is no workaround.

A possible ugly fix would be to scan the numeric string for multiple decimal
separators. If more than one is found, the string is split; then numbers and
separators are individually sent to output.

However this does not solve the case of a level-2 numbering of the form 2.1
without final dot.

Part of the solution goes through improving list style configuration by
allowing more control on the intermediate separator. A probably elegant
solution not involving scanning the item number could be to add U+200C ZERO
WIDTH NON-JOINER before and after the intermediate separator (and perhaps also
before and after separators). Should this be done automatically or left under
user control (for more fancy formatting)?

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

[Libreoffice-bugs] [Bug 158107] New: v7.6.2.1 crashes with Unspecified Application Error on Alpine Linux

2023-11-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158107

Bug ID: 158107
   Summary: v7.6.2.1 crashes with Unspecified Application Error on
Alpine Linux
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kboyki...@teamcentrixx.com

Description:
After upgrading the LibreOffice package in Alpine Linux to v7.6.2.1 from v7.5.x
it does not launch any more but exits with "Unspecified Application Error".

Safe Mode does not help.

Steps to Reproduce:
1. Install Alpine Linux edge
2. apk add libreoffice
3. Observe

Actual Results:
Crashes

Expected Results:
Launches


Reproducible: Always


User Profile Reset: Yes

Additional Info:
* Shortly before the broken LibreOffice upgrade a transition to llvm17 has
happened in Alpine.

* Version 7.5.x worked fine

* LibreOffice CLI called by `convert` also does not work



The original (merged) MR for the upgrade:
https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/54531



The issue in Alpine Gitlab:
https://gitlab.alpinelinux.org/alpine/aports/-/issues/15439



libreoffice --backtrace:

$ cat gdbtrace.log 
warning: Currently logging to gdbtrace.log.  Turn the logging off and on to
make the new setting effective.
[New LWP 6191]
[New LWP 6192]
[New LWP 6193]
[New LWP 6194]
[New LWP 6195]
[New LWP 6196]
[New LWP 6197]
[New LWP 6198]
[LWP 6198 exited]
[New LWP 6199]
[New LWP 6200]
[LWP 6200 exited]
[LWP 6199 exited]
[New LWP 6201]
[New LWP 6202]
[LWP 6202 exited]
[LWP 6201 exited]
[New LWP 6205]
[LWP 6205 exited]
[New LWP 6206]
[LWP 6206 exited]

Thread 1 "soffice.bin" received signal SIGSEGV, Segmentation fault.
__pthread_mutex_lock (m=0x40) at src/thread/pthread_mutex_lock.c:5
5   src/thread/pthread_mutex_lock.c: No such file or directory.
#0  __pthread_mutex_lock (m=0x40) at src/thread/pthread_mutex_lock.c:5
#1  0x750acc3f in
VCLXMenu::addMenuListener(com::sun::star::uno::Reference
const&) () from /usr/lib/libreoffice/program/libtklo.so
#2  0x75567f86 in
svt::PopupMenuControllerBase::setPopupMenu(com::sun::star::uno::Reference
const&) () from /usr/lib/libreoffice/program/libsvtlo.so
#3  0x76ffa021 in ?? () from /usr/lib/libreoffice/program/libfwklo.so
#4  0x76ff88b0 in ?? () from /usr/lib/libreoffice/program/libfwklo.so
#5  0x7460ec3a in Menu::Activate() () from
/usr/lib/libreoffice/program/libvcllo.so
#6  0x74617318 in Menu::HandleMenuActivateEvent(Menu*) const () from
/usr/lib/libreoffice/program/libvcllo.so
#7  0x70de61c4 in ?? () from
/usr/lib/libreoffice/program/libvclplug_gtk3lo.so
#8  0x70de61fd in ?? () from
/usr/lib/libreoffice/program/libvclplug_gtk3lo.so
#9  0x70de44d8 in ?? () from
/usr/lib/libreoffice/program/libvclplug_gtk3lo.so
#10 0x7461bcb1 in ?? () from /usr/lib/libreoffice/program/libvcllo.so
#11 0x74617022 in ?? () from /usr/lib/libreoffice/program/libvcllo.so
#12 0x74654a2f in SystemWindow::SetMenuBar(MenuBar*) () from
/usr/lib/libreoffice/program/libvcllo.so
#13 0x76f315c6 in ?? () from /usr/lib/libreoffice/program/libfwklo.so
#14 0x76f391a3 in ?? () from /usr/lib/libreoffice/program/libfwklo.so
#15 0x766d1643 in ?? () from /usr/lib/libreoffice/program/libsfxlo.so
#16 0x77e20c36 in ?? () from
/usr/lib/libreoffice/program/libsofficeapp.so
#17 0x77e1f5fc in ?? () from
/usr/lib/libreoffice/program/libsofficeapp.so
#18 0x74a402b9 in ImplSVMain() () from
/usr/lib/libreoffice/program/libvcllo.so
#19 0x77e4d0b1 in soffice_main () from
/usr/lib/libreoffice/program/libsofficeapp.so
#20 0x518d in ?? ()
#21 0x77f786d1 in libc_start_main_stage2 (main=0x5180, argc=2,
argv=0x7fffe698) at src/env/__libc_start_main.c:95
#22 0x5046 in ?? ()
#23 0x0002 in ?? ()
#24 0x7fffe9e0 in ?? ()
#25 0x7fffea09 in ?? ()
#26 0x in ?? ()

Thread 8 (LWP 6197 "dconf worker"):
#0  __cp_end () at src/thread/x86_64/syscall_cp.s:29
#1  0x77fb74fc in __syscall_cp_c (nr=7, u=, v=, w=, x=, y=, z=0) at
src/thread/pthread_cancel.c:33
#2  0x77fa93db in poll (fds=, n=,
timeout=) at src/select/poll.c:9
#3  0x7330f420 in ?? () from /usr/lib/libglib-2.0.so.0
#4  0x732ac47e in g_main_context_iteration () from
/usr/lib/libglib-2.0.so.0
#5  0x7fffef2c0dc9 in ?? () from /usr/lib/gio/modules/libdconfsettings.so
#6  0x732de331 in ?? () from /usr/lib/libglib-2.0.so.0
#7  0x77fb822e in start (p=0x7fffee6a2c40) at
src/thread/pthread_create.c:207
#8  0x77fba82f in __clone () at src/thread/x86_64/clone.s:22
Backtrace stopped: frame did not save the PC

Thread 7 (LWP 6196 "gdbus"):
#0 

[Libreoffice-commits] core.git: cui/source cui/uiconfig

2023-11-07 Thread Balazs Varga (via logerrit)
 cui/source/options/connpooloptions.cxx |   30 +++-
 cui/source/options/connpooloptions.hxx |6 
 cui/uiconfig/ui/connpooloptions.ui |  244 +
 3 files changed, 191 insertions(+), 89 deletions(-)

New commits:
commit ebb51d094d9d58568ad6adf5730b04b5f24c7f25
Author: Balazs Varga 
AuthorDate: Mon Nov 6 11:25:44 2023 +0100
Commit: Balazs Varga 
CommitDate: Tue Nov 7 21:40:50 2023 +0100

tdf#158004 - UI: Part 20 - Unify lockdown behavior of Options dialog

for Connections Page.

Change-Id: I76510a893bb35e03e6401aeeb03971969cc42ad2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158989
Tested-by: Jenkins
Reviewed-by: Balazs Varga 

diff --git a/cui/source/options/connpooloptions.cxx 
b/cui/source/options/connpooloptions.cxx
index 00101bed4fb6..f6321f2252b1 100644
--- a/cui/source/options/connpooloptions.cxx
+++ b/cui/source/options/connpooloptions.cxx
@@ -25,6 +25,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 namespace offapp
 {
@@ -49,13 +51,16 @@ namespace offapp
 , m_sYes(CuiResId(RID_CUISTR_YES))
 , m_sNo(CuiResId(RID_CUISTR_NO))
 , m_xEnablePooling(m_xBuilder->weld_check_button("connectionpooling"))
+, m_xEnablePoolingImg(m_xBuilder->weld_widget("lockconnectionpooling"))
 , m_xDriversLabel(m_xBuilder->weld_label("driverslabel"))
 , m_xDriverList(m_xBuilder->weld_tree_view("driverlist"))
 , m_xDriverLabel(m_xBuilder->weld_label("driverlabel"))
 , m_xDriver(m_xBuilder->weld_label("driver"))
 , 
m_xDriverPoolingEnabled(m_xBuilder->weld_check_button("enablepooling"))
+, 
m_xDriverPoolingEnabledImg(m_xBuilder->weld_widget("lockenablepooling"))
 , m_xTimeoutLabel(m_xBuilder->weld_label("timeoutlabel"))
 , m_xTimeout(m_xBuilder->weld_spin_button("timeout"))
+, m_xTimeoutImg(m_xBuilder->weld_widget("locktimeout"))
 {
 
m_xDriverList->set_size_request(m_xDriverList->get_approximate_digit_width() * 
60,
 m_xDriverList->get_height_rows(15));
@@ -68,6 +73,9 @@ namespace offapp
 };
 m_xDriverList->set_column_fixed_widths(aWidths);
 
+css::uno::Reference < css::uno::XComponentContext > 
xContext(::comphelper::getProcessComponentContext());
+m_xReadWriteAccess = 
css::configuration::ReadWriteAccess::create(xContext, "*");
+
 m_xEnablePooling->connect_toggled( LINK(this, 
ConnectionPoolOptionsPage, OnEnabledDisabled) );
 m_xDriverPoolingEnabled->connect_toggled( LINK(this, 
ConnectionPoolOptionsPage, OnEnabledDisabled) );
 
@@ -136,6 +144,8 @@ namespace offapp
 const SfxBoolItem* pEnabled = 
_rSet.GetItem(SID_SB_POOLING_ENABLED);
 OSL_ENSURE(pEnabled, "ConnectionPoolOptionsPage::implInitControls: 
missing the Enabled item!");
 m_xEnablePooling->set_active(pEnabled == nullptr || 
pEnabled->GetValue());
+
m_xEnablePooling->set_sensitive(!officecfg::Office::DataAccess::ConnectionPool::EnablePooling::isReadOnly());
+
m_xEnablePoolingImg->set_visible(officecfg::Office::DataAccess::ConnectionPool::EnablePooling::isReadOnly());
 
 m_xEnablePooling->save_state();
 
@@ -233,6 +243,20 @@ namespace offapp
 m_xDriverPoolingEnabled->set_active(currentSetting.bEnabled);
 m_xTimeout->set_value(currentSetting.nTimeoutSeconds);
 
+OUString aConfigPath = 
officecfg::Office::DataAccess::ConnectionPool::DriverSettings::path() + "/" + 
currentSetting.sName;
+css::beans::Property aProperty = 
m_xReadWriteAccess->getPropertyByHierarchicalName(aConfigPath + "/Enable");
+bool bReadOnly = (aProperty.Attributes & 
css::beans::PropertyAttribute::READONLY) != 0;
+
+m_xDriverPoolingEnabled->set_sensitive(!bReadOnly);
+m_xDriverPoolingEnabledImg->set_visible(bReadOnly);
+
+aProperty = 
m_xReadWriteAccess->getPropertyByHierarchicalName(aConfigPath + "/Timeout");
+bReadOnly = (aProperty.Attributes & 
css::beans::PropertyAttribute::READONLY) != 0;
+
+m_xTimeout->set_sensitive(!bReadOnly);
+m_xTimeoutLabel->set_sensitive(!bReadOnly);
+m_xTimeoutImg->set_visible(bReadOnly);
+
 OnEnabledDisabled(*m_xDriverPoolingEnabled);
 }
 }
@@ -259,13 +283,13 @@ namespace offapp
 m_xDriverList->select(-1);
 m_xDriverLabel->set_sensitive(bGloballyEnabled);
 m_xDriver->set_sensitive(bGloballyEnabled);
-m_xDriverPoolingEnabled->set_sensitive(bGloballyEnabled);
+m_xDriverPoolingEnabled->set_sensitive(bGloballyEnabled && 
!m_xDriverPoolingEnabledImg->get_visible());
 }
 else
 OSL_ENSURE(bLocalDriverChanged, 
"ConnectionPoolOptionsPage::OnEnabledDisabled: where did this come from?");
 
-m_xTimeoutLabel->set_sensitive(bGloballyEnabled && 

  1   2   3   >