[Bug 160316] Distorted tabs on Mac

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160316

Haris  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #2 from Haris  ---
Hi Dillon Webb,

I was able to reproduce the steps you provided and got the same result on MacOS
Sonoma 14.1.2, but it doesn't affect any of the expected functionality of the
selectable options within those tabs. Have you run into any issues with the
selectable options such as the font size dropdown, font text dropdown, page
size, or any others? This doesn't really seem like a bug but just a slight
alignment issue for the tab bar.

These are the builds I used to test:

Stable Build
Version: 24.2.1.2 (AARCH64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 10; OS: macOS 14.1.2; UI render: Skia/Metal; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

Master/Daily Build
Version: 24.8.0.0.alpha0+ (AARCH64) / LibreOffice Community
Build ID: c4023d3ec604abfff38be2053e2989c7ec2ba8c1
CPU threads: 10; OS: macOS 14.1.2; UI render: Skia/Metal; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Bug 160347] Missing spaces in documents

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160347

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #12 from Stéphane Guillou (stragu) 
 ---
OK, we've got the same issue in bug 160170. Also with German hyphenation.

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

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

[Bug 160170] FILEOPEN .DOCX: words pulled together

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160170

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||michaelweig...@gmx.eu

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

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

[Bug 160400] Copy/Pasting a table from website into table cell in Writer drops the source table

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160400

--- Comment #2 from Haris  ---
Hi Telesto,

I was able to reproduce the steps you provided and got the same result. I used
a ARM64 Macbook Pro, and the following two builds:

Stable Build:
Version: 24.2.1.2 (AARCH64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 10; OS: macOS 14.1.2; UI render: Skia/Metal; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

Master/Daily Build
Version: 24.8.0.0.alpha0+ (AARCH64) / LibreOffice Community
Build ID: c4023d3ec604abfff38be2053e2989c7ec2ba8c1
CPU threads: 10; OS: macOS 14.1.2; UI render: Skia/Metal; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

core.git: uitest/libreoffice vcl/source

2024-03-27 Thread Noel Grandin (via logerrit)
 uitest/libreoffice/uno/eventlistener.py |8 ++--
 vcl/source/window/dialog.cxx|3 +++
 2 files changed, 5 insertions(+), 6 deletions(-)

New commits:
commit 8093bd7017f2745d5048cdedcb9d61976bd3e69d
Author: Noel Grandin 
AuthorDate: Wed Mar 27 21:56:15 2024 +0200
Commit: Noel Grandin 
CommitDate: Thu Mar 28 06:43:54 2024 +0100

improve logging in UITests

(1) log useful stuff that is happening instead of logging events that
are __not__ interesting

(2) add the UIObject title to the event so we know who the event belongs
to

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

diff --git a/uitest/libreoffice/uno/eventlistener.py 
b/uitest/libreoffice/uno/eventlistener.py
index 54076efe337e..f7092836c935 100644
--- a/uitest/libreoffice/uno/eventlistener.py
+++ b/uitest/libreoffice/uno/eventlistener.py
@@ -36,15 +36,11 @@ class EventListener(XDocumentEventListener,unohelper.Base):
 self.xGEB.removeDocumentEventListener(self)
 
 def documentEventOccured(self, event):
-if self.printEvents is True:
-print(event.EventName)
-
+print("documentEventOccured: name=" + event.EventName + ", title=" + 
str(event.Supplement))
+print("documentEventOccured: found event we are waiting for")
 if event.EventName in self.eventNames:
 self.executed = True
 self.eventExecuted.append(event.EventName)
-else:
-print(self.eventNames)
-print(event.EventName)
 
 def hasExecuted(self, eventName):
 return eventName in self.eventExecuted
diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index b60a96e06440..1ba812c94197 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -632,6 +632,7 @@ void Dialog::dispose()
 css::uno::Reference 
xEventBroadcaster(css::frame::theGlobalEventBroadcaster::get(xContext), 
css::uno::UNO_SET_THROW);
 css::document::DocumentEvent aObject;
 aObject.EventName = "DialogClosed";
+aObject.Supplement <<= GetText(); // title
 xEventBroadcaster->documentEventOccured(aObject);
 UITestLogger::getInstance().log(u"Close Dialog");
 
@@ -1029,6 +1030,7 @@ bool Dialog::ImplStartExecute()
 css::frame::theGlobalEventBroadcaster::get(xContext), 
css::uno::UNO_SET_THROW);
 css::document::DocumentEvent aObject;
 aObject.EventName = "DialogExecute";
+aObject.Supplement <<= GetText(); // title
 xEventBroadcaster->documentEventOccured(aObject);
 if (bModal)
 UITestLogger::getInstance().log(Concat2View("Open Modal " + get_id()));
@@ -1651,6 +1653,7 @@ void Dialog::Activate()
 css::uno::Reference 
xEventBroadcaster(css::frame::theGlobalEventBroadcaster::get(xContext), 
css::uno::UNO_SET_THROW);
 css::document::DocumentEvent aObject;
 aObject.EventName = "ModelessDialogVisible";
+aObject.Supplement <<= GetText(); // title
 xEventBroadcaster->documentEventOccured(aObject);
 }
 SystemWindow::Activate();


core.git: vcl/source

2024-03-27 Thread Noel Grandin (via logerrit)
 vcl/source/uitest/uiobject.cxx |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 9b98856c59707037cc25ec7f2dae975bc269901d
Author: Noel Grandin 
AuthorDate: Wed Mar 27 21:52:04 2024 +0200
Commit: Noel Grandin 
CommitDate: Thu Mar 28 06:43:24 2024 +0100

prevent SEGV in ToolBoxUIObject::get_state

if we call it while it has no current item id

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

diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index 24b11ecb8556..2671a9145436 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -1696,9 +1696,10 @@ OUString ToolBoxUIObject::get_action(VclEventId nEvent) 
const
 StringMap ToolBoxUIObject::get_state()
 {
 StringMap aMap = WindowUIObject::get_state();
-aMap["CurrSelectedItemID"] = 
OUString::number(sal_uInt16(mxToolBox->GetCurItemId()));
-aMap["CurrSelectedItemText"] = 
mxToolBox->GetItemText(mxToolBox->GetCurItemId());
-aMap["CurrSelectedItemCommand"] = 
mxToolBox->GetItemCommand(mxToolBox->GetCurItemId());
+ToolBoxItemId nCurItemId = mxToolBox->GetCurItemId();
+aMap["CurrSelectedItemID"] = OUString::number(sal_uInt16(nCurItemId));
+aMap["CurrSelectedItemText"] = nCurItemId ? 
mxToolBox->GetItemText(nCurItemId) : "";
+aMap["CurrSelectedItemCommand"] = nCurItemId ? 
mxToolBox->GetItemCommand(nCurItemId) : "";
 aMap["ItemCount"] = OUString::number(mxToolBox->GetItemCount());
 return aMap;
 }


core.git: accessibility/inc accessibility/source

2024-03-27 Thread Noel Grandin (via logerrit)
 accessibility/inc/standard/vclxaccessiblelistitem.hxx|9 -
 accessibility/source/standard/vclxaccessiblelistitem.cxx |   90 ++-
 2 files changed, 42 insertions(+), 57 deletions(-)

New commits:
commit 6658a384245f04b433fb540c757b9bd9be43e1c3
Author: Noel Grandin 
AuthorDate: Wed Mar 27 12:15:14 2024 +0200
Commit: Noel Grandin 
CommitDate: Thu Mar 28 06:43:03 2024 +0100

convert VCLXAccessibleListItem to comphelper::WeakComponentImplHelper

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

diff --git a/accessibility/inc/standard/vclxaccessiblelistitem.hxx 
b/accessibility/inc/standard/vclxaccessiblelistitem.hxx
index 260c132bbfa1..83142b50ed6f 100644
--- a/accessibility/inc/standard/vclxaccessiblelistitem.hxx
+++ b/accessibility/inc/standard/vclxaccessiblelistitem.hxx
@@ -26,8 +26,7 @@
 #include 
 #include 
 #include 
-#include 
-#include 
+#include 
 #include 
 #include 
 
@@ -42,7 +41,7 @@ namespace com::sun::star::awt {
 
 // class VCLXAccessibleListItem --
 
-typedef ::cppu::WeakComponentImplHelper< css::accessibility::XAccessible
+typedef ::comphelper::WeakComponentImplHelper< css::accessibility::XAccessible
 , 
css::accessibility::XAccessibleContext
 , 
css::accessibility::XAccessibleComponent
 , 
css::accessibility::XAccessibleEventBroadcaster
@@ -51,7 +50,7 @@ typedef ::cppu::WeakComponentImplHelper< 
css::accessibility::XAccessible
 
 /** the class OAccessibleListBoxEntry represents the base class for an 
accessible object of a listbox entry
 */
-class VCLXAccessibleListItem final : public ::cppu::BaseMutex,
+class VCLXAccessibleListItem final :
  public 
::comphelper::OCommonAccessibleText,
  public VCLXAccessibleListItem_BASE
 {
@@ -69,7 +68,7 @@ private:
 virtual ~VCLXAccessibleListItem() override = default;
 /** this function is called upon disposing the component
 */
-virtual void SAL_CALL   disposing() override;
+virtual void disposing(std::unique_lock& rGuard) override;
 
 // OCommonAccessibleText
 virtual OUStringimplGetText() override;
diff --git a/accessibility/source/standard/vclxaccessiblelistitem.cxx 
b/accessibility/source/standard/vclxaccessiblelistitem.cxx
index 5339f93824a9..31b889ebc3b5 100644
--- a/accessibility/source/standard/vclxaccessiblelistitem.cxx
+++ b/accessibility/source/standard/vclxaccessiblelistitem.cxx
@@ -60,8 +60,7 @@ using namespace ::com::sun::star;
 // Ctor() and Dtor()
 
 VCLXAccessibleListItem::VCLXAccessibleListItem(sal_Int32 _nIndexInParent, 
rtl::Reference< VCLXAccessibleList > _xParent)
-: VCLXAccessibleListItem_BASE(m_aMutex)
-, m_nIndexInParent(_nIndexInParent)
+: m_nIndexInParent(_nIndexInParent)
 , m_bSelected(false)
 , m_bVisible(false)
 , m_nClientId(0)
@@ -142,26 +141,25 @@ Sequence< sal_Int8 > 
VCLXAccessibleListItem::getImplementationId()
 
 // XComponent
 
-void SAL_CALL VCLXAccessibleListItem::disposing()
+void VCLXAccessibleListItem::disposing(std::unique_lock& rGuard)
 {
-comphelper::AccessibleEventNotifier::TClientId nId( 0 );
-Reference< XInterface > xEventSource;
-{
-::osl::MutexGuard aGuard( m_aMutex );
-
-VCLXAccessibleListItem_BASE::disposing();
-m_sEntryText.clear();
-m_xParent   = nullptr;
+VCLXAccessibleListItem_BASE::disposing(rGuard);
 
-nId = m_nClientId;
-m_nClientId =  0;
-if ( nId )
-xEventSource = *this;
-}
+m_sEntryText.clear();
+m_xParent   = nullptr;
+comphelper::AccessibleEventNotifier::TClientId nId = m_nClientId;
+m_nClientId =  0;
+Reference< XInterface > xEventSource;
+if ( nId )
+xEventSource = *this;
 
 // Send a disposing to all listeners.
 if ( nId )
-comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing( 
nId, *this );
+{
+rGuard.unlock();
+comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing( nId, 
*this );
+rGuard.lock();
+}
 }
 
 // XServiceInfo
@@ -204,7 +202,7 @@ Reference< XAccessible > SAL_CALL 
VCLXAccessibleListItem::getAccessibleChild( sa
 
 Reference< XAccessible > SAL_CALL VCLXAccessibleListItem::getAccessibleParent( 
 )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 return m_xParent;
 }
@@ -228,7 +226,7 @@ OUString SAL_CALL 
VCLXAccessibleListItem::getAccessibleDescription(  )
 
 OUString SAL_CALL VCLXAccessibleListItem::getAccessibleName(  )
 {
-::osl::MutexGuard aGuard( m_aMutex );
+std::unique_lock aGuard( m_aMutex );
 
 // entry text == accessible name
 

[Bug 160385] spam

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160385

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Import EML to cPanel|spam

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

core.git: sc/source

2024-03-27 Thread Noel Grandin (via logerrit)
 sc/source/ui/unoobj/cellvaluebinding.cxx |   98 +--
 sc/source/ui/unoobj/cellvaluebinding.hxx |   28 
 2 files changed, 68 insertions(+), 58 deletions(-)

New commits:
commit 7510cca63690ea97eb02a43f698fc183c3d0434a
Author: Noel Grandin 
AuthorDate: Tue Mar 26 15:56:02 2024 +0200
Commit: Noel Grandin 
CommitDate: Thu Mar 28 06:42:46 2024 +0100

convert OCellValueBinding to comphelper::WeakComponentImplHelper

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

diff --git a/sc/source/ui/unoobj/cellvaluebinding.cxx 
b/sc/source/ui/unoobj/cellvaluebinding.cxx
index fd8b43f9578e..7c4865726bef 100644
--- a/sc/source/ui/unoobj/cellvaluebinding.cxx
+++ b/sc/source/ui/unoobj/cellvaluebinding.cxx
@@ -54,10 +54,7 @@ namespace calc
 using namespace ::com::sun::star::form::binding;
 
 OCellValueBinding::OCellValueBinding( const Reference< 
XSpreadsheetDocument >& _rxDocument, bool _bListPos )
-:OCellValueBinding_Base( m_aMutex )
-,OCellValueBinding_PBase( OCellValueBinding_Base::rBHelper )
-,m_xDocument( _rxDocument )
-,m_aModifyListeners( m_aMutex )
+:m_xDocument( _rxDocument )
 ,m_bInitialized( false )
 ,m_bListPos( _bListPos )
 {
@@ -76,7 +73,7 @@ namespace calc
 
 OCellValueBinding::~OCellValueBinding( )
 {
-if ( !OCellValueBinding_Base::rBHelper.bDisposed )
+if ( !m_bDisposed )
 {
 acquire();  // prevent duplicate dtor
 dispose();
@@ -87,7 +84,7 @@ namespace calc
 
 IMPLEMENT_FORWARD_XTYPEPROVIDER2( OCellValueBinding, 
OCellValueBinding_Base, OCellValueBinding_PBase )
 
-void SAL_CALL OCellValueBinding::disposing()
+void OCellValueBinding::disposing( std::unique_lock& rGuard )
 {
 Reference xBroadcaster( m_xCell, UNO_QUERY );
 if ( xBroadcaster.is() )
@@ -95,7 +92,7 @@ namespace calc
 xBroadcaster->removeModifyListener( this );
 }
 
-WeakComponentImplHelperBase::disposing();
+WeakComponentImplHelperBase::disposing(rGuard);
 
 // TODO: clean up here whatever you need to clean up (e.g. deregister 
as XEventListener
 // for the cell)
@@ -106,7 +103,7 @@ namespace calc
 return createPropertySetInfo( getInfoHelper() ) ;
 }
 
-::cppu::IPropertyArrayHelper& SAL_CALL OCellValueBinding::getInfoHelper()
+::cppu::IPropertyArrayHelper& OCellValueBinding::getInfoHelper()
 {
 return *OCellValueBinding_PABase::getArrayHelper();
 }
@@ -118,7 +115,7 @@ namespace calc
 return new ::cppu::OPropertyArrayHelper(aProps);
 }
 
-void SAL_CALL OCellValueBinding::getFastPropertyValue( Any& _rValue, 
sal_Int32 _nHandle ) const
+void OCellValueBinding::getFastPropertyValue( 
std::unique_lock& /*rGuard*/, Any& _rValue, sal_Int32 _nHandle ) 
const
 {
 OSL_ENSURE( _nHandle == PROP_HANDLE_BOUND_CELL, 
"OCellValueBinding::getFastPropertyValue: invalid handle!" );
 // we only have this one property...
@@ -131,9 +128,14 @@ namespace calc
 
 Sequence< Type > SAL_CALL OCellValueBinding::getSupportedValueTypes(  )
 {
-checkDisposed( );
+std::unique_lock aGuard(m_aMutex);
+throwIfDisposed(aGuard);
 checkInitialized( );
+return getSupportedValueTypes(aGuard);
+}
 
+Sequence< Type > OCellValueBinding::getSupportedValueTypes( 
std::unique_lock& /*rGuard*/  ) const
+{
 sal_Int32 nCount = m_xCellText.is() ? 3 : m_xCell.is() ? 1 : 0;
 if ( m_bListPos )
 ++nCount;
@@ -163,11 +165,16 @@ namespace calc
 
 sal_Bool SAL_CALL OCellValueBinding::supportsType( const Type& aType )
 {
-checkDisposed( );
+std::unique_lock aGuard(m_aMutex);
+throwIfDisposed(aGuard);
 checkInitialized( );
+return supportsType(aGuard, aType);
+}
 
+bool OCellValueBinding::supportsType( std::unique_lock& 
rGuard, const Type& aType ) const
+{
 // look up in our sequence
-const Sequence< Type > aSupportedTypes( getSupportedValueTypes() );
+const Sequence< Type > aSupportedTypes( getSupportedValueTypes(rGuard) 
);
 for ( auto const & i : aSupportedTypes )
 if ( aType == i )
 return true;
@@ -177,9 +184,10 @@ namespace calc
 
 Any SAL_CALL OCellValueBinding::getValue( const Type& aType )
 {
-checkDisposed( );
+std::unique_lock aGuard(m_aMutex);
+throwIfDisposed(aGuard);
 checkInitialized( );
-checkValueType( aType );
+checkValueType( aGuard, aType );
 
 Any aReturn;
 switch ( aType.getTypeClass() )
@@ -263,10 +271,11 @@ namespace calc
 
 void SAL_CALL OCellValueBinding::setValue( const Any& aValue )
 {
-checkDisposed( );
+

[Bug 160385] Import EML to cPanel

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160385

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Product|Impress Remote  |LibreOffice
 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionRequest

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

[Bug 160172] A big ODT document still takes too long to open or save

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160172

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #8 from Stéphane Guillou (stragu) 
 ---
Not reproduced in any version (7.6.5, 24.2.2, 24.8alpha0+) on Ubuntu 22.04.

Not reproduced either on Windows 11:

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

If it works with a development version, I'm wondering if it is linked to your
user profile. Can you please back it up and test with a fresh one?
https://wiki.documentfoundation.org/UserProfile

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

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

2024-03-27 Thread Mike Kaganski (via logerrit)
 dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx |6 +++-
 dbaccess/source/ui/dlg/dbwizsetup.cxx |3 ++
 dbaccess/source/ui/dlg/generalpage.cxx|   32 ++
 3 files changed, 23 insertions(+), 18 deletions(-)

New commits:
commit 8e0bb9dadb9ef77f693cf6d334843cfb9b4701a3
Author: Mike Kaganski 
AuthorDate: Tue Mar 19 11:47:14 2024 +0500
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Mar 28 06:37:08 2024 +0100

tdf#103068: make sure to update and use current MySQL connection type

1. Don't set selection in OGeneralPageWizard::getEmbeddedDBName. The
method should only provide a name of an embedded database - either in
the passed set, or the default one; the activation of controls and
related actions will be done in the calling implInitControls. This
makes sure, that ODbTypeWizDialogSetup::m_sURL doesn't get rewritten
unnecessarily, keeping the current preference intact.

2. In ODbTypeWizDialogSetup::activateDatabasePath, do not use the
hardcoded MySQL URL from the control, if the current value of m_sURL
is already a MySQL one. This allows to keep the selected kind intact.

3. In OMySQLIntroPageSetup::implInitControls, do not assume that the
existing selection means that there's nothing to do. The page keeps
the selection, even when the wizard's active path was changed; and
so, the wizard's idea which page to show next may differ from the
selection. Just make sure to update the setup mode.

Change-Id: Iad98d54a615dccc58b2852a1c0d8aefad6b0b898
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164987
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 1e66905c840dbee0a67e444fca80bdacfcb6e6b2)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165000
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx 
b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx
index 22cdefdd6c31..ad81680ba421 100644
--- a/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx
+++ b/dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx
@@ -239,9 +239,13 @@ using namespace ::com::sun::star;
 if ( bHasMySQLNative )
 m_xNATIVEDatabase->show();
 
-// if any of the options is checked, then there's nothing to do
+// tdf#103068: if any of the options is checked, then just update the 
selected kind:
+// it could happen that the selection and the wizard path are not in 
sync
 if ( m_xODBCDatabase->get_active() || m_xJDBCDatabase->get_active() || 
m_xNATIVEDatabase->get_active() )
+{
+maClickHdl.Call(this);
 return;
+}
 
 // prefer "native" or "JDBC"
 if ( bHasMySQLNative )
diff --git a/dbaccess/source/ui/dlg/dbwizsetup.cxx 
b/dbaccess/source/ui/dlg/dbwizsetup.cxx
index 720892e2a015..2fb260e18e75 100644
--- a/dbaccess/source/ui/dlg/dbwizsetup.cxx
+++ b/dbaccess/source/ui/dlg/dbwizsetup.cxx
@@ -312,6 +312,9 @@ void ODbTypeWizDialogSetup::activateDatabasePath()
 {
 OUString sOld = m_sURL;
 m_sURL = m_pGeneralPage->GetSelectedType();
+if (m_sURL.startsWith("sdbc:mysql:") && sOld.startsWith("sdbc:mysql:"))
+m_sURL = sOld; // The type of MySQL connection was already set 
elsewhere; just use it,
+   // instead of the hardcoded one from the selector
 DataSourceInfoConverter::convert(getORB(), 
m_pCollection,sOld,m_sURL,m_pImpl->getCurrentDataSource());
 ::dbaccess::DATASOURCE_TYPE eType = 
VerifyDataSourceType(m_pCollection->determineType(m_sURL));
 if (eType ==  ::dbaccess::DST_UNKNOWN)
diff --git a/dbaccess/source/ui/dlg/generalpage.cxx 
b/dbaccess/source/ui/dlg/generalpage.cxx
index a2a48158c56d..bb308845528e 100644
--- a/dbaccess/source/ui/dlg/generalpage.cxx
+++ b/dbaccess/source/ui/dlg/generalpage.cxx
@@ -226,31 +226,29 @@ namespace dbaui
 
 OUString OGeneralPageWizard::getEmbeddedDBName( const SfxItemSet& _rSet )
 {
+if (!m_pCollection)
+return {};
 // first check whether or not the selection is invalid or readonly 
(invalid implies readonly, but not vice versa)
 bool bValid, bReadonly;
 getFlags( _rSet, bValid, bReadonly );
-
-// if the selection is invalid, disable everything
-
-implSetCurrentType(  OUString() );
+if (!bValid)
+return {};
 
 // compare the DSN prefix with the registered ones
-OUString sDisplayName;
-
-if (m_pCollection && bValid)
-{
-implSetCurrentType( 
dbaccess::ODsnTypeCollection::getEmbeddedDatabase() );
-sDisplayName = m_pCollection->getTypeDisplayName( 
m_eCurrentSelection );
-onTypeSelected(m_eCurrentSelection);
-}
-
-// select the correct datasource type
-if  (  dbaccess::ODsnTypeCollection::isEmbeddedDatabase( 

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

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102998

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160173
[Bug 160173] Mailmerge email rejects recipient address containing character "-"
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160173] Mailmerge email rejects recipient address containing character "-"

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160173

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Blocks||102998
 CC||stephane.guillou@libreoffic
   ||e.org
Version|24.2.1.2 release|7.5.0.3 release

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Thank you for the report.
How do you notice that it fails? Does the LibreOffice UI tell you something
(error, warning, stops...) or does it report to have been successful, but no
email reaches the recipient?

Please also paste here the full version info from Help > About LibreOffice.


Referenced Bugs:

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

[Bug 160398] Add a World Chart/Graph Capability

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160398

Haris  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |MOVED

--- Comment #1 from Haris  ---
Hello Richard M,

I've marked this as RESOLVED MOVED because this is a feature request as you
mentioned rather than a bug. This might be a better location to place your
feature request: https://ask.libreoffice.org/c/english/5.

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

[Bug 160391] Font color of the menu bar stays black when changing win10/11 from light to dark mode

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160391

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Font color of the menu bar  |Font color of the menu bar
   |keeps black when change |stays black when changing
   |win10 from bright mode to   |win10/11 from light to dark
   |dark mode   |mode
 CC||stephane.guillou@libreoffic
   ||e.org
Version|24.2.1.2 release|7.6.5.2 release
   Keywords||bibisectRequest, regression
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Blocks||150915

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
Reproduced on Windows 11:

- Version: 7.6.5.2 (X86_64)
- Version: 24.2.1.2 (X86_64)
- Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 26f7313f724921a9c6086e6c2a93fbe1c48635fa
CPU threads: 4; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US

_Not_ reproduced in:

Version: 7.5.0.3 (X86_64) / LibreOffice Community
Build ID: c21113d003cd3efa8c53188764377a8272d9d6de
CPU threads: 4; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US

-> regression.

No problem when going from dark to light.
No repro on Ubuntu 22.04 + GNOME 42.9.


Referenced Bugs:

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

[Bug 150915] [META] Windows Dark Mode bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150915

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160391


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160391
[Bug 160391] Font color of the menu bar stays black when changing win10/11 from
light to dark mode
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160100] Callout COPY loses formatting, pasted position makes useless.

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160100

--- Comment #11 from Naresh  ---
I tried copying and pasting multiple callouts and the callout gets pasted on
the cell which is selected and not anywhere else.

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

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

2024-03-27 Thread Caolán McNamara (via logerrit)
 vcl/source/window/printdlg.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d3ed3836cbec932f8a381fcb2c85787fb0f8b766
Author: Caolán McNamara 
AuthorDate: Wed Mar 27 17:23:18 2024 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Mar 28 05:42:32 2024 +0100

Resolves: tdf#160392 preview's measurement are black on dark bg in dark mode

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

diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index 9c5f519f7cfb..c001b6e74070 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -122,7 +122,7 @@ void 
PrintDialog::PrintPreviewWindow::Paint(vcl::RenderContext& rRenderContext,
 {
 rRenderContext.Push();
 weld::SetPointFont(rRenderContext, 
rRenderContext.GetSettings().GetStyleSettings().GetLabelFont());
-
+
rRenderContext.SetTextColor(rRenderContext.GetSettings().GetStyleSettings().GetLabelTextColor());
 
rRenderContext.SetBackground(Wallpaper(Application::GetSettings().GetStyleSettings().GetDialogColor()));
 rRenderContext.Erase();
 


[Bug 160401] FILEOPEN PPTX: wrong word order and font size when cap="small" on right-to-left text (Regression)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160401

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

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

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160401


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160401
[Bug 160401] FILEOPEN PPTX: wrong word order and font size when cap="small" on
right-to-left text (Regression)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160401] FILEOPEN PPTX: wrong word order and font size when cap="small" on right-to-left text (Regression)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160401

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
Version|24.2.0.3 release|24.2.0.0 alpha0+
  Regression By||Caolán McNamara
   Keywords||bibisected, bisected,
   ||regression
 CC||caolan.mcnamara@collabora.c
   ||om,
   ||stephane.guillou@libreoffic
   ||e.org
 Blocks||43808

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Thanks for the report.

Reproduced in:

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

Not reproduced in:

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

(In reply to Pablo from comment #0)
> This bug might be related to small caps support in 24.2:
> https://bugs.documentfoundation.org/show_bug.cgi?id=98367
Indeed, this started with the following commit (build
[ce47fbc78876e5e6a7fef90346aa6415da1a1851] in linux-64-24.2 repo):

commit  ffaed5cae29d6bb14faf870cb935ccd3c35d4a3c
author  Caolán McNamara Fri Aug 18 17:29:24 2023 +0100
committer   Caolán McNamara Tue Aug 22 15:29:03 2023 +0200
tdf#98367 implement rendering of draw/impress small capitals
arising out of Þe old tdf#91932
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155846

Caolán, can you please have a look?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left and Complex Text Layout language issues
(RTL/CTL)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 149527] Calc crashes when scroll up and down quickly within a document, or hold Page Down (Skia/Vulkan)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||ol...@proton.me

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

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

[Bug 157429] Writer freezes repeatedly when scrolling through a document at speed

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157429

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED

--- Comment #11 from Stéphane Guillou (stragu) 
 ---
No response, let's assume it's the same as bug 149527 (which should be fixed
now, so if you see this, old69, please update to the latest 24.2 or 7.6
versions).

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

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

[Bug 149527] Calc crashes when scroll up and down quickly within a document, or hold Page Down (Skia/Vulkan)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149527

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 156179] LibreOffice crashes repeatable just by fast scrolling through a writer document

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156179

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||9527
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
Ingo, are you able to test again in a current version (the latest 24.2 or 7.6
releases)?
And have you looked into Buovjaga's suggestion?
Please let us know if you can still reproduce the crash.
Thank you!

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

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

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

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

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

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


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

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

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


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

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||needsUXEval

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||needsUXEval

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=67807
URL||https://ask.libreoffice.org
   ||/t/writer-make-mouse-cursor
   ||-disappear-while-typing/359
   ||22
Version|unspecified |Inherited From OOo

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
UX/Design team, what do you think? Is this something for LO or should it be the
role of the OS/DE?

- On Linux, a tool like xbanish could be used: https://github.com/jcs/xbanish
- Windows has Mouse properties > Pointer options > Hide pointer while typing:
https://www.howtogeek.com/766041/how-to-hide-your-cursor-while-typing-in-windows/
- on macOS, it seems to be the default:
https://apple.stackexchange.com/questions/71661/how-do-i-disable-hiding-of-the-mouse-pointer-while-typing-text
- with KDE and GNOME, it is done per app. See e.g.
https://www.reddit.com/r/kde/comments/15rvcfw/prevent_mouse_pointer_from_hiding_while_typing/
I just tested Gedit, GNOME Terminal and Firefox and they all hide the pointer
while typing, whereas Chromium, Gnumeric, Falkon and Thunderbird don't.

So I'd say it needs to be implemented and given as an option in Options >
LibreOffice > View, least for Linux.

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bz.apache.org/ooo/s
   ||how_bug.cgi?id=67807
URL||https://ask.libreoffice.org
   ||/t/writer-make-mouse-cursor
   ||-disappear-while-typing/359
   ||22
Version|unspecified |Inherited From OOo

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
UX/Design team, what do you think? Is this something for LO or should it be the
role of the OS/DE?

- On Linux, a tool like xbanish could be used: https://github.com/jcs/xbanish
- Windows has Mouse properties > Pointer options > Hide pointer while typing:
https://www.howtogeek.com/766041/how-to-hide-your-cursor-while-typing-in-windows/
- on macOS, it seems to be the default:
https://apple.stackexchange.com/questions/71661/how-do-i-disable-hiding-of-the-mouse-pointer-while-typing-text
- with KDE and GNOME, it is done per app. See e.g.
https://www.reddit.com/r/kde/comments/15rvcfw/prevent_mouse_pointer_from_hiding_while_typing/
I just tested Gedit, GNOME Terminal and Firefox and they all hide the pointer
while typing, whereas Chromium, Gnumeric, Falkon and Thunderbird don't.

So I'd say it needs to be implemented and given as an option in Options >
LibreOffice > View, least for Linux.

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

[Bug 160165] UI: Wrong description for Keyboard Shortcuts "insert Time/Date"

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160165

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

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

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

[Bug 160182] Short cut to next page (ELEMENT)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160182

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160176] Forms: Help text of a control will be shown also on other controls, where no help text is defined

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160176

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160163] Text field should reset placeholder if all content is deleted

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160163

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 157265] Can't select an embedded graph - only cells behind

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157265

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 157429] Writer freezes repeatedly when scrolling through a document at speed

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157429

--- Comment #10 from QA Administrators  ---
Dear old69,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 157524] LibreOffice (entire software suite) not loading on Windows 11

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157524

--- Comment #3 from QA Administrators  ---
Dear Logan Alldredge,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

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

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

[Bug 147969] Track Changes Record: replacing highlighted text behaves differently compared to without recording

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147969

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 157252] Enhancement: add parabola / bullet / ogive / nose cone shape in Draw/basic Shapes

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157252

--- Comment #7 from QA Administrators  ---
Dear Gerben Van Duyl,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 151896] LibreOffice Writer ends XFCE Session when type the word in Spanish "Protejase"

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151896

--- Comment #21 from QA Administrators  ---
Dear Legar,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 141255] Writer forms: Can't limit carriage returns (scrollbar is not disabled despite it should be)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141255

--- Comment #11 from QA Administrators  ---
Dear rafael.linux.user,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 147765] Calc/Impress/Draw fail to render protected hyphen for new Liberation Sans versions shipped with Ubuntu (package "fonts-liberation2")

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147765

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

[Bug 106446] EDITING: Writer jumps to the bottom of page when selecting a new object (image) which extent to the bottom of the page if the image at the top isn't deselected first

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106446

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 134448] Line width spin edit in drawing object properties toolbar should use unit pt instead of cm (or locale settings)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134448

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

[Bug 97757] Auto-hide mouse cursor when typing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97757

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=16 |
   |0112|
 CC||all.onl...@posteo.eu

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

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=97 |
   |757 |
 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
Thank you.
I think a pointer jumping to a different location is a lot more unexpected and
unpredictable than the "disappear while typing" solution.

For Ubuntu, you might already find some solutions, for example xbanish:
https://askubuntu.com/questions/361203/how-can-i-make-the-mouse-cursor-hide-itself-when-typing

Let's mark as duplicate of bug 97757. Yes, enhancement requests and bug reports
do linger around for a while, but the more duplicates they have, the more
attention they get.

UX/Design: we can discuss further in bug 97757 if this should be a LibreOffice
setting or if it should be left to the OS/DE to provide.

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

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=97 |
   |757 |
 Resolution|--- |DUPLICATE
 Status|NEEDINFO|RESOLVED

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
Thank you.
I think a pointer jumping to a different location is a lot more unexpected and
unpredictable than the "disappear while typing" solution.

For Ubuntu, you might already find some solutions, for example xbanish:
https://askubuntu.com/questions/361203/how-can-i-make-the-mouse-cursor-hide-itself-when-typing

Let's mark as duplicate of bug 97757. Yes, enhancement requests and bug reports
do linger around for a while, but the more duplicates they have, the more
attention they get.

UX/Design: we can discuss further in bug 97757 if this should be a LibreOffice
setting or if it should be left to the OS/DE to provide.

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

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

[Bug 160391] Font color of the menu bar keeps black when change win10 from bright mode to dark mode

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160391

--- Comment #3 from Sakura286  ---
Platform1: Win11 Pro 22H2

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 20; OS: Windows 10.0 Build 22621; UI render: default; VCL: win
Locale: zh-CN (zh_CN); UI: en-US
Calc: threaded

Platform2: Win10 Pro 22H2

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: CL threaded

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

[Bug 160389] LibreOffice window blurs between multiple monitors with differenct DPI scaling

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160389

--- Comment #2 from Sakura286  ---
Platform1: Win11 Pro 22H2

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 20; OS: Windows 10.0 Build 22621; UI render: default; VCL: win
Locale: zh-CN (zh_CN); UI: en-US
Calc: threaded

Platform2: Win10 Pro 22H2

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: CL threaded

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

[Bug 160399] Print Preview freezes with whole row merged in large spreadsheet

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160399

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||needsDevAdvice, perf
Summary|Print Preview freezes the   |Print Preview freezes with
   |software|whole row merged in large
   ||spreadsheet
 OS|Windows (All)   |All
 Blocks||133764, 108320, 108804
 Ever confirmed|0   |1

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
Whatever the solution, the issue has been confirmed and we don't want it to
persist.
I wouldn't blame the user, I can understand why one could end up in this
situation, to have some kind of "top-level heading" that looks solid for the
whole width of the spreadsheet.

Let's see if developers can give an opinion, and tag a "perf" to ping anyone
interested.

Repro in:

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108320
[Bug 108320] [META] Calc cells merging and splitting bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108804
[Bug 108804] [META] Print preview bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=133764
[Bug 133764] [META] Very large spreadsheets problem
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 133764] [META] Very large spreadsheets problem

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133764

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160399


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160399
[Bug 160399] Print Preview freezes with whole row merged in large spreadsheet
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108804] [META] Print preview bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108804

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160399


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160399
[Bug 160399] Print Preview freezes with whole row merged in large spreadsheet
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108320] [META] Calc cells merging and splitting bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108320

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160399


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160399
[Bug 160399] Print Preview freezes with whole row merged in large spreadsheet
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160391] Font color of the menu bar keeps black when change win10 from bright mode to dark mode

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160391

--- Comment #2 from Sakura286  ---
Same bug occurs in safe mode. Test on Win10 22H2 and Win11 22H2.

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

[Bug 160186] Changing Table Auto value or Entry required results in full libreoffice suite crash

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160186

--- Comment #12 from Stéphane Guillou (stragu) 
 ---
(In reply to contact from comment #11)
> I'm not sure how you're coming to the conclusion that I'm using a special
> packed version of LO? Looking at the environment notes and scripts I keep,
> it would seem that I installed using:
> 
> sudo apt install libreoffice-java-common libreoffice libreoffice-base

What Robert means is that you've got the version packaged by Ubuntu, and
sometimes issues are only reproducible in a distribution's package. If that's
the case, it might be worth it reporting the issue to Ubuntu
maintainers/packagers on Launchpad:
https://bugs.launchpad.net/ubuntu/+source/libreoffice

> I first downloaded the .deb version from the link provided. Ran tar -xvf
> , and then looked in the /deb dir. There were a ton of .deb
> files, and I'm not sure if you're expecting me to install all of them?
Those debs won't have the debug symbols. Don't use this one for collecting a
backtrace, but it's good to have anyway to test the latest trunk sources and
see if issues are already resolved. To install this one, you can run the
following in the directory that has all the debs:

sudo dpkg -i *.deb

> I then noticed that on the link provided, there was a debug version, so I
> downloaded that. I ran tar -xvf < file-name> and inside there was not a /deb
> dir, but rather a /program dir. I'm not sure what's expected there.
Please use this one, you can run the following from that directory to reproduce
the steps and collect the backtrace:

./program/soffice --backtrace

More details in:
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_a_backtrace

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

[Bug 160186] Changing Table Auto value or Entry required results in full libreoffice suite crash

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160186

--- Comment #11 from cont...@bluesanta.io ---
I'm not sure how you're coming to the conclusion that I'm using a special
packed version of LO? Looking at the environment notes and scripts I keep, it
would seem that I installed using:

sudo apt install libreoffice-java-common libreoffice libreoffice-base

I've spent a good amount of time attempting to build a debug version, and I'm
honestly confused about what the best route is.

I first downloaded the .deb version from the link provided. Ran tar -xvf
, and then looked in the /deb dir. There were a ton of .deb files,
and I'm not sure if you're expecting me to install all of them? And in
parallel?

I then noticed that on the link provided, there was a debug version, so I
downloaded that. I ran tar -xvf < file-name> and inside there was not a /deb
dir, but rather a /program dir. I'm not sure what's expected there.

The other link provided, for installing in parallel, suggests that I simply
install the /deb packages from the command line. I'm not certain that those
would provide a backtrace?

Clarification is appreciate. Thank you.

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

core.git: xmlsecurity/inc

2024-03-27 Thread Patrick Luby (via logerrit)
 xmlsecurity/inc/strings.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c4023d3ec604abfff38be2053e2989c7ec2ba8c1
Author: Patrick Luby 
AuthorDate: Tue Mar 26 17:39:35 2024 -0400
Commit: Thorsten Behrens 
CommitDate: Thu Mar 28 01:02:45 2024 +0100

Related: tdf#160184 clearly describe security risk

Encrypting with untrusted public keys increases the risk of
"man-in-the-middle" attacks so emphasize this risk.

Change-Id: I48cbb7b002c5f17bdac3372bf94c1bc18ea68566
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165396
Tested-by: Jenkins
Reviewed-by: Patrick Luby 
Reviewed-by: Thorsten Behrens 

diff --git a/xmlsecurity/inc/strings.hrc b/xmlsecurity/inc/strings.hrc
index 69b62a06dafe..7ed55690f97b 100644
--- a/xmlsecurity/inc/strings.hrc
+++ b/xmlsecurity/inc/strings.hrc
@@ -65,6 +65,6 @@
 
 #define STR_BROKEN_MACRO_CERTIFICATE_DATA   
NC_("STR_BROKEN_MACRO_CERTIFICATE_DATA", "Macro security problem!

Broken certificate data: %{data}")
 #define STR_RELOAD_FILE_WARNING 
NC_("STR_RELOAD_FILE_WARNING", "Reload the file to apply the new macro security 
level")
-#define STR_TRUST_UNTRUSTED_PUBKEY   
NC_("STR_TRUST_UNTRUSTED_PUBKEY", "The following OpenPGP public key is not 
trusted:

%{data}

Do you want to use this untrusted OpenPGP public key?")
+#define STR_TRUST_UNTRUSTED_PUBKEY   
NC_("STR_TRUST_UNTRUSTED_PUBKEY", "Security warning: the following OpenPGP 
public key is untrusted:

%{data}

Encrypting with an untrusted public key increases the risk of a 
\"man-in-the-middle\" attack. A successful \"man-in-the-middle\" attack gives 
malicious third parties the ability to decrypt your document.

Do you really want to encrypt your document with this untrusted public key?")
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


[Bug 159860] Use "Delete unused master slides" independently from "Minimize Presentation" tool

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159860

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

[Bug 159860] Use "Delete unused master slides" independently from "Minimize Presentation" tool

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159860

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

[Bug 108392] [META] Master slide bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108392

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||160403


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160403
[Bug 160403] Want indication of whether a master slide is in use or not
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160403] Want indication of whether a master slide is in use or not

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160403

Eyal Rozenberg  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Bug 160403] New: Want indication of whether a master slide is in use or not

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160403

Bug ID: 160403
   Summary: Want indication of whether a master slide is in use or
not
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: eyalr...@gmx.com

In a large presentation, with many slides and which also happens to have many
master slides, one may wonder: "Are all of my master slides actually in use?"

It would be nice if there was some indication which would let me tell apart a
master slide that's in use from one that isn't. Currently, and AFAICT, there is
no such indication.

Now, if such an indication is to be enabled always, it had better be rather
subtle, so not anything like a visibly glowing frame, that would be kind of
distracting. Although - a sectioning of the master slides view - first those in
use, then the rest - while not subtle, still seems kind of legit. 

Another possibility is for the indication to only become visible by some
trigger (e.g. toggle in a right-click menu in the master slides area); in that
case, I would tolerate it being more pronounced.

If the indication could also have some gradation of use, which clearly
differentiates no-use from any-use, but also shows something more intense for
more extensive use - that would be nice. A bar underneath the master slide when
its in use, with the bar fill fraction indicating frequency of use? I don't
know, again, just a thought; and only as something you toggle.

So, please first ignore my attempts at bike-shedding and comment on the
possibility in general, then feel free to bikeshed away.

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

[Bug 160399] Print Preview freezes the software

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160399

Telesto  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #3 from Telesto  ---
@stragu
Any idea what being advisable here. Jumbo sheets is the default since couple of
releases. Should clicking row header really select every column from A1:XFD1.
And clicking a column select every all rows A1:A1048576. 

Not range a typical end-user uses, IMHO. The mistake is easily made, IMHO. With
serve consequences. Perf issues like here or large file size, if direct
formatting being applied to a large range of cells. 

Approaches
* fix the performance issue (profile point to mdds; Multi-Dimensional Data
Structure in this case)
* "blame" the end-user for using the tool wrong
* Improve UX in some way the prevent selecting large ranges unintentionally.
Make it a bit harder

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

[Bug 147898] instructions about paint can in "Font Color" section of "Font Effects" help page appears to be incorrect

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147898

Dione Maddern  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |dionemadd...@gmail.com
   |desktop.org |

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

[Bug 88278] [META] SVG import image filter (all modules)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88278
Bug 88278 depends on bug 160386, which changed state.

Bug 160386 Summary: All  translations overlap in imported SVG
https://bugs.documentfoundation.org/show_bug.cgi?id=160386

   What|Removed |Added

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

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

core.git: svgio/CppunitTest_svgio.mk svgio/CppunitTest_svgio_tools.mk svgio/inc svgio/Library_svgio.mk svgio/qa svgio/source

2024-03-27 Thread Xisco Fauli (via logerrit)
 svgio/CppunitTest_svgio.mk|1 
 svgio/CppunitTest_svgio_tools.mk  |1 
 svgio/Library_svgio.mk|2 
 svgio/inc/svgdocument.hxx |6 -
 svgio/inc/svgnode.hxx |7 +
 svgio/inc/svgswitchnode.hxx   |   55 +++
 svgio/inc/svgtoken.hxx|1 
 svgio/qa/cppunit/SvgImportTest.cxx|   11 ++
 svgio/qa/cppunit/data/tdf160386.svg   |   16 +++
 svgio/source/svgreader/svgdocumenthandler.cxx |9 +
 svgio/source/svgreader/svgnode.cxx|   44 +++-
 svgio/source/svgreader/svgswitchnode.cxx  |  129 ++
 svgio/source/svgreader/svgtoken.cxx   |1 
 13 files changed, 270 insertions(+), 13 deletions(-)

New commits:
commit 0a2535ceb06bb9233bc29158d4c9d2513abd
Author: Xisco Fauli 
AuthorDate: Wed Mar 27 11:38:44 2024 +0100
Commit: Xisco Fauli 
CommitDate: Wed Mar 27 23:44:40 2024 +0100

tdf#160386: Add support for switch element

For now, only use language tag, meaning if
there is a file like in the unittest with

Howdy!
Wotcha!
G'day!
Hello!

"Hello!" with be displayed in a en_AU system locale

This patch partially reverts 13a41e7a12598c7896d6dc8d34aba6af5b80b83c
"tdf#150124: do nothing when parent is of unkown type"
making 0dfd8288a87b58e503bb3a41be6137485fbf3f68
"ofz#60384 Direct-leak" no longer necessary

Change-Id: Ifc73bc69aa997088dc0a2b11d7d30446303fa3b3

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

diff --git a/svgio/CppunitTest_svgio.mk b/svgio/CppunitTest_svgio.mk
index 9309f5dcb9b8..a179d6af30fa 100644
--- a/svgio/CppunitTest_svgio.mk
+++ b/svgio/CppunitTest_svgio.mk
@@ -34,6 +34,7 @@ $(eval $(call gb_CppunitTest_use_libraries,svgio,\
 cppu \
 cppuhelper \
 comphelper \
+i18nlangtag \
 sal \
 salhelper \
 sax \
diff --git a/svgio/CppunitTest_svgio_tools.mk b/svgio/CppunitTest_svgio_tools.mk
index abb6bb6e0fc7..5f4d7adbe523 100644
--- a/svgio/CppunitTest_svgio_tools.mk
+++ b/svgio/CppunitTest_svgio_tools.mk
@@ -33,6 +33,7 @@ $(eval $(call gb_CppunitTest_use_libraries,svgio_tools,\
 comphelper \
 cppu \
 cppuhelper \
+i18nlangtag \
 sal \
 salhelper \
 sax \
diff --git a/svgio/Library_svgio.mk b/svgio/Library_svgio.mk
index 7bc518c71b93..8686792ca52a 100644
--- a/svgio/Library_svgio.mk
+++ b/svgio/Library_svgio.mk
@@ -41,6 +41,7 @@ $(eval $(call gb_Library_use_libraries,svgio,\
 comphelper \
 cppu \
 cppuhelper \
+i18nlangtag \
 sal \
 salhelper \
 tk \
@@ -87,6 +88,7 @@ $(eval $(call gb_Library_add_exception_objects,svgio,\
 svgio/source/svgreader/svgstyleattributes \
 svgio/source/svgreader/svgstylenode \
 svgio/source/svgreader/svgsvgnode \
+svgio/source/svgreader/svgswitchnode \
 svgio/source/svgreader/svgsymbolnode \
 svgio/source/svgreader/svgtextnode \
 svgio/source/svgreader/svgtextposition \
diff --git a/svgio/inc/svgdocument.hxx b/svgio/inc/svgdocument.hxx
index 77b4d3891179..9f79342c0c55 100644
--- a/svgio/inc/svgdocument.hxx
+++ b/svgio/inc/svgdocument.hxx
@@ -34,9 +34,6 @@ namespace svgio::svgreader
 /// the document hierarchy with all root nodes
 SvgNodeVector   maNodes;
 
-/// invalid nodes that have no parent
-SvgNodeVector   maOrphanNodes;
-
 /// the absolute path of the Svg file in progress (if available)
 const OUString maAbsolutePath;
 
@@ -75,9 +72,6 @@ namespace svgio::svgreader
 /// data read access
 const SvgNodeVector& getSvgNodeVector() const { return maNodes; }
 const OUString& getAbsolutePath() const { return maAbsolutePath; }
-
-/// invalid nodes that have no parent
-void addOrphanNode(SvgNode* pOrphan) { 
maOrphanNodes.emplace_back(pOrphan); }
 };
 
 } // end of namespace svgio::svgreader
diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx
index 63abc4f8cb0a..16c1f50bc3db 100644
--- a/svgio/inc/svgnode.hxx
+++ b/svgio/inc/svgnode.hxx
@@ -95,6 +95,9 @@ namespace svgio::svgreader
 /// Class svan value
 std::optional   mpClass;
 
+/// systemLanguage values
+std::vector  maSystemLanguage;
+
 /// XmlSpace value
 XmlSpacemaXmlSpace;
 
@@ -174,6 +177,10 @@ namespace svgio::svgreader
 std::optional const & getClass() const { return mpClass; 
}
 void setClass(OUString const &);
 
+/// SystemLanguage access
+std::vector const & getSystemLanguage() const { return 
maSystemLanguage; }
+void setSystemLanguage(OUString const &);
+
   

[Bug 87604] Add option to retain direct formatting (and character style) in indices like Table of Contents

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87604

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Bug 160402] FILEOPEN DOCX Recognize localized paragraph style name used in StyleRef field

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160402

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |https://bugs.documentfounda
   |tion.org/show_bug.cgi?id=87 |tion.org/show_bug.cgi?id=86
   |604 |790

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

[Bug 160402] FILEOPEN DOCX Recognize localized paragraph style name used in StyleRef field

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160402

--- Comment #1 from Gabor Kelemen (allotropia)  ---
Created attachment 193359
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193359=edit
The example file in a German Word and English Writer

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

[Bug 160402] New: FILEOPEN DOCX Recognize localized paragraph style name used in StyleRef field

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160402

Bug ID: 160402
   Summary: FILEOPEN DOCX Recognize localized paragraph style name
used in StyleRef field
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 193358
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193358=edit
Example file from Word 2013

Attached example document was made in a German language Word 13.
It contains some StyleRef fields in the headers, which are set to use localized
paragraph style names.
This works in Writer if the UI language is German, but not if it is anything
else.
This behavior matches that of Word, but it would be really nice to support
these style names if the files are opened in another locale.
This would be similar to what was implemented in bug 153083 for Table of
Figures.

1. Open attached document
-> If the UI locale is German, all page headers show correct StyleRef field
result
-> If the UI locale is not German, you get "Error: Reference source not found"
messages.

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

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

[Bug 87604] Add option to retain direct formatting (and character style) in indices like Table of Contents

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87604

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

--- Comment #5 from Juergen  ---
(In reply to Stéphane Guillou (stragu) from comment #4)
> Which desktop environment are you using, Juergen? I assume GNOME?
> 
> I am using Ubuntu 22.04 + GNOME 42.9, and when I click on text, the cursor
> changes to a pointer (unless I move again, in which case it's again an
> I-beam cursor).
> 
> Do you know of other applications that automatically move the cursor out of
> the way when clicking into text?
> I feel like I've never seen this kind of behaviour, and that if it existed,
> it should be an OS / Desktop Environment setting.
> 
> What do you think about auto-hiding the cursor when typing? That's requested
> in bug 97757.

Hi Stéphane Guillou,
I don't any other application where the I-beam goes out of the way while
typing. Not sure this needs to be implemented on the OS level, although it
would be applicable wherever somebody types like right now this comment, emails
and above all long texts for word processing.
I think auto-hiding the cursor while typing would work. Didn't think about it!
The whole point is, that the mouse-pointer is out of the way once a user starts
typing.
Unfortunately the suggested enhancement 97757 is from 2016-02-11 an not
implemented. That is a lng time ago.

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

[Bug 160112] Placement of I-Beam pointer before editing

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160112

--- Comment #5 from Juergen  ---
(In reply to Stéphane Guillou (stragu) from comment #4)
> Which desktop environment are you using, Juergen? I assume GNOME?
> 
> I am using Ubuntu 22.04 + GNOME 42.9, and when I click on text, the cursor
> changes to a pointer (unless I move again, in which case it's again an
> I-beam cursor).
> 
> Do you know of other applications that automatically move the cursor out of
> the way when clicking into text?
> I feel like I've never seen this kind of behaviour, and that if it existed,
> it should be an OS / Desktop Environment setting.
> 
> What do you think about auto-hiding the cursor when typing? That's requested
> in bug 97757.

Hi Stéphane Guillou,
I don't any other application where the I-beam goes out of the way while
typing. Not sure this needs to be implemented on the OS level, although it
would be applicable wherever somebody types like right now this comment, emails
and above all long texts for word processing.
I think auto-hiding the cursor while typing would work. Didn't think about it!
The whole point is, that the mouse-pointer is out of the way once a user starts
typing.
Unfortunately the suggested enhancement 97757 is from 2016-02-11 an not
implemented. That is a lng time ago.

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

[Bug 160401] FILEOPEN PPTX: wrong word order and font size when cap="small" on right-to-left text (Regression)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160401

--- Comment #2 from Pablo  ---
Created attachment 193357
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193357=edit
pdf exported from PowerPoint showing the expected result

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

[Bug 160401] FILEOPEN PPTX: wrong word order and font size when cap="small" on right-to-left text (Regression)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160401

--- Comment #1 from Pablo  ---
Created attachment 193356
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193356=edit
pptx showing the issue in the second line of text

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

[Bug 160401] New: FILEOPEN PPTX: wrong word order and font size when cap="small" on right-to-left text (Regression)

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160401

Bug ID: 160401
   Summary: FILEOPEN PPTX: wrong word order and font size when
cap="small" on right-to-left text (Regression)
   Product: LibreOffice
   Version: 24.2.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pablo.pl...@gmail.com

Description:
The attached PPTX has two text shapes. The text in both lines should render the
same.
The second shape has cap="small" set. In Impress 24.2 the word order in the
second line is flipped and the font size is smaller.

Steps to Reproduce:
1. Import the attached PPTX to Impress.
2. Compare the first and second text shapes.

Actual Results:
The word order in the second line is flipped and the font size is smaller.

Expected Results:
Both text shapes should render the same. Small caps should make no difference
in Hebrew text.


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Works in 7.4.7.2 but not in 24.2.0.3.

This bug might be related to small caps support in 24.2:
https://bugs.documentfoundation.org/show_bug.cgi?id=98367

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

[Bug 160399] Print Preview freezes the software

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160399

m_a_riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m_a_riosv  ---
Seems the issue is with having merged the whole first row, not only a few
cells.
And at the same time having active Menu/Tools/Options/LibreOffice Calc/Print —
Suppress output of empty pages. And Menu/Format/Print ranges/Edit the entire
sheet.

Calc try to know what are the empty pages, not data, but with the first cell in
all column as part of merged range.

I think really a very corner case.

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

[Bug 160399] Print Preview freezes the software

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160399

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl
   Keywords||perf

--- Comment #1 from Telesto  ---
Confirm
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 0020fc1167b3760d0631001689a44427b72b816e
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
Calc: CL threaded

and with
Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4bb730be0909d9cf55b7a44d7e916aa5de16b9f7
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

and with 
Version: 7.3.8.0.0+ (x64) / LibreOffice Community
Build ID: e1ad83ddb2f39419fb5d7c69eba51e2b9f49c788
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL Jumbo

-> it's slow with jumbo sheets turned ON. Fast with Jumbo Sheets turned OFF

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

[Bug 160399] Print Preview freezes the software

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160399

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

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

2024-03-27 Thread Mike Kaganski (via logerrit)
 sw/qa/extras/htmlexport/data/tdf160390.fodt |   17 +++
 sw/qa/extras/htmlexport/htmlexport.cxx  |7 
 sw/source/filter/html/htmlatr.cxx   |   40 +---
 3 files changed, 43 insertions(+), 21 deletions(-)

New commits:
commit 832fb1ab9abf94f4074e0cc20d846c1536931cf3
Author: Mike Kaganski 
AuthorDate: Wed Mar 27 16:01:51 2024 +0500
Commit: Xisco Fauli 
CommitDate: Wed Mar 27 22:03:48 2024 +0100

tdf#160390: make sure to forward the iterator

Change-Id: I302cc4303f083a1024175ce4ba00ce8021c6d4c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165390
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165404

diff --git a/sw/qa/extras/htmlexport/data/tdf160390.fodt 
b/sw/qa/extras/htmlexport/data/tdf160390.fodt
new file mode 100644
index ..53d6144ff19b
--- /dev/null
+++ b/sw/qa/extras/htmlexport/data/tdf160390.fodt
@@ -0,0 +1,17 @@
+
+
+
+ 
+  
+   
+  
+  
+   
+  
+ 
+ 
+  
+   foo 

+  
+ 
+
\ No newline at end of file
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index de2e9da4c678..42099f3bc44f 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -3053,6 +3053,13 @@ CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, 
testHTML_Tdf160017_spanClosingOrder)
 CPPUNIT_ASSERT(parseXml(maTempFile));
 }
 
+CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testHTML_Tdf160390)
+{
+// This document must not hang infinitely on HTML export
+createSwDoc("tdf160390.fodt");
+ExportToHTML();
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/html/htmlatr.cxx 
b/sw/source/filter/html/htmlatr.cxx
index c880082018f1..f298f93dc5b2 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -1524,8 +1524,9 @@ void HTMLEndPosLst::SplitItem( const SfxPoolItem& rItem, 
sal_Int32 nStart,
 
 for (auto it = items.begin(); it != items.end();)
 {
-HTMLStartEndPos* pTest = *it;
-sal_Int32 nTestEnd = pTest->GetEnd();
+auto itTest = it++; // forward early, allow 'continue', and keep a 
copy for 'erase'
+HTMLStartEndPos* pTest = *itTest;
+const sal_Int32 nTestEnd = pTest->GetEnd();
 if (nTestEnd <= nStart)
 continue;
 
@@ -1533,28 +1534,25 @@ void HTMLEndPosLst::SplitItem( const SfxPoolItem& 
rItem, sal_Int32 nStart,
 const SfxPoolItem& rTestItem = pTest->GetItem();
 
 // only the corresponding OnTag attributes have to be considered
-if (rTestItem.Which() == nWhich && HTML_ON_VALUE == 
GetHTMLItemState(rTestItem))
-{
-// if necessary, insert the second part of the split
-// attribute
-if (nTestEnd > nEnd)
-InsertItem(pTest->GetItem(), nEnd, nTestEnd);
+if (rTestItem.Which() != nWhich || HTML_ON_VALUE != 
GetHTMLItemState(rTestItem))
+continue;
 
-if (nTestStart >= nStart)
-{
-// the Test item only starts after the new end of the
-// attribute. Therefore, it can be completely erased.
-it = items.erase(it);
-std::erase(m_aEndLst[pTest->GetEnd()], pTest);
-delete pTest;
-continue;
-}
+// if necessary, insert the second part of the split attribute
+if (nTestEnd > nEnd)
+InsertItem(rTestItem, nEnd, nTestEnd);
 
-// the start of the new attribute corresponds to the new
-// end of the attribute
-FixSplittedItem(pTest, nStart);
+if (nTestStart >= nStart)
+{
+// the Test item only starts after the new end of the
+// attribute. Therefore, it can be completely erased.
+it = items.erase(itTest);
+std::erase(m_aEndLst[nTestEnd], pTest);
+delete pTest;
+continue;
 }
-++it;
+
+// the start of the new attribute corresponds to the new end of 
the attribute
+FixSplittedItem(pTest, nStart);
 }
 }
 }


core.git: svgio/qa

2024-03-27 Thread Xisco Fauli (via logerrit)
 svgio/qa/cppunit/SvgImportTest.cxx  |8 
 svgio/qa/cppunit/data/tdf156579.svg |8 
 2 files changed, 16 insertions(+)

New commits:
commit 6b15374d1850de13e977cf4bb2106d38e74a030a
Author: Xisco Fauli 
AuthorDate: Wed Mar 27 16:12:41 2024 +0100
Commit: Xisco Fauli 
CommitDate: Wed Mar 27 22:03:09 2024 +0100

tdf#156579: svgio: Add unittest

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

diff --git a/svgio/qa/cppunit/SvgImportTest.cxx 
b/svgio/qa/cppunit/SvgImportTest.cxx
index 8256f6392725..4cab973b5003 100644
--- a/svgio/qa/cppunit/SvgImportTest.cxx
+++ b/svgio/qa/cppunit/SvgImportTest.cxx
@@ -434,6 +434,14 @@ CPPUNIT_TEST_FIXTURE(Test, testTdf145896)
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[3]"_ostr, 
"color"_ostr, "#ff");
 }
 
+CPPUNIT_TEST_FIXTURE(Test, testTdf156579)
+{
+xmlDocUniquePtr pDocument = 
dumpAndParseSvg(u"/svgio/qa/cppunit/data/tdf156579.svg");
+
+// Without the fix in place, nothing would be displayed
+assertXPath(pDocument, 
"/primitive2D/transform/mask/transform/polypolygoncolor[1]"_ostr, "color"_ostr, 
"#ff");
+}
+
 CPPUNIT_TEST_FIXTURE(Test, testTdf156168)
 {
 xmlDocUniquePtr pDocument = 
dumpAndParseSvg(u"/svgio/qa/cppunit/data/tdf156168.svg");
diff --git a/svgio/qa/cppunit/data/tdf156579.svg 
b/svgio/qa/cppunit/data/tdf156579.svg
new file mode 100644
index ..27610784dd87
--- /dev/null
+++ b/svgio/qa/cppunit/data/tdf156579.svg
@@ -0,0 +1,8 @@
+
+
+   
+   
+   
+   
+   
+


[Bug 160387] Writer 7.6 and above versions freezes and crashes everytime

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160387

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |x86-64 (AMD64)
 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
Thank you for confirming! Let's mark as duplicate then.

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

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

[Bug 103184] [META] UI theming bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103184
Bug 103184 depends on bug 137931, which changed state.

Bug 137931 Summary: Show the UI selection dialog on first start-up
https://bugs.documentfoundation.org/show_bug.cgi?id=137931

   What|Removed |Added

 Status|CLOSED  |UNCONFIRMED
 Resolution|WONTFIX |---

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

[Bug 103309] [META] Print dialog bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103309
Bug 103309 depends on bug 160392, which changed state.

Bug 160392 Summary: Print dialog preview's measurement are black on dark 
background in dark mode (gtk3)
https://bugs.documentfoundation.org/show_bug.cgi?id=160392

   What|Removed |Added

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

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

[Bug 143344] [META] Linux Dark Mode bugs and enhancements

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143344
Bug 143344 depends on bug 160392, which changed state.

Bug 160392 Summary: Print dialog preview's measurement are black on dark 
background in dark mode (gtk3)
https://bugs.documentfoundation.org/show_bug.cgi?id=160392

   What|Removed |Added

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

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

[Bug 103182] [META] GTK3-specific bugs

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 160392, which changed state.

Bug 160392 Summary: Print dialog preview's measurement are black on dark 
background in dark mode (gtk3)
https://bugs.documentfoundation.org/show_bug.cgi?id=160392

   What|Removed |Added

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

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

core.git: vcl/source

2024-03-27 Thread Caolán McNamara (via logerrit)
 vcl/source/window/printdlg.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6f89e03f3903474bc51ef8396eb366326cfc254c
Author: Caolán McNamara 
AuthorDate: Wed Mar 27 17:23:18 2024 +
Commit: Caolán McNamara 
CommitDate: Wed Mar 27 21:39:25 2024 +0100

Resolves: tdf#160392 preview's measurement are black on dark bg in dark mode

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

diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index 3acd7ddb1ab1..35cbccf79ab1 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -122,7 +122,7 @@ void 
PrintDialog::PrintPreviewWindow::Paint(vcl::RenderContext& rRenderContext,
 {
 rRenderContext.Push();
 weld::SetPointFont(rRenderContext, 
rRenderContext.GetSettings().GetStyleSettings().GetLabelFont());
-
+
rRenderContext.SetTextColor(rRenderContext.GetSettings().GetStyleSettings().GetLabelTextColor());
 
rRenderContext.SetBackground(Wallpaper(Application::GetSettings().GetStyleSettings().GetDialogColor()));
 rRenderContext.Erase();
 


Minutes from the UX/design meeting 2023-Mar-27

2024-03-27 Thread Heiko Tietze

Present: Sahil, Antonio, Cor, Bogdan, John, Eyal, Heiko
Comments: Stephane, Stuart, Timur

Tickets/Topics

 * A11Y sidebar: Too many issue reports about direct character formatting
   + https://bugs.documentfoundation.org/show_bug.cgi?id=159906
   + group by paragraph (+ 0.5 Stephane)
 + maybe list per paragraph under one root node (Heiko, Antonio)
   + offer an action button (+1 Stephane, Heiko, -1 Stuart)
   + action is not necessarily to remove DF; could also
 be "Dismiss" (Cor)
   + could be a more complex UI with more interactions, filters, batch
 operations etc. (Sahil, Antonio)
 + could be done in a later patch (Cor)
   => let's go with the extra tree node per paragraph and maybe page too
  and no action button for now

 * Add all 3 Spotlight commands (PS, CS, DF) to Style Inspector
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160194
   + maybe per icon-only toggle button (Stephane)
   + agree with the proposal as it matches the workflow (Stuart)
   + clutters the UI and is not in scope of the workflow (Heiko)
   + it's not uncommon to have those buttons in the UIs (Cor, John)
 + neither a big improvement nor a huge impact on UX (John)
   + customization is sufficient (Antonio)
   => let's do it

 * Use "Delete unused master slides" independently from "Minimize
   Presentation" tool
   + https://bugs.documentfoundation.org/show_bug.cgi?id=159860
   + warn in case of an excessive number of master slides
   + rather fix bug 158773 than alert user on some high number (Heiko)
   + MSO is loading quickly but still warns (Timur)
   + warning could offer to delete unused master slides (Antonio)
   + warning should happen on load; covers also issues with import
 from other applications (Antonio)
   + realize per infobar to not block the workflow (user may click away
 the confirmation box), OTOH depending on severity it should
 interrupt
   + label could be "You have an unreasonable number of unused slide master.
 [Clean Up] [x]" (Heiko)
 + hesitate to delete a lot of content with just a click, so - suggest a
   confirmation dialog when pressing cleanup (Eyal)
 + add a button "Inspect" to the infobar (Cor)
   + strongly disagree with different actions on the infobar (Heiko)
 + add Help button to educate the user (Antonio)
   => do so

 * MRU Recent files list entries numbered, no need to be
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160230
   + number seems to be useless (Bogdan)
   + actual date/time like MSO makes more sense (John)
   + handy for a11y resp. keyboard only access (Stuart,Antonio)
 + Alt+F + U + 1 opens the latest pinned item, for example
 + numbers above 10 take the first character from the filename
   + number indicates the recency (Eyal)
   + mnemonics inside the filename are hard to spot (Cor)
   + alternatively we could go with alphanumeric characters A..Z (Sahil)
 + this would require using different alphabeta in different localized
   UIs (Eyal)
   => no good argument to remove the numbers -> WF


OpenPGP_signature.asc
Description: OpenPGP digital signature


Minutes from the UX/design meeting 2023-Mar-27

2024-03-27 Thread Heiko Tietze

Present: Sahil, Antonio, Cor, Bogdan, John, Eyal, Heiko
Comments: Stephane, Stuart, Timur

Tickets/Topics

 * A11Y sidebar: Too many issue reports about direct character formatting
   + https://bugs.documentfoundation.org/show_bug.cgi?id=159906
   + group by paragraph (+ 0.5 Stephane)
 + maybe list per paragraph under one root node (Heiko, Antonio)
   + offer an action button (+1 Stephane, Heiko, -1 Stuart)
   + action is not necessarily to remove DF; could also
 be "Dismiss" (Cor)
   + could be a more complex UI with more interactions, filters, batch
 operations etc. (Sahil, Antonio)
 + could be done in a later patch (Cor)
   => let's go with the extra tree node per paragraph and maybe page too
  and no action button for now

 * Add all 3 Spotlight commands (PS, CS, DF) to Style Inspector
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160194
   + maybe per icon-only toggle button (Stephane)
   + agree with the proposal as it matches the workflow (Stuart)
   + clutters the UI and is not in scope of the workflow (Heiko)
   + it's not uncommon to have those buttons in the UIs (Cor, John)
 + neither a big improvement nor a huge impact on UX (John)
   + customization is sufficient (Antonio)
   => let's do it

 * Use "Delete unused master slides" independently from "Minimize
   Presentation" tool
   + https://bugs.documentfoundation.org/show_bug.cgi?id=159860
   + warn in case of an excessive number of master slides
   + rather fix bug 158773 than alert user on some high number (Heiko)
   + MSO is loading quickly but still warns (Timur)
   + warning could offer to delete unused master slides (Antonio)
   + warning should happen on load; covers also issues with import
 from other applications (Antonio)
   + realize per infobar to not block the workflow (user may click away
 the confirmation box), OTOH depending on severity it should
 interrupt
   + label could be "You have an unreasonable number of unused slide master.
 [Clean Up] [x]" (Heiko)
 + hesitate to delete a lot of content with just a click, so - suggest a
   confirmation dialog when pressing cleanup (Eyal)
 + add a button "Inspect" to the infobar (Cor)
   + strongly disagree with different actions on the infobar (Heiko)
 + add Help button to educate the user (Antonio)
   => do so

 * MRU Recent files list entries numbered, no need to be
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160230
   + number seems to be useless (Bogdan)
   + actual date/time like MSO makes more sense (John)
   + handy for a11y resp. keyboard only access (Stuart,Antonio)
 + Alt+F + U + 1 opens the latest pinned item, for example
 + numbers above 10 take the first character from the filename
   + number indicates the recency (Eyal)
   + mnemonics inside the filename are hard to spot (Cor)
   + alternatively we could go with alphanumeric characters A..Z (Sahil)
 + this would require using different alphabeta in different localized
   UIs (Eyal)
   => no good argument to remove the numbers -> WF


OpenPGP_signature.asc
Description: OpenPGP digital signature


[Bug 160230] MRU Recent files list entries numbered, no need to be

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160230

--- Comment #8 from V Stuart Foote  ---
(In reply to Cor Nouws from comment #7)
> (In reply to V Stuart Foote from comment #4)
> > Oh, wait!
> > 
> > In fact the numbered entries are picked up as accelerator mnemonics for
> > their respective documents. Opening the main File -> Recent Documents each
> > "numbered" document can be keyboard opened via its number.
> Yep - used over here :)
> 
> > But only working for documents 1 - 9. Doesn't work for 2 digit entries.
> > 
> > I guess either fix that to reach the full MRU listing, or strip out the
> > numbering.
> Do you suggest to have Alt-15 to open the 15th in the list? ;)

Just inconsistent. Alt 1-9, and 0 for the 10th are each given an "accelerator"
underlining, and respond. 

But for the 11th to 25th entries (of the default MRU list), no accelerator
action. 

Just the single digit entries at the top of the list stack.

And now with ability to "pin" documents to the top of the MRU, any of those
documents will remain with the 1-9,0 numbered accelerators.

So actually the accelerators we have are pretty functional, and significant.
;-)

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

[Bug 160230] MRU Recent files list entries numbered, no need to be

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160230

--- Comment #8 from V Stuart Foote  ---
(In reply to Cor Nouws from comment #7)
> (In reply to V Stuart Foote from comment #4)
> > Oh, wait!
> > 
> > In fact the numbered entries are picked up as accelerator mnemonics for
> > their respective documents. Opening the main File -> Recent Documents each
> > "numbered" document can be keyboard opened via its number.
> Yep - used over here :)
> 
> > But only working for documents 1 - 9. Doesn't work for 2 digit entries.
> > 
> > I guess either fix that to reach the full MRU listing, or strip out the
> > numbering.
> Do you suggest to have Alt-15 to open the 15th in the list? ;)

Just inconsistent. Alt 1-9, and 0 for the 10th are each given an "accelerator"
underlining, and respond. 

But for the 11th to 25th entries (of the default MRU list), no accelerator
action. 

Just the single digit entries at the top of the list stack.

And now with ability to "pin" documents to the top of the MRU, any of those
documents will remain with the 1-9,0 numbered accelerators.

So actually the accelerators we have are pretty functional, and significant.
;-)

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

[Bug 160400] Copy/Pasting a table from website into table cell in Writer drops the source table

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160400

--- Comment #1 from Telesto  ---
Created attachment 193355
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193355=edit
Sample

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

[Bug 160384] Writer: Opening & editing large files requires an unreasonable response time (many minutes).

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160384

--- Comment #4 from m_a_riosv  ---
In your sample file, takes a few seconds, less than ten to load, and about
forty seconds to recalculate the page's number with:
Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

The document is plenty of direct format, for both paragraph and character, and
with a large table across several pages at the end.
Seems the main issue is about recalculate pages number.
Disabling automatic spellcheck, helps to move through the document.
Maybe there is some option for paragraphs or tables, making it difficult to
establish the pages.

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

[Bug 160400] New: Copy/Pasting a table from website into table cell in Writer drops the source table

2024-03-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160400

Bug ID: 160400
   Summary: Copy/Pasting a table from website into table cell in
Writer drops the source table
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Copy/Pasting a table from website into table cell in Writer drops the source
table 

Steps to Reproduce:
1. Open the attached HTML in a browser
2. CTRL+A
3. CTRL+C
4. Open Writer
5. Insert say a 2x2 table
6. Select cell B1
7. CTRL+V -> table from the source document is gone

--- (for comparison)
8. CTRL+N (new Writer document)
9. CTRL+V
10. CTRL+A
11. CTRL+X
12. Insert say a 2x2 table
13. Select cell B1
14. CTRL+V -> Now it's working as expected.

Actual Results:
The table in the source document will vanish

Expected Results:
A embedded table is pasted within the cell B1. 


Reproducible: Always


User Profile Reset: No

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

and in
OpenOffice 2.2.0

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

  1   2   3   >