Re: Value range of c3DSpecularAmt

2022-02-03 Thread Miklos Vajna
Hi Regina,

On Sun, Jan 30, 2022 at 11:28:09PM +0100, Regina Henschel 
 wrote:
> When the shape is rendered, the product of light intensity and specularity
> is converted to a gray color for the 3D-Scene attribute
> D3DMaterialSpecularIntensity. Because the light intensity is often smaller
> than 100% a value for c3DSpecularAmt larger than 100% can be used
> meaningful.
> 
> The range to [0%,100] has been introduced with [Office-2509] for ODF 1.2. In
> ODF 1.1 the data type was "percent".
> 
> What to do?
> 
> My suggestion is: Allow larger values than 100% in LibreOffice. Clamp the
> value to 100% in case of writing ODF 1.2 and 1.3 strict and use loext in
> case of ODF 1.2 and 1.3 extended. And write to ODF TC to re-enable values
> larger than 100% for ODF 1.4.
> 
> What do you think?

I think this is entirely reasonable.

Thanks,

Miklos


[Libreoffice-bugs] [Bug 147161] [LODE] Consider cloning core/ repo with less history

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147161

Miklos Vajna  changed:

   What|Removed |Added

 CC||cl...@documentfoundation.or
   ||g

--- Comment #1 from Miklos Vajna  ---
CC Cloph who may want to look into this. The safest subset seems to be doing
this only for translations.git, where the cost/benefit ratio is the highest for
the history.

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

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

2022-02-03 Thread Noel Grandin (via logerrit)
 chart2/source/controller/dialogs/DataBrowserModel.cxx |   81 --
 chart2/source/controller/dialogs/DialogModel.cxx  |   36 ++--
 chart2/source/controller/dialogs/DialogModel.hxx  |4 
 chart2/source/controller/dialogs/tp_DataSource.cxx|1 
 chart2/source/inc/OPropertySet.hxx|3 
 5 files changed, 55 insertions(+), 70 deletions(-)

New commits:
commit 3c2192c840f8bc86a677dd1394e9e1b1b52f86f3
Author: Noel Grandin 
AuthorDate: Tue Feb 1 20:51:20 2022 +0200
Commit: Noel Grandin 
CommitDate: Fri Feb 4 08:40:49 2022 +0100

use more concrete types in chart2, DataSeries

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

diff --git a/chart2/source/controller/dialogs/DataBrowserModel.cxx 
b/chart2/source/controller/dialogs/DataBrowserModel.cxx
index c7f91e490dcf..a25af6ca5a9f 100644
--- a/chart2/source/controller/dialogs/DataBrowserModel.cxx
+++ b/chart2/source/controller/dialogs/DataBrowserModel.cxx
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -333,63 +334,57 @@ void DataBrowserModel::insertDataSeries( sal_Int32 
nAfterColumnIndex )
 // only share "values-x" sequences. (TODO: simplify this logic).
 lcl_tSharedSeqVec aSharedSequences = lcl_getSharedSequences( 
xChartType->getDataSeries());
 
-Reference xNewSeries =
+rtl::Reference<::chart::DataSeries> xNewSeries =
 m_apDialogModel->insertSeriesAfter(xSeries, xChartType, true);
 
 if (!xNewSeries.is())
 // Failed to insert new data series to the model. Bail out.
 return;
 
-Reference< chart2::data::XDataSource > xSource( xNewSeries, uno::UNO_QUERY 
);
-if (xSource.is())
+Sequence > aLSequences = 
xNewSeries->getDataSequences();
+sal_Int32 nSeqIdx = 0;
+sal_Int32 nSeqSize = aLSequences.getLength();
+for (sal_Int32 nIndex = nStartCol; nSeqIdx < nSeqSize; ++nSeqIdx)
 {
-Sequence > aLSequences = 
xSource->getDataSequences();
-sal_Int32 nSeqIdx = 0;
-sal_Int32 nSeqSize = aLSequences.getLength();
-for (sal_Int32 nIndex = nStartCol; nSeqIdx < nSeqSize; ++nSeqIdx)
-{
-lcl_tSharedSeqVec::const_iterator aSharedIt(
-std::find_if( aSharedSequences.begin(), aSharedSequences.end(),
-lcl_RolesOfLSeqMatch( aLSequences[nSeqIdx] )));
+lcl_tSharedSeqVec::const_iterator aSharedIt(
+std::find_if( aSharedSequences.begin(), aSharedSequences.end(),
+lcl_RolesOfLSeqMatch( aLSequences[nSeqIdx] )));
 
-if( aSharedIt != aSharedSequences.end())
-{
-// Shared sequence. Most likely "values-x" sequence.  Copy it 
from existing sequence.
-aLSequences[nSeqIdx]->setValues( (*aSharedIt)->getValues());
-aLSequences[nSeqIdx]->setLabel( (*aSharedIt)->getLabel());
-}
-else
-{
-// Insert a new column in the internal data for the new 
sequence.
-xDataProvider->insertSequence( nIndex - 1 );
-
-// values
-Reference< chart2::data::XDataSequence > xNewSeq(
-xDataProvider->createDataSequenceByRangeRepresentation(
-OUString::number( nIndex )));
-lcl_copyDataSequenceProperties(
-aLSequences[nSeqIdx]->getValues(), xNewSeq );
-aLSequences[nSeqIdx]->setValues( xNewSeq );
-
-// labels
-Reference< chart2::data::XDataSequence > xNewLabelSeq(
-xDataProvider->createDataSequenceByRangeRepresentation(
-"label " +
-OUString::number( nIndex )));
-lcl_copyDataSequenceProperties(
-aLSequences[nSeqIdx]->getLabel(), xNewLabelSeq );
-aLSequences[nSeqIdx]->setLabel( xNewLabelSeq );
-++nIndex;
-}
+if( aSharedIt != aSharedSequences.end())
+{
+// Shared sequence. Most likely "values-x" sequence.  Copy it from 
existing sequence.
+aLSequences[nSeqIdx]->setValues( (*aSharedIt)->getValues());
+aLSequences[nSeqIdx]->setLabel( (*aSharedIt)->getLabel());
+}
+else
+{
+// Insert a new column in the internal data for the new sequence.
+xDataProvider->insertSequence( nIndex - 1 );
+
+// values
+Reference< chart2::data::XDataSequence > xNewSeq(
+xDataProvider->createDataSequenceByRangeRepresentation(
+OUString::number( nIndex )));
+lcl_copyDataSequenceProperties(
+aLSequences[nSeqIdx]->getValues(), xNewSeq );
+aLSequences[nSeqIdx]->setValues( 

[Libreoffice-bugs] [Bug 146866] Assert fails in debug build when use button "Toggle Extrusion" on Fontwork shape

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146866

Dieter  changed:

   What|Removed |Added

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

--- Comment #2 from Dieter  ---
I can't confirm with

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 651ff4f195804b206941e6316c5120a914d28b6b
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

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

[Libreoffice-bugs] [Bug 113731] [META] Highlight bugs and enhancements

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113731

Dieter  changed:

   What|Removed |Added

 Depends on||107663


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107663
[Bug 107663] Characters overlap when Highlight Colour and italic or underlined
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107663] Characters overlap when Highlight Colour and italic or underlined

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107663

Dieter  changed:

   What|Removed |Added

 Blocks||113731


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 142355] [META] Text highlighting issues

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142355

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 112185] [META] Highlight text color button/widget bugs and enhancements

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112185

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 113731] [META] Highlight bugs and enhancements

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113731

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145962] [META] Bugs related to kerning/font spacing (cramped/to width/wiggling)

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145962
Bug 145962 depends on bug 146879, which changed state.

Bug 146879 Summary: Wiggling U (unstable kerning) when activating Italic
https://bugs.documentfoundation.org/show_bug.cgi?id=146879

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107663] Characters overlap when Highlight Colour and italic or underlined

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107663

--- Comment #6 from Dieter  ---
*** Bug 146879 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 146879] Wiggling U (unstable kerning) when activating Italic

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146879

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|
 Resolution|--- |DUPLICATE

--- Comment #4 from Dieter  ---
(In reply to Telesto from comment #3)
> bug is known

Yes, and I don't understand, why we need a new bug report.

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

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

[Libreoffice-bugs] [Bug 107838] [META] Character-level bugs and enhancements

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107838

Dieter  changed:

   What|Removed |Added

 Depends on||107663


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107663
[Bug 107663] Characters overlap when Highlight Colour and italic or underlined
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107663] Characters overlap when Highlight Colour and italic or underlined

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107663

Dieter  changed:

   What|Removed |Added

 Blocks||107838
 CC||dgp-m...@gmx.de

--- Comment #5 from Dieter  ---
Still present in

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 651ff4f195804b206941e6316c5120a914d28b6b
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

Steps to reproduce
1. Open attachment 169510

Actual result
Part of "p" of "Setup" in the highlighted paragraph disappears behind color

Expected result
Should not happen


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 147166] Changing text color of list item changes vertical spacing

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147166

Gerald Pfeifer  changed:

   What|Removed |Added

Summary|Changing color changes  |Changing text color of list
   |vertical spacing|item changes vertical
   ||spacing

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

[Libreoffice-commits] core.git: include/sfx2 sd/source sw/source

2022-02-03 Thread Miklos Vajna (via logerrit)
 include/sfx2/viewsh.hxx |8 ++--
 sd/source/ui/view/GraphicViewShellBase.cxx  |4 +-
 sd/source/ui/view/ImpressViewShellBase.cxx  |4 +-
 sd/source/ui/view/OutlineViewShellBase.cxx  |4 +-
 sd/source/ui/view/PresentationViewShellBase.cxx |4 +-
 sd/source/ui/view/SlideSorterViewShellBase.cxx  |4 +-
 sw/source/uibase/inc/uivwimp.hxx|   28 
 sw/source/uibase/uiview/uivwimp.cxx |   42 
 8 files changed, 49 insertions(+), 49 deletions(-)

New commits:
commit b78ef5d55b891d8f6788ac53adfab0087d49c7be
Author: Miklos Vajna 
AuthorDate: Thu Feb 3 20:08:41 2022 +0100
Commit: Miklos Vajna 
CommitDate: Fri Feb 4 08:18:44 2022 +0100

sw: prefix members of SwClipboardChangeListener, SwPagePreview, ...

... SwScannerEventListener and SwView_Impl

See tdf#94879 for motivation.

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

diff --git a/include/sfx2/viewsh.hxx b/include/sfx2/viewsh.hxx
index c748d957d503..ea7d966c8cc7 100644
--- a/include/sfx2/viewsh.hxx
+++ b/include/sfx2/viewsh.hxx
@@ -122,20 +122,20 @@ enum class LOKDeviceFormFactor
 class SfxViewFactory;
 #define SFX_DECL_VIEWFACTORY(Class) \
 private: \
-static SfxViewFactory *m_pFactory; \
+static SfxViewFactory *s_pFactory; \
 public: \
 static SfxViewShell  *CreateInstance(SfxViewFrame *pFrame, SfxViewShell 
*pOldView); \
 static void   RegisterFactory( SfxInterfaceId nPrio ); \
-static SfxViewFactory*Factory() { return m_pFactory; } \
+static SfxViewFactory*Factory() { return s_pFactory; } \
 static void   InitFactory()
 
 #define SFX_IMPL_NAMED_VIEWFACTORY(Class, AsciiViewName) \
-SfxViewFactory* Class::m_pFactory; \
+SfxViewFactory* Class::s_pFactory; \
 SfxViewShell* Class::CreateInstance(SfxViewFrame *pFrame, SfxViewShell 
*pOldView) \
 { return new Class(pFrame, pOldView); } \
 void Class::RegisterFactory( SfxInterfaceId nPrio ) \
 { \
-m_pFactory = new SfxViewFactory(,nPrio,AsciiViewName);\
+s_pFactory = new SfxViewFactory(,nPrio,AsciiViewName);\
 InitFactory(); \
 } \
 void Class::InitFactory()
diff --git a/sd/source/ui/view/GraphicViewShellBase.cxx 
b/sd/source/ui/view/GraphicViewShellBase.cxx
index 95dbe71dc1e9..d58c8a0d2479 100644
--- a/sd/source/ui/view/GraphicViewShellBase.cxx
+++ b/sd/source/ui/view/GraphicViewShellBase.cxx
@@ -33,7 +33,7 @@ namespace sd
 // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a
 // new GraphicViewShellBase object has been constructed.
 
-SfxViewFactory* GraphicViewShellBase::m_pFactory;
+SfxViewFactory* GraphicViewShellBase::s_pFactory;
 SfxViewShell* GraphicViewShellBase::CreateInstance(SfxViewFrame* pFrame, 
SfxViewShell* pOldView)
 {
 GraphicViewShellBase* pBase = new GraphicViewShellBase(pFrame, pOldView);
@@ -42,7 +42,7 @@ SfxViewShell* 
GraphicViewShellBase::CreateInstance(SfxViewFrame* pFrame, SfxView
 }
 void GraphicViewShellBase::RegisterFactory(SfxInterfaceId nPrio)
 {
-m_pFactory = new SfxViewFactory(, nPrio, "Default");
+s_pFactory = new SfxViewFactory(, nPrio, "Default");
 InitFactory();
 }
 void GraphicViewShellBase::InitFactory() { 
SFX_VIEW_REGISTRATION(GraphicDocShell); }
diff --git a/sd/source/ui/view/ImpressViewShellBase.cxx 
b/sd/source/ui/view/ImpressViewShellBase.cxx
index 047b06e8f4ec..96b0b5aa9154 100644
--- a/sd/source/ui/view/ImpressViewShellBase.cxx
+++ b/sd/source/ui/view/ImpressViewShellBase.cxx
@@ -36,7 +36,7 @@ namespace sd {
 // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a
 // new ImpressViewShellBase object has been constructed.
 
-SfxViewFactory* ImpressViewShellBase::m_pFactory;
+SfxViewFactory* ImpressViewShellBase::s_pFactory;
 SfxViewShell* ImpressViewShellBase::CreateInstance (
 SfxViewFrame *pFrame, SfxViewShell *pOldView)
 {
@@ -46,7 +46,7 @@ SfxViewShell* ImpressViewShellBase::CreateInstance (
 }
 void ImpressViewShellBase::RegisterFactory( SfxInterfaceId nPrio )
 {
-m_pFactory = new SfxViewFactory(,nPrio,"Default");
+s_pFactory = new SfxViewFactory(,nPrio,"Default");
 InitFactory();
 }
 void ImpressViewShellBase::InitFactory()
diff --git a/sd/source/ui/view/OutlineViewShellBase.cxx 
b/sd/source/ui/view/OutlineViewShellBase.cxx
index 2e566e5c7d48..8da1bcbcae08 100644
--- a/sd/source/ui/view/OutlineViewShellBase.cxx
+++ b/sd/source/ui/view/OutlineViewShellBase.cxx
@@ -32,7 +32,7 @@ class DrawDocShell;
 // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a
 // new OutlineViewShellBase object has been constructed.
 
-SfxViewFactory* OutlineViewShellBase::m_pFactory;
+SfxViewFactory* OutlineViewShellBase::s_pFactory;
 SfxViewShell* OutlineViewShellBase::CreateInstance (
 SfxViewFrame 

Pragat Pandya license statement

2022-02-03 Thread Pragat Pandya
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.

  -Pragat Pandya


[Libreoffice-bugs] [Bug 140760] (PIVOTTABLE) selection of invalid constraint values possible and probably this irreversibly results in an empty pivot table

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140760

Eike  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Eike  ---
To whom it may concern:

I now have updated to 

Version: 7.3.0.3 / LibreOffice Community
Build ID: 30(Build:3)
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: kf5 (cairo+xcb)
Locale: de-DE (de_DE.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.0~rc3-0ubuntu0.20.04.1~lo1
Calc: CL

and the error still persists. What I wonder about is that the error still is in
status UNCONFIRMED. How shall I proceed? Report another bug referring to the
latest version?

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

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

2022-02-03 Thread Julien Nabet (via logerrit)
 dbaccess/source/ui/browser/unodatbr.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit bcd5a154e4284848553f994d4d0612182130c271
Author: Julien Nabet 
AuthorDate: Thu Feb 3 22:12:53 2022 +0100
Commit: Julien Nabet 
CommitDate: Fri Feb 4 08:01:35 2022 +0100

Use only toUInt64 for reinterpret_cast

Change-Id: I3e7ad37ae5cc59dd0378ef1b08b4cc47a780e005
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129475
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/dbaccess/source/ui/browser/unodatbr.cxx 
b/dbaccess/source/ui/browser/unodatbr.cxx
index ee07b531f8b2..4d6cb342dc44 100644
--- a/dbaccess/source/ui/browser/unodatbr.cxx
+++ b/dbaccess/source/ui/browser/unodatbr.cxx
@@ -2150,7 +2150,7 @@ IMPL_LINK(SbaTableQueryBrowser, OnExpandEntry, const 
weld::TreeIter&, rParent, b
 std::unique_ptr xFirstParent = 
m_pTreeView->GetRootLevelParent();
 OSL_ENSURE(xFirstParent,"SbaTableQueryBrowser::OnExpandEntry: No 
rootlevelparent!");
 
-DBTreeListUserData* pData = 
reinterpret_cast(rTreeView.get_id(rParent).toInt64());
+DBTreeListUserData* pData = 
reinterpret_cast(rTreeView.get_id(rParent).toUInt64());
 assert(pData && "SbaTableQueryBrowser::OnExpandEntry: No user data!");
 
 if (etTableContainer == pData->eType)
@@ -2482,11 +2482,11 @@ std::unique_ptr 
SbaTableQueryBrowser::implGetConnectionEntry(con
 {
 weld::TreeView& rTreeView = m_pTreeView->GetWidget();
 std::unique_ptr 
xCurrentEntry(rTreeView.make_iterator());
-DBTreeListUserData* pEntryData = 
reinterpret_cast(rTreeView.get_id(*xCurrentEntry).toInt64());
+DBTreeListUserData* pEntryData = 
reinterpret_cast(rTreeView.get_id(*xCurrentEntry).toUInt64());
 while (pEntryData->eType != etDatasource)
 {
 rTreeView.iter_parent(*xCurrentEntry);
-pEntryData = 
reinterpret_cast(rTreeView.get_id(*xCurrentEntry).toInt64());
+pEntryData = 
reinterpret_cast(rTreeView.get_id(*xCurrentEntry).toUInt64());
 }
 return xCurrentEntry;
 }


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

2022-02-03 Thread Julien Nabet (via logerrit)
 dbaccess/source/core/dataaccess/databasedocument.cxx |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

New commits:
commit ebc572c4366b871c737cd4785a48111c1344cad2
Author: Julien Nabet 
AuthorDate: Thu Feb 3 20:57:45 2022 +0100
Commit: Julien Nabet 
CommitDate: Fri Feb 4 08:00:52 2022 +0100

Simplify a bit ODatabaseDocument::impl_getUntitledHelper_throw

No need to call "m_xModuleManager->identify" which throws if the component 
var
is an empty ref then do nothing with the exception.

Change-Id: I213aaa3bf4c67c2a1b94b725283b2421c904abba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129474
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/dbaccess/source/core/dataaccess/databasedocument.cxx 
b/dbaccess/source/core/dataaccess/databasedocument.cxx
index 4fce39de0b35..51a3457f7668 100644
--- a/dbaccess/source/core/dataaccess/databasedocument.cxx
+++ b/dbaccess/source/core/dataaccess/databasedocument.cxx
@@ -2108,16 +2108,15 @@ uno::Reference< frame::XUntitledNumbers > 
ODatabaseDocument::impl_getUntitledHel
 m_xModuleManager.set( ModuleManager::create(m_pImpl->m_aContext) );
 
 OUString sModuleId;
-try
+uno::Reference< frame::XUntitledNumbers > xNumberedControllers;
+TNumberedController::const_iterator aFind = m_aNumberedControllers.end();
+
+if (_xComponent.is())
 {
 sModuleId = m_xModuleManager->identify( _xComponent );
+aFind = m_aNumberedControllers.find(sModuleId);
 }
-catch(const uno::Exception&)
-{
-}
-uno::Reference< frame::XUntitledNumbers > xNumberedControllers;
 
-TNumberedController::const_iterator aFind = 
m_aNumberedControllers.find(sModuleId);
 if ( aFind == m_aNumberedControllers.end() )
 {
 rtl::Reference<::comphelper::NumberedCollection> pHelper = new 
::comphelper::NumberedCollection();


[Libreoffice-bugs] [Bug 136328] [META] DOCX Grouped shape related issues

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136328
Bug 136328 depends on bug 146803, which changed state.

Bug 146803 Summary: FILEOPEN DOCX Spacing to border incorrect in grouped shape
https://bugs.documentfoundation.org/show_bug.cgi?id=146803

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 136328] [META] DOCX Grouped shape related issues

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136328
Bug 136328 depends on bug 146805, which changed state.

Bug 146805 Summary: FILEOPEN DOCX Vertical alignment of text inside grouped 
shapes textbox incorrect
https://bugs.documentfoundation.org/show_bug.cgi?id=146805

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104448] [META] DOCX SAXParseException

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104448
Bug 104448 depends on bug 146802, which changed state.

Bug 146802 Summary: SAXException: [word/document.xml line 2] - Lo tries to 
import VML equation
https://bugs.documentfoundation.org/show_bug.cgi?id=146802

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 147167] Dragging a JPG from Firefox to Writer, the image is saved inside ODT as BMP

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147167

Mike Kaganski  changed:

   What|Removed |Added

 Resolution|--- |NOTOURBUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Mike Kaganski  ---
Looks caused by Firefox bug
https://bugzilla.mozilla.org/show_bug.cgi?id=557708, and thus NOTOURBUG (since
the actual file being inserted into Writer is coming from Firefox saved
temporary copy like C:\Users\user\AppData\Local\Temp\dvlz7uhh.bmp), and has the
BMP "original" format, which is rightfully kept when stored.

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

[Libreoffice-bugs] [Bug 147169] Show complete deleted text on mouse-over (like a tooltip) when using track changes (deletions) in margin

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147169

Gerry  changed:

   What|Removed |Added

 Blocks||137770


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137770
[Bug 137770] [META] Tracked changes in margin
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137770] [META] Tracked changes in margin

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137770

Gerry  changed:

   What|Removed |Added

 Depends on||147169

--- Comment #1 from Gerry  ---
I added bug 147169 "Show complete deleted text on mouse-over (like a tooltip)
when using track changes (deletions) in margin"


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147169
[Bug 147169] Show complete deleted text on mouse-over (like a tooltip) when
using track changes (deletions) in margin
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147169] Show complete deleted text on mouse-over (like a tooltip) when using track changes (deletions) in margin

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147169

Gerry  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=34
   ||355
 CC||gerry.trep...@googlemail.co
   ||m,
   ||heiko.tietze@documentfounda
   ||tion.org,
   ||nem...@numbertext.org

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

[Libreoffice-bugs] [Bug 147169] New: Show complete deleted text on mouse-over (like a tooltip) when using track changes (deletions) in margin

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147169

Bug ID: 147169
   Summary: Show complete deleted text on mouse-over (like a
tooltip) when using track changes (deletions) in
margin
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gerry.trep...@googlemail.com

Created attachment 178032
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178032=edit
The mock-up shows a tooltip with the entire deleted text (when show track
changes (deletions) in margin is activated)

Show track changes in margin could be an excellent feature, but it lacks
something very  important to make it really useful: Currently it is impossible
to see the entire deleted text. This, however, is a precondition for a reviewer
to decide whether he/she can accept or reject the change.

More detailed description: 
* Activate the option "deleted change in margin" during track change (Extras ->
Options -> Writer -> View) 
* you now see the shortened text content of the deletion in the left margin
(see attached screenshot). The same shortened text content also shows up in the
comment column of the "Manage-Windows" (Edit -> Changes -> Manage). 
* Unfortunately, it is nowhere possible to see the entire deleted text. This is
necessary, though, for reviewing a document with track changes.

Enhancement proposition: 
* Please add a tooltip-type mouse-over that shows the entire deleted text.
Please see the mock-up in the screenshot. This greatly would improve the
usability of the feature "Track changes in margin".  
* It would be also great if the same "tooltip" would show up when hovering over
the "comment" column in the Track changes manage window.

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

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

2022-02-03 Thread Kevin Suo (via logerrit)
 sdext/source/pdfimport/inc/wrapper.hxx |   12 
 sdext/source/pdfimport/wrapper/wrapper.cxx |   26 +-
 2 files changed, 37 insertions(+), 1 deletion(-)

New commits:
commit bcf10015c5d12d363d0be9f6da25092c83112692
Author: Kevin Suo 
AuthorDate: Sat Jan 29 21:44:36 2022 +0800
Commit: Noel Grandin 
CommitDate: Fri Feb 4 07:44:18 2022 +0100

sdext.pdfimport tdf#137128: Recognize more font name and weight...

...values from the embeded 'PS' font names.

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

diff --git a/sdext/source/pdfimport/inc/wrapper.hxx 
b/sdext/source/pdfimport/inc/wrapper.hxx
index 9f25e1b7290b..94cc2b24327d 100644
--- a/sdext/source/pdfimport/inc/wrapper.hxx
+++ b/sdext/source/pdfimport/inc/wrapper.hxx
@@ -58,16 +58,28 @@ namespace pdfi
 // and they are checked from the suffix, thus the order matters.
 // e.g. for "TimesNewRomanPS-BoldItalic", to get "TimesNewRoman", you 
should
 //  first have "Italic", and then "Bold", then "-", and then "PS".
+"-VKana",
 "MT",
 "PS",
 "PSMT",
 "Regular",
+"Normal",
+"Book",
+"Medium",
+"ExtraBold",
+"UltraBold",
+"ExtraLight",
+"UltraLight",
 "Bold",
+"Heavy",
+"Black",
 "Italic",
 "Oblique",
 "Bold", //BoldItalic, BoldOblique
 "Light",
+"Thin",
 "Semibold",
+"-Roman",
 "Reg",
 "VKana",
 "-",
diff --git a/sdext/source/pdfimport/wrapper/wrapper.cxx 
b/sdext/source/pdfimport/wrapper/wrapper.cxx
index 0560826d5727..cfa256f0acfa 100644
--- a/sdext/source/pdfimport/wrapper/wrapper.cxx
+++ b/sdext/source/pdfimport/wrapper/wrapper.cxx
@@ -492,7 +492,15 @@ void LineParser::parseFontFamilyName( FontAttributes& 
rResult )
 {
 rResult.familyName = 
rResult.familyName.replaceAll(fontAttributesSuffix, "");
 SAL_INFO("sdext.pdfimport", rResult.familyName);
-if (fontAttributesSuffix == u"Bold")
+if (fontAttributesSuffix == u"Heavy" || fontAttributesSuffix == 
u"Black")
+{
+rResult.fontWeight = u"900";
+}
+else if (fontAttributesSuffix == u"ExtraBold" || 
fontAttributesSuffix == u"UltraBold")
+{
+rResult.fontWeight = u"800";
+}
+else if (fontAttributesSuffix == u"Bold")
 {
 rResult.fontWeight = u"bold";
 }
@@ -500,10 +508,26 @@ void LineParser::parseFontFamilyName( FontAttributes& 
rResult )
 {
 rResult.fontWeight = u"600";
 }
+else if (fontAttributesSuffix == u"Medium")
+{
+rResult.fontWeight = u"500";
+}
+else if (fontAttributesSuffix == u"Normal" || fontAttributesSuffix 
== u"Regular" || fontAttributesSuffix == u"Book")
+{
+rResult.fontWeight = u"400";
+}
 else if (fontAttributesSuffix == u"Light")
 {
 rResult.fontWeight = u"300";
 }
+else if (fontAttributesSuffix == u"ExtraLight" || 
fontAttributesSuffix == u"UltraLight")
+{
+rResult.fontWeight = u"200";
+}
+else if (fontAttributesSuffix == u"Thin")
+{
+rResult.fontWeight = u"100";
+}
 
 if ( (fontAttributesSuffix == "Italic") or (fontAttributesSuffix 
== "Oblique") )
 {


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

2022-02-03 Thread Kevin Suo (via logerrit)
 sdext/source/pdfimport/tree/genericelements.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 2f605009907166d509ccd1dcb6385e5cd456e3e4
Author: Kevin Suo 
AuthorDate: Mon Jul 12 09:11:15 2021 +0800
Commit: Noel Grandin 
CommitDate: Fri Feb 4 07:43:42 2022 +0100

sdext.pdfimport: these SAL_WARN should be SAL_INFO

SAL_WARN should be some message which showns where the program
runs abnormally. Normal debugging output code should be SAL_INFO,
and if you have set it to SAL_WARN for easy debugging you should
set it back to SAL_INFO or delete those lines when submit.
Otherwise our dbgutil terminal will be flood with unrelated
messages

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

diff --git a/sdext/source/pdfimport/tree/genericelements.cxx 
b/sdext/source/pdfimport/tree/genericelements.cxx
index b02e2c0a727d..2c394c973bf0 100644
--- a/sdext/source/pdfimport/tree/genericelements.cxx
+++ b/sdext/source/pdfimport/tree/genericelements.cxx
@@ -156,8 +156,8 @@ void PolyPolyElement::visitedBy( ElementTreeVisitor&
  rV
 #if OSL_DEBUG_LEVEL > 0
 void PolyPolyElement::emitStructure( int nLevel)
 {
-SAL_WARN( "sdext", std::string(nLevel, ' ') << "<" << typeid( *this 
).name() << " " << this << ">" );
-SAL_WARN( "sdext", "path=" );
+SAL_INFO( "sdext", std::string(nLevel, ' ') << "<" << typeid( *this 
).name() << " " << this << ">" );
+SAL_INFO( "sdext", "path=" );
 int nPoly = PolyPoly.count();
 for( int i = 0; i < nPoly; i++ )
 {
@@ -169,11 +169,11 @@ void PolyPolyElement::emitStructure( int nLevel)
 basegfx::B2DPoint aPoint = aPoly.getB2DPoint( n );
 buff.append( " (" + OUString::number(aPoint.getX()) + "," + 
OUString::number(aPoint.getY()) + ")");
 }
-SAL_WARN( "sdext", "" << buff.makeStringAndClear() );
+SAL_INFO( "sdext", "" << buff.makeStringAndClear() );
 }
 for (auto const& child : Children)
 child->emitStructure( nLevel+1 );
-SAL_WARN( "sdext", std::string(nLevel, ' ') << "");
+SAL_INFO( "sdext", std::string(nLevel, ' ') << "");
 }
 #endif
 


[Libreoffice-bugs] [Bug 147168] New: SbiRuntime::StepPAD is a no-op

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147168

Bug ID: 147168
   Summary: SbiRuntime::StepPAD is a no-op
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: andreas.heini...@yahoo.de

SbiRuntime::StepPAD (basic/source/runtime/runtime.cxx) only works with local
variables, and never changes anything outside, nor returns a result. So it is a
no-op.

It is related to SbiOpcode::PAD_ -> SbiParser::Assign -> SbiToken::LET, and
thus implements something in LET (assignment) statement. Given that it had been
such a no-op since very long (commit 6702bc37d4bc28ec45c6c25f6a953997f6999270)
without obvious reported problems, and its related code may be in compiled
images in existing documents, the idea is that we could stop emitting it when
compiling (SbiParser::Assign), and change its implementation to the real no-op
(only maybe calling GetTOS in StepPAD, which may change the state).

Or we should check if commit 6702bc37d4bc28ec45c6c25f6a953997f6999270, that
changed from working with non-const String& into local OUString did regress
something, and we need to put the modified data back?

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

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

2022-02-03 Thread Dennis Francis (via logerrit)
 svx/source/svdraw/svdview.cxx |8 
 1 file changed, 8 insertions(+)

New commits:
commit 0a95b424c8fd4eb58b439828120ba631048be32f
Author: Dennis Francis 
AuthorDate: Mon Dec 6 13:55:43 2021 +0530
Commit: Dennis Francis 
CommitDate: Fri Feb 4 07:33:46 2022 +0100

lokCalcRTL: shapes: negate mouse-event x coordinate

Conflicts:
svx/source/svdraw/svdview.cxx

Change-Id: I153334940b41859e6fd9dee64217925627f0f292
(cherry picked from commit bb37b46182bcff2f10edcc590cedbc4bb5820c4b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129359
Tested-by: Jenkins
Reviewed-by: Dennis Francis 

diff --git a/svx/source/svdraw/svdview.cxx b/svx/source/svdraw/svdview.cxx
index 52391d0a0b57..d66094def531 100644
--- a/svx/source/svdraw/svdview.cxx
+++ b/svx/source/svdraw/svdview.cxx
@@ -265,6 +265,14 @@ SdrHitKind SdrView::PickAnything(const MouseEvent& rMEvt, 
SdrMouseEventKind nEve
 }
 Point aPnt(rMEvt.GetPosPixel());
 if (pOut!=nullptr) aPnt=pOut->PixelToLogic(aPnt);
+
+if (mbNegativeX)
+{
+// Shape's x coordinates are all negated,
+// Hence negate mouse event's x coord to match.
+aPnt.setX(-aPnt.X());
+}
+
 rVEvt.maLogicPos = aPnt;
 return PickAnything(aPnt,rVEvt);
 }


[Libreoffice-bugs] [Bug 147167] Dragging a JPG from Firefox to Writer, the image is saved inside ODT as BMP

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147167

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 138981] The JPG property lost on copy/paste from clipboard (not-libreOffice internal clipboard) causing image being pasted as "unknown format" resulting in JPG to PNG conversio

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138981

Mike Kaganski  changed:

   What|Removed |Added

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

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

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

2022-02-03 Thread Miklos Vajna (via logerrit)
 svx/source/svdraw/svdpage.cxx  |9 +
 vcl/source/filter/ipdf/pdfread.cxx |3 ++-
 2 files changed, 11 insertions(+), 1 deletion(-)

New commits:
commit 9f7e6d10d863bb206ba3d671e34d2f019e2d2480
Author: Miklos Vajna 
AuthorDate: Thu Feb 3 15:28:11 2022 +0100
Commit: Miklos Vajna 
CommitDate: Fri Feb 4 07:13:45 2022 +0100

svx: show width and height of SdrPages in the xml dump

Which is useful to see, as a 2 page Draw document has 2 normal pages and
a master page (3 sizes), but in practice there can be only a single
size, so it's useful to see what size is coming from where when they
don't match.

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

diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index 981381643430..536167b04e56 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -1841,6 +1841,15 @@ void SdrPage::dumpAsXml(xmlTextWriterPtr pWriter) const
 (void)xmlTextWriterStartElement(pWriter, BAD_CAST("SdrPage"));
 SdrObjList::dumpAsXml(pWriter);
 
+(void)xmlTextWriterStartElement(pWriter, BAD_CAST("width"));
+(void)xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("value"), "%s",
+
BAD_CAST(OString::number(mnWidth).getStr()));
+(void)xmlTextWriterEndElement(pWriter);
+(void)xmlTextWriterStartElement(pWriter, BAD_CAST("height"));
+(void)xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("value"), "%s",
+
BAD_CAST(OString::number(mnHeight).getStr()));
+(void)xmlTextWriterEndElement(pWriter);
+
 if (mpSdrPageProperties)
 {
 mpSdrPageProperties->dumpAsXml(pWriter);
diff --git a/vcl/source/filter/ipdf/pdfread.cxx 
b/vcl/source/filter/ipdf/pdfread.cxx
index 0780e1c9baaa..595df4fac886 100644
--- a/vcl/source/filter/ipdf/pdfread.cxx
+++ b/vcl/source/filter/ipdf/pdfread.cxx
@@ -7,9 +7,10 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
+
 #include 
 #include 
-#include 
 
 #include 
 


[Libreoffice-bugs] [Bug 147167] New: Dragging a JPG from Firefox to Writer, the image is saved inside ODT as BMP

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147167

Bug ID: 147167
   Summary: Dragging a JPG from Firefox to Writer, the image is
saved inside ODT as BMP
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 178031
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178031=edit
A sample JPEG from
https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Henry_Taube_-_HD.3F.005_%2811086397086%29.jpg/350px-Henry_Taube_-_HD.3F.005_%2811086397086%29.jpg

1. Open
https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Henry_Taube_-_HD.3F.005_%2811086397086%29.jpg/350px-Henry_Taube_-_HD.3F.005_%2811086397086%29.jpg
in Firefox (I used 96.0.3 (64-bit) on Windows 10).
2. Drag the image from the browser into a Writer document.
3. Save the document as ODT.
4. Inspect the ODT (zip package) to see that the image is stored in /Pictures
as a ~350 KB BMP, not ~38 KB JPEG.

If you download the JPEG locally, and then drag it from Windows Explorer to
Writer document, it will be stored as JPEG.

This problem is mentioned on
https://forum.openoffice.org/en/forum/viewtopic.php?f=71=86682 (see #13), so
a longstanding problem. Possibly related to how FF works with Windows
clipboard; in any case - even if the image format is unknown - it would
possibly make sense to prefer PNG over BMP (using internal Compress, and
defining compression level 9 without downsampling, gives smaller image and ODT
file size, and also faster operation - possibly because of less disk IO).

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - shell/Library_kf5be.mk shell/source

2022-02-03 Thread Caolán McNamara (via logerrit)
 shell/Library_kf5be.mk |1 +
 shell/source/backends/kf5be/kf5backend.cxx |   23 +++
 2 files changed, 16 insertions(+), 8 deletions(-)

New commits:
commit db43e8a2a02adaa3571137b82855c01fad4c2534
Author: Caolán McNamara 
AuthorDate: Wed Feb 2 16:21:43 2022 +
Commit: Michael Weghorn 
CommitDate: Fri Feb 4 06:54:55 2022 +0100

rhbz#2047319 drop the SolarMutex before QApplication::init()

https://invent.kde.org/qt/qt/qtwayland/-/merge_requests/24#note_383915

reproducible with with qt5-qtwayland-5.15.2-17.fc35.x86_64 and
export OOO_FORCE_DESKTOP=plasma5
export SAL_USE_VCLPLUGIN=gtk3

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

diff --git a/shell/Library_kf5be.mk b/shell/Library_kf5be.mk
index 628145176e0f..157f8b9836f8 100644
--- a/shell/Library_kf5be.mk
+++ b/shell/Library_kf5be.mk
@@ -20,6 +20,7 @@ $(eval $(call gb_Library_use_libraries,kf5be1,\
cppu \
cppuhelper \
sal \
+   vcl \
 ))
 
 $(eval $(call 
gb_Library_set_componentfile,kf5be1,shell/source/backends/kf5be/kf5be1))
diff --git a/shell/source/backends/kf5be/kf5backend.cxx 
b/shell/source/backends/kf5be/kf5backend.cxx
index e9e10e60fd27..2b41414c54cd 100644
--- a/shell/source/backends/kf5be/kf5backend.cxx
+++ b/shell/source/backends/kf5be/kf5backend.cxx
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -172,14 +173,20 @@ void initQApp(std::map>& rSettings
 unsetenv("SESSION_MANAGER");
 }
 
-std::unique_ptr app(new QApplication(nFakeArgc, pFakeArgv));
-QObject::connect(app.get(), ::destroyed, app.get(), [nFakeArgc, 
pFakeArgv]() {
-for (int i = 0; i < nFakeArgc; ++i)
-free(pFakeArgv[i]);
-delete[] pFakeArgv;
-});
-
-readKDESettings(rSettings);
+{
+// rhbz#2047319 drop the SolarMutex during the execution of 
QApplication::init()
+// 
https://invent.kde.org/qt/qt/qtwayland/-/merge_requests/24#note_383915
+SolarMutexReleaser aReleaser; // rhbz#2047319 drop the SolarMutex 
during the execution
+
+std::unique_ptr app(new QApplication(nFakeArgc, 
pFakeArgv));
+QObject::connect(app.get(), ::destroyed, app.get(), 
[nFakeArgc, pFakeArgv]() {
+for (int i = 0; i < nFakeArgc; ++i)
+free(pFakeArgv[i]);
+delete[] pFakeArgv;
+});
+
+readKDESettings(rSettings);
+}
 
 if (session_manager != nullptr)
 {


[Libreoffice-bugs] [Bug 146440] UNO: Formula vs FormulaLocal: inconsistent cell formatting

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146440

Mike Kaganski  changed:

   What|Removed |Added

 CC||so...@comec92.ru

--- Comment #4 from Mike Kaganski  ---
(In reply to Eike Rathke from comment #3)
> Questions remains, what would actually be expected for all cases.

Personally I would be OK with any consistent behavior, with slight preference
of "as if user entered that in Input line" behavior (i.e. applying format where
it's needed to show recognized number in expected fashion).
But I suppose we should also consider Excel VBA behavior in this case.
Vladimir, could you please provide your insight how Excel behaves in this case?
Thanks.

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

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

2022-02-03 Thread Jim Raykowski (via logerrit)
 sfx2/source/appl/childwin.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a93e15c2e3a957ba97a166ee76be520a219ac540
Author: Jim Raykowski 
AuthorDate: Thu Jan 20 14:39:03 2022 -0900
Commit: Jim Raykowski 
CommitDate: Fri Feb 4 05:56:25 2022 +0100

make floating Navigator stay put

Change-Id: Ibbdd2bb66061189b361f4921e98ac4fd99563eab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128714
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx
index 2eb6bdc0652d..f122d2bfc874 100644
--- a/sfx2/source/appl/childwin.cxx
+++ b/sfx2/source/appl/childwin.cxx
@@ -238,7 +238,8 @@ std::unique_ptr 
SfxChildWindow::CreateChildWindow( sal_uInt16 nI
 {
 if ( pBindings )
 pBindings->ENTERREGISTRATIONS();
-SfxChildWinInfo aInfo = nId == SID_SEARCH_DLG ? rInfo : 
rFactInfo;
+SfxChildWinInfo aInfo = (nId == SID_SEARCH_DLG || nId == 
SID_NAVIGATOR) ?
+rInfo : rFactInfo;
 Application::SetSystemWindowMode( 
SystemWindowFlags::NOAUTOMODE );
 pChild = pFact->pCtor( pParent, nId, pBindings,  );
 Application::SetSystemWindowMode( nOldMode );


[Libreoffice-bugs] [Bug 146440] UNO: Formula vs FormulaLocal: inconsistent cell formatting

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146440

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 147114] Slovak keyboard shortcut conflict right_Alt+3

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147114

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 141535] VIEWING: base crashes when viewing a form

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141535

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 146879] Wiggling U (unstable kerning) when activating Italic

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146879

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146869] LibreOffice connects to the print server (CUPS) when opening a document with PrinterName config-item

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146869

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 147153] Calc freezes and crash if manually selecting of thousands of lines

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147153

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

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

[Libreoffice-bugs] [Bug 147153] Calc freezes and crash if manually selecting of thousands of lines

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147153

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 146866] Assert fails in debug build when use button "Toggle Extrusion" on Fontwork shape

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146866

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 143147] Crash in: libgobject-2.0.so.0.5800.3

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143147

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 143147] Crash in: libgobject-2.0.so.0.5800.3

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143147

--- Comment #4 from QA Administrators  ---
Dear Avvocato Andrea Marengoni,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141629] Crash in: s_stub_releaseInterface

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141629

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141629] Crash in: s_stub_releaseInterface

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141629

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141576] Impress crashes when attempting to resize a pasted image before saving file

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141576

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141576] Impress crashes when attempting to resize a pasted image before saving file

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141576

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141409] Crash in: mergedlo.dll

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141409

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141409] Crash in: mergedlo.dll

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141409

--- Comment #6 from QA Administrators  ---
Dear L Duperval,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141109] Crash in: mergedlo.dll

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141109

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141109] Crash in: mergedlo.dll

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141109

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141034] Crash entire application on syntax error in basic

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 141034] Crash entire application on syntax error in basic

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140656] Crash in: mergedlo.dll

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140656

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140656] Crash in: mergedlo.dll

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140656

--- Comment #6 from QA Administrators  ---
Dear Chris Maltby,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140317] Nonexistent path in file dialog favorites causes crash when clicked, cannot be removed

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140317

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140317] Nonexistent path in file dialog favorites causes crash when clicked, cannot be removed

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140317

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 139663] Crash when I switch to another window while editing a textbox

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139663

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139663] Crash when I switch to another window while editing a textbox

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139663

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 139383] Impress crash while using 3D in slide transition

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139383

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139383] Impress crash while using 3D in slide transition

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139383

--- Comment #15 from QA Administrators  ---
Dear JusSi,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486
Bug 90486 depends on bug 139206, which changed state.

Bug 139206 Summary: LibreOffice Calc crashes when I try to delete Y error bars 
in Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=139206

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139206] LibreOffice Calc crashes when I try to delete Y error bars in Calc

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139206

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139206] LibreOffice Calc crashes when I try to delete Y error bars in Calc

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139206

--- Comment #9 from QA Administrators  ---
Dear photeinos.santas,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 139133] LibreOffice crashes occasionally, often while saving

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139133

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139133] LibreOffice crashes occasionally, often while saving

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139133

--- Comment #4 from QA Administrators  ---
Dear Keith Johnson,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 139116] Tables going off page when pasting HTML (table not set to relative)

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139116

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139116] Tables going off page when pasting HTML (table not set to relative)

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139116

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 139067] Filesave: crashreport.libreoffice.org/stats/crash_details/8d8ae56e-5892-4443-9cc8-27af4a0a3629

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139067

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139067] Filesave: crashreport.libreoffice.org/stats/crash_details/8d8ae56e-5892-4443-9cc8-27af4a0a3629

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139067

--- Comment #13 from QA Administrators  ---
Dear Eigil Wiwe,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 137789] Crash in: rtl_uString_release

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137789

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 137789] Crash in: rtl_uString_release

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137789

--- Comment #7 from QA Administrators  ---
Dear Oleg Shchelykalnov,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 137409] LibreOffice checking for updates crashes in XFCE

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137409

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 137409] LibreOffice checking for updates crashes in XFCE

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137409

--- Comment #14 from QA Administrators  ---
Dear Lars-Erik,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

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

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 136198, which changed state.

Bug 136198 Summary: Crash in: mergedlo.dll  "cut" of label and field crashes 
report builder.
https://bugs.documentfoundation.org/show_bug.cgi?id=136198

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 136198] Crash in: mergedlo.dll "cut" of label and field crashes report builder.

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136198

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 136198] Crash in: mergedlo.dll "cut" of label and field crashes report builder.

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136198

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

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

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 135747, which changed state.

Bug 135747 Summary: crash upon inserting un-rotated image and opting to rotate
https://bugs.documentfoundation.org/show_bug.cgi?id=135747

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135747] crash upon inserting un-rotated image and opting to rotate

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135747

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135747] crash upon inserting un-rotated image and opting to rotate

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135747

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

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

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 135461, which changed state.

Bug 135461 Summary: Crash in: E_IAIRHKE.DLL if I use the Epson management tool 
to change a printer cartridge from the print command
https://bugs.documentfoundation.org/show_bug.cgi?id=135461

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135461] Crash in: E_IAIRHKE.DLL if I use the Epson management tool to change a printer cartridge from the print command

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135461

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135461] Crash in: E_IAIRHKE.DLL if I use the Epson management tool to change a printer cartridge from the print command

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135461

--- Comment #8 from QA Administrators  ---
Dear David Edwards,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

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

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 135200, which changed state.

Bug 135200 Summary: Crash in: SwNodes::MoveNodes
https://bugs.documentfoundation.org/show_bug.cgi?id=135200

   What|Removed |Added

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

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

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

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948
Bug 105948 depends on bug 135200, which changed state.

Bug 135200 Summary: Crash in: SwNodes::MoveNodes
https://bugs.documentfoundation.org/show_bug.cgi?id=135200

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135200] Crash in: SwNodes::MoveNodes

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135200

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135200] Crash in: SwNodes::MoveNodes

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135200

--- Comment #12 from QA Administrators  ---
Dear Chris McKenna,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 113117] [META] Windows installer/uninstaller bugs and enhancements

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113117
Bug 113117 depends on bug 134849, which changed state.

Bug 134849 Summary: Libre Office 7.0.0.1 RC1 installation crashes - a renewed 
installation goes to the wrong folder - Libre office 6.4 doesn't start with 
renewed installation after uninstall of 7.0.0.1 RC1 - error: vcruntime140_1.dll 
missing
https://bugs.documentfoundation.org/show_bug.cgi?id=134849

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 134849] Libre Office 7.0.0.1 RC1 installation crashes - a renewed installation goes to the wrong folder - Libre office 6.4 doesn't start with renewed installation after uninsta

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134849

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 134849] Libre Office 7.0.0.1 RC1 installation crashes - a renewed installation goes to the wrong folder - Libre office 6.4 doesn't start with renewed installation after uninsta

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134849

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

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

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 134689, which changed state.

Bug 134689 Summary: Crash in: URLBox::URLBox
https://bugs.documentfoundation.org/show_bug.cgi?id=134689

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 134689] Crash in: URLBox::URLBox

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134689

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 132587] Start LibreOffice from Eclipse, and then crashed.

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132587

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 134689] Crash in: URLBox::URLBox

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134689

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

  1   2   3   4   5   >