[Libreoffice-bugs] [Bug 124653] Frozen pane disapear on window resize

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

--- Comment #13 from Lorenz  ---
may I ask what savtey reasons you are refering too?

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

[Libreoffice-bugs] [Bug 149474] Check for updates

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

--- Comment #7 from Shlomo belleli  ---
The bug is over
No problem with version 
Version: 7.4.3.2 (x64) / LibreOffice Community
Build ID: 1048a8393ae2eeec98dff31b5c133c5f1d08b890
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: he-IL (he_IL); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 153155] Sysvoot | Managed IT Service Provider for business

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

Julien Nabet  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 153155] Sysvoot | Managed IT Service Provider for business

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

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
URL|https://www.sysvoot.com/ser |
   |vices/managed-it-services   |
   Keywords|topicDesign |
 Resolution|--- |INVALID

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

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

2023-01-22 Thread Noel Grandin (via logerrit)
 sc/inc/styleuno.hxx  |5 -
 sc/source/ui/unoobj/styleuno.cxx |6 +-
 2 files changed, 1 insertion(+), 10 deletions(-)

New commits:
commit b127033bf40fb912c35bfb8a659227b749a40ac2
Author: Noel Grandin 
AuthorDate: Sat Jan 21 21:18:28 2023 +0200
Commit: Noel Grandin 
CommitDate: Mon Jan 23 07:27:58 2023 +

XUnoTunnel->dynamic_cast in ScStyleObj

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

diff --git a/sc/inc/styleuno.hxx b/sc/inc/styleuno.hxx
index b09a95b71960..d19feed3563a 100644
--- a/sc/inc/styleuno.hxx
+++ b/sc/inc/styleuno.hxx
@@ -30,7 +30,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
@@ -161,7 +160,6 @@ class ScStyleObj final : public ::cppu::WeakImplHelper<
 css::beans::XMultiPropertySet,
 css::beans::XPropertyState,
 css::beans::XMultiPropertyStates,
-css::lang::XUnoTunnel,
 css::lang::XServiceInfo >,
 public SfxListener
 {
@@ -262,9 +260,6 @@ public:
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() 
override;
-
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScStyleObj)
 };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/unoobj/styleuno.cxx b/sc/source/ui/unoobj/styleuno.cxx
index 4e60223ad0df..cddff8c73d00 100644
--- a/sc/source/ui/unoobj/styleuno.cxx
+++ b/sc/source/ui/unoobj/styleuno.cxx
@@ -677,7 +677,7 @@ void SAL_CALL ScStyleFamilyObj::insertByName( const 
OUString& aName, const uno::
 uno::Reference< uno::XInterface > xInterface(aElement, uno::UNO_QUERY);
 if ( xInterface.is() )
 {
-ScStyleObj* pStyleObj = comphelper::getFromUnoTunnel( 
xInterface );
+ScStyleObj* pStyleObj = dynamic_cast( xInterface.get() );
 if ( pStyleObj && pStyleObj->GetFamily() == eFamily &&
 !pStyleObj->IsInserted() )  // not yet inserted?
 {
@@ -962,10 +962,6 @@ ScStyleObj::~ScStyleObj()
 pDocShell->GetDocument().RemoveUnoObject(*this);
 }
 
-// XUnoTunnel
-
-UNO3_GETIMPLEMENTATION_IMPL(ScStyleObj);
-
 void ScStyleObj::Notify( SfxBroadcaster&, const SfxHint& rHint )
 {
 //  reference update does not matter here


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

2023-01-22 Thread Noel Grandin (via logerrit)
 sc/inc/afmtuno.hxx   |5 -
 sc/inc/cellsuno.hxx  |   10 +-
 sc/source/ui/app/transobj.cxx|   10 --
 sc/source/ui/inc/transobj.hxx|4 +++-
 sc/source/ui/unoobj/afmtuno.cxx  |6 +-
 sc/source/ui/unoobj/cellsuno.cxx |   22 +++---
 sc/source/ui/unoobj/docuno.cxx   |8 
 sc/source/ui/unoobj/funcuno.cxx  |2 +-
 sc/source/ui/unoobj/viewuno.cxx  |4 ++--
 sc/source/ui/vba/excelvbahelper.cxx  |2 +-
 sc/source/ui/vba/vbachartobjects.cxx |2 +-
 sc/source/ui/vba/vbaeventshelper.cxx |4 ++--
 sc/source/ui/vba/vbaformat.cxx   |2 +-
 sc/source/ui/vba/vbarange.cxx|   16 
 14 files changed, 36 insertions(+), 61 deletions(-)

New commits:
commit 3e7ff2a908c577b52ee0707435fb409765c37545
Author: Noel Grandin 
AuthorDate: Sat Jan 21 21:16:21 2023 +0200
Commit: Noel Grandin 
CommitDate: Mon Jan 23 07:27:51 2023 +

XUnoTunnel->dynamic_cast in ScCellRangesBase

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

diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx
index 65784be7ee3d..e64c1065d5c7 100644
--- a/sc/inc/cellsuno.hxx
+++ b/sc/inc/cellsuno.hxx
@@ -81,7 +81,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -155,7 +154,7 @@ namespace ooo::vba::excel {
 class ScVbaCellRangeAccess;  // Vba Helper class
 }
 
-class SC_DLLPUBLIC ScCellRangesBase :
+class SC_DLLPUBLIC SAL_LOPLUGIN_ANNOTATE("crosscast") ScCellRangesBase :
  public cppu::WeakImplHelper<
 css::beans::XPropertySet,
  css::beans::XMultiPropertySet,
@@ -168,7 +167,6 @@ class SC_DLLPUBLIC ScCellRangesBase :
  css::util::XReplaceable,
  css::util::XModifyBroadcaster,
  css::lang::XServiceInfo,
- css::lang::XUnoTunnel,
  css::beans::XTolerantMultiPropertySet>,
  public SfxListener
 {
@@ -372,9 +370,6 @@ public:
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() 
override;
-
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScCellRangesBase)
 };
 
 class UNLESS_MERGELIBS(SC_DLLPUBLIC) ScCellRangesObj final : public 
ScCellRangesBase,
@@ -959,9 +954,6 @@ public:
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() 
override;
 
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScTableSheetObj);
-
 // XTypeProvider
 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;
 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() 
override;
diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx
index 3bba033d28e7..d0fbd02fce43 100644
--- a/sc/source/ui/app/transobj.cxx
+++ b/sc/source/ui/app/transobj.cxx
@@ -635,9 +635,8 @@ ScDocument* ScTransferObj::GetSourceDocument()
 
 ScDocShell* ScTransferObj::GetSourceDocShell()
 {
-ScCellRangesBase* pRangesObj = 
comphelper::getFromUnoTunnel( m_xDragSourceRanges );
-if (pRangesObj)
-return pRangesObj->GetDocShell();
+if (m_xDragSourceRanges)
+return m_xDragSourceRanges->GetDocShell();
 
 return nullptr;// none set
 }
@@ -645,10 +644,9 @@ ScDocShell* ScTransferObj::GetSourceDocShell()
 ScMarkData ScTransferObj::GetSourceMarkData() const
 {
 ScMarkData aMarkData(m_pDoc->GetSheetLimits());
-ScCellRangesBase* pRangesObj = 
comphelper::getFromUnoTunnel( m_xDragSourceRanges );
-if (pRangesObj)
+if (m_xDragSourceRanges)
 {
-const ScRangeList& rRanges = pRangesObj->GetRangeList();
+const ScRangeList& rRanges = m_xDragSourceRanges->GetRangeList();
 aMarkData.MarkFromRangeList( rRanges, false );
 }
 return aMarkData;
diff --git a/sc/source/ui/inc/transobj.hxx b/sc/source/ui/inc/transobj.hxx
index 3a597669e8b1..1c81610e6fc9 100644
--- a/sc/source/ui/inc/transobj.hxx
+++ b/sc/source/ui/inc/transobj.hxx
@@ -22,12 +22,14 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 
 class ScDocShell;
 class ScMarkData;
 enum class ScDragSrc;
+class ScCellRangesBase;
 
 namespace com::sun::star {
 namespace sheet {
@@ -44,7 +46,7 @@ private:
 TransferableObjectDescriptorm_aObjDesc;
 SfxObjectShellRef   m_aDocShellRef;
 SfxObjectShellRef   m_aDrawPersistRef;
-css::uno::Reference 

[Libreoffice-bugs] [Bug 142347] add ability to change the background and font colours of the new tabbed/ribbon view (LibreOffice writer)

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

--- Comment #5 from kru.mheyn...@gmail.com ---
The drop-down ribbon is black. I can almost not read anything. Is there a way
to change it?

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

[Libreoffice-bugs] [Bug 142347] add ability to change the background and font colours of the new tabbed/ribbon view (LibreOffice writer)

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

--- Comment #4 from kru.mheyn...@gmail.com ---
Created attachment 184835
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184835=edit
Black ribbon menu

The drop-down ribbon is black. I cannot see anything

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

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

2023-01-22 Thread Pranam Lashkari (via logerrit)
 sw/inc/txtrfmrk.hxx   |2 ++
 sw/source/core/txtnode/atrref.cxx |   26 ++
 2 files changed, 28 insertions(+)

New commits:
commit 510b2ce1ca74ec7e70b54413d91b2fc84f4e07ae
Author: Pranam Lashkari 
AuthorDate: Thu Jan 19 15:27:31 2023 +0530
Commit: Miklos Vajna 
CommitDate: Mon Jan 23 07:13:14 2023 +

sw: send LOK call back on refmark deletion

this helps with zotero when user deletes a refmark or use undo
without this online will be unaware of any such changes made by user

Signed-off-by: Pranam Lashkari 
Change-Id: Ia4326fd03f6b7d27fdb59ccc25d60331ba7923d5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145774
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/sw/inc/txtrfmrk.hxx b/sw/inc/txtrfmrk.hxx
index 0d25090197c1..6c9eafc35fb6 100644
--- a/sw/inc/txtrfmrk.hxx
+++ b/sw/inc/txtrfmrk.hxx
@@ -33,6 +33,8 @@ public:
 SwTextRefMark( SwFormatRefMark& rAttr,
 sal_Int32 const nStart, sal_Int32 const*const pEnd = nullptr);
 
+~SwTextRefMark();
+
 virtual const sal_Int32* GetEnd() const override;   // SwTextAttr
 virtual void SetEnd(sal_Int32) override;   // SwTextAttr
 
diff --git a/sw/source/core/txtnode/atrref.cxx 
b/sw/source/core/txtnode/atrref.cxx
index e281803050e3..d57aff71e688 100644
--- a/sw/source/core/txtnode/atrref.cxx
+++ b/sw/source/core/txtnode/atrref.cxx
@@ -22,6 +22,11 @@
 #include 
 #include 
 #include 
+#include 
+#include 
+#include 
+#include 
+#include 
 
 SwFormatRefMark::~SwFormatRefMark( )
 {
@@ -94,6 +99,27 @@ SwTextRefMark::SwTextRefMark( SwFormatRefMark& rAttr,
 SetOverlapAllowedAttr( true );
 }
 
+SwTextRefMark::~SwTextRefMark()
+{
+if (GetTextNode().GetDoc().IsClipBoard())
+return;
+
+SfxViewShell* pViewShell = SfxViewShell::Current();
+if (!pViewShell)
+return;
+
+OUString fieldCommand = GetRefMark().GetRefName();
+tools::JsonWriter aJson;
+aJson.put("commandName", ".uno:DeleteField");
+aJson.put("success", true);
+{
+auto result = aJson.startNode("result");
+aJson.put("DeleteField", fieldCommand);
+}
+
+pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_UNO_COMMAND_RESULT, 
aJson.extractData());
+}
+
 const sal_Int32* SwTextRefMark::GetEnd() const
 {
 return m_pEnd;


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

2023-01-22 Thread Pranam Lashkari (via logerrit)
 sw/source/core/crsr/bookmark.cxx |   21 +
 sw/source/core/inc/bookmark.hxx  |3 +++
 2 files changed, 24 insertions(+)

New commits:
commit ea112b6d85a6914e1df40e064cd5df6d46248d68
Author: Pranam Lashkari 
AuthorDate: Thu Jan 19 15:57:26 2023 +0530
Commit: Miklos Vajna 
CommitDate: Mon Jan 23 07:12:35 2023 +

sw: send LOK call back on bookmark deletion

this helps with zotero when user deletes a bookmark or use undo
without this online will be unaware of any such changes made by user

Signed-off-by: Pranam Lashkari 
Change-Id: Id5ea4ee0ee1d16c399460cd177ec8e33256ce3dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145777
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/sw/source/core/crsr/bookmark.cxx b/sw/source/core/crsr/bookmark.cxx
index 69c89cdf6f40..71764d28052a 100644
--- a/sw/source/core/crsr/bookmark.cxx
+++ b/sw/source/core/crsr/bookmark.cxx
@@ -415,6 +415,27 @@ namespace sw::mark
 m_aName = rName;
 }
 
+Bookmark::~Bookmark()
+{
+if (GetMarkPos().GetDoc().IsClipBoard())
+return;
+
+SfxViewShell* pViewShell = SfxViewShell::Current();
+if (!pViewShell)
+return;
+
+OUString fieldCommand = GetName();
+tools::JsonWriter aJson;
+aJson.put("commandName", ".uno:DeleteBookmark");
+aJson.put("success", true);
+{
+auto result = aJson.startNode("result");
+aJson.put("DeleteBookmark", fieldCommand);
+}
+
+
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_UNO_COMMAND_RESULT, 
aJson.extractData());
+}
+
 void Bookmark::InitDoc(SwDoc& io_rDoc,
 sw::mark::InsertMode const, SwPosition const*const)
 {
diff --git a/sw/source/core/inc/bookmark.hxx b/sw/source/core/inc/bookmark.hxx
index 5d44c3454882..7c5ce9361ca9 100644
--- a/sw/source/core/inc/bookmark.hxx
+++ b/sw/source/core/inc/bookmark.hxx
@@ -161,6 +161,9 @@ namespace sw::mark {
 Bookmark(const SwPaM& rPaM,
 const vcl::KeyCode& rCode,
 const OUString& rName);
+
+~Bookmark();
+
 void InitDoc(SwDoc& io_Doc, sw::mark::InsertMode eMode, SwPosition 
const* pSepPos) override;
 
 void DeregisterFromDoc(SwDoc& io_rDoc) override;


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

2023-01-22 Thread Pranam Lashkari (via logerrit)
 sw/source/core/crsr/bookmark.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit c3a53e0c2503d277fbfeb60d4c2499c2e377f9df
Author: Pranam Lashkari 
AuthorDate: Fri Jan 20 16:49:57 2023 +0530
Commit: Miklos Vajna 
CommitDate: Mon Jan 23 07:07:42 2023 +

sw: send field mark delete call back only on deletion

previously command call back was also sent when field was selected

Signed-off-by: Pranam Lashkari 
Change-Id: If0768180e81c47a738225e693b07441cf25906b6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145884
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/sw/source/core/crsr/bookmark.cxx b/sw/source/core/crsr/bookmark.cxx
index 23e7ed6f85fe..69c89cdf6f40 100644
--- a/sw/source/core/crsr/bookmark.cxx
+++ b/sw/source/core/crsr/bookmark.cxx
@@ -568,6 +568,9 @@ namespace sw::mark
 
 TextFieldmark::~TextFieldmark()
 {
+if (GetMarkPos().GetDoc().IsClipBoard())
+return;
+
 SfxViewShell* pViewShell = SfxViewShell::Current();
 if (!pViewShell)
 return;


[Libreoffice-bugs] [Bug 152875] Diagram legend is changed when saving

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

Lesline  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||leslinetest...@gmail.com

--- Comment #1 from Lesline  ---
Hello Kai.

Thank you for reporting the bug.  

I can confirm that I was able to reproduce the bug in the following builds:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: d07b1cc8148140bd3a78103da668d002b9d266ab
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

Version: 7.4.3.2 (x64) / LibreOffice Community
Build ID: 1048a8393ae2eeec98dff31b5c133c5f1d08b890
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded


Kind Regards

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

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

2023-01-22 Thread Noel Grandin (via logerrit)
 sc/inc/datauno.hxx   |5 -
 sc/source/ui/unoobj/cellsuno.cxx |2 +-
 sc/source/ui/unoobj/datauno.cxx  |4 
 3 files changed, 1 insertion(+), 10 deletions(-)

New commits:
commit 2f141c05a7205db660e79673ad2676e19d50583d
Author: Noel Grandin 
AuthorDate: Sat Jan 21 14:46:57 2023 +0200
Commit: Noel Grandin 
CommitDate: Mon Jan 23 06:34:10 2023 +

XUnoTunnel->dynamic_cast in ScSubTotalDescriptorBase

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

diff --git a/sc/inc/datauno.hxx b/sc/inc/datauno.hxx
index 528496380806..f2ee6b674129 100644
--- a/sc/inc/datauno.hxx
+++ b/sc/inc/datauno.hxx
@@ -38,7 +38,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -110,7 +109,6 @@ class ScSubTotalDescriptorBase : public 
cppu::WeakImplHelper<
 css::container::XEnumerationAccess,
 css::container::XIndexAccess,
 css::beans::XPropertySet,
-css::lang::XUnoTunnel,
 css::lang::XServiceInfo >
 {
 private:
@@ -160,9 +158,6 @@ public:
 virtual void SAL_CALL   removeVetoableChangeListener( const OUString& 
PropertyName,
 const css::uno::Reference< 
css::beans::XVetoableChangeListener >& aListener ) override;
 
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScSubTotalDescriptorBase)
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 5d44da0d8fca..69f4cbd5e61f 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -5526,7 +5526,7 @@ void SAL_CALL ScCellRangeObj::applySubTotals(
 
 ScDocShell* pDocSh = GetDocShell();
 ScSubTotalDescriptorBase* pImp =
-comphelper::getFromUnoTunnel( xDescriptor );
+dynamic_cast( xDescriptor.get() );
 
 if (!(pDocSh && pImp))
 return;
diff --git a/sc/source/ui/unoobj/datauno.cxx b/sc/source/ui/unoobj/datauno.cxx
index ee285d662b7c..5d4dc4761cbd 100644
--- a/sc/source/ui/unoobj/datauno.cxx
+++ b/sc/source/ui/unoobj/datauno.cxx
@@ -731,10 +731,6 @@ uno::Any SAL_CALL 
ScSubTotalDescriptorBase::getPropertyValue( const OUString& aP
 
 SC_IMPL_DUMMY_PROPERTY_LISTENER( ScSubTotalDescriptorBase )
 
-// XUnoTunnel
-
-UNO3_GETIMPLEMENTATION_IMPL(ScSubTotalDescriptorBase);
-
 ScSubTotalDescriptor::ScSubTotalDescriptor()
 {
 }


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

2023-01-22 Thread Noel Grandin (via logerrit)
 sc/inc/fielduno.hxx |5 
 sc/source/ui/unoobj/cellsuno.cxx|4 +--
 sc/source/ui/unoobj/fielduno.cxx|4 ---
 sc/source/ui/unoobj/shapeuno.cxx|2 -
 sc/source/ui/unoobj/textuno.cxx |4 +--
 starmath/inc/mathml/export.hxx  |5 ++--
 starmath/inc/mathml/import.hxx  |5 ++--
 starmath/inc/mathml/mathmlimport.hxx|7 +++--
 starmath/source/document.cxx|4 +--
 starmath/source/mathml/export.cxx   |   24 ++--
 starmath/source/mathml/import.cxx   |   38 +++-
 starmath/source/mathml/mathmlimport.cxx |   18 ++-
 starmath/source/view.cxx|4 +--
 13 files changed, 49 insertions(+), 75 deletions(-)

New commits:
commit fc270b8e046d277606255018f6fc165d65beef8a
Author: Noel Grandin 
AuthorDate: Fri Jan 20 18:45:02 2023 +0200
Commit: Noel Grandin 
CommitDate: Mon Jan 23 06:34:02 2023 +

XUnoTunnel->dynamic_cast in ScEditFieldObj

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

diff --git a/sc/inc/fielduno.hxx b/sc/inc/fielduno.hxx
index 89160dfa055f..41a0eb6104f4 100644
--- a/sc/inc/fielduno.hxx
+++ b/sc/inc/fielduno.hxx
@@ -26,7 +26,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -160,7 +159,6 @@ public:
 typedef comphelper::WeakComponentImplHelper<
 css::text::XTextField,
 css::beans::XPropertySet,
-css::lang::XUnoTunnel,
 css::lang::XServiceInfo> ScEditFieldObj_Base;
 class ScEditFieldObj final : public ScEditFieldObj_Base
 {
@@ -232,9 +230,6 @@ public:
 virtual void SAL_CALL removeVetoableChangeListener( const OUString& 
PropertyName,
 const css::uno::Reference< 
css::beans::XVetoableChangeListener >& aListener ) override;
 
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScEditFieldObj)
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 9216ba7a4a31..5d44da0d8fca 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -6016,7 +6016,7 @@ void SAL_CALL ScCellObj::insertTextContent( const 
uno::Reference(xContent);
+ScEditFieldObj* pCellField = 
dynamic_cast(xContent.get());
 SvxUnoTextRangeBase* pTextRange = 
comphelper::getFromUnoTunnel( xRange );
 
 if ( pCellField && !pCellField->IsInserted() && pTextRange )
@@ -6066,7 +6066,7 @@ void SAL_CALL ScCellObj::removeTextContent( const 
uno::Reference(xContent);
+ScEditFieldObj* pCellField = 
dynamic_cast(xContent.get());
 if ( pCellField && pCellField->IsInserted() )
 {
 //! Check if field is in this cell
diff --git a/sc/source/ui/unoobj/fielduno.cxx b/sc/source/ui/unoobj/fielduno.cxx
index 4d14e4139652..96271342c06d 100644
--- a/sc/source/ui/unoobj/fielduno.cxx
+++ b/sc/source/ui/unoobj/fielduno.cxx
@@ -1252,10 +1252,6 @@ uno::Any SAL_CALL ScEditFieldObj::getPropertyValue( 
const OUString& aPropertyNam
 
 SC_IMPL_DUMMY_PROPERTY_LISTENER( ScEditFieldObj )
 
-// XUnoTunnel
-
-UNO3_GETIMPLEMENTATION_IMPL(ScEditFieldObj);
-
 // XServiceInfo
 
 OUString SAL_CALL ScEditFieldObj::getImplementationName()
diff --git a/sc/source/ui/unoobj/shapeuno.cxx b/sc/source/ui/unoobj/shapeuno.cxx
index 257d15f5d9d6..2dfd6ca10701 100644
--- a/sc/source/ui/unoobj/shapeuno.cxx
+++ b/sc/source/ui/unoobj/shapeuno.cxx
@@ -1086,7 +1086,7 @@ void SAL_CALL ScShapeObj::insertTextContent( const 
uno::Reference xEffContent;
 
-ScEditFieldObj* pCellField = comphelper::getFromUnoTunnel( 
xContent );
+ScEditFieldObj* pCellField = dynamic_cast( xContent.get() 
);
 if ( pCellField )
 {
 //  createInstance("TextField.URL") from the document creates a 
ScCellFieldObj.
diff --git a/sc/source/ui/unoobj/textuno.cxx b/sc/source/ui/unoobj/textuno.cxx
index b8056d0c90d1..6102cdb9fac2 100644
--- a/sc/source/ui/unoobj/textuno.cxx
+++ b/sc/source/ui/unoobj/textuno.cxx
@@ -358,7 +358,7 @@ void SAL_CALL ScHeaderFooterTextObj::insertTextContent(
 SolarMutexGuard aGuard;
 if ( xContent.is() && xRange.is() )
 {
-ScEditFieldObj* pHeaderField = 
comphelper::getFromUnoTunnel( xContent );
+ScEditFieldObj* pHeaderField = dynamic_cast( 
xContent.get() );
 
 SvxUnoTextRangeBase* pTextRange =
 comphelper::getFromUnoTunnel( xRange );
@@ -425,7 +425,7 @@ void SAL_CALL ScHeaderFooterTextObj::removeTextContent(
 SolarMutexGuard aGuard;
 if ( xContent.is() )
 {
-

[Libreoffice-bugs] [Bug 153155] Sysvoot | Managed IT Service Provider for business

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

Sysvoot  changed:

   What|Removed |Added

URL||https://www.sysvoot.com/ser
   ||vices/managed-it-services
   Keywords||topicDesign

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

[Libreoffice-bugs] [Bug 153155] New: Sysvoot | Managed IT Service Provider for business

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

Bug ID: 153155
   Summary: Sysvoot | Managed IT Service Provider for business
   Product: QA Tools
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sysv...@outlook.com

Sysvoot is your go-to source for comprehensive and reliable managed IT
services. We provide around-the-clock IT support so you can focus on your
business goals. With our proven track record, you can trust us to keep your
business running smoothly. Contact us today to learn more about our services!
https://www.sysvoot.com/services/managed-it-services

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

[Libreoffice-bugs] [Bug 103799] FILEOPEN PPTX: Impress ignores background theme color

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

--- Comment #9 from Lars Jødal  ---
Still reproducible with LO 7.4.4.2

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

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

[Libreoffice-bugs] [Bug 152877] Dates are getting formatted as dollar amounts and can't change

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

Lesline  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||leslinetest...@gmail.com

--- Comment #1 from Lesline  ---
Hello Keith.

Thank you for reporting the bug. I can confirm that I was able to reproduce it
using the following versions:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: d07b1cc8148140bd3a78103da668d002b9d266ab
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

Version: 7.4.3.2 (x64) / LibreOffice Community
Build ID: 1048a8393ae2eeec98dff31b5c133c5f1d08b890
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded


For clarity:
This bug was reproduced using the steps provided.  When the right click command
is used to format the date, this error does not occur.  

Kind Regards

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

[Libreoffice-bugs] [Bug 152638] Rotating an image and not able to position correctly

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

--- Comment #3 from Lesline  ---
Hello Alan.

I chose an image at random from Pixabay - a rectangular photo frame.  Its ID is

frame-photo-frame-design-border-1973498/.  


May I kindly ask if you're testing in the latest versions of the stable and
unstable?  Thank you.

Kind Regards

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

[Libreoffice-bugs] [Bug 152929] Sparkline ignore "High points" color when all values are negative

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 152914] Writer reports ALL .odt files as corrupt, even newly saved ones.

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 150142] Improve intuitiveness of Edit Bookmarks Dialog

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

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

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 152925] LibreOffice: no visibility of menu when I open "Formatvorlagen verwalten"

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 152928] LibreOffice Draw View defaults to black and white, radio buttons show no enum active. Selecting color resolves issue. Reoccurs on next session.

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 149960] Crash in: RtlUserThreadStart EDITING

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

--- Comment #2 from QA Administrators  ---
Dear Paul White,

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 150121] My whole document turns into an unwanted hyperlink

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

--- Comment #4 from QA Administrators  ---
Dear Robert Beale,

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 149474] Check for updates

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

--- Comment #6 from QA Administrators  ---
Dear Shlomo belleli,

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 148042] Base reports crash on Mageia 8 when opened, but not when edited

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

--- Comment #17 from QA Administrators  ---
Dear I027614,

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 144282] Crash when changing protection options on document

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

--- Comment #7 from QA Administrators  ---
Dear Steve Garry,

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 75767] CONFIGURATION: Quick launch not activated despite being selected in install

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

--- Comment #13 from QA Administrators  ---
Dear lal,

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 71989] EDITING: CUT can't be restored with Undo in select-all text

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

--- Comment #12 from QA Administrators  ---
Dear Jérôme Borme,

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 68910] EDITING: Wrong pasting websites from WikiTravel

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

--- Comment #7 from QA Administrators  ---
Dear Bartosz Skowron,

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 63171] SLIDESHOW: weird artifacts only in presentation mode of polylines with thickness

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

--- Comment #16 from QA Administrators  ---
Dear boicottms,

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 127365] Password prompt when opening files from SharePoint

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

--- Comment #10 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 109215] Keyboard access to recently used and favorite characters

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

--- Comment #6 from QA Administrators  ---
Dear Heiko Tietze,

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 116228] UI glitches directly after changing „Tools/Options.../View/Notebookbar icon size:“ (needs redraw)

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

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

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 104293] Image is dropping out of the table cell when its moved near to the cell border

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #13 from ericbressle...@gmail.com ---
I renamed the User-old, uninstalled LibreOffice 7.4.4.2 and installed 7.3.7.2.
The Calc Copy problem persists in crashing the program. I've reverted to my old
profile now.

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #12 from ericbressle...@gmail.com ---
I tried the manual procedure, too, renaming the user file user-old and
restarting the program to create a new user file. The copy problem in Calc
persists. That's with it using .ods .xls and .xlsx format files, although once
in a while the program doesn't crash the first time I try using Copy.

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #11 from ericbressle...@gmail.com ---
The problem persisted when I entered safe mode previously. So according to the
UserProfile Wiki, the profile is not problem, right?

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #10 from m.a.riosv  ---
Can you try to uninstall, and rename/delete the profile
(https://wiki.documentfoundation.org/UserProfile), and reinstall again?

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #9 from ericbressle...@gmail.com ---
No other program increases CPU or memory usage when this problem occurs.

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #8 from ericbressle...@gmail.com ---
Thanks for looking at this. When I have Task Manager open and try to use Copy
in LO Calc, when LO Calc freezes the LibreOffice CPU usage goes to 26%, and its
memory usage progressively increases from 204 MB to over 1,300 MB within about
30 seconds. I closed the program as it started taking over the Memory!

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #7 from m.a.riosv  ---
I can't find any other similar report, and I don't have win 11 test.
Let's see if someone else can test.

Meanwhile, you can try to see in the Task manager / Details, sorting CPU
(inverse) if there is some program with a high usage when this happens.

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

Adding UI test

2023-01-22 Thread Laurent Balland

Hello,

After fixing bug 152722 [1], I plan to add an UI test for "Number 
Format: keep NatNum modifiers" [2]


Shall I create a new one from scratch, like [3], or shall I complete the 
latter?


Thanks for your advise

Regards,

Laurent Balland


[1] https://bugs.documentfoundation.org/show_bug.cgi?id=152722

[2] https://gerrit.libreoffice.org/c/core/+/144963

[3] 
https://cgit.freedesktop.org/libreoffice/core/commit/?id=4374f8b621dbefcb0a78a8005db48eb25675bf3c


[Libreoffice-bugs] [Bug 153154] New: changing instance structure in XML Forms document causes crash

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

Bug ID: 153154
   Summary: changing instance structure in XML Forms document
causes crash
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pa...@12winds.ru

Description:
The following operations with instances in XML Forms document using data
navigator cause crash:
1. Adding an element or an attribute 
2. Changing an element or an attribute.
Deleting an attribute or an element is OK.
Probably this bug is a side effect of patching the bug Bug 153039.

Steps to Reproduce:
1.Create new or open existing XML Form document
2.switch to data Navigator 
3.press any button on the "instance" tab.

Actual Results:
Crash

Expected Results:
Dialog is opened for adding/editing an element or attribute


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.0.0.alpha0+ (x86) / LibreOffice Community
Build ID: 7c15ffd4e3bf002c3d4edd758bb3af27b1f6a34e
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 149120] Crash swlo!SwFrame::SetInvalidVert+0x4360: (STR comment 2)

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

--- Comment #6 from Telesto  ---
Created attachment 184834
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184834=edit
BT with symbols

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 102846d45cb9660805e209b6954c7b8d707b8288
CPU threads: 8; OS: Mac OS X 12.3.1; UI render: Skia/Raster; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

ericbressle...@gmail.com 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 153131] Copy causes Calc to Freeze on Windows 11

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

--- Comment #6 from ericbressle...@gmail.com ---
I did have Windows Clipboard History turned on. No other clipboard manager is
being used. I turned it off and restarted the PC. The Copy problem is still
present. Good idea, though!

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #5 from m.a.riosv  ---
Can you test if it is enable 'History clipboard'
https://www.bing.com/search?q=history+clipboard+windows+10=WNSGPH=UT=d249330764c14d6fa33d2fd2b1096936=history+clipbo=ES=es-ES=818D6C6EB1B769DDDF3D895E74653213=1674416265366=Moderate

Do you have any clipboard manager running?

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

[Libreoffice-commits] core.git: helpcontent2

2023-01-22 Thread Adolfo Jayme Barrientos (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d47c23cb1a4448a16283555e4d7034c7e1fcd1a7
Author: Adolfo Jayme Barrientos 
AuthorDate: Sun Jan 22 13:22:36 2023 -0600
Commit: Gerrit Code Review 
CommitDate: Sun Jan 22 19:22:36 2023 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to b4b815af4b5e86eec0fa69b2260ec9d8aa558bae
  - A bit of proofreading

Change-Id: Ibab2714b04f3051266d4e1b4101b517bd669db28

diff --git a/helpcontent2 b/helpcontent2
index 4c93a82fedbe..b4b815af4b5e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 4c93a82fedbeb00f6913bb8a459d8db425e2cf21
+Subproject commit b4b815af4b5e86eec0fa69b2260ec9d8aa558bae


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

2023-01-22 Thread Adolfo Jayme Barrientos (via logerrit)
 source/text/shared/optionen/languagetools.xhp  |2 +-
 source/text/shared/optionen/translatetools.xhp |2 +-
 source/text/swriter/01/translate.xhp   |4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit b4b815af4b5e86eec0fa69b2260ec9d8aa558bae
Author: Adolfo Jayme Barrientos 
AuthorDate: Sun Jan 22 13:22:05 2023 -0600
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Jan 22 13:22:05 2023 -0600

A bit of proofreading

Change-Id: Ibab2714b04f3051266d4e1b4101b517bd669db28

diff --git a/source/text/shared/optionen/languagetools.xhp 
b/source/text/shared/optionen/languagetools.xhp
index b264fe2f99..376a9762f2 100644
--- a/source/text/shared/optionen/languagetools.xhp
+++ b/source/text/shared/optionen/languagetools.xhp
@@ -37,7 +37,7 @@
 API Settings
 
 Base URL
-Enter the URL for the 
LanguageTool service, or use the default suggested.
+Enter the URL for the 
LanguageTool service, or use the suggested default value.
 
 Username
 Enter your username for 
the LanguageTool service.
diff --git a/source/text/shared/optionen/translatetools.xhp 
b/source/text/shared/optionen/translatetools.xhp
index 1fc86deba0..fa6ca0ebf1 100644
--- a/source/text/shared/optionen/translatetools.xhp
+++ b/source/text/shared/optionen/translatetools.xhp
@@ -26,7 +26,7 @@
 DeepL Server 
Options
 Defines the properties for the DeepL server.
 
-DeepL Translator is a 
machine translation service that produces translations. DeepL Translator is 
available as a web-based service.
+DeepL Translator is a 
machine translation service. DeepL Translator is available as a web-based 
service.
 
 
 Choose 
%PRODUCTNAME - 
PreferencesTools - 
Options - Language settings 
- DeepL Server
diff --git a/source/text/swriter/01/translate.xhp 
b/source/text/swriter/01/translate.xhp
index e97f380e51..ccd741a7fa 100644
--- a/source/text/swriter/01/translate.xhp
+++ b/source/text/swriter/01/translate.xhp
@@ -38,12 +38,12 @@
 Whole 
document: when there is no selection, the whole document is translated. 
Each paragraph is sent individually in order to minimize the  output timeout 
for each paragraph.
 
 
-Selection: the selected contents is sent to the 
DeepL server for translation.
+Selection: the selected content is sent to the 
DeepL server for translation.
 
 
 
 https://www.deepl.com;>DeepL web service
-Translate 
settings
+Translation 
settings
 
 
 


[Libreoffice-bugs] [Bug 109232] [META] Special character dialog and toolbar group button bugs and enhancements

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||153150


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153150
[Bug 153150] ASCII U+266E (natural symbol in music) is missing from special
characters
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 109232] [META] Special character dialog and toolbar group button bugs and enhancements

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

Bug 153150 Summary: ASCII U+266E (natural symbol in music) is missing from 
special characters
https://bugs.documentfoundation.org/show_bug.cgi?id=153150

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 153150] ASCII U+266E (natural symbol in music) is missing from special characters

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

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |RESOLVED
 CC||vsfo...@libreoffice.org
 Blocks||109232

--- Comment #2 from V Stuart Foote  ---
Agree => NAB, the "Special Character..." dialog's font chart does not show a
"composite" of all fonts on system. Rather it shows the font chart only for the
font selected in the dialogs listbox.

Providing "font coverage" lookup, i.e. "list all fonts that cover U+266E" would
be a possible enhancement to the Special Character dialog, but there are other
utilities that do it well already. E.g. Andrew West's BabelMap


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109232
[Bug 109232] [META] Special character dialog and toolbar group button bugs and
enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2023-01-22 Thread Noel Grandin (via logerrit)
 sc/inc/fmtuno.hxx|9 -
 sc/source/ui/unoobj/cellsuno.cxx |4 ++--
 sc/source/ui/unoobj/fmtuno.cxx   |8 
 3 files changed, 2 insertions(+), 19 deletions(-)

New commits:
commit e7ad863764052b8d5334a20b56c7d415d81b82db
Author: Noel Grandin 
AuthorDate: Fri Jan 20 18:41:25 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:11:24 2023 +

XUnoTunnel->dynamic_cast in ScTableConditionalFormat

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

diff --git a/sc/inc/fmtuno.hxx b/sc/inc/fmtuno.hxx
index e9086a84048d..548ca3ec93bc 100644
--- a/sc/inc/fmtuno.hxx
+++ b/sc/inc/fmtuno.hxx
@@ -30,7 +30,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 
 #include 
@@ -68,7 +67,6 @@ class ScTableConditionalFormat final : public 
cppu::WeakImplHelper<
 css::sheet::XSheetConditionalEntries,
 css::container::XNameAccess,
 css::container::XEnumerationAccess,
-css::lang::XUnoTunnel,
 css::lang::XServiceInfo >
 {
 private:
@@ -107,9 +105,6 @@ public:
 virtual css::uno::Type SAL_CALL getElementType() override;
 virtual sal_Bool SAL_CALL hasElements() override;
 
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScTableConditionalFormat)
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 079645d79166..9216ba7a4a31 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -2255,7 +2255,7 @@ void ScCellRangesBase::SetOnePropertyValue( const 
SfxItemPropertyMapEntry* pEntr
 if ( !aRanges.empty() && xInterface.is() )  // empty = 
nothing to do
 {
 ScTableConditionalFormat* pFormat =
-
comphelper::getFromUnoTunnel( xInterface );
+dynamic_cast( 
xInterface.get() );
 if (pFormat)
 {
 ScDocument& rDoc = pDocShell->GetDocument();
diff --git a/sc/source/ui/unoobj/fmtuno.cxx b/sc/source/ui/unoobj/fmtuno.cxx
index eabdd7a17be1..d380b95f2314 100644
--- a/sc/source/ui/unoobj/fmtuno.cxx
+++ b/sc/source/ui/unoobj/fmtuno.cxx
@@ -445,10 +445,6 @@ sal_Bool SAL_CALL ScTableConditionalFormat::hasByName( 
const OUString& aName )
 return false;
 }
 
-// XUnoTunnel
-
-UNO3_GETIMPLEMENTATION_IMPL(ScTableConditionalFormat);
-
 ScTableConditionalEntry::ScTableConditionalEntry(ScCondFormatEntryItem  aItem) 
:
 aData(std::move( aItem ))
 {
commit a32675a5fef9cc8a32234ba7ba1eacb53265e735
Author: Noel Grandin 
AuthorDate: Fri Jan 20 18:39:52 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:11:14 2023 +

XUnoTunnel->dynamic_cast in ScTableValidationObj

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

diff --git a/sc/inc/fmtuno.hxx b/sc/inc/fmtuno.hxx
index 81d1532381ea..e9086a84048d 100644
--- a/sc/inc/fmtuno.hxx
+++ b/sc/inc/fmtuno.hxx
@@ -157,7 +157,6 @@ class ScTableValidationObj final : public 
cppu::WeakImplHelper<
 css::sheet::XSheetCondition2,
 css::sheet::XMultiFormulaTokens,
 css::beans::XPropertySet,
-css::lang::XUnoTunnel,
 css::lang::XServiceInfo >
 {
 private:
@@ -231,9 +230,6 @@ public:
 virtual void SAL_CALL   removeVetoableChangeListener( const OUString& 
PropertyName,
 const css::uno::Reference< 
css::beans::XVetoableChangeListener >& aListener ) override;
 
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScTableValidationObj)
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 851c85645351..079645d79166 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -2302,7 +2302,7 @@ void ScCellRangesBase::SetOnePropertyValue( const 
SfxItemPropertyMapEntry* pEntr
 if ( !aRanges.empty() && xInterface.is() )  // empty = 
nothing to do
 {
 ScTableValidationObj* pValidObj =
-

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

2023-01-22 Thread Noel Grandin (via logerrit)
 sc/inc/srchuno.hxx   |5 -
 sc/inc/viewuno.hxx   |5 -
 sc/source/ui/unoobj/cellsuno.cxx |6 +++---
 sc/source/ui/unoobj/srchuno.cxx  |4 
 sc/source/ui/unoobj/viewuno.cxx  |3 ---
 sc/source/ui/view/drawview.cxx   |6 +++---
 sc/source/ui/view/gridwin.cxx|2 +-
 sc/source/ui/view/tabview.cxx|2 +-
 sc/source/ui/view/tabview3.cxx   |2 +-
 sc/source/ui/view/tabview5.cxx   |2 +-
 sc/source/ui/view/tabvwsh4.cxx   |2 +-
 11 files changed, 11 insertions(+), 28 deletions(-)

New commits:
commit f94dc655ec37ec8f40de70f9105a8427a362f266
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:51:27 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:11:04 2023 +

XUnoTunnel->dynamic_cast in ScCellSearchObj

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

diff --git a/sc/inc/srchuno.hxx b/sc/inc/srchuno.hxx
index de3ac50cc925..90381fa48579 100644
--- a/sc/inc/srchuno.hxx
+++ b/sc/inc/srchuno.hxx
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -31,7 +30,6 @@ class SvxSearchItem;
 
 class ScCellSearchObj final : public cppu::WeakImplHelper<
 css::util::XReplaceDescriptor,
-css::lang::XUnoTunnel,
 css::lang::XServiceInfo >
 {
 private:
@@ -70,9 +68,6 @@ public:
 virtual void SAL_CALL   removeVetoableChangeListener( const OUString& 
PropertyName,
 const css::uno::Reference< 
css::beans::XVetoableChangeListener >& aListener ) override;
 
-// XUnoTunnel
-UNO3_GETIMPLEMENTATION_DECL(ScCellSearchObj)
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 119486d79768..851c85645351 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -3758,7 +3758,7 @@ uno::Reference SAL_CALL 
ScCellRangesBase::findAll(
 uno::Reference xRet;
 if ( pDocShell && xDesc.is() )
 {
-ScCellSearchObj* pSearch = 
comphelper::getFromUnoTunnel( xDesc );
+ScCellSearchObj* pSearch = dynamic_cast( xDesc.get() 
);
 if (pSearch)
 {
 SvxSearchItem* pSearchItem = pSearch->GetSearchItem();
@@ -3797,7 +3797,7 @@ uno::Reference 
ScCellRangesBase::Find_Impl(
 uno::Reference xRet;
 if ( pDocShell && xDesc.is() )
 {
-ScCellSearchObj* pSearch = 
comphelper::getFromUnoTunnel( xDesc );
+ScCellSearchObj* pSearch = dynamic_cast( xDesc.get() 
);
 if (pSearch)
 {
 SvxSearchItem* pSearchItem = pSearch->GetSearchItem();
@@ -3878,7 +3878,7 @@ sal_Int32 SAL_CALL ScCellRangesBase::replaceAll( const 
uno::Reference( xDesc );
+ScCellSearchObj* pSearch = dynamic_cast( xDesc.get() 
);
 if (pSearch)
 {
 SvxSearchItem* pSearchItem = pSearch->GetSearchItem();
diff --git a/sc/source/ui/unoobj/srchuno.cxx b/sc/source/ui/unoobj/srchuno.cxx
index d5d78d75d6d9..036f6c89817b 100644
--- a/sc/source/ui/unoobj/srchuno.cxx
+++ b/sc/source/ui/unoobj/srchuno.cxx
@@ -189,8 +189,4 @@ uno::Sequence SAL_CALL 
ScCellSearchObj::getSupportedServiceNames()
 return {SCSEARCHDESCRIPTOR_SERVICE, SCREPLACEDESCRIPTOR_SERVICE};
 }
 
-// XUnoTunnel
-
-UNO3_GETIMPLEMENTATION_IMPL(ScCellSearchObj);
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit f647691a4f1a3a02aa4e997246ff7c16bcaa
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:47:35 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:10:55 2023 +

XUnoTunnel->dynamic_cast in ScTabViewObj

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

diff --git a/sc/inc/viewuno.hxx b/sc/inc/viewuno.hxx
index b4ce26f7fc8d..027b4753a944 100644
--- a/sc/inc/viewuno.hxx
+++ b/sc/inc/viewuno.hxx
@@ -38,7 +38,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
@@ -137,7 +136,6 @@ class ScTabViewObj final : public ScViewPaneBase,
  public css::sheet::XViewSplitable,
  public css::sheet::XViewFreezable,
  public css::sheet::XRangeSelection,
- public css::lang::XUnoTunnel,
  public css::datatransfer::XTransferableSupplier,
  public css::sheet::XSelectedSheetsSupplier
 {
@@ -269,9 +267,6 @@ public:
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
 virtual css::uno::Sequence< 

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

2023-01-22 Thread Noel Grandin (via logerrit)
 sd/source/ui/unoidl/SdUnoDrawView.cxx |2 +-
 sd/source/ui/unoidl/unocpres.cxx  |4 +---
 sd/source/ui/unoidl/unocpres.hxx  |5 -
 sd/source/ui/unoidl/unolayer.cxx  |   13 ++---
 sd/source/ui/unoidl/unolayer.hxx  |4 
 5 files changed, 8 insertions(+), 20 deletions(-)

New commits:
commit fc83e664fc119bf3d8a5a0bcc4d15a8e788d57fb
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:40:33 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:10:45 2023 +

XUnoTunnel->dynamic_cast in SdXCustomPresentation

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

diff --git a/sd/source/ui/unoidl/unocpres.cxx b/sd/source/ui/unoidl/unocpres.cxx
index 1f9bde3b98da..13a634f289b4 100644
--- a/sd/source/ui/unoidl/unocpres.cxx
+++ b/sd/source/ui/unoidl/unocpres.cxx
@@ -59,8 +59,6 @@ SdXCustomPresentation::~SdXCustomPresentation() noexcept
 {
 }
 
-UNO3_GETIMPLEMENTATION_IMPL( SdXCustomPresentation );
-
 // XServiceInfo
 OUString SAL_CALL SdXCustomPresentation::getImplementationName()
 {
@@ -317,7 +315,7 @@ void SAL_CALL SdXCustomPresentationAccess::insertByName( 
const OUString& aName,
 
 uno::Reference< container::XIndexContainer > xContainer;
 if( (aElement >>= xContainer) && xContainer.is() )
-pXShow = 
comphelper::getFromUnoTunnel(xContainer);
+pXShow = dynamic_cast(xContainer.get());
 
 if( nullptr == pXShow )
 throw lang::IllegalArgumentException();
diff --git a/sd/source/ui/unoidl/unocpres.hxx b/sd/source/ui/unoidl/unocpres.hxx
index e32dce956e2f..fba0f5fa5002 100644
--- a/sd/source/ui/unoidl/unocpres.hxx
+++ b/sd/source/ui/unoidl/unocpres.hxx
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
@@ -39,7 +38,6 @@ class SdCustomShow;
 
 class SdXCustomPresentation :   public ::cppu::WeakImplHelper< 
css::container::XIndexContainer,
 
css::container::XNamed,
-
css::lang::XUnoTunnel,
 
css::lang::XComponent,
 
css::lang::XServiceInfo >
 {
@@ -62,9 +60,6 @@ public:
 void SetSdCustomShow( SdCustomShow* pShow ) noexcept { mpSdCustomShow = 
pShow; }
 SdXImpressDocument* GetModel() const noexcept { return mpModel; }
 
-// uno helper
-UNO3_GETIMPLEMENTATION_DECL(SdXCustomPresentation)
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
commit 3b7c9d40cb15d3c2bc2ec047edc1592a767f5f23
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:38:56 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:10:35 2023 +

XUnoTunnel->dynamic_cast in SdLayer

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

diff --git a/sd/source/ui/unoidl/SdUnoDrawView.cxx 
b/sd/source/ui/unoidl/SdUnoDrawView.cxx
index 7714032637c4..115a58f84b31 100644
--- a/sd/source/ui/unoidl/SdUnoDrawView.cxx
+++ b/sd/source/ui/unoidl/SdUnoDrawView.cxx
@@ -130,7 +130,7 @@ void SdUnoDrawView::setActiveLayer (const 
Reference& rxLayer)
 if ( ! rxLayer.is())
 return;
 
-SdLayer* pLayer = comphelper::getFromUnoTunnel (rxLayer);
+SdLayer* pLayer = dynamic_cast (rxLayer.get());
 if (pLayer == nullptr)
 return;
 
diff --git a/sd/source/ui/unoidl/unolayer.cxx b/sd/source/ui/unoidl/unolayer.cxx
index 0706ff552941..0db58c58e5a4 100644
--- a/sd/source/ui/unoidl/unolayer.cxx
+++ b/sd/source/ui/unoidl/unolayer.cxx
@@ -88,9 +88,6 @@ SdLayer::~SdLayer() noexcept
 {
 }
 
-// uno helper
-UNO3_GETIMPLEMENTATION_IMPL( SdLayer );
-
 // XServiceInfo
 OUString SAL_CALL SdLayer::getImplementationName()
 {
@@ -456,7 +453,7 @@ void SAL_CALL SdLayerManager::remove( const uno::Reference< 
drawing::XLayer >& x
 if( mpModel == nullptr )
 throw lang::DisposedException();
 
-SdLayer* pSdLayer = comphelper::getFromUnoTunnel(xLayer);
+SdLayer* pSdLayer = dynamic_cast(xLayer.get());
 
 if(pSdLayer && GetView())
 {
@@ -476,8 +473,10 @@ void SAL_CALL SdLayerManager::attachShapeToLayer( const 
uno::Reference< drawing:
 if( mpModel == nullptr )
 throw lang::DisposedException();
 
-SdLayer* pSdLayer = comphelper::getFromUnoTunnel(xLayer);
-SdrLayer* pSdrLayer = pSdLayer?pSdLayer->GetSdrLayer():nullptr;
+SdLayer* pSdLayer = dynamic_cast(xLayer.get());
+if(pSdLayer==nullptr)
+return;
+SdrLayer* pSdrLayer = pSdLayer->GetSdrLayer();
 if(pSdrLayer==nullptr)
 return;
 
@@ -662,7 +661,7 @@ bool compare_layers (const 

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

2023-01-22 Thread Noel Grandin (via logerrit)
 sd/source/ui/unoidl/SdUnoDrawView.cxx |2 +-
 sd/source/ui/unoidl/unolayer.cxx  |3 ---
 sd/source/ui/unoidl/unolayer.hxx  |4 
 sd/source/ui/unoidl/unopage.cxx   |4 ++--
 sd/source/ui/unoidl/unopback.cxx  |2 --
 sd/source/ui/unoidl/unopback.hxx  |7 +--
 6 files changed, 4 insertions(+), 18 deletions(-)

New commits:
commit 89ee1addd06d913ab65d61e01cf05d688bdc9904
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:34:42 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:10:25 2023 +

XUnoTunnel->dynamic_cast in SdLayerManager

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

diff --git a/sd/source/ui/unoidl/SdUnoDrawView.cxx 
b/sd/source/ui/unoidl/SdUnoDrawView.cxx
index 379a2956f6fe..7714032637c4 100644
--- a/sd/source/ui/unoidl/SdUnoDrawView.cxx
+++ b/sd/source/ui/unoidl/SdUnoDrawView.cxx
@@ -115,7 +115,7 @@ Reference SdUnoDrawView::getActiveLayer() 
const
 // Get the corresponding XLayer object from the implementation
 // object of the layer manager.
 Reference xManager (pModel->getLayerManager(), 
uno::UNO_QUERY);
-SdLayerManager* pManager = 
comphelper::getFromUnoTunnel (xManager);
+SdLayerManager* pManager = dynamic_cast 
(xManager.get());
 if (pManager != nullptr)
 xCurrentLayer = pManager->GetLayer (pLayer);
 }
diff --git a/sd/source/ui/unoidl/unolayer.cxx b/sd/source/ui/unoidl/unolayer.cxx
index 4fc571aa9e79..0706ff552941 100644
--- a/sd/source/ui/unoidl/unolayer.cxx
+++ b/sd/source/ui/unoidl/unolayer.cxx
@@ -379,9 +379,6 @@ SdLayerManager::~SdLayerManager() noexcept
 dispose();
 }
 
-// uno helper
-UNO3_GETIMPLEMENTATION_IMPL( SdLayerManager );
-
 // XComponent
 void SAL_CALL SdLayerManager::dispose(  )
 {
diff --git a/sd/source/ui/unoidl/unolayer.hxx b/sd/source/ui/unoidl/unolayer.hxx
index aa7d4891b38b..48160449f8d6 100644
--- a/sd/source/ui/unoidl/unolayer.hxx
+++ b/sd/source/ui/unoidl/unolayer.hxx
@@ -102,7 +102,6 @@ private:
 class SdLayerManager : public ::cppu::WeakImplHelper< 
css::drawing::XLayerManager,

css::container::XNameAccess,
css::lang::XServiceInfo,
-   css::lang::XUnoTunnel,
css::lang::XComponent >
 {
 friend class SdLayer;
@@ -111,9 +110,6 @@ public:
 explicit SdLayerManager( SdXImpressDocument& rMyModel ) noexcept;
 virtual ~SdLayerManager() noexcept override;
 
-// uno helper
-UNO3_GETIMPLEMENTATION_DECL( SdLayerManager )
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() override;
 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) 
override;
commit e0a1227d2fa7812bd1e6cffc2bb4e4213185c99f
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:33:18 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 19:10:16 2023 +

XUnoTunnel->dynamic_cast in SdUnoPageBackground

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

diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx
index ae05e5ce79ed..dda5cb3baea0 100644
--- a/sd/source/ui/unoidl/unopage.cxx
+++ b/sd/source/ui/unoidl/unopage.cxx
@@ -2455,7 +2455,7 @@ void SdDrawPage::setBackground( const Any& rValue )
 }
 
 // is it our own implementation?
-SdUnoPageBackground* pBack = 
comphelper::getFromUnoTunnel( xSet );
+SdUnoPageBackground* pBack = dynamic_cast( 
xSet.get() );
 
 SfxItemSetFixed aSet( 
GetModel()->GetDoc()->GetPool() );
 
@@ -2827,7 +2827,7 @@ void SdMasterPage::setBackground( const Any& rValue )
 {
 // first fill an item set
 // is it our own implementation?
-SdUnoPageBackground* pBack = 
comphelper::getFromUnoTunnel( xInputSet );
+SdUnoPageBackground* pBack = dynamic_cast( 
xInputSet.get() );
 
 SfxItemSetFixed aSet( 
GetModel()->GetDoc()->GetPool() );
 
diff --git a/sd/source/ui/unoidl/unopback.cxx b/sd/source/ui/unoidl/unopback.cxx
index 02ba92ff0178..5b500371f54c 100644
--- a/sd/source/ui/unoidl/unopback.cxx
+++ b/sd/source/ui/unoidl/unopback.cxx
@@ -45,8 +45,6 @@ const SvxItemPropertySet* ImplGetPageBackgroundPropertySet()
 return _Impl;
 }
 
-UNO3_GETIMPLEMENTATION_IMPL( SdUnoPageBackground );
-
 SdUnoPageBackground::SdUnoPageBackground(
 SdDrawDocument* pDoc /* = NULL */,
 const SfxItemSet* pSet /* = NULL */)
diff --git a/sd/source/ui/unoidl/unopback.hxx b/sd/source/ui/unoidl/unopback.hxx
index c70cc2fea4eb..c2834d9298ee 100644
--- a/sd/source/ui/unoidl/unopback.hxx
+++ 

[Libreoffice-bugs] [Bug 153153] Improve the balloon notification’s text to urge users to use the latest version

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

--- Comment #2 from Adolfo Jayme Barrientos  ---
To follow on your idea, Mike, it could be a link like Mozilla Firefox does, to
avoid putting a lot of additional text to the dialog.

┌─┐
│Version: Major.minor.bugfix.build (U͟p͟g͟r͟a͟d͟e͟ ͟f͟o͟r͟ ͟t͟h͟e͟ 
͟l͟a͟t͟e͟s͟t͟ ͟b͟u͟g͟ ͟f͟i͟x͟e͟s͟)│
└─┘

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

[Libreoffice-bugs] [Bug 131023] Preinstalled 3000px theme graphics not extending full width of UI elements, affects 2K, 4K, 5K and multi-head systems

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||tur...@strider21.com

--- Comment #31 from V Stuart Foote  ---
*** Bug 130335 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 130335] Dark theme not working everywhere

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
actually a dupe of bug 131023, the Mozilla derived Personalization themes are
junk and need refactoring of bug 125217.

Meanwhile, at 7.5 support for Windows 10 "Dark color theme" functions with no
need for the Personalization.

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

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

[Libreoffice-bugs] [Bug 153148] Menu background color dark when Windows 11 in dark mode and Libre Office in Light mode

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
Dark mode support for Windows builds is experimental through the 7.4 releases.

Please enable experimental features active (Tools -> Options -> Advanced) and
restart LO.

If that corrects this is a dup of bug 118320 where
https://gerrit.libreoffice.org/c/core/+/138381 has now set the Dark mode
support as non-experimental for the 7.5 release.

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

[Libreoffice-bugs] [Bug 123703] FILEOPEN RTF Size of space sequence is different in Word and Writer

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

--- Comment #14 from Mike Kaganski  ---
(In reply to Mike Kaganski from comment #13)
> The actual cause here is the \fdbminor entry

Or maybe \dntblnsbdb (and corresponding layout option "Balance SBCS characters
and DBCS characters" in Options->Advanced).

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

[Libreoffice-bugs] [Bug 153153] Improve the balloon notification’s text to urge users to use the latest version

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

--- Comment #1 from Mike Kaganski  ---
I suppose that such a prompt would be considered very intrusive. I'd say, it
would be OK if shown as static text on About dialog (yes, only discoverable if
user decides to look there; yet, when filing bugs, users are expected to visit
the dialog to get the version information ...)

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

[Libreoffice-bugs] [Bug 153152] Main portal image not formatting correctly

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

Eike Rathke  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153153] New: Improve the balloon notification’s text to urge users to use the latest version

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

Bug ID: 153153
   Summary: Improve the balloon notification’s text to urge users
to use the latest version
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fit...@ubuntu.com

Here in QA, we always repeatedly prompt users to use the latest available
builds before opening a bug report, because they don’t know that we only
provide support (or “assistance”, as some people at TDF misguidedly want to
call it. Pt, call a spade a spade) for the latest build at any given time.

The text could say something like this: “This build is now out of support.
Upgrade to the newest available version to get the latest bug fixes.”

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

[Libreoffice-bugs] [Bug 153152] New: Main portal image not formatting correctly

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

Bug ID: 153152
   Summary: Main portal image not formatting correctly
   Product: LibreOffice
   Version: 7.4.4.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ewan...@gmail.com

The page is not formatted correctly for 4k screens using MS Edge.
Main image is moved off to the right

Andrew Jack
CTO https://narcosa.com;> Narcosa 

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

[Libreoffice-bugs] [Bug 153150] ASCII U+266E (natural symbol in music) is missing from special characters

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

--- Comment #1 from Mike Kaganski  ---
Cannot reproduce: it shows the correct character, when you choose fonts
containing it. E.g., DejaVu Sans.

Note that LibreOffice does *not* "generate" characters; Special Characters
dialog only shows characters present in the selected font.

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

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

2023-01-22 Thread Jean-Pierre Ledure (via logerrit)
 wizards/source/sfdocuments/SF_Calc.xba |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4525c47fa150bfc13b93763a3bce910623158810
Author: Jean-Pierre Ledure 
AuthorDate: Sun Jan 22 17:33:36 2023 +0100
Commit: Jean-Pierre Ledure 
CommitDate: Sun Jan 22 17:31:14 2023 +

ScriptForge (SF_Calc) fix typo

Change-Id: I086d4f9f6490ecce773aef598049af07b5f852d7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145978
Tested-by: Jean-Pierre Ledure 
Reviewed-by: Jean-Pierre Ledure 
Tested-by: Jenkins

diff --git a/wizards/source/sfdocuments/SF_Calc.xba 
b/wizards/source/sfdocuments/SF_Calc.xba
index ac6976acf2de..8169ae2e188c 100644
--- a/wizards/source/sfdocuments/SF_Calc.xba
+++ b/wizards/source/sfdocuments/SF_Calc.xba
@@ -2665,7 +2665,7 @@ Try:
sRowsRange = SetArray(Offset(sMirrorRange, , 
Width(sMirrorRange), 1, 1), vRows())
 
**Step 3: sort the mirrored data, including the row 
numbers column
- sMirrorRange = $SF_WORK.$A$1:$K$100
+ sFullMirrorRange = $SF_WORK.$A$1:$K$100
sFullMirrorRange = Offset(sMirrorRange, , , , 
Width(sMirrorRange) + 1)
SortRange(sFullMirrorRange, SortKeys := Columns, CaseSensitive 
:= CaseSensitive)
 
@@ -4826,4 +4826,4 @@ CatchSheet:
 End Function SFDocuments.SF_Calc._ValidateSheetName
 
 REM  END OF SFDOCUMENTS.SF_CALC
-
+
\ No newline at end of file


[Libreoffice-bugs] [Bug 152889] View->Show Whitespace is reset after File->Print

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

Dieter  changed:

   What|Removed |Added

 Blocks||146315
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|

--- Comment #1 from Dieter  ---
I confirm it with

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 146315] [META] Show/Hide Whitespace bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||152889


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152889
[Bug 152889] View->Show Whitespace is reset after File->Print
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

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

ericbressle...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from ericbressle...@gmail.com ---
There was no change in the "copy" problem. I unchecked "Use Skia for all
rendering" and restarted LO. No change. I checked "Use Skia..." and restarted,
and no change.

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

[Libreoffice-bugs] [Bug 109195] [META] DOCX (OOXML) Footnote and Endnote bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||152844


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152844
[Bug 152844] Footnote separator alignment + Footnote paragraph direction flip
in LO->MSO->LO round-trip
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

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

Dieter  changed:

   What|Removed |Added

 Depends on|152844  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152844
[Bug 152844] Footnote separator alignment + Footnote paragraph direction flip
in LO->MSO->LO round-trip
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152844] Footnote separator alignment + Footnote paragraph direction flip in LO->MSO->LO round-trip

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

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1
 Blocks|104520  |109195
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Dieter  ---
Eyal, do you also get the bug, if you reopen the file, you've saved as docx? Is
it possible for you to remove confidential content?
=> NEEDINFO


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104520
[Bug 104520] [META] DOCX (OOXML) bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=109195
[Bug 109195] [META] DOCX (OOXML) Footnote and Endnote bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152841] FILEOPEN RTF/DOCX Paragraph height is defined by hidden characters even in Print mode

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

Dieter  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter  ---
If "PI button on the Standard toolbar" ist the Print Preview button, I confirm
the behaviour with

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

but I don't understand, why this is the wrong behaviour. If I hide the
character, result is the same.

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

[Libreoffice-bugs] [Bug 152661] "Hybrid PDF" must share embedded (non-font) media between the ODT and the proper PDF

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

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|"Hybrid PDF" must share |"Hybrid PDF" must share
   |embedded media between the  |embedded (non-font) media
   |ODT and the proper PDF  |between the ODT and the
   ||proper PDF

--- Comment #13 from Eyal Rozenberg  ---
Ok, clarifying that fonts are out of scope. But of course there are non-font,
non-image media objects which may be embedded in the document, so hopefully it
could be "everything but fonts". But of course, whatever can be implemented
without jumping through too many hoops.

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

[Libreoffice-bugs] [Bug 146056] Setting page layout to 'Landscape' in Print an changing printer doesn't work properly

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

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
Still reproduced with a build from today:

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

I did:
1) Open Writer
2) Ctrl + P
3) Change orientation to landscape: preview switches to landscape
4) Change printer to Print to File: preview changes to portrait but orientation
dropdown still shows "Landscape"
5) Change again to the original printer: orientation dropdown changes to
automatic

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

[Libreoffice-bugs] [Bug 153151] Calc "Hidden Row/Col indicator" view option is not accessible through alternative UIs (tabbed toolbar, etc.) without full menubar

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

--- Comment #1 from Jeff Fortin Tam  ---
Also: I would suggest that this option be enabled by default, rather than
disabled by default; I believe users who have so many hidden non-adjacent rows
or columns are a minority, who would be easily able to turn off the feature (if
it was clearly exposed in the tabbed, tabbed compact, and groupedbar compact
UIs), and that the benefits of turning this on by default would be greater for
the majority of people. That said, while this is my suggestion from a HCI point
of view, but it's not a hill I'm willing to die on.

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

[Libreoffice-bugs] [Bug 153151] Calc "Hidden Row/Col indicator" view option is not accessible through alternative UIs (tabbed toolbar, etc.) without full menubar

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

Jeff Fortin Tam  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||7301,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||8258

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

[Libreoffice-bugs] [Bug 153151] New: Calc "Hidden Row/Col indicator" view option is not accessible through alternative UIs (tabbed toolbar, etc.) without full menubar

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

Bug ID: 153151
   Summary: Calc "Hidden Row/Col indicator" view option is not
accessible through alternative UIs (tabbed toolbar,
etc.) without full menubar
   Product: LibreOffice
   Version: 7.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nekoh...@gmail.com

Description:
Bug #128258 implemented a way to actually notice that there are hidden
rows/columns without needing an eagle's eye. Bug #147301 disabled it by
default.

However, the existence of this toggleable option can only be discovered if
using the traditional user interface (or turning on the full menubar). It is
not available in any toolbars or menubutton when running any of these UI layout
types:

* Tabbed
* Tabbed Compact
* Groupedbar Compact

It should ideally be available as a button in the View group (if available
space allows), or at least present in the menubutton.

It could also benefit from being available as a checkbox/toggle menu item in
the right-click menu in spreadsheet headers, next to the actions to hide/show
rows/columns.

Actual Results:


Expected Results:



Reproducible: Always


User Profile Reset: No

Additional Info:

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

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

2023-01-22 Thread Jean-Pierre Ledure (via logerrit)
 wizards/source/scriptforge/SF_Utils.xba  |2 +-
 wizards/source/scriptforge/po/ScriptForge.pot|4 ++--
 wizards/source/scriptforge/po/en.po  |4 ++--
 wizards/source/scriptforge/po/pt.po  |2 +-
 wizards/source/scriptforge/python/scriptforge.py |2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 3563f2064ab4b4772dd805a4acff9e541a723431
Author: Jean-Pierre Ledure 
AuthorDate: Sun Jan 22 16:23:00 2023 +0100
Commit: Jean-Pierre Ledure 
CommitDate: Sun Jan 22 16:27:39 2023 +

ScriptForge Upgrade version number to 7.6

Change-Id: Ifbf5ba5b28b7afff64ed36965eadfa68a750cfd9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145976
Tested-by: Jean-Pierre Ledure 
Reviewed-by: Jean-Pierre Ledure 
Tested-by: Jenkins

diff --git a/wizards/source/scriptforge/SF_Utils.xba 
b/wizards/source/scriptforge/SF_Utils.xba
index 91b703c46431..d01d66aa946f 100644
--- a/wizards/source/scriptforge/SF_Utils.xba
+++ b/wizards/source/scriptforge/SF_Utils.xba
@@ -21,7 +21,7 @@ REM 
= GLOBAL
 Global _SF_As VariantSF_Root (Basic) object)
 
  ScriptForge version
-Const SF_Version = 7.4
+Const SF_Version = 7.6
 
  Standard symbolic names for VarTypes
  V_EMPTY = 0
diff --git a/wizards/source/scriptforge/po/ScriptForge.pot 
b/wizards/source/scriptforge/po/ScriptForge.pot
index 894b9da3bbe0..e1eca9ae462f 100644
--- a/wizards/source/scriptforge/po/ScriptForge.pot
+++ b/wizards/source/scriptforge/po/ScriptForge.pot
@@ -7,14 +7,14 @@
 #  *** are part of the LibreOffice project.  ***
 #  *
 #  
-#  ScriptForge Release 7.4
+#  ScriptForge Release 7.6
 #  ---
 #  
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2022-10-12 15:07:35\n"
+"POT-Creation-Date: 2023-01-22 15:34:36\n"
 "PO-Revision-Date: -MM-DD HH:MM:SS\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
diff --git a/wizards/source/scriptforge/po/en.po 
b/wizards/source/scriptforge/po/en.po
index 894b9da3bbe0..e1eca9ae462f 100644
--- a/wizards/source/scriptforge/po/en.po
+++ b/wizards/source/scriptforge/po/en.po
@@ -7,14 +7,14 @@
 #  *** are part of the LibreOffice project.  ***
 #  *
 #  
-#  ScriptForge Release 7.4
+#  ScriptForge Release 7.6
 #  ---
 #  
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
-"POT-Creation-Date: 2022-10-12 15:07:35\n"
+"POT-Creation-Date: 2023-01-22 15:34:36\n"
 "PO-Revision-Date: -MM-DD HH:MM:SS\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
diff --git a/wizards/source/scriptforge/po/pt.po 
b/wizards/source/scriptforge/po/pt.po
index 3069dc87e0b3..316956c431c4 100644
--- a/wizards/source/scriptforge/po/pt.po
+++ b/wizards/source/scriptforge/po/pt.po
@@ -7,7 +7,7 @@
 #  *** are part of the LibreOffice project.  ***
 #  *
 #
-#  ScriptForge Release 7.4
+#  ScriptForge Release 7.6
 #  ---
 #
 msgid ""
diff --git a/wizards/source/scriptforge/python/scriptforge.py 
b/wizards/source/scriptforge/python/scriptforge.py
index f368198be7e2..7abd8ff67716 100644
--- a/wizards/source/scriptforge/python/scriptforge.py
+++ b/wizards/source/scriptforge/python/scriptforge.py
@@ -103,7 +103,7 @@ class ScriptForge(object, metaclass = _Singleton):
 # Class constants
 # #
 library = 'ScriptForge'
-Version = '7.4'  # Actual version number
+Version = '7.6'  # Actual version number
 #
 # Basic dispatcher for Python scripts
 basicdispatcher = 
'@application#ScriptForge.SF_PythonHelper._PythonDispatcher'


Re: Consider changing version numbering scheme

2023-01-22 Thread Michael H
Can I just suggest that the problem is described here and then ignored.

Could you possibly consider changing the rate of change so that WHEN an
update happens it IS regarded as "HEY we did something cool" instead of
"HEY... we've moved things around to make it harder for you and introduced
a bunch of bugs that will get in your way and possibly delete your work
without warning."

The second kind of change should never even be possible for download as a
general release. You're using your whole userbase as alpha-testers... and I
think you're noticing users have figured it out.


[Libreoffice-qa] Live streaming LibreOffice bug triaging (week 4)

2023-01-22 Thread Ilmari Lauhakangas
I will be live streaming a 1 hour LibreOffice bug triaging session in 
the Jitsi room https://jitsi.documentfoundation.org/ilmaritriages on


Mon, 23 January 2023 at 11:00 UTC
Tue, 24 January 2023 at 08:00 UTC
Wed, 25 January 2023 at 13:00 UTC
Thu, 26 January 2023 at 09:00 UTC
Fri, 27 January 2023 at 10:00 UTC

Anyone is welcome to interrupt me during the session and ask questions 
about the process or request me to test something specific.


Ilmari


[Libreoffice-bugs] [Bug 120283] connector view changes when duplicating slide

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

--- Comment #9 from Dave Gilbert  ---
Created attachment 184833
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184833=edit
More minimal document

There's something group related going on.

The bottom box is actually a member of a group; and in the minimal version the
only member.
Hit 'ungrup' and the problem goes away.

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

[Libreoffice-bugs] [Bug 153150] New: ASCII U+266E (natural symbol in music) is missing from special characters

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

Bug ID: 153150
   Summary: ASCII U+266E (natural symbol in music) is missing from
special characters
   Product: LibreOffice
   Version: 7.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ats...@gmail.com

Description:
Self explanatory

Actual Results:
Go to Insert Special Character. Add 266E to U+ search box and there is no
result

Expected Results:
Generation of character


Reproducible: Always


User Profile Reset: No

Additional Info:
Can't comment the data appears not to exist in the software

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

[Libreoffice-bugs] [Bug 152901] Picture change when using animation with group in Impress

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

raal  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from raal  ---
Attach your test file and provide printscreen of the bug.

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

[Libreoffice-bugs] [Bug 102495] [META] KDE VCL backend bugs and enhancements

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

Bug 153147 Summary: Dropdown menu are detached with VCL Kf5 and Qt5 backend
https://bugs.documentfoundation.org/show_bug.cgi?id=153147

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149805] kf5: Gap when expanding comboboxes in toolbar

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||guido.iod...@gmail.com

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
*** Bug 153147 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 153147] Dropdown menu are detached with VCL Kf5 and Qt5 backend

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Keywords|bibisectRequest, regression |
 Resolution|--- |DUPLICATE

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
I bibisected to a commit that allowed me to find out it was already reported:
bug 149805.

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

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

[Libreoffice-bugs] [Bug 152404] Crash in Writer when using Japanese Hiragana input method and shortcut Ctrl+Alt+C to insert a new comment while there is uncommitted text

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

--- Comment #11 from Patrick Luby  ---
(In reply to Caolán McNamara from comment #10)
> "Without your patch, does Ctrl-Alt-foo commit or discard uncommitted text?"
> In my case (out of the box F38 GNOME with whatever is the default IM I get
> from setting, keyboard, input sources) it commits the preedit text and
> LibreOffice doesn't receive the "foo".

So it commits the text and the Ctrl-Alt-foo is ignored. On macOS, the
Command-Option-foo does get dispatched after the text is committed. If you
change your patch to use EndExtTextInputFlags::Complete, does it still longer
ignore the Ctrl-Alt-foo shortcut?

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

[Libreoffice-bugs] [Bug 152404] Crash in Writer when using Japanese Hiragana input method and shortcut Ctrl+Alt+C to insert a new comment while there is uncommitted text

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

--- Comment #10 from Caolán McNamara  ---
"Without your patch, does Ctrl-Alt-foo commit or discard uncommitted text?" In
my case (out of the box F38 GNOME with whatever is the default IM I get from
setting, keyboard, input sources) it commits the preedit text and LibreOffice
doesn't receive the "foo".

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

[Libreoffice-bugs] [Bug 152901] Picture change when using animation with group in Impress

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

--- Comment #2 from Leif Johansen  ---
as I wrote the bug is coming randomly, and the Impress is now the next version
;).

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

[Libreoffice-bugs] [Bug 152661] "Hybrid PDF" must share embedded media between the ODT and the proper PDF

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

--- Comment #12 from Tomaz Vajngerl  ---
(In reply to V Stuart Foote from comment #10)
> Back to Unconfirmed then.
> 
> @quikee, are you offering to tackle it?

I'll try, but first need to change the ODF document to be embedded as a
compatible PDF embedded file.   

(In reply to Eyal Rozenberg from comment #11)
> So, that might actually be relevant even when the images don't originally
> come from a PDF.  Or do you mean you want to avoid re-encoding the images as
> object streams, even when not recompressing?

I mean the option in PDF export to re-compress JPEG images to reduce DPI
resolution. Re-compressing would be problematic in this case as we don't want
to mess with the original images in the ODF document.

> Do you feel this bug should focus just on images, leaving fonts for a
> separate bug report? Or is it close enough to keep them together in a single
> bug?

I think fonts would be way more messy and probably not worth the effort to
de-duplicate, so it is at least out of my scope. I would keep this one for
images only as also the document you refer to doesn't have fonts embedded into
ODT file, but it does contain 20+MB of images that can be de-duplicated.

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

[Libreoffice-bugs] [Bug 38065] PDF Export with LibO Application Colors / Document background color

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

lol  changed:

   What|Removed |Added

 CC||lob...@web.de

--- Comment #25 from lol  ---
I can also reproduce this bug. Same behavior as described in comment 24. Tested
with

Version: 7.4.4.2 (x64) / LibreOffice Community
Build ID: 85569322deea74ec9134968a29af2df5663baa21
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

and

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 37e3455a13ab5741104bf41d05a80e60a4612682
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

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

[Libreoffice-bugs] [Bug 152404] Crash in Writer when using Japanese Hiragana input method and shortcut Ctrl+Alt+C to insert a new comment while there is uncommitted text

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

--- Comment #9 from Patrick Luby  ---
(In reply to Caolán McNamara from comment #8)
> Created attachment 184831 [details]
> quick demo plausible fix
> 

One question about your patch: the macOS code dispatches an
EndExtTextInputFlags::Complete event and commits any uncommitted text when the
Command key is pressed. On both macOS and Windows, selecting a menu item also
commits any uncommitted text.

Without your patch, does Ctrl-Alt-foo commit or discard uncommitted text?

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

[Libreoffice-bugs] [Bug 62366] SLIDESHOW: Pen on the presenter console

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

Aurélien  changed:

   What|Removed |Added

 OS|All |Windows (All)
   Hardware|Other   |x86-64 (AMD64)
Version|4.0.1.2 release |7.3.7.2 release

--- Comment #17 from Aurélien  ---
Same bug for me. Pretty annoying that we cannot draw on the presenter screen.

Version: 7.3.7.2 (x64) / LibreOffice Community
Build ID: e114eadc50a9ff8d8c8a0567d6da8f454beeb84f
CPU threads: 16; OS: Windows 10.0 Build 19044; UI render: Skia/Vulkan; VCL: win
Locale: fr-FR (fr_FR); UI: fr-FR
Calc: threaded

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

[Libreoffice-bugs] [Bug 153149] New: LibreOffice Writer and Calc buttons group is mixed in taskbar of Debian 11.6 KDE

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

Bug ID: 153149
   Summary: LibreOffice Writer and Calc buttons group is mixed in
taskbar of Debian 11.6 KDE
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dragospac...@gmail.com

Created attachment 184832
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184832=edit
Picture 1 of the issue

Hello,

Debian 11.6 5.10.0-20-amd64 LibreOffice 7.0.42. If a simple bash script opens
lets say 8 files of Writer and 8 files(8 does not matter, can be any higher
number for visibility) of Calc at same time the KDE taskbar groping is wrong,
please see attached picture. Writer and Calc files are grouped under same Calc
or Writer icon. It can even worse than in my picture. I will upload another
after bug is filled with some more ugly mix.

Example .sh script to reproduce:
#!/bin/bash
libreoffice --writer “1.odt” “2.odt” “3.odt” “4.odt” “5.odt” “6.odt” “7.odt”
“8.odt” &
sleep 60
libreoffice --calc “1.ods” “2.ods” “3.ods” “4.ods” “5.ods” “6.ods” “7.ods”
“8.ods” &
exit 2

Workaround #1
Workaround with a sleep timer introduced to wait for the all writer documents
to load completely until calc ones start.

Wordaround #2: use xdg-open to load all the documents + LibreOffice 7.4.4 +
Oracle JDK 17.0.6 LTS. I changed to xdg-open and Oracle JRE/JDK to isolate the
issue somehow, unfortunately I did not had the time to really isolate in
between these components.

#!/bin/bash
xdg-open “1.odt”
#…
xdg-open “1.ods”
exit 2

Cheers,

Dragos

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

[Libreoffice-commits] core.git: 2 commits - sd/source sfx2/IwyuFilter_sfx2.yaml sfx2/source

2023-01-22 Thread Noel Grandin (via logerrit)
 sd/source/ui/inc/unosrch.hxx|5 +
 sd/source/ui/unoidl/unosrch.cxx |8 +++-
 sfx2/IwyuFilter_sfx2.yaml   |3 ---
 sfx2/source/inc/asyncfunc.hxx   |   36 
 4 files changed, 4 insertions(+), 48 deletions(-)

New commits:
commit ff496c663904d97567f1876b2d9b758131f71be8
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:31:20 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 13:25:40 2023 +

XUnoTunnel->dynamic_cast in SdUnoSearchReplaceDescriptor

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

diff --git a/sd/source/ui/inc/unosrch.hxx b/sd/source/ui/inc/unosrch.hxx
index 965e80278e8d..104fd27474a1 100644
--- a/sd/source/ui/inc/unosrch.hxx
+++ b/sd/source/ui/inc/unosrch.hxx
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 
 #include 
 #include 
@@ -71,7 +70,7 @@ public:
 /** this class holds the parameters and status of a search or replace 
operation performed
 by class SdUnoSearchReplaceShape */
 
-class SdUnoSearchReplaceDescriptor final : public ::cppu::WeakImplHelper< 
css::lang::XUnoTunnel, css::util::XReplaceDescriptor > // public 
css::util::XSearchDescriptor, css::beans::XPropertySet
+class SdUnoSearchReplaceDescriptor final : public ::cppu::WeakImplHelper< 
css::util::XReplaceDescriptor > // public css::util::XSearchDescriptor, 
css::beans::XPropertySet
 {
 std::unique_ptr mpPropSet;
 
@@ -90,8 +89,6 @@ public:
 bool IsCaseSensitive() const { return mbCaseSensitive; }
 bool IsWords() const { return mbWords; }
 
-UNO3_GETIMPLEMENTATION_DECL( SdUnoSearchReplaceDescriptor )
-
 // XSearchDescriptor
 virtual OUString SAL_CALL getSearchString(  ) override;
 virtual void SAL_CALL setSearchString( const OUString& aString ) override;
diff --git a/sd/source/ui/unoidl/unosrch.cxx b/sd/source/ui/unoidl/unosrch.cxx
index 80b5a2beb27c..2fa57012349d 100644
--- a/sd/source/ui/unoidl/unosrch.cxx
+++ b/sd/source/ui/unoidl/unosrch.cxx
@@ -106,7 +106,7 @@ uno::Reference< util::XReplaceDescriptor > SAL_CALL 
SdUnoSearchReplaceShape::cre
 
 sal_Int32 SAL_CALL SdUnoSearchReplaceShape::replaceAll( const uno::Reference< 
util::XSearchDescriptor >& xDesc )
 {
-SdUnoSearchReplaceDescriptor* pDescr = 
comphelper::getFromUnoTunnel( xDesc );
+SdUnoSearchReplaceDescriptor* pDescr = 
dynamic_cast( xDesc.get() );
 if( pDescr == nullptr )
 return 0;
 
@@ -186,7 +186,7 @@ uno::Reference< css::util::XSearchDescriptor > SAL_CALL 
SdUnoSearchReplaceShape:
 
 uno::Reference< css::container::XIndexAccess > SAL_CALL 
SdUnoSearchReplaceShape::findAll( const css::uno::Reference< 
css::util::XSearchDescriptor >& xDesc )
 {
-SdUnoSearchReplaceDescriptor* pDescr = 
comphelper::getFromUnoTunnel( xDesc );
+SdUnoSearchReplaceDescriptor* pDescr = 
dynamic_cast( xDesc.get() );
 if( pDescr == nullptr )
 return uno::Reference< container::XIndexAccess > ();
 
@@ -298,7 +298,7 @@ uno::Reference< drawing::XShape >  
SdUnoSearchReplaceShape::GetCurrentShape() co
 
 uno::Reference< css::uno::XInterface > SAL_CALL 
SdUnoSearchReplaceShape::findNext( const css::uno::Reference< 
css::uno::XInterface >& xStartAt, const css::uno::Reference< 
css::util::XSearchDescriptor >& xDesc )
 {
-SdUnoSearchReplaceDescriptor* pDescr = 
comphelper::getFromUnoTunnel( xDesc );
+SdUnoSearchReplaceDescriptor* pDescr = 
dynamic_cast( xDesc.get() );
 
 uno::Reference< uno::XInterface > xFound;
 
@@ -635,8 +635,6 @@ uno::Reference< drawing::XShape >  
SdUnoSearchReplaceShape::GetShape( const uno:
 operation performed by class SdUnoSearchReplaceShape
   */
 
-UNO3_GETIMPLEMENTATION_IMPL( SdUnoSearchReplaceDescriptor );
-
 SdUnoSearchReplaceDescriptor::SdUnoSearchReplaceDescriptor()
 {
 mpPropSet.reset( new SvxItemPropertySet(ImplGetSearchPropertyMap(), 
SdrObject::GetGlobalDrawObjectItemPool()) );
commit bddbc496942948f94f4c9665ac6eea4b1b28da61
Author: Noel Grandin 
AuthorDate: Fri Jan 20 13:28:42 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Jan 22 13:25:30 2023 +

AsyncFunc header is dead

since
commit 688489959e69994d455f36f3e9bb4c0ba3ee87aa
Author: Caolán McNamara 
Date:   Tue Nov 2 14:25:24 2021 +
Revert "tdf#117895: "Edit document properties before saving"..."

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

diff --git a/sfx2/IwyuFilter_sfx2.yaml b/sfx2/IwyuFilter_sfx2.yaml
index f432ce5a3896..9d653c2ae023 100644
--- a/sfx2/IwyuFilter_sfx2.yaml
+++ b/sfx2/IwyuFilter_sfx2.yaml
@@ -131,9 +131,6 @@ excludelist:
 sfx2/source/doc/signaturestate.cxx:
 # Actually used
 - com/sun/star/security/DocumentSignatureInformation.hpp
-sfx2/source/inc/asyncfunc.hxx:
-# 

  1   2   >