[Libreoffice-bugs] [Bug 124891] [META] Basic IDE bugs and enhancements

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124891
Bug 124891 depends on bug 153798, which changed state.

Bug 153798 Summary: Line numbers should be aligned to the right in the Basic IDE
https://bugs.documentfoundation.org/show_bug.cgi?id=153798

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150060] Keyboard Shortcuts for Black and White Screen don't work (Presentation Mode)

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150060

--- Comment #2 from Wapa  ---
Hi, I tried to bump this to major, as it has gotten no attention in 6 months,
seems easy to fix, and is an impairment while presenting. I would like to black
out the screen to avoid distraction by slides during discussions with a button
press. Then come back to the slide with a simple button press. This is promised
by the help screen, but doesn't work.

I wasn't allowed to change the Importance for lack of permissions.

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

[Libreoffice-bugs] [Bug 153582] a5 printing is broken

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153582

--- Comment #3 from mattreecebent...@gmail.com ---
I've tried printing to file on my home computer but can't replicate there using
7.3.7.2,
however haven't tried the bug when printing to a printer on the home computer
and will do so.

As an aside, neither Microsoft Office 2007 nor OpenOffice had the same bug.

The client who I discovered the bug with said it only started happening when
she changed printers. So it's possible it's some sort of printer
driver/libreoffice interaction.

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

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

2023-02-27 Thread Noel Grandin (via logerrit)
 tools/source/stream/GenericTypeSerializer.cxx |   12 
 vcl/source/filter/svm/SvmReader.cxx   |   19 ---
 2 files changed, 12 insertions(+), 19 deletions(-)

New commits:
commit 3d7b0a6ebbf5154933bc4a450613362052167791
Author: Noel Grandin 
AuthorDate: Mon Feb 27 14:06:47 2023 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 28 07:23:23 2023 +

move sanitizing of Size inside GenericTypeSerializer

I cannot see a useful application of a Size that is negative
(at least not in a file format).

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

diff --git a/tools/source/stream/GenericTypeSerializer.cxx 
b/tools/source/stream/GenericTypeSerializer.cxx
index 8abe23237d85..3eefb008ea67 100644
--- a/tools/source/stream/GenericTypeSerializer.cxx
+++ b/tools/source/stream/GenericTypeSerializer.cxx
@@ -130,6 +130,18 @@ void GenericTypeSerializer::readSize(Size& rSize)
 
 rSize.setWidth(nWidth);
 rSize.setHeight(nHeight);
+
+// sanitize negative size dimensions
+if (rSize.Width() < 0)
+{
+SAL_WARN("tools", "negative width");
+rSize.setWidth(0);
+}
+if (rSize.Height() < 0)
+{
+SAL_WARN("tools", "negative height");
+rSize.setHeight(0);
+}
 }
 
 void GenericTypeSerializer::writeSize(const Size& rSize)
diff --git a/vcl/source/filter/svm/SvmReader.cxx 
b/vcl/source/filter/svm/SvmReader.cxx
index a7a4dcbd7817..6d84d44d879f 100644
--- a/vcl/source/filter/svm/SvmReader.cxx
+++ b/vcl/source/filter/svm/SvmReader.cxx
@@ -55,21 +55,6 @@ public:
 m_rData.meActualCharSet = m_eOrigCharSet;
 }
 };
-
-void sanitizeNegativeSizeDimensions(Size& rSize)
-{
-if (rSize.Width() < 0)
-{
-SAL_WARN("vcl.gdi", "sanitizeNegativeSizeDimensions: negative width");
-rSize.setWidth(0);
-}
-
-if (rSize.Height() < 0)
-{
-SAL_WARN("vcl.gdi", "sanitizeNegativeSizeDimensions: negative height");
-rSize.setHeight(0);
-}
-}
 }
 
 SvmReader::SvmReader(SvStream& rIStm)
@@ -110,7 +95,6 @@ SvStream& SvmReader::Read(GDIMetaFile& rMetaFile, 
ImplMetaReadData* pData)
 rMetaFile.SetPrefMapMode(aMapMode);
 Size aSize;
 aSerializer.readSize(aSize);
-sanitizeNegativeSizeDimensions(aSize);
 rMetaFile.SetPrefSize(aSize);
 mrStream.ReadUInt32(nCount);
 
@@ -884,7 +868,6 @@ rtl::Reference SvmReader::BmpScaleHandler()
 
 Size aSz;
 aSerializer.readSize(aSz);
-sanitizeNegativeSizeDimensions(aSz);
 
 pAction->SetBitmap(aBmp);
 pAction->SetPoint(aPoint);
@@ -949,7 +932,6 @@ rtl::Reference SvmReader::BmpExScaleHandler()
 
 Size aSize;
 aSerializer.readSize(aSize);
-sanitizeNegativeSizeDimensions(aSize);
 
 pAction->SetBitmapEx(aBmpEx);
 pAction->SetPoint(aPoint);
@@ -1340,7 +1322,6 @@ rtl::Reference 
SvmReader::FloatTransparentHandler(ImplMetaReadData*
 
 Size aSize;
 aSerializer.readSize(aSize);
-sanitizeNegativeSizeDimensions(aSize);
 
 Gradient aGradient;
 aSerializer.readGradient(aGradient);


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

2023-02-27 Thread Mike Kaganski (via logerrit)
 sw/source/filter/html/htmltabw.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit eae92409e7aefb0837a0408563bd3787406aab8c
Author: Mike Kaganski 
AuthorDate: Tue Feb 28 09:19:09 2023 +0300
Commit: Mike Kaganski 
CommitDate: Tue Feb 28 07:22:23 2023 +

Avoid extra newlines in HTML

SwHTMLWrtTable adds SAL_NEWLINE_STRING itself calling 
SwHTMLWriter::OutNewLine
explicitly, so the LFs inserted by HtmlWriter::end() just add noise.

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

diff --git a/sw/source/filter/html/htmltabw.cxx 
b/sw/source/filter/html/htmltabw.cxx
index a1dee0f75333..c1ba9a248d68 100644
--- a/sw/source/filter/html/htmltabw.cxx
+++ b/sw/source/filter/html/htmltabw.cxx
@@ -784,6 +784,7 @@ void SwHTMLWrtTable::Write( SwHTMLWriter& rWrt, sal_Int16 
eAlign,
 const SwWriteTableCol *pColumn = m_aCols[nCol].get();
 
 HtmlWriter html(rWrt.Strm(), rWrt.maNamespace);
+html.prettyPrint(false); // We add newlines ourself
 html.start(OOO_STRING_SVTOOLS_HTML_col);
 
 sal_uInt32 nWidth;


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

2023-02-27 Thread Noel Grandin (via logerrit)
 dbaccess/source/core/dataaccess/documenteventexecutor.cxx |   32 ++--
 dbaccess/source/core/dataaccess/documenteventexecutor.hxx |9 +-
 dbaccess/source/core/dataaccess/documentevents.cxx|   53 -
 dbaccess/source/core/inc/documentevents.hxx   |8 --
 dbaccess/source/core/inc/recovery/dbdocrecovery.hxx   |4 -
 dbaccess/source/core/recovery/dbdocrecovery.cxx   |   21 +
 dbaccess/source/core/recovery/storagetextstream.cxx   |   19 +---
 dbaccess/source/core/recovery/storagetextstream.hxx   |7 -
 dbaccess/source/core/recovery/storagexmlstream.cxx|   54 +-
 dbaccess/source/core/recovery/storagexmlstream.hxx|   15 ++-
 dbaccess/source/core/recovery/subcomponentrecovery.cxx|4 -
 dbaccess/source/ui/inc/imageprovider.hxx  |   14 ++-
 dbaccess/source/ui/inc/singledoccontroller.hxx|6 -
 dbaccess/source/ui/misc/imageprovider.cxx |   38 +++--
 dbaccess/source/ui/misc/singledoccontroller.cxx   |   20 +
 15 files changed, 111 insertions(+), 193 deletions(-)

New commits:
commit 5993c41c75974c507683cdd1f19db45dd0c03dbf
Author: Noel Grandin 
AuthorDate: Mon Feb 27 10:18:54 2023 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 28 07:15:33 2023 +

flatten some internal classes in dbaccess

no need for the pimpl pattern here

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

diff --git a/dbaccess/source/core/dataaccess/documenteventexecutor.cxx 
b/dbaccess/source/core/dataaccess/documenteventexecutor.cxx
index c3f8a01ea3e4..e1cb9f3f4e57 100644
--- a/dbaccess/source/core/dataaccess/documenteventexecutor.cxx
+++ b/dbaccess/source/core/dataaccess/documenteventexecutor.cxx
@@ -57,24 +57,14 @@ namespace dbaccess
 
 using namespace ::com::sun::star;
 
-// DocumentEventExecutor_Data
-struct DocumentEventExecutor_Data
-{
-WeakReference< XEventsSupplier >xDocument;
-Reference< XURLTransformer >xURLTransformer;
-
-explicit DocumentEventExecutor_Data( const Reference< XEventsSupplier 
>& _rxDocument )
-:xDocument( _rxDocument )
-{
-}
-};
-
 namespace
 {
-void lcl_dispatchScriptURL_throw( DocumentEventExecutor_Data const & 
_rDocExecData,
+void lcl_dispatchScriptURL_throw(
+css::uno::WeakReference< css::document::XEventsSupplier > const & 
xWeakDocument,
+css::uno::Reference< css::util::XURLTransformer > const & 
xURLTransformer,
 const OUString& _rScriptURL, const DocumentEvent& _rTrigger )
 {
-Reference< XModel > xDocument( _rDocExecData.xDocument.get(), 
UNO_QUERY_THROW );
+Reference< XModel > xDocument( xWeakDocument.get(), 
UNO_QUERY_THROW );
 
 Reference< XController > xController( 
xDocument->getCurrentController() );
 Reference< XDispatchProvider > xDispProv;
@@ -88,8 +78,8 @@ namespace dbaccess
 
 URL aScriptURL;
 aScriptURL.Complete = _rScriptURL;
-if ( _rDocExecData.xURLTransformer.is() )
-_rDocExecData.xURLTransformer->parseStrict( aScriptURL );
+if ( xURLTransformer.is() )
+xURLTransformer->parseStrict( aScriptURL );
 
 // unfortunately, executing a script can trigger all kind of 
complex stuff, and unfortunately, not
 // every component involved into this properly cares for thread 
safety. To be on the safe side,
@@ -113,7 +103,7 @@ namespace dbaccess
 // DocumentEventExecutor
 DocumentEventExecutor::DocumentEventExecutor( const 
Reference & _rContext,
 const Reference< XEventsSupplier >& _rxDocument )
-:m_pData( new DocumentEventExecutor_Data( _rxDocument ) )
+:mxDocument( _rxDocument )
 {
 Reference< XDocumentEventBroadcaster > xBroadcaster( _rxDocument, 
UNO_QUERY_THROW );
 
@@ -125,7 +115,7 @@ namespace dbaccess
 
 try
 {
-m_pData->xURLTransformer = URLTransformer::create(_rContext);
+mxURLTransformer = URLTransformer::create(_rContext);
 }
 catch( const Exception& )
 {
@@ -139,8 +129,8 @@ namespace dbaccess
 
 void SAL_CALL DocumentEventExecutor::documentEventOccured( const 
DocumentEvent& Event )
 {
-Reference< XEventsSupplier > xEventsSupplier( 
m_pData->xDocument.get(), UNO_QUERY );
-if ( !xEventsSupplier.is() )
+Reference< XEventsSupplier > xEventsSupplier( mxDocument.get(), 
UNO_QUERY );
+if ( !xEventsSupplier )
 {
 OSL_FAIL( "DocumentEventExecutor::documentEventOccurred: no 
document anymore, but still being notified?" );
 return;
@@ -179,7 +169,7 @@ namespace dbaccess
 
 if ( bDispatchScriptURL && 

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

2023-02-27 Thread Andreas Heinisch (via logerrit)
 basctl/source/basicide/linenumberwindow.cxx |8 +++-
 svx/source/dialog/searchcharmap.cxx |   13 +
 2 files changed, 20 insertions(+), 1 deletion(-)

New commits:
commit 9da3d052b9048e9139b6943621f4eb6777422078
Author: Andreas Heinisch 
AuthorDate: Mon Feb 27 19:11:59 2023 +0100
Commit: Noel Grandin 
CommitDate: Tue Feb 28 07:15:19 2023 +

tdf#109214 - Highlight the favorites in the grid of special characters

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

diff --git a/svx/source/dialog/searchcharmap.cxx 
b/svx/source/dialog/searchcharmap.cxx
index 034ebd317a5a..637fbbe0d834 100644
--- a/svx/source/dialog/searchcharmap.cxx
+++ b/svx/source/dialog/searchcharmap.cxx
@@ -230,6 +230,19 @@ void SvxSearchCharSet::DrawChars_Impl(vcl::RenderContext& 
rRenderContext, int n1
 aPointTxTy.AdjustX(nXHDelta - 1 );
 }
 
+// tdf#109214 - highlight the favorite characters
+if (isFavChar(aCharStr, mxVirDev->GetFont().GetFamilyName()))
+{
+const Color aLineCol = rRenderContext.GetLineColor();
+rRenderContext.SetLineColor(aHighlightColor);
+rRenderContext.SetFillColor(COL_TRANSPARENT);
+// Outer border
+rRenderContext.DrawRect(tools::Rectangle(Point(x - 1, y - 1), 
Size(nX + 3, nY + 3)));
+// Inner border
+rRenderContext.DrawRect(tools::Rectangle(Point(x, y), Size(nX + 1, 
nY + 1)));
+rRenderContext.SetLineColor(aLineCol);
+}
+
 Color aTextCol = rRenderContext.GetTextColor();
 if (i != nSelectedIndex)
 {
commit dbd96e1c9a066979cb80ced6268edb148a8fc73b
Author: Andreas Heinisch 
AuthorDate: Mon Feb 27 13:49:10 2023 +0100
Commit: Noel Grandin 
CommitDate: Tue Feb 28 07:15:07 2023 +

tdf#153798 - Basic IDE: align line numbers to the right

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

diff --git a/basctl/source/basicide/linenumberwindow.cxx 
b/basctl/source/basicide/linenumberwindow.cxx
index 74ead4923863..9f5e85c72102 100644
--- a/basctl/source/basicide/linenumberwindow.cxx
+++ b/basctl/source/basicide/linenumberwindow.cxx
@@ -79,7 +79,13 @@ void LineNumberWindow::Paint(vcl::RenderContext& 
rRenderContext, const tools::Re
 sal_Int64 y = (nStartLine - 1) * static_cast(nLineHeight);
 rRenderContext.SetTextColor(m_FontColor);
 for (sal_uInt32 n = nStartLine; n <= nEndLine; ++n, y += nLineHeight)
-rRenderContext.DrawText(Point(0, y - m_nCurYOffset), 
OUString::number(n));
+{
+const OUString aLineNumber = OUString::number(n);
+// tdf#153798 - align line numbers to the right
+rRenderContext.DrawText(
+Point(m_nWidth - GetTextWidth(aLineNumber) - m_nBaseWidth / 2, y - 
m_nCurYOffset),
+aLineNumber);
+}
 
 // Resize the parent after calculating the new width and height values
 GetParent()->Resize();


[Libreoffice-bugs] [Bug 106045] [META] Vertical and rotated text direction issues

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106045
Bug 106045 depends on bug 107488, which changed state.

Bug 107488 Summary: 新細明體-ExtB does not display chars vertically in Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=107488

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 107488, which changed state.

Bug 107488 Summary: 新細明體-ExtB does not display chars vertically in Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=107488

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107488] 新細明體-ExtB does not display chars vertically in Writer

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107488

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #15 from Buovjaga  ---
Great, let's close

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

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

2023-02-27 Thread Miklos Vajna (via logerrit)
 sw/source/core/inc/frame.hxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit d25567e7e2fb96242b9bd4aca44df6f0287c2aa3
Author: Miklos Vajna 
AuthorDate: Mon Feb 27 20:00:50 2023 +0100
Commit: Miklos Vajna 
CommitDate: Tue Feb 28 07:02:27 2023 +

sw: document SwFrame::Format()

I'm still looking for a clear description of what SwFrame::MakeAll()
does.

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

diff --git a/sw/source/core/inc/frame.hxx b/sw/source/core/inc/frame.hxx
index e610de6eab70..f1433a10f590 100644
--- a/sw/source/core/inc/frame.hxx
+++ b/sw/source/core/inc/frame.hxx
@@ -657,6 +657,8 @@ public:
 // environment (not e.g. for repeating table headlines)
 bool IsFootnoteAllowed() const;
 
+/// Calculates the frame area size and the print area, in case they are 
invalid.
+/// The frame are position is not considered here.
 virtual void  Format( vcl::RenderContext* pRenderContext, const 
SwBorderAttrs *pAttrs = nullptr );
 
 virtual void CheckDirection( bool bVert );


[Libreoffice-bugs] [Bug 107742] [META] Form control bugs and enhancements

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107742
Bug 107742 depends on bug 153857, which changed state.

Bug 153857 Summary: Writer hangs or crashes when right-clicking on form field
https://bugs.documentfoundation.org/show_bug.cgi?id=153857

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 153857, which changed state.

Bug 153857 Summary: Writer hangs or crashes when right-clicking on form field
https://bugs.documentfoundation.org/show_bug.cgi?id=153857

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 153857] Writer hangs or crashes when right-clicking on form field

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153857

Noel Grandin  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

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

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

2023-02-27 Thread Noel Grandin (via logerrit)
 xmlscript/source/xml_helper/xml_impctx.cxx |   30 +++--
 1 file changed, 16 insertions(+), 14 deletions(-)

New commits:
commit 604c464e35807c7e4fa700726a338a9682010a15
Author: Noel Grandin 
AuthorDate: Sat Feb 25 16:47:39 2023 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 28 07:01:32 2023 +

osl::Mutex->std::mutex in xmlscript::DocumentHandlerImpl

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

diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx 
b/xmlscript/source/xml_helper/xml_impctx.cxx
index 1b4247ba822a..000de7e94072 100644
--- a/xmlscript/source/xml_helper/xml_impctx.cxx
+++ b/xmlscript/source/xml_helper/xml_impctx.cxx
@@ -31,6 +31,8 @@
 #include 
 
 #include 
+#include 
+#include 
 #include 
 #include 
 
@@ -75,13 +77,13 @@ class ExtendedAttributes;
 
 class MGuard
 {
-Mutex * m_pMutex;
+std::mutex * m_pMutex;
 public:
-explicit MGuard( std::unique_ptr const & pMutex )
-: m_pMutex( pMutex.get() )
-{ if (m_pMutex) m_pMutex->acquire(); }
+explicit MGuard( std::optional & oMutex )
+: m_pMutex( oMutex ? &*oMutex : nullptr )
+{ if (m_pMutex) m_pMutex->lock(); }
 ~MGuard() noexcept
-{ if (m_pMutex) m_pMutex->release(); }
+{ if (m_pMutex) m_pMutex->unlock(); }
 };
 
 class DocumentHandlerImpl :
@@ -107,7 +109,7 @@ class DocumentHandlerImpl :
 std::vector< ElementEntry > m_elements;
 sal_Int32 m_nSkipElements;
 
-std::unique_ptr m_pMutex;
+mutable std::optional m_oMutex;
 
 inline Reference< xml::input::XElement > getCurrentElement() const;
 
@@ -178,13 +180,13 @@ DocumentHandlerImpl::DocumentHandlerImpl(
 m_elements.reserve( 10 );
 
 if (! bSingleThreadedUse)
-m_pMutex.reset(new Mutex);
+m_oMutex.emplace();
 }
 
 inline Reference< xml::input::XElement >
 DocumentHandlerImpl::getCurrentElement() const
 {
-MGuard aGuard( m_pMutex );
+MGuard aGuard( m_oMutex );
 if (m_elements.empty())
 return Reference< xml::input::XElement >();
 else
@@ -193,7 +195,7 @@ DocumentHandlerImpl::getCurrentElement() const
 
 inline sal_Int32 DocumentHandlerImpl::getUidByURI( OUString const & rURI )
 {
-MGuard guard( m_pMutex );
+MGuard guard( m_oMutex );
 if (m_nLastURI_lookup == UID_UNKNOWN || m_aLastURI_lookup != rURI)
 {
 t_OUString2LongMap::const_iterator iFind( m_URI2Uid.find( rURI ) );
@@ -370,7 +372,7 @@ Sequence< OUString > 
DocumentHandlerImpl::getSupportedServiceNames()
 void DocumentHandlerImpl::initialize(
 Sequence< Any > const & arguments )
 {
-MGuard guard( m_pMutex );
+MGuard guard( m_oMutex );
 Reference< xml::input::XRoot > xRoot;
 if (arguments.getLength() != 1 ||
 !(arguments[ 0 ] >>= xRoot) ||
@@ -392,7 +394,7 @@ sal_Int32 DocumentHandlerImpl::getUidByUri( OUString const 
& Uri )
 
 OUString DocumentHandlerImpl::getUriByUid( sal_Int32 Uid )
 {
-MGuard guard( m_pMutex );
+MGuard guard( m_oMutex );
 for (const auto& rURIUid : m_URI2Uid)
 {
 if (rURIUid.second == Uid)
@@ -424,7 +426,7 @@ void DocumentHandlerImpl::startElement(
 ElementEntry elementEntry;
 
 { // guard start:
-MGuard aGuard( m_pMutex );
+MGuard aGuard( m_oMutex );
 // currently skipping elements and waiting for end tags?
 if (m_nSkipElements > 0)
 {
@@ -526,7 +528,7 @@ void DocumentHandlerImpl::startElement(
 }
 
 {
-MGuard aGuard( m_pMutex );
+MGuard aGuard( m_oMutex );
 if (elementEntry.m_xElement.is())
 {
 m_elements.push_back( std::move(elementEntry) );
@@ -549,7 +551,7 @@ void DocumentHandlerImpl::endElement(
 {
 Reference< xml::input::XElement > xCurrentElement;
 {
-MGuard aGuard( m_pMutex );
+MGuard aGuard( m_oMutex );
 if (m_nSkipElements)
 {
 --m_nSkipElements;


[Libreoffice-bugs] [Bug 153877] vertical Unicode SMP chars not displayed correctly when exported as PDF

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153877

--- Comment #3 from Danny Lin  ---
Created attachment 185631
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185631=edit
Rendering of the exported PDF of the demo ODT file, which seems corrupted

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

[Libreoffice-bugs] [Bug 153877] vertical Unicode SMP chars not displayed correctly when exported as PDF

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153877

--- Comment #2 from Danny Lin  ---
Created attachment 185630
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185630=edit
Rendering of the demo ODT file, which seems normal

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

[Libreoffice-bugs] [Bug 153877] vertical Unicode SMP chars not displayed correctly when exported as PDF

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153877

--- Comment #1 from Danny Lin  ---
Created attachment 185629
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185629=edit
Demo ODT file

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

[Libreoffice-bugs] [Bug 153877] New: vertical Unicode SMP chars not displayed correctly when exported as PDF

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153877

Bug ID: 153877
   Summary: vertical Unicode SMP chars not displayed correctly
when exported as PDF
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: danny0838...@gmail.com

Description:
Vertical Unicode SMP chars are not displayed correctly in a PDF file exported
from an ODT.

Steps to Reproduce:
1. Install font `全宋體` (download:
https://drive.google.com/file/d/1m0-WYAXbEz3lxJrti25ZvWv6LkHjMp2X/view,
official page: http://fgwang.blogspot.com/2023/02/blog-post.html).
2. Open the attached demo file unifont.odt.
3. Export the file as PDF and open it with Google Chrome.

Actual Results:
The chars  (U+2),  (U+2EBE0),  (U+3), ⎯ (U+323AF) in the PDF are not
displayed correctly.

Expected Results:
All chars in the PDF should be displayed correctly as in the LO Writer.


Reproducible: Always


User Profile Reset: No

Additional Info:
Related bug: #107488

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

[Libreoffice-bugs] [Bug 153846] Dead extensions need to be purged.

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153846

--- Comment #3 from Heiko Tietze  ---
Fyi, the extensions is unclaimed meaning no one has claimed authorship after
migration from the old site. Meaning comments on the extension site reach out
into the void.

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

[Libreoffice-bugs] [Bug 150925] Some master slide previews in sidebar are replaced when selecting others

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150925

--- Comment #3 from Commit Notification 
 ---
Henry Castro committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/d4f6202c3ad6f5c970093c7df7c89bba1ba22c3f

tdf#150925 sd: templates: fix missing attribute "style:display-name"

It will be available in 7.6.0.

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

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

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

[Libreoffice-bugs] [Bug 150925] Some master slide previews in sidebar are replaced when selecting others

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150925

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

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

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

2023-02-27 Thread Henry Castro (via logerrit)
 extras/source/templates/presnt/Candy/styles.xml|2 +-
 extras/source/templates/presnt/Freshes/styles.xml  |2 +-
 extras/source/templates/presnt/Grey_Elegant/styles.xml |2 +-
 extras/source/templates/presnt/Portfolio/styles.xml|2 +-
 extras/source/templates/presnt/Yellow_Idea/styles.xml  |2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit d4f6202c3ad6f5c970093c7df7c89bba1ba22c3f
Author: Henry Castro 
AuthorDate: Mon Feb 20 15:44:53 2023 -0400
Commit: Andras Timar 
CommitDate: Tue Feb 28 06:33:31 2023 +

tdf#150925 sd: templates: fix missing attribute "style:display-name"

The function GetSelectedMasterPage() search by name, the
missing attributes and it defaults name to "Title", it
contains duplicates and it selects wrong Master Page.

Signed-off-by: Henry Castro 
Change-Id: Ia02d66693f33a96cb46fb45b6f435e5cd040ed76
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147350
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 
(cherry picked from commit e9231535570da032b80cba355cd93c68911b2dbd)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147602
Tested-by: Jenkins

diff --git a/extras/source/templates/presnt/Candy/styles.xml 
b/extras/source/templates/presnt/Candy/styles.xml
index 54250269d89e..d9ae11fac954 100644
--- a/extras/source/templates/presnt/Candy/styles.xml
+++ b/extras/source/templates/presnt/Candy/styles.xml
@@ -2872,7 +2872,7 @@
 
   
 
-
+
   
 
   
diff --git a/extras/source/templates/presnt/Freshes/styles.xml 
b/extras/source/templates/presnt/Freshes/styles.xml
index 451cf6ad57a1..4672913a991d 100644
--- a/extras/source/templates/presnt/Freshes/styles.xml
+++ b/extras/source/templates/presnt/Freshes/styles.xml
@@ -2741,7 +2741,7 @@
   
   
 
-
+
   
   
 
diff --git a/extras/source/templates/presnt/Grey_Elegant/styles.xml 
b/extras/source/templates/presnt/Grey_Elegant/styles.xml
index a0bc94d63250..c7be043682a9 100644
--- a/extras/source/templates/presnt/Grey_Elegant/styles.xml
+++ b/extras/source/templates/presnt/Grey_Elegant/styles.xml
@@ -2917,7 +2917,7 @@
   
   
 
-
+
   
   
 
diff --git a/extras/source/templates/presnt/Portfolio/styles.xml 
b/extras/source/templates/presnt/Portfolio/styles.xml
index c3a9c3a462e5..acfad183144c 100644
--- a/extras/source/templates/presnt/Portfolio/styles.xml
+++ b/extras/source/templates/presnt/Portfolio/styles.xml
@@ -1075,7 +1075,7 @@
 
   
 
-
+
   
 
   
diff --git a/extras/source/templates/presnt/Yellow_Idea/styles.xml 
b/extras/source/templates/presnt/Yellow_Idea/styles.xml
index 7585928192cc..00ea6d65ce0b 100644
--- a/extras/source/templates/presnt/Yellow_Idea/styles.xml
+++ b/extras/source/templates/presnt/Yellow_Idea/styles.xml
@@ -2484,7 +2484,7 @@
 
   
 
-
+
   
 
   


[Libreoffice-bugs] [Bug 107488] 新細明體-ExtB does not display chars vertically in Writer

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107488

--- Comment #14 from Danny Lin  ---
Created attachment 185628
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185628=edit
The display effect of 1.odt in LO 7.5.0.3

This issue is not reproduced in LibreOffice 7.5.0.3.

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

[Libreoffice-bugs] [Bug 107488] 新細明體-ExtB does not display chars vertically in Writer

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107488

--- Comment #13 from Danny Lin  ---
Created attachment 185627
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185627=edit
The display effect of 1.odt in LO 7.5.0.3

This issue is not reproduce in LibreOffice 7.5.0.3.

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

[Libreoffice-bugs] [Bug 153857] Writer hangs or crashes when right-clicking on form field

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153857

--- Comment #1 from Commit Notification 
 ---
Noel Grandin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/394dcb830c9d7bfe3a454589847be0fd5024dc86

tdf#153857 Writer hangs right-clicking on form field

It will be available in 7.6.0.

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

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

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

[Libreoffice-bugs] [Bug 153857] Writer hangs or crashes when right-clicking on form field

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153857

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

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

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

2023-02-27 Thread Noel Grandin (via logerrit)
 framework/source/uielement/controlmenucontroller.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 394dcb830c9d7bfe3a454589847be0fd5024dc86
Author: Noel Grandin 
AuthorDate: Mon Feb 27 16:42:41 2023 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 28 06:27:57 2023 +

tdf#153857 Writer hangs right-clicking on form field

regression from
commit 5032262fccd0ef7f274323ae481b3230ffd42d3a
Author: Noel Grandin 
Date:   Tue Feb 21 15:05:37 2023 +0200
BaseMutex->std::mutex in PopupMenuControllerBase

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

diff --git a/framework/source/uielement/controlmenucontroller.cxx 
b/framework/source/uielement/controlmenucontroller.cxx
index b990e725d507..afbf3ec9258d 100644
--- a/framework/source/uielement/controlmenucontroller.cxx
+++ b/framework/source/uielement/controlmenucontroller.cxx
@@ -302,8 +302,10 @@ void SAL_CALL ControlMenuController::updatePopupMenu()
 Reference< XDispatch > xDispatch = xDispatchProvider->queryDispatch( 
aTargetURL, OUString(), 0 );
 if ( xDispatch.is() )
 {
+aLock.unlock(); // the addStatusListener will call back into 
::statusChanged
 xDispatch->addStatusListener( static_cast< XStatusListener* 
>(this), aTargetURL );
 xDispatch->removeStatusListener( static_cast< XStatusListener* 
>(this), aTargetURL );
+aLock.lock();
 m_aURLToDispatchMap.emplace( aTargetURL.Complete, xDispatch );
 }
 }


[Libreoffice-bugs] [Bug 153538] Writer freezes and crashes without any error message

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153538

--- Comment #4 from Steve Benting  ---
I also switched to force raster.  I haven't had a problem since then with about
as much usage.  Performance isn't noticeably worse with my setup.

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

[Libreoffice-bugs] [Bug 153869] Under KDE, minimized windows are not de-minimized when selected in "Window" menu

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153869

--- Comment #1 from Rickard Westman  ---
Problem seems related to the kf5 (cairo+xcb) VCL backend, which is the default
under Kubuntu.  If I override that by setting the environment variable
SAL_USE_VCLPLUGIN=gen, the problem goes away at the expense of getting an
antique-looking UI.

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

[Libreoffice-bugs] [Bug 153865] unable to save colors other than the defaults in Option>Chart>Predefined Colors

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153865

Lesline  changed:

   What|Removed |Added

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

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

Thank you for reporting the bug.  I can confirm I was able to reproduce the bug
in the following builds:

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


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

Kind Regards

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

[Libreoffice-bugs] [Bug 112464] How to get the equations of a trend lines in Calc?

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112464

--- Comment #8 from GoodMovie3  ---
Direct access to the trendline equation would also provide enable users to have
regression calculations for data sets with missing values. In contrast, Calc's
regression functions return ERROR if any values are missing. This is not the
case when trendlines are calculated - Scatter Graphs and their trendlines have
no issue with missing values in the input data sets. I would greatly appreciate
this function - and win a march over Excel, which also returns ERROR if values
are missing from regression inputs.

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

[Libreoffice-bugs] [Bug 153804] Footnotes disappeared in writer docx file after 7.5 update

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153804

Lesline  changed:

   What|Removed |Added

 CC||leslinetest...@gmail.com

--- Comment #4 from Lesline  ---
Hello.

Thank you for reporting the bug.

You do specify that the bug was found using MacOS.  I was unable to reproduce
the bug in Windows using the steps provided.  The builds used for testing were:

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


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

Kind Regards

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

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

2023-02-27 Thread Kohei Yoshida (via logerrit)
 sc/inc/clipcontext.hxx  |   15 +
 sc/inc/column.hxx   |   19 +---
 sc/inc/document.hxx |3 +
 sc/source/core/data/clipcontext.cxx |   47 ++
 sc/source/core/data/column3.cxx |   55 +---
 sc/source/core/data/column4.cxx |   18 +++
 sc/source/core/data/document.cxx|   31 +---
 7 files changed, 157 insertions(+), 31 deletions(-)

New commits:
commit e83c243018c1c7f6662f9a8ecdc731c5c071ea31
Author: Kohei Yoshida 
AuthorDate: Tue Feb 21 22:16:30 2023 -0500
Commit: Kohei Yoshida 
CommitDate: Tue Feb 28 03:46:24 2023 +

tdf#153669: Track formulas that stopped listening ...

... then have them start listening again after the copy from
clipboard is complete.  Note that in case the pasted cells
are formula cells, those will be handled together as well.

Change-Id: Ia4be814b888734267a39f7c89435011968570b7f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147940
Tested-by: Jenkins
Reviewed-by: Kohei Yoshida 

diff --git a/sc/inc/clipcontext.hxx b/sc/inc/clipcontext.hxx
index b09e1be78761..b3ce874a6a7f 100644
--- a/sc/inc/clipcontext.hxx
+++ b/sc/inc/clipcontext.hxx
@@ -12,6 +12,7 @@
 #include "address.hxx"
 #include "cellvalue.hxx"
 #include "celltextattr.hxx"
+#include "columnspanset.hxx"
 #include "Sparkline.hxx"
 
 #include 
@@ -45,6 +46,9 @@ public:
 
 class SC_DLLPUBLIC CopyFromClipContext final : public ClipContextBase
 {
+/** Tracks modified formula group spans. */
+sc::ColumnSpanSet maListeningFormulaSpans;
+
 SCCOL mnDestCol1;
 SCCOL mnDestCol2;
 SCROW mnDestRow1;
@@ -101,6 +105,17 @@ public:
 void setDeleteFlag( InsertDeleteFlags nFlag );
 InsertDeleteFlags getDeleteFlag() const;
 
+/**
+ * Record a range of formula cells that need to start listening after the
+ * copy-from-clip is complete.
+ */
+void setListeningFormulaSpans( SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL 
nCol2, SCROW nRow2 );
+
+/**
+ * Have the formula cells in the recorded ranges start listening.
+ */
+void startListeningFormulas();
+
 /**
  * Set the column size of a "single cell" row, which is used when copying
  * a single row of cells in a clip doc and pasting it into multiple
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 69f0d12d8273..949ca30dd137 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -22,6 +22,7 @@
 #include "global.hxx"
 #include "address.hxx"
 #include "cellvalue.hxx"
+#include "columnspanset.hxx"
 #include "rangelst.hxx"
 #include "types.hxx"
 #include "mtvelements.hxx"
@@ -48,8 +49,6 @@ class CopyFromClipContext;
 class CopyToClipContext;
 class CopyToDocContext;
 class MixDocContext;
-class ColumnSpanSet;
-class SingleColumnSpanSet;
 struct RefUpdateContext;
 struct RefUpdateInsertTabContext;
 struct RefUpdateDeleteTabContext;
@@ -837,9 +836,19 @@ private:
 
 void CopyCellTextAttrsToDocument(SCROW nRow1, SCROW nRow2, ScColumn& 
rDestCol) const;
 
-void DeleteCells(
-sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, 
InsertDeleteFlags nDelFlag,
-sc::SingleColumnSpanSet& rDeleted );
+struct DeleteCellsResult
+{
+/** cell ranges that have been deleted. */
+sc::SingleColumnSpanSet aDeletedRows;
+/** formula cell range that has stopped listening. */
+std::vector> aFormulaRanges;
+
+DeleteCellsResult( const ScDocument& rDoc );
+DeleteCellsResult( const DeleteCellsResult& ) = delete;
+};
+
+std::unique_ptr DeleteCells(
+sc::ColumnBlockPosition& rBlockPos, SCROW nRow1, SCROW nRow2, 
InsertDeleteFlags nDelFlag );
 
 /**
  * Get all non-grouped formula cells and formula cell groups in the whole
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index c6b2f2289ddb..092d9ba0d9a9 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1672,6 +1672,9 @@ public:
   SCCOL nCol2, SCROW nRow2, const ScMarkData& 
rMark, SCCOL nDx,
   SCROW& rClipStartRow, SCROW nClipEndRow);
 
+void StartListeningFromClip(
+sc::StartListeningContext& rStartCxt, sc::EndListeningContext& rEndCxt,
+SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
 void StartListeningFromClip( SCCOL nCol1, SCROW nRow1,
  SCCOL nCol2, SCROW nRow2,
  const ScMarkData& rMark, InsertDeleteFlags 
nInsFlag );
diff --git a/sc/source/core/data/clipcontext.cxx 
b/sc/source/core/data/clipcontext.cxx
index d291c7c91f49..ce6974d42334 100644
--- a/sc/source/core/data/clipcontext.cxx
+++ b/sc/source/core/data/clipcontext.cxx
@@ -21,6 +21,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace sc {
 
@@ -113,6 +114,52 @@ InsertDeleteFlags CopyFromClipContext::getDeleteFlag() 
const

[Libreoffice-bugs] [Bug 153702] Alert dialog about closing score with unsaved changes highlights "Don't save" by default!

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153702

--- Comment #10 from Rafael Lima  ---
(In reply to Adolfo Jayme Barrientos from comment #9)
> That ship sailed a long time ago: we try to follow the macOS/GNOME order of
> negative-positive buttons on those DEs, and the Windows/KDE order in the
> respective environments.

Fair enough... This might have been an interesting discussion back in the day.

I believe it would be more appropriate to close this as WONTFIX.

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

[Libreoffice-ux-advise] [Bug 153702] Alert dialog about closing score with unsaved changes highlights "Don't save" by default!

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153702

--- Comment #10 from Rafael Lima  ---
(In reply to Adolfo Jayme Barrientos from comment #9)
> That ship sailed a long time ago: we try to follow the macOS/GNOME order of
> negative-positive buttons on those DEs, and the Windows/KDE order in the
> respective environments.

Fair enough... This might have been an interesting discussion back in the day.

I believe it would be more appropriate to close this as WONTFIX.

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

[Libreoffice-bugs] [Bug 153593] VBA SaveAs method with relative file paths does not work

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153593

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 153594] Calc - Security warning notice buttons blank

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153594

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 153577] Changing the icon/toolbar size of the right vertical toolbar in LO does not work!

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153577

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 153595] VBA SaveAs method does not add default file extension

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153595

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 153591] Spellchecking can not be disabled

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153591

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 153575] Launching libreoffice from Konsole gives rdrand problems (on fedora 37).

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153575

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 153823] When pressing F1 or clicking Help, Balena Etcher is invoked.

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153823

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

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

[Libreoffice-bugs] [Bug 153823] When pressing F1 or clicking Help, Balena Etcher is invoked.

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153823

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 148574, which changed state.

Bug 148574 Summary: LibreOffice Writer instant crash upon opening or creating a 
(new) document
https://bugs.documentfoundation.org/show_bug.cgi?id=148574

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148574] LibreOffice Writer instant crash upon opening or creating a (new) document

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148574

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 148574] LibreOffice Writer instant crash upon opening or creating a (new) document

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148574

--- Comment #14 from QA Administrators  ---
Dear mbstein,

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 144231] [UI] Only the endpoint of an overlapping run of commented text is marked

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144231

--- Comment #7 from QA Administrators  ---
Dear Luke Kendall,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 140021] Change "Superordinate settings" to "Right to left" is lost & not saved in multi columns layout

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140021

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 140577] Writer in "Web" view mode becomes unresponsive and flickers when the window is resized or zoom is adjusted when a long document is displayed

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140577

--- Comment #7 from QA Administrators  ---
Dear ckoresko,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 99565] EDITING Changing slide background misbehaves with non-default master slide

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99565

--- Comment #6 from QA Administrators  ---
Dear Katarina Behrens (Inactive),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 140699] insert a new line above or beyond inside a fromatted table does not copy merged cells

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140699

--- Comment #3 from QA Administrators  ---
Dear Harald Langheinrich,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 139775] EDITING Find: "Find all" with format option "Without" or "None" is incomplete

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139775

--- Comment #7 from QA Administrators  ---
Dear Saskia Vkl,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 136004] calc: UI: fill: 'Fill series' with values of type 'date' doesn't apply appropriate cell format

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136004

--- Comment #3 from QA Administrators  ---
Dear Yetoo Happy,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 132605] Connector dialog does not allow negative value for Line Skew

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132605

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 127473] Regression: Formatting error using format "TT.MM.JJJJ HH:MM:SS, 000000000000000000"

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127473

--- Comment #10 from QA Administrators  ---
Dear Albrecht Müller,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 118040] Inadequate error handling in pie charts UI: EDITING the data range can cause the diagram to disappear

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118040

--- Comment #8 from QA Administrators  ---
Dear Albrecht Müller,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117043] PIVOT TABLE: refresh bug

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117043

--- Comment #7 from QA Administrators  ---
Dear rking,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 115871] "Standard" button in Paragraph Style dialog does not revert to parent values for any of the controls in the Outline & Numbering (List) tab

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115871

--- Comment #9 from QA Administrators  ---
Dear Kenneth Hanson,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 111783] Display master background option is not updated on sidebar

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111783

--- Comment #7 from QA Administrators  ---
Dear Tamás Zolnai,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-4+backports' - sfx2/source

2023-02-27 Thread Samuel Mehrbrodt (via logerrit)
 sfx2/source/doc/iframe.cxx |   33 +
 1 file changed, 33 insertions(+)

New commits:
commit a2f7593bcd1bc0feec608c1a9452af63b873a05b
Author: Samuel Mehrbrodt 
AuthorDate: Mon Feb 27 15:27:24 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Tue Feb 28 02:38:44 2023 +

Check iframe target for allowed document URLs

Change-Id: I00e4192becbc160282a43ab89dcd269f3d1012d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147921
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/sfx2/source/doc/iframe.cxx b/sfx2/source/doc/iframe.cxx
index aea851894286..6dca7bcddb56 100644
--- a/sfx2/source/doc/iframe.cxx
+++ b/sfx2/source/doc/iframe.cxx
@@ -46,6 +46,11 @@
 #include 
 #include 
 #include 
+#include 
+
+#include 
+#include 
+#include 
 
 using namespace ::com::sun::star;
 
@@ -155,6 +160,31 @@ IFrameObject::IFrameObject(const uno::Reference < 
uno::XComponentContext >& rxCo
 aArguments[0] >>= mxObj;
 }
 
+bool lcl_isScriptURLAllowed(const OUString& aScriptURL)
+{
+boost::optional> allowedEvents(
+
officecfg::Office::Common::Security::Scripting::AllowedDocumentEventURLs::get());
+// When AllowedDocumentEventURLs is empty, all event URLs are allowed
+if (!allowedEvents)
+return true;
+
+icu::ErrorCode status;
+const uint32_t rMatcherFlags = UREGEX_CASE_INSENSITIVE;
+icu::UnicodeString usInput(aScriptURL.getStr());
+const css::uno::Sequence& rAllowedEvents = *allowedEvents;
+for (auto const& allowedEvent : rAllowedEvents)
+{
+icu::UnicodeString usRegex(allowedEvent.getStr());
+icu::RegexMatcher rmatch1(usRegex, usInput, rMatcherFlags, status);
+if (aScriptURL.startsWith(allowedEvent) || rmatch1.matches(status))
+{
+return true;
+}
+}
+
+return false;
+}
+
 sal_Bool SAL_CALL IFrameObject::load(
 const uno::Sequence < css::beans::PropertyValue >& /*lDescriptor*/,
 const uno::Reference < frame::XFrame >& xFrame )
@@ -174,6 +204,9 @@ sal_Bool SAL_CALL IFrameObject::load(
 return false;
 }
 
+if (!lcl_isScriptURLAllowed(aTargetURL.Complete))
+return false;
+
 DBG_ASSERT( !mxFrame.is(), "Frame already existing!" );
 VclPtr pParent = VCLUnoHelper::GetWindow( 
xFrame->getContainerWindow() );
 VclPtr pWin = VclPtr::Create( 
pParent, maFrmDescr.IsFrameBorderOn() );


[Libreoffice-bugs] [Bug 153870] Check for updates failed: Error reading data from the Internet

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153870

--- Comment #3 from Ken Shirriff  ---
[Please ignore the previous comment about updating to 7.5.0.3]

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

[Libreoffice-bugs] [Bug 153870] Check for updates failed: Error reading data from the Internet

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153870

--- Comment #2 from Ken Shirriff  ---
I updated (manually) to 7.5.0.3 and still see the issue.

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

[Libreoffice-bugs] [Bug 136358] [META] ODF to OOXML shape export related issues

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136358

Aron Budea  changed:

   What|Removed |Added

 Depends on|138995  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138995
[Bug 138995] FILEOPEN DOCX: A shape in front of textbox is position behind
textbox (fine with DOC)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 133537] [META] Issues affected by "oox: import WPS shape with text as shape with textbox"

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133537

Aron Budea  changed:

   What|Removed |Added

 Depends on||138995


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138995
[Bug 138995] FILEOPEN DOCX: A shape in front of textbox is position behind
textbox (fine with DOC)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153876] No functions are shown for "Optimize Size" help in Writer.

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153876

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Blocks||120200


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120200
[Bug 120200] [META] Update or correct help for features
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120200] [META] Update or correct help for features

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120200

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Depends on||153876


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153876
[Bug 153876] No functions are shown for  "Optimize Size"  help in Writer.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153876] New: No functions are shown for "Optimize Size" help in Writer.

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153876

Bug ID: 153876
   Summary: No functions are shown for  "Optimize Size"  help in
Writer.
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk
CC: olivier.hal...@libreoffice.org

No functions are shown for the Optimize Size page for Writer.

https://help.libreoffice.org/7.6/en-US/text/shared/02/0421.html?=WRITER

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

[Libreoffice-bugs] [Bug 120201] [META] Update or add link to help page

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120201

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Depends on||153875


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153875
[Bug 153875] Missing link to Optimize Size page in Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153875] Missing link to Optimize Size page in Writer

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153875

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Blocks||120201


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120201
[Bug 120201] [META] Update or add link to help page
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153875] New: Missing link to Optimize Size page in Writer

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153875

Bug ID: 153875
   Summary: Missing link to Optimize Size page in Writer
   Product: LibreOffice
   Version: 7.2.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk
CC: olivier.hal...@libreoffice.org

Place cursor in a Table.
On the Table bar, hover mouse over "Optimize Size" and press F1.

Actual: swriter/main.xhp
Expected:
https://help.libreoffice.org/7.6/en-US/text/shared/02/0421.html?=WRITER

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

[Libreoffice-bugs] [Bug 153669] Formula stops working after copy and paste onto a different cell

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153669

Kohei Yoshida  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |ko...@libreoffice.org
   |desktop.org |
 Status|NEW |ASSIGNED

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

[Libreoffice-bugs] [Bug 153874] FILEOPEN DOCX Image behind shape is shown in front

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153874

--- Comment #2 from Aron Budea  ---
Created attachment 185626
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185626=edit
Screenshot in Writer

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

[Libreoffice-bugs] [Bug 153874] FILEOPEN DOCX Image behind shape is shown in front

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153874

--- Comment #1 from Aron Budea  ---
Created attachment 185625
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185625=edit
Screenshot in Word

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

[Libreoffice-bugs] [Bug 104442] [META] OOXML shape (DrawingML and VML) related issues

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442

Aron Budea  changed:

   What|Removed |Added

 Depends on||153874


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153874
[Bug 153874] FILEOPEN DOCX Image behind shape is shown in front
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153874] New: FILEOPEN DOCX Image behind shape is shown in front

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153874

Bug ID: 153874
   Summary: FILEOPEN DOCX Image behind shape is shown in front
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aron.bu...@gmail.com
CC: michael.st...@allotropia.de
Blocks: 104442

Created attachment 185624
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185624=edit
Sample DOCX

Open the attached DOCX, created in Word. It has a blue rectangle (shape) in the
foreground, and a red rectangle (image) in the background.

In Writer the image is shown in the foreground.

Observed using LO 7.6.0.0.alpha0+ (2da16ff9f018fae68c53a801e5a234dafc2ebcec) /
Ubuntu.

This is a regression from the following commit, bibisected to its 7.5 backport
using repo linux-64-7.5. Adding CC: to Michael Stahl.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=31084ebb59093be7dfe5ab53a20fdb3bcfde34b6
author  Michael Stahl  2022-12-08
10:54:18 +0100
committer   Michael Stahl  2022-12-09
16:03:20 +

tdf#143311 offapi,oox,writerfilter,xmloff,sw: decorative flag on flys


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104442
[Bug 104442] [META] OOXML shape (DrawingML and VML) related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 151781] FILEOPEN DOCX Tracked formatting change on multiple paragraphs imported as multiple changes

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151781

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378
Bug 103378 depends on bug 104804, which changed state.

Bug 104804 Summary: Help on "Export Bookmarks" and help on "Export bookmarks as 
named destinations" is not clear enough
https://bugs.documentfoundation.org/show_bug.cgi?id=104804

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104804] Help on "Export Bookmarks" and help on "Export bookmarks as named destinations" is not clear enough

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104804

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

--- Comment #27 from sdc.bla...@youmail.dk ---
(In reply to sdc.blanco from comment #25)
> Maybe it is worth mentioning somewhere?
https://git.libreoffice.org/help/commit/2e037f2dbf9c7d93ce020ca1709c581624c75fbd

Tooltip and Extended tip for "Export outlines" were updated recently, and refer
appropriately to headings. They also mention Table of Contents; will leave this
convenient fiction in the tips.

Thanks to Gabriel Crabbe for technical expertise.

Closing as FIXED.  If further adjustments are needed, then they can be sent to
this ticket.

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

[Libreoffice-bugs] [Bug 153873] 'Export as image' produces a wrong result

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153873

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Confirmed
Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5a235634ca5761aa4b330ebf7e3a2083b7db1606
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

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

[Libreoffice-commits] core.git: helpcontent2

2023-02-27 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit acc819f6f40e43775d9f5d76971a9ba72e690dbc
Author: Seth Chaiklin 
AuthorDate: Tue Feb 28 00:54:20 2023 +
Commit: Gerrit Code Review 
CommitDate: Tue Feb 28 00:54:20 2023 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to 2e037f2dbf9c7d93ce020ca1709c581624c75fbd
  - tdf#150164  improve general description; mention hyperlink export

  "outlines" -> "bookmarks", and add "document structure" to the
  general description for this dialog. Add a sentence to mention
  that hyperlinks are automatically exported.

Change-Id: I423571a332ecb34e7243c6ba47eb92d3ae1e3ba0
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147906
Reviewed-by: Seth Chaiklin 
Tested-by: Jenkins

diff --git a/helpcontent2 b/helpcontent2
index 8d94705d5baa..2e037f2dbf9c 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 8d94705d5baaed4be8d2521d9caf7510ff5d9d76
+Subproject commit 2e037f2dbf9c7d93ce020ca1709c581624c75fbd


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

2023-02-27 Thread Seth Chaiklin (via logerrit)
 source/text/shared/01/ref_pdf_export_links.xhp |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 2e037f2dbf9c7d93ce020ca1709c581624c75fbd
Author: Seth Chaiklin 
AuthorDate: Mon Feb 27 23:51:00 2023 +
Commit: Seth Chaiklin 
CommitDate: Tue Feb 28 00:54:20 2023 +

tdf#150164  improve general description; mention hyperlink export

  "outlines" -> "bookmarks", and add "document structure" to the
  general description for this dialog. Add a sentence to mention
  that hyperlinks are automatically exported.

Change-Id: I423571a332ecb34e7243c6ba47eb92d3ae1e3ba0
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147906
Reviewed-by: Seth Chaiklin 
Tested-by: Jenkins

diff --git a/source/text/shared/01/ref_pdf_export_links.xhp 
b/source/text/shared/01/ref_pdf_export_links.xhp
index 243ca00c2a..d892f0f4dd 100644
--- a/source/text/shared/01/ref_pdf_export_links.xhp
+++ b/source/text/shared/01/ref_pdf_export_links.xhp
@@ -23,8 +23,9 @@
 
 
 Links
-Specify how to export outlines and hyperlinks in your 
document.
+Specify how to export bookmarks, document references and 
hyperlinks in your document.
 
+All hyperlinks in 
your %PRODUCTNAME document are exported automatically to your PDF 
document.
 
 
 


[Libreoffice-bugs] [Bug 150164] PDF exporter's "Export outlines as named destinations" does not export outlines, but bookmarks

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150164

--- Comment #20 from Commit Notification 
 ---
Seth Chaiklin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/2e037f2dbf9c7d93ce020ca1709c581624c75fbd

tdf#150164  improve general description; mention hyperlink export

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

[Libreoffice-bugs] [Bug 153872] abusive

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153872

V Stuart Foote  changed:

   What|Removed |Added

Summary|spam|abusive
 CC||vsfo...@libreoffice.org

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

[Libreoffice-bugs] [Bug 153872] spam

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153872

V Stuart Foote  changed:

   What|Removed |Added

  Component|Writer  |deletionRequest
Summary|you motherfuckers   |spam
 CC||vsfo...@libreoffice.org

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

[Libreoffice-bugs] [Bug 146768] Hyperlinks (mailto / external URLs) fail in exported PDFs

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146768

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 CC||sdc.bla...@youmail.dk
 OS|All |macOS (All)

--- Comment #6 from sdc.bla...@youmail.dk ---
Changing OS, based on comment 2, comment 3, and comment 5.

Using Windows, I can export the test document to PDF and both hyperlinks
(mailto: and external URL) work as expected (in Adobe Reader).

Version: 7.2.7.2 (x64) / LibreOffice Community
Build ID: 8d71d29d553c0f7dcbfa38fbfda25ee34cce99a2
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: da-DK (da_DK); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 104804] Help on "Export Bookmarks" and help on "Export bookmarks as named destinations" is not clear enough

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104804

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

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

[Libreoffice-commits] core.git: helpcontent2

2023-02-27 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b73f10e28126349c78de0a8cd487d4315736
Author: Seth Chaiklin 
AuthorDate: Tue Feb 28 00:38:56 2023 +
Commit: Gerrit Code Review 
CommitDate: Tue Feb 28 00:38:56 2023 +

Update git submodules

* Update helpcontent2 from branch 'master'
  to 8d94705d5baaed4be8d2521d9caf7510ff5d9d76
  - tdf#104804 - clarify explanation for "export outlines"

Change-Id: Ic81cda7b6d639e8cd06989f94d7378281a99a13e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147905
Reviewed-by: Seth Chaiklin 
Tested-by: Jenkins

diff --git a/helpcontent2 b/helpcontent2
index a2868f03eda9..8d94705d5baa 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a2868f03eda97185d96cf661624e3c8668876294
+Subproject commit 8d94705d5baaed4be8d2521d9caf7510ff5d9d76


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

2023-02-27 Thread Seth Chaiklin (via logerrit)
 source/text/shared/01/ref_pdf_export_general.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8d94705d5baaed4be8d2521d9caf7510ff5d9d76
Author: Seth Chaiklin 
AuthorDate: Mon Feb 27 23:37:56 2023 +
Commit: Seth Chaiklin 
CommitDate: Tue Feb 28 00:38:56 2023 +

tdf#104804 - clarify explanation for "export outlines"

Change-Id: Ic81cda7b6d639e8cd06989f94d7378281a99a13e
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/147905
Reviewed-by: Seth Chaiklin 
Tested-by: Jenkins

diff --git a/source/text/shared/01/ref_pdf_export_general.xhp 
b/source/text/shared/01/ref_pdf_export_general.xhp
index 61f2ae0503..86a066c8e4 100644
--- a/source/text/shared/01/ref_pdf_export_general.xhp
+++ b/source/text/shared/01/ref_pdf_export_general.xhp
@@ -117,10 +117,10 @@
 Allow duplicate field names
 Allows you to use the same field name for 
multiple fields in the generated PDF file. If disabled, field names will be 
exported using generated unique names.
 Structure
-Sets options for diverse 
features such as bookmarks, comments, page layout.
+Sets options for diverse 
features such as outlines, comments, page layout.
 
 Export outlines
-Select to export bookmarks of Writer documents as PDF bookmarks. 
Bookmarks are created for all outline paragraphs (Tools - Chapter 
Numbering) and for all table of contents entries for which you did 
assign hyperlinks in the source document.
+Select to export all headings in Writer documents as PDF 
bookmarks.
  Only paragraphs with Outline level 1 - 10 
will be exported.  The name of the Paragraph Style is irrelevant. For example, 
the default version of Paragraph Style Title is not exported when 
its Outline level is Text Body. To see a paragraph’s Outline 
level, choose Format - Paragraph  - Outline  
Numbering tab.
 
 


[Libreoffice-bugs] [Bug 153872] you motherfuckers

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153872

Sierk Bornemann  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 153872] you motherfuckers

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153872

Sierk Bornemann  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Libreoffice-bugs] [Bug 107733] [META] Hyperlink bugs and enhancements

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
Bug 107733 depends on bug 37608, which changed state.

Bug 37608 Summary: Index of Tables cannot generate hyperlinks
https://bugs.documentfoundation.org/show_bug.cgi?id=37608

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 89606] [META] Table of Contents and Indexes bugs and enhancements

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606
Bug 89606 depends on bug 37608, which changed state.

Bug 37608 Summary: Index of Tables cannot generate hyperlinks
https://bugs.documentfoundation.org/show_bug.cgi?id=37608

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 37608] Index of Tables cannot generate hyperlinks

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37608

sdc.bla...@youmail.dk changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||sdc.bla...@youmail.dk
 Status|NEW |RESOLVED

--- Comment #13 from sdc.bla...@youmail.dk ---
Closing as WORKSFORME.

Tested with:

Version: 7.2.7.2 (x64) / LibreOffice Community
Build ID: 8d71d29d553c0f7dcbfa38fbfda25ee34cce99a2
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: da-DK (da_DK); UI: en-US
Calc: CL

(also with Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: c41e872ed248f804249ecf4d65c4afc2e426e329)

NB.  For type "Index of Tables", hyperlinks are not included in the default
Structure in the Entries tab. However, if you add them, then hyperlinks are
generated (and work).  I will not open a new ticket to suggest that hyperlinks
be added to the default Structure, but it seems like an obvious and convenient
enhancement request.

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

[Libreoffice-bugs] [Bug 153873] 'Export as image' produces a wrong result

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153873

--- Comment #1 from David García  ---
Created attachment 185623
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185623=edit
Calc document and exported image

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

[Libreoffice-bugs] [Bug 152558] Calc Cell Borders are inconsistent with the drop-down graphic selector. Also, No help page for manual definitions

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152558

--- Comment #17 from gust...@angulosolido.pt ---
Created attachment 185622
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185622=edit
borderline expections vs reality

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

[Libreoffice-bugs] [Bug 152558] Calc Cell Borders are inconsistent with the drop-down graphic selector. Also, No help page for manual definitions

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152558

--- Comment #16 from gust...@angulosolido.pt ---
After upgrading from LO 7.0 to 7.4 I have realized that the default thickness
of Calc border lines is much higher. Attaching a screenshot in which the
expected case is obtained by manually selecting the "hairline" thickness.

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

[Libreoffice-bugs] [Bug 153873] New: 'Export as image' produces a wrong result

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153873

Bug ID: 153873
   Summary: 'Export as image' produces a wrong result
   Product: LibreOffice
   Version: 7.5.1.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vivada...@hotmail.com

Description:
On LibreOffice Calc, if I use the 'Export as image' tool on a chart, the
exported image looks incomplete.

Steps to Reproduce:
1. On my LibreOffice Calc document, I select a chart.
2. I right click on the chart and then click on 'Export as image'.
3. I type a filename and then click on 'Save'.

Actual Results:
The exported image doesn't contain all the elements of my chart.

Expected Results:
The exported image should look exactly as my chart.


Reproducible: Always


User Profile Reset: No

Additional Info:
The exported image should look exactly as my chart.

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

[Libreoffice-bugs] [Bug 146575] Writer won't export hyperlinks to pdf

2023-02-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146575

--- Comment #13 from sdc.bla...@youmail.dk ---
Works for me (with Windows OS and Adobe Reader)

Version: 7.2.7.2 (x64) / LibreOffice Community
Build ID: 8d71d29d553c0f7dcbfa38fbfda25ee34cce99a2
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: da-DK (da_DK); UI: en-US
Calc: CL

also 

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


Is this linux-specific?  (reports here do not identify OS)

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

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

2023-02-27 Thread Eike Rathke (via logerrit)
 sc/source/core/tool/interpr4.cxx |   26 --
 1 file changed, 20 insertions(+), 6 deletions(-)

New commits:
commit 4f7e8f0d819383a6953ccbb53f704d2265577a2f
Author: Eike Rathke 
AuthorDate: Mon Feb 27 23:14:01 2023 +0100
Commit: Eike Rathke 
CommitDate: Mon Feb 27 23:18:16 2023 +

Underflow assert also in already calculated path

Change-Id: I7bd1c4960280a6526bb82e5b95c5253775df1e1a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147937
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index e352f35a6e7b..97c3d06cdf49 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -4007,9 +4007,20 @@ StackVar ScInterpreter::Interpret()
 (*aTokenMatrixMapIter).second->GetType() != svJumpMatrix)
 {
 // Path already calculated, reuse result.
-nStackBase = sp - pCur->GetParamCount();
-if ( nStackBase > sp )
-nStackBase = sp;// underflow?!?
+if (sp >= pCur->GetParamCount())
+nStackBase = sp - pCur->GetParamCount();
+else
+{
+SAL_WARN("sc.core", "Stack anomaly with calculated path at "
+<< aPos.Tab() << "," << aPos.Col() << "," << aPos.Row()
+<< "  " << aPos.Format(
+ScRefFlags::VALID | ScRefFlags::FORCE_DOC | 
ScRefFlags::TAB_3D, )
+<< "  eOp: " << static_cast(eOp)
+<< "  params: " << 
static_cast(pCur->GetParamCount())
+<< "  nStackBase: " << nStackBase << "  sp: " << sp);
+nStackBase = sp;
+assert(!"underflow");
+}
 sp = nStackBase;
 PushTokenRef( (*aTokenMatrixMapIter).second);
 }
commit 1db24b1798b80062a1d06104828d1ec6f32ae8ec
Author: Eike Rathke 
AuthorDate: Mon Feb 27 18:35:49 2023 +0100
Commit: Eike Rathke 
CommitDate: Mon Feb 27 23:18:06 2023 +

ConvertMatrixParameters() worth some asserts instead of OSL_ENSURE/OSL_FAIL

Change-Id: I91e7e8d66b88912b05ff273a5eb948bb6edc504d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147928
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index 91f297a010db..e352f35a6e7b 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -21,6 +21,7 @@
 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -1456,14 +1457,16 @@ void ScInterpreter::ConvertMatrixJumpConditionToMatrix()
 bool ScInterpreter::ConvertMatrixParameters()
 {
 sal_uInt16 nParams = pCur->GetParamCount();
-OSL_ENSURE( nParams <= sp, "ConvertMatrixParameters: stack/param count 
mismatch");
+SAL_WARN_IF( nParams > sp, "sc.core", "ConvertMatrixParameters: 
stack/param count mismatch:  eOp: "
+<< static_cast(pCur->GetOpCode()) << "  sp: " << sp << "  
nParams: " << nParams);
+assert(nParams <= sp);
 SCSIZE nJumpCols = 0, nJumpRows = 0;
 for ( sal_uInt16 i=1; i <= nParams && i <= sp; ++i )
 {
 const FormulaToken* p = pStack[ sp - i ];
 if ( p->GetOpCode() != ocPush && p->GetOpCode() != ocMissing)
 {
-OSL_FAIL( "ConvertMatrixParameters: not a push");
+assert(!"ConvertMatrixParameters: not a push");
 }
 else
 {
@@ -1588,7 +1591,7 @@ bool ScInterpreter::ConvertMatrixParameters()
 }
 break;
 default:
-OSL_FAIL( "ConvertMatrixParameters: unknown parameter 
type");
+assert(!"ConvertMatrixParameters: unknown parameter type");
 }
 }
 }


  1   2   3   4   5   >