[Libreoffice-bugs] [Bug 85295] PDF: handling of embedded fonts, glyphs, subsets

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

--- Comment #20 from خالد حسني  ---
(In reply to LibreTraining from comment #10)
> (In reply to Michael Stahl from comment #9)
> > PDF does not embed fonts, it embeds those glyphs which are used.
> > 
> > LibreOffice is an editing application and so importing only a subset
> > of a font is frustrating and useless in practice because you can't
> > edit the document to add letters that weren't used in the original PDF.
> 
> PDFs can embed full and complete installable fonts.

Yes, but this is rarely done because it can increase file size significantly,
so even if we supported extracting such fonts it is not going to help with any
if the reported issues since these PDFs are not embedding full fonts.

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

[Libreoffice-bugs] [Bug 129238] Change Calc's Print Preview Page to Use Gradient As Writer's Page

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129238

--- Comment #3 from Rizal Muttaqin  ---
Still reproducible in
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e272fd31b115e6ea128b593087aeaf4f55119a36
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: id-ID (id_ID.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 85295] PDF: handling of embedded fonts, glyphs, subsets

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

خالد حسني  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|NEW |RESOLVED

--- Comment #19 from خالد حسني  ---
Closing again as WONTFIX for yhe same reasons explained in
https://bugs.documentfoundation.org/show_bug.cgi?id=101220#c37.

An extra info bar might be a UX improvement, but that deserves its own issue.

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

[Libreoffice-bugs] [Bug 99746] [META] PDF import filter in Draw

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746
Bug 99746 depends on bug 85295, which changed state.

Bug 85295 Summary: PDF: handling of embedded fonts, glyphs, subsets
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

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

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

2022-12-21 Thread Stephan Bergmann (via logerrit)
 sd/inc/Annotation.hxx  |   11 ---
 sd/source/core/annotations/Annotation.cxx  |   22 --
 sd/source/ui/annotations/annotationtag.cxx |3 ++-
 3 files changed, 26 insertions(+), 10 deletions(-)

New commits:
commit 99009c9535dfa3e0d838989ccc7d84bfa2320ff4
Author: Stephan Bergmann 
AuthorDate: Wed Dec 21 16:09:49 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 22 07:44:42 2022 +

loplugin:unocast (sd::Annotation)

(See the upcoming commit introducing that loplugin:unocast on why such
dynamic_casts from UNO types are dangerous.)

Change-Id: Id600e83ae94409914b20a2a2620031ce340a9390
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144698
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sd/inc/Annotation.hxx b/sd/inc/Annotation.hxx
index 707f2cdc8e78..b23cd2503bb3 100644
--- a/sd/inc/Annotation.hxx
+++ b/sd/inc/Annotation.hxx
@@ -23,6 +23,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -74,7 +75,8 @@ struct SD_DLLPUBLIC CustomAnnotationMarker
 };
 
 class Annotation final : private ::cppu::BaseMutex,
-   public 
::cppu::WeakComponentImplHelper,
+   public ::cppu::WeakComponentImplHelper<
+   css::office::XAnnotation, css::lang::XUnoTunnel>,
public ::cppu::PropertySetMixin
 {
 public:
@@ -90,8 +92,8 @@ public:
 
 // XInterface:
 virtual css::uno::Any SAL_CALL queryInterface(css::uno::Type const & type) 
override;
-virtual void SAL_CALL acquire() noexcept override { 
::cppu::WeakComponentImplHelper::acquire(); }
-virtual void SAL_CALL release() noexcept override { 
::cppu::WeakComponentImplHelper::release(); }
+virtual void SAL_CALL acquire() noexcept override { 
WeakComponentImplHelper::acquire(); }
+virtual void SAL_CALL release() noexcept override { 
WeakComponentImplHelper::release(); }
 
 // css::beans::XPropertySet:
 virtual css::uno::Reference SAL_CALL 
getPropertySetInfo() override;
@@ -116,6 +118,9 @@ public:
 virtual void SAL_CALL setDateTime(const css::util::DateTime & the_value) 
override;
 virtual css::uno::Reference SAL_CALL getTextRange() 
override;
 
+sal_Int64 SAL_CALL getSomething(css::uno::Sequence const & 
aIdentifier) override;
+static css::uno::Sequence const & getUnoTunnelId();
+
 void createChangeUndo();
 
 void createCustomAnnotationMarker()
diff --git a/sd/source/core/annotations/Annotation.cxx 
b/sd/source/core/annotations/Annotation.cxx
index 991412f063d5..1cd608c69e00 100644
--- a/sd/source/core/annotations/Annotation.cxx
+++ b/sd/source/core/annotations/Annotation.cxx
@@ -26,6 +26,7 @@
 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -118,7 +119,7 @@ void createAnnotation(uno::Reference& 
xAnnotation, SdPage*
 sal_uInt32 Annotation::m_nLastId = 1;
 
 Annotation::Annotation( const uno::Reference& context, 
SdPage* pPage )
-: ::cppu::WeakComponentImplHelper(m_aMutex)
+: WeakComponentImplHelper(m_aMutex)
 , ::cppu::PropertySetMixin(context, 
IMPLEMENTS_PROPERTY_SET, uno::Sequence())
 , m_nId( m_nLastId++ )
 , mpPage( pPage )
@@ -141,7 +142,7 @@ void SAL_CALL Annotation::disposing()
 
 uno::Any Annotation::queryInterface(css::uno::Type const & type)
 {
-return 
::cppu::WeakComponentImplHelper::queryInterface(type);
+return WeakComponentImplHelper::queryInterface(type);
 }
 
 // com.sun.star.beans.XPropertySet:
@@ -301,9 +302,18 @@ uno::Reference SAL_CALL 
Annotation::getTextRange()
 return m_TextRange;
 }
 
+sal_Int64 Annotation::getSomething(css::uno::Sequence const & 
aIdentifier) {
+return comphelper::getSomethingImpl(aIdentifier, this);
+}
+
+css::uno::Sequence const & Annotation::getUnoTunnelId() {
+static comphelper::UnoIdInit const id;
+return id.getSeq();
+}
+
 std::unique_ptr CreateUndoInsertOrRemoveAnnotation( const 
uno::Reference& xAnnotation, bool bInsert )
 {
-Annotation* pAnnotation = dynamic_cast< Annotation* >( xAnnotation.get() );
+Annotation* pAnnotation = comphelper::getFromUnoTunnel< Annotation >( 
xAnnotation );
 if( pAnnotation )
 {
 return std::make_unique< UndoInsertOrRemoveAnnotation >( *pAnnotation, 
bInsert );
@@ -316,14 +326,14 @@ std::unique_ptr 
CreateUndoInsertOrRemoveAnnotation( const uno::Re
 
 void CreateChangeUndo(const uno::Reference& xAnnotation)
 {
-Annotation* pAnnotation = dynamic_cast(xAnnotation.get());
+Annotation* pAnnotation = 
comphelper::getFromUnoTunnel(xAnnotation);
 if (pAnnotation)
 pAnnotation->createChangeUndo();
 }
 
 sal_uInt32 getAnnotationId(const uno::Reference& 
xAnnotation)
 {
-Annotation* pAnnotation = dynamic_cast(xAnnotation.get());
+Annotation* pAnnotation = 
comphelper::getFromUnoTunnel(xAnnotation);
 sal_uInt32 nId = 0;
 if (pAnnotation)
 nId = pAnnotation->GetId();
@@ -332,7 +342,7 @@ sal_uInt32 getAnnotationId(const 
uno::Reference& xAnnotatio
 
 

[Libreoffice-bugs] [Bug 147806] Dummy bookmarks generated when importing .doc fiels

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147806

Buovjaga  changed:

   What|Removed |Added

   Keywords||filter:doc
 Status|UNCONFIRMED |NEW
Version|7.4.0.0 alpha0+ |3.5.0 release
 Ever confirmed|0   |1

--- Comment #6 from Buovjaga  ---
Confirmed already in 3.5.0. I opened the file in MSO 365 (converted to new
format), but I don't know how to see the references. There are no indicators
even in the document text that they would exist.

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

[Libreoffice-bugs] [Bug 144813] Tabbed UI (drop down box) and sidebar options - rapid blinking/flashing.

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144813

--- Comment #16 from Buovjaga  ---
Chris: see my comment 12 for how to discover more.

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

Hanging CppunitTest_sc_opencl_test

2022-12-21 Thread Stephan Bergmann
Something I've seen lately with various 
 builds, 
where it looks like the sole thread of CppunitTest_sc_opencl_test is 
blocked trying to aquire a libstdc++-internal mutex.  As if some other 
thread terminated abruptly while holding that mutex?  Maybe somebody has 
an idea:


[...]

kill-wrapper,2201 /home/tdf/lode/bin/tb_slave_wrapper --real --mode=config 
--clean 1200

[...]

  |   `-cppunittester,10101 
/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/LinkTarget/CppunitTest/libtest_sc_opencl_test.so
 --headless 
-env:BRAND_BASE_DIR=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir
 -env:BRAND_SHARE_SUBDIR=share 
-env:BRAND_SHARE_RESOURCE_SUBDIR=program/resource 
-env:UserInstallation=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/CppunitTest/sc_opencl_test.test.user
 
-env:CONFIGURATION_LAYERS=xcsxcu:file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/share/registry
 
xcsxcu:file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/unittest/registry-common
 
xcsxcu:file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/unittest/registry-user-ui
 
-env:UNO_TYPES=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program/types.rdb
 
file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program/types/offapi.rdb
 
file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program/types/oovbaapi.rdb
 
-env:UNO_SERVICES=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/Rdb/ure/services.rdb
 
file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/Rdb/services.rdb
 
-env:URE_BIN_DIR=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program
 
-env:URE_INTERNAL_LIB_DIR=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program
 
-env:LO_LIB_DIR=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program
 
-env:LO_JAVA_DIR=file:///home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/instdir/program/classes
 --protector 
/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/LinkTarget/Library/unoexceptionprotector.so
 unoexceptionprotector --protector 
/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/LinkTarget/Library/unobootstrapprotector.so
 unobootstrapprotector --protector 
/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/LinkTarget/Library/libvclbootstrapprotector.so
 vclbootstrapprotector 
-env:CPPUNITTESTTARGET=/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/CppunitTest/sc_opencl_test.test

[...]

Thread 1 (Thread 0x7f26794c40c0 (LWP 10101)):
#0  0x7f2678e8dcca in  () at /lib64/libstdc++.so.6
#1  0x7f2678e8dd69 in __gnu_debug::_Safe_sequence_base::_M_get_mutex() () 
at /lib64/libstdc++.so.6
#2  0x7f2678e8dfa8 in  () at /lib64/libstdc++.so.6
#3  0x7f265c8c379a in 
__gnu_debug::_Safe_iterator_base::_Safe_iterator_base(__gnu_debug::_Safe_sequence_base
 const*, bool) (this=0x7ffd0b78a9e8, __seq=0x48bb660, __constant=true) at 
/opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/debug/safe_base.h:91
#4  0x7f265c928041 in __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator > >, std::__debug::vector > >::_Safe_iterator(__gnu_cxx::__normal_iterator > > const&, __gnu_debug::_Safe_sequence_base 
const*) (this=0x7ffd0b78a9e0, __i=..., __seq=0x48bb660) at 
/opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/debug/safe_iterator.h:130
#5  0x7f265ca32afe in std::__debug::vector >::cend() const (this=0x48bb660) at 
/opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/debug/vector:325
#6  0x7f265ca328a7 in 
mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, 
mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, sc::CellStoreTrait>::cbegin() 
const (this=0x48bb620) at workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3771
#7  0x7f265c913d63 in 
mdds::mtv::soa::multi_type_vector, mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, 
mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, sc::CellStoreTrait>::begin() 
const (this=0x48bb620) at workdir/UnpackedTarball/mdds/include/mdds/multi_type_vector/soa/main_def.inl:3753
#8  0x7f265cad6596 in ScColumn::IsEmptyData() const (this=0x48bb3f0) at 
sc/source/core/data/column2.cxx:1277
#9  0x7f265d03f8f0 in 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - writerfilter/source

2022-12-21 Thread Caolán McNamara (via logerrit)
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)

New commits:
commit d7a36f2aa08ebb454b284a9e624323fa0081645f
Author: Caolán McNamara 
AuthorDate: Wed Dec 21 16:06:08 2022 +
Commit: Xisco Fauli 
CommitDate: Thu Dec 22 07:20:45 2022 +

ofz#54461 Null-dereference

seen since:

commit 96a856f87f16cca2e039c973c18d57c8b9dca362
Date:   Fri Dec 16 13:20:25 2022 +0100

tdf#152206 DOCX import: fix mixed first footnote

Note: tdf#152506 is the correct issue identifier.

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

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index dc6eb2c8e165..7dc02e91ba8b 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -3672,15 +3672,25 @@ void DomainMapper_Impl::PopFootOrEndnote()
 {
 if ( m_nFirstFootnoteIndex == -1 )
 lcl_convertToNoteIndices(m_aFootnoteIds, 
m_nFirstFootnoteIndex);
-xFootnotes->getByIndex(m_aFootnoteIds.front()) >>= 
xNoteFirst;
-m_aFootnoteIds.pop_front();
+if (m_aFootnoteIds.empty()) // lcl_convertToNoteIndices 
pops m_aFootnoteIds
+m_bSaxError = true;
+else
+{
+xFootnotes->getByIndex(m_aFootnoteIds.front()) >>= 
xNoteFirst;
+m_aFootnoteIds.pop_front();
+}
 }
 else if ( !IsInFootnote() && !m_aEndnoteIds.empty() )
 {
 if ( m_nFirstEndnoteIndex == -1 )
 lcl_convertToNoteIndices(m_aEndnoteIds, 
m_nFirstEndnoteIndex);
-xEndnotes->getByIndex(m_aEndnoteIds.front()) >>= 
xNoteFirst;
-m_aEndnoteIds.pop_front();
+if (m_aEndnoteIds.empty()) // lcl_convertToNoteIndices 
pops m_aEndnoteIds
+m_bSaxError = true;
+else
+{
+xEndnotes->getByIndex(m_aEndnoteIds.front()) >>= 
xNoteFirst;
+m_aEndnoteIds.pop_front();
+}
 }
 else
 m_bSaxError = true;


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

2022-12-21 Thread Stephan Bergmann (via logerrit)
 sd/inc/textapi.hxx |3 ++-
 sd/source/core/text/textapi.cxx|   15 ---
 sd/source/ui/annotations/annotationwindow.cxx  |3 ++-
 xmlsecurity/inc/framework/signatureverifierimpl.hxx|7 ++-
 xmlsecurity/source/framework/signatureverifierimpl.cxx |   10 ++
 xmlsecurity/source/helper/xsecverify.cxx   |5 +++--
 6 files changed, 31 insertions(+), 12 deletions(-)

New commits:
commit 0c7585c5fa78887e5459885ed744e8044fd76137
Author: Stephan Bergmann 
AuthorDate: Wed Dec 21 16:48:44 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 22 06:57:11 2022 +

loplugin:unocast (sd::TextApiObject)

(See the upcoming commit introducing that loplugin:unocast on why such
dynamic_casts from UNO types are dangerous.)

The odd implementation of TextApiObject::getImplementation had been 
effectively
like that ever since the code's introduction in
5d431414afa79d392fe6a885940c559236c25aa2 "CWS-TOOLING: integrate CWS
impressnotes01", for no obvious reason.  And as it can be reduced to a 
single
comphelper::getFromUnoTunnel call, drop the function and directly call that 
at
the (single) call site.

Change-Id: If50a81cf8bee0dddbdfb5e6b5516c24a03e858e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144699
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sd/inc/textapi.hxx b/sd/inc/textapi.hxx
index 70110349053a..be7396358468 100644
--- a/sd/inc/textapi.hxx
+++ b/sd/inc/textapi.hxx
@@ -43,7 +43,8 @@ public:
 voidSetText( OutlinerParaObject const & rText );
 OUStringGetText() const;
 
-static TextApiObject* getImplementation( const css::uno::Reference< 
css::text::XText >& );
+sal_Int64 SAL_CALL getSomething(css::uno::Sequence const & 
aIdentifier) override;
+static css::uno::Sequence const & getUnoTunnelId();
 
 private:
 std::unique_ptr  mpSource;
diff --git a/sd/source/core/text/textapi.cxx b/sd/source/core/text/textapi.cxx
index 8c342f1fda63..d855b3cb3ebe 100644
--- a/sd/source/core/text/textapi.cxx
+++ b/sd/source/core/text/textapi.cxx
@@ -23,6 +23,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -179,14 +180,14 @@ OUString TextApiObject::GetText() const
 return mpSource->GetText();
 }
 
-TextApiObject* TextApiObject::getImplementation( const css::uno::Reference< 
css::text::XText >& xText )
-{
-TextApiObject* pImpl = dynamic_cast< TextApiObject* >( xText.get() );
-
-if( !pImpl )
-pImpl = dynamic_cast< TextApiObject* >(  
comphelper::getFromUnoTunnel( xText ) );
+sal_Int64 TextApiObject::getSomething(css::uno::Sequence const & 
aIdentifier) {
+return comphelper::getSomethingImpl(
+aIdentifier, this, comphelper::FallbackToGetSomethingOf{});
+}
 
-return pImpl;
+css::uno::Sequence const & TextApiObject::getUnoTunnelId() {
+static comphelper::UnoIdInit const id;
+return id.getSeq();
 }
 
 TextAPIEditSource::TextAPIEditSource(const TextAPIEditSource& rSource)
diff --git a/sd/source/ui/annotations/annotationwindow.cxx 
b/sd/source/ui/annotations/annotationwindow.cxx
index 6c1210575915..cc392994cb56 100644
--- a/sd/source/ui/annotations/annotationwindow.cxx
+++ b/sd/source/ui/annotations/annotationwindow.cxx
@@ -17,6 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include 
 #include 
 #include 
 #include 
@@ -487,7 +488,7 @@ TextApiObject* getTextApiObject( const Reference< 
XAnnotation >& xAnnotation )
 if( xAnnotation.is() )
 {
 Reference< XText > xText( xAnnotation->getTextRange() );
-return TextApiObject::getImplementation( xText );
+return comphelper::getFromUnoTunnel( xText );
 }
 return nullptr;
 }
commit 24e14afd1bfcaed6c200ab081973fba7e47267ca
Author: Stephan Bergmann 
AuthorDate: Wed Dec 21 16:01:08 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 22 06:56:59 2022 +

loplugin:unocast (SignatureVerifierImpl)

(See the upcoming commit introducing that loplugin:unocast on why such
dynamic_casts from UNO types are dangerous.)

Change-Id: I3c2f1eae3d9b2b5ecb6a05c9e7149946b63bb11f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144697
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/xmlsecurity/inc/framework/signatureverifierimpl.hxx 
b/xmlsecurity/inc/framework/signatureverifierimpl.hxx
index 15c79643e0aa..29d286d7ee57 100644
--- a/xmlsecurity/inc/framework/signatureverifierimpl.hxx
+++ b/xmlsecurity/inc/framework/signatureverifierimpl.hxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include 
@@ -35,7 +36,8 @@ typedef cppu::ImplInheritanceHelper
 SignatureEngine,
 css::xml::crypto::sax::XSignatureVerifyResultBroadcaster,
 css::lang::XInitialization,
-css::lang::XServiceInfo
+

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

2022-12-21 Thread Stephan Bergmann (via logerrit)
 extensions/source/propctrlr/eformshelper.cxx |3 ++-
 extensions/source/propctrlr/propeventtranslation.cxx |   13 +
 extensions/source/propctrlr/propeventtranslation.hxx |6 +-
 3 files changed, 20 insertions(+), 2 deletions(-)

New commits:
commit 1a7ad0c10d286ce9ae2700ceb2fd50eed1fb43a4
Author: Stephan Bergmann 
AuthorDate: Wed Dec 21 15:44:35 2022 +0100
Commit: Stephan Bergmann 
CommitDate: Thu Dec 22 06:56:41 2022 +

loplugin:unocast (pcr::PropertyEventTranslation)

(See the upcoming commit introducing that loplugin:unocast on why such
dynamic_casts from UNO types are dangerous.)

Change-Id: I0800465df08a8caa4d48e205f181d3eb35611dc8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144695
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/extensions/source/propctrlr/eformshelper.cxx 
b/extensions/source/propctrlr/eformshelper.cxx
index 40aceed5dfe7..c53b8eacc909 100644
--- a/extensions/source/propctrlr/eformshelper.cxx
+++ b/extensions/source/propctrlr/eformshelper.cxx
@@ -32,6 +32,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -243,7 +244,7 @@ namespace pcr
 ::comphelper::OInterfaceIteratorHelper3 
aListenerIterator(m_aPropertyListeners);
 while ( aListenerIterator.hasMoreElements() )
 {
-PropertyEventTranslation* pTranslator = dynamic_cast< 
PropertyEventTranslation* >( aListenerIterator.next().get() );
+PropertyEventTranslation* pTranslator = 
comphelper::getFromUnoTunnel< PropertyEventTranslation >( 
aListenerIterator.next() );
 OSL_ENSURE( pTranslator, 
"EFormsHelper::impl_toggleBindingPropertyListening_throw: invalid listener 
element in my container!" );
 if ( !pTranslator )
 continue;
diff --git a/extensions/source/propctrlr/propeventtranslation.cxx 
b/extensions/source/propctrlr/propeventtranslation.cxx
index 736c1e06fca2..ce8e794f2211 100644
--- a/extensions/source/propctrlr/propeventtranslation.cxx
+++ b/extensions/source/propctrlr/propeventtranslation.cxx
@@ -20,6 +20,7 @@
 #include "propeventtranslation.hxx"
 
 #include 
+#include 
 
 
 namespace pcr
@@ -48,6 +49,18 @@ namespace pcr
 }
 
 
+sal_Int64 PropertyEventTranslation::getSomething(
+css::uno::Sequence const & aIdentifier)
+{
+return comphelper::getSomethingImpl(aIdentifier, this);
+}
+
+css::uno::Sequence const & 
PropertyEventTranslation::getUnoTunnelId() {
+static comphelper::UnoIdInit const id;
+return id.getSeq();
+}
+
+
 void SAL_CALL PropertyEventTranslation::propertyChange( const 
PropertyChangeEvent& evt )
 {
 if ( !m_xDelegator.is() )
diff --git a/extensions/source/propctrlr/propeventtranslation.hxx 
b/extensions/source/propctrlr/propeventtranslation.hxx
index 43155b8c67f9..92e143dfbbc2 100644
--- a/extensions/source/propctrlr/propeventtranslation.hxx
+++ b/extensions/source/propctrlr/propeventtranslation.hxx
@@ -20,6 +20,7 @@
 #pragma once
 
 #include 
+#include 
 #include 
 
 
@@ -29,7 +30,7 @@ namespace pcr
 
 //= PropertyEventTranslation
 
-typedef ::cppu::WeakImplHelper <   css::beans::XPropertyChangeListener
+typedef ::cppu::WeakImplHelper <   css::beans::XPropertyChangeListener, 
css::lang::XUnoTunnel
 >   PropertyEventTranslation_Base;
 
 class PropertyEventTranslation : public PropertyEventTranslation_Base
@@ -52,6 +53,9 @@ namespace pcr
 const css::uno::Reference< css::beans::XPropertyChangeListener >&
 getDelegator() const { return m_xDelegator; }
 
+sal_Int64 SAL_CALL getSomething(css::uno::Sequence const & 
aIdentifier) override;
+static css::uno::Sequence const & getUnoTunnelId();
+
 protected:
 // XPropertyChangeListener
 virtual void SAL_CALL propertyChange( const 
css::beans::PropertyChangeEvent& evt ) override;


[Libreoffice-bugs] [Bug 152641] SLIDESHOW Shape gradient angle not reflected when presenting

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152641

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from Buovjaga  ---
Strange - for me there is no problem even though we run the same version. Do
you also reproduce, if you go to Help - Restart in safe mode and then Continue
in safe mode?

Arch Linux
Version: 7.4.3.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 8; OS: Linux 6.0; UI render: default; VCL: gtk3
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
7.4.3-3
Calc: threaded

Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists in safe mode. Change to
RESOLVED WORKSFORME, if the problem went away (you can reset the user profile
in this case).

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

[Libreoffice-bugs] [Bug 152611] Can save as pdf if I open the Print dialog and click the 'Print' tab while lockExport option is set to true

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152611

--- Comment #6 from Mike Kaganski  ---
(In reply to dev.limarev from comment #5)
> If LibreOffice can block some printers, for example "Microsoft Print To PDF"?
> Or the only way to have desired behaviour is to turn off these Microsoft
> printers at system level?

I suppose that LibreOffice could filter some printers from the list shown here.
Yet, it's not only "these Microsoft printers" - there are many virtual printers
available: search for "printer" at the related Wikipedia article[1].
Additionally, I believe that the names of these printers on the system could
change based on the software version, localization, and number of copies of a
printer (it's possible to have several such "printers" installed, with
different settings each).

Thus, the correct approach is indeed to avoid such printers on the system
level, where exporting is restricted.

[1] https://en.wikipedia.org/wiki/List_of_PDF_software#Creators_3

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - 2 commits - sw/inc sw/qa sw/source xmloff/source

2022-12-21 Thread Miklos Vajna (via logerrit)
 sw/inc/unoprnms.hxx |1 
 sw/inc/unotextcursor.hxx|1 
 sw/qa/core/unocore/data/paragraph-marker-formatted-run.docx |binary
 sw/qa/core/unocore/data/paragraph-marker.docx   |binary
 sw/qa/core/unocore/unocore.cxx  |   38 +
 sw/qa/extras/ooxmlexport/ooxmlexport2.cxx   |3 
 sw/source/core/inc/unoport.hxx  |7 
 sw/source/core/text/xmldump.cxx |5 
 sw/source/core/unocore/unoobj.cxx   |   88 +++-
 sw/source/core/unocore/unoport.cxx  |   57 ++-
 sw/source/core/unocore/unoportenum.cxx  |5 
 xmloff/source/text/txtparai.cxx |   17 ++
 12 files changed, 207 insertions(+), 15 deletions(-)

New commits:
commit 4634a27dd6f762168b3d7820326611b20b7d385c
Author: Miklos Vajna 
AuthorDate: Tue Dec 20 12:14:16 2022 +0100
Commit: Mike Kaganski 
CommitDate: Thu Dec 22 06:12:55 2022 +

sw: fix ODT import of paragraph marker formatting

The DOCX bugdoc had a numbering portion which was not bold, even if all
characters in the paragrpah was bold. This was rendered fine, but once
it was saved to ODT + reloaded, the numbering portion became bold as
well, which is buggy.

What happens here is that there is one span that covers the entire
paragraph (and is bold) and there is an empty span at paragraph end
(which is not bold), so the ODT export is fine. But once we import it
back, the first span gets "upgraded" to paragraph-level formatting
(because SetAttrMode::NOFORMATATTR is not used when inserting the hints)
and the second span is not mapped back to the original
RES_PARATR_LIST_AUTOFMT in the text node.

Fix the problem by 1) improving SwXTextCursor::setPropertyValue() to
work with SetAttrMode::NOFORMATATTR when multiple spans are inserted and
by 2) extending SwUnoCursorHelper::SetCursorPropertyValue() to create
RES_PARATR_LIST_AUTOFMT for empty spans at paragraph end. This way the
original doc model and the one created after ODT export + import is much
closer to each other.

This builds on top of 6249858a8972aef077e0249bd93cfe8f01bce4d6 (sw: ODT
import/export of DOCX's paragraph marker formatting, 2022-12-19),
previously the ODT export and import of paragraph marker formatting was
completely missing.

(cherry picked from commit 1feb1aa08421f9d0934ab65ce94cf6054818c0f3)

Also includes commit de235fe13a2e5a4db043f44e6d5636e308f2b979 (sw layout
xml dump: show numbering portion weight, 2022-12-19).

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

diff --git a/sw/inc/unoprnms.hxx b/sw/inc/unoprnms.hxx
index c3a7d97b32e8..c59fc4813721 100644
--- a/sw/inc/unoprnms.hxx
+++ b/sw/inc/unoprnms.hxx
@@ -506,6 +506,7 @@
 #define UNO_NAME_IS_SKIP_HIDDEN_TEXT "IsSkipHiddenText"
 #define UNO_NAME_IS_SKIP_PROTECTED_TEXT "IsSkipProtectedText"
 #define UNO_NAME_RESET_PARAGRAPH_LIST_ATTRIBUTES "ResetParagraphListAttributes"
+#define UNO_NAME_NO_FORMAT_ATTR "NoFormatAttr"
 #define UNO_NAME_DOCUMENT_INDEX_MARKS "DocumentIndexMarks"
 #define UNO_NAME_FOOTNOTE_IS_COLLECT_AT_TEXT_END "FootnoteIsCollectAtTextEnd"
 #define UNO_NAME_FOOTNOTE_IS_RESTART_NUMBERING "FootnoteIsRestartNumbering"
diff --git a/sw/inc/unotextcursor.hxx b/sw/inc/unotextcursor.hxx
index b055f2d64504..25c71effa57c 100644
--- a/sw/inc/unotextcursor.hxx
+++ b/sw/inc/unotextcursor.hxx
@@ -76,6 +76,7 @@ private:
 const CursorTypem_eType;
 const css::uno::Reference< css::text::XText > m_xParentText;
 sw::UnoCursorPointer m_pUnoCursor;
+SetAttrMode m_nAttrMode = SetAttrMode::DEFAULT;
 
 SwUnoCursor& GetCursorOrThrow() {
 if(!m_pUnoCursor)
diff --git a/sw/qa/core/unocore/data/paragraph-marker-formatted-run.docx 
b/sw/qa/core/unocore/data/paragraph-marker-formatted-run.docx
new file mode 100644
index ..c0635c157cc9
Binary files /dev/null and 
b/sw/qa/core/unocore/data/paragraph-marker-formatted-run.docx differ
diff --git a/sw/qa/core/unocore/unocore.cxx b/sw/qa/core/unocore/unocore.cxx
index 220e946fe206..cce4d837ca5a 100644
--- a/sw/qa/core/unocore/unocore.cxx
+++ b/sw/qa/core/unocore/unocore.cxx
@@ -698,6 +698,25 @@ CPPUNIT_TEST_FIXTURE(SwCoreUnocoreTest, 
testParagraphMarkerODFExport)
 getXPath(pXmlDoc, "//Special[@nType='PortionType::Number']/SwFont", 
"color"));
 }
 
+CPPUNIT_TEST_FIXTURE(SwCoreUnocoreTest, testParagraphMarkerFormattedRun)
+{
+// Given a document with a bold run and non-bold paragraph marker:
+load(DATA_DIRECTORY, "paragraph-marker-formatted-run.docx");
+
+// When saving that as ODT + reload:
+reload("writer8", 

[Libreoffice-bugs] [Bug 145845] Impress gradient is not displayed the same way in edit mode and slide show

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145845

--- Comment #7 from Kurt Huwig  ---
I still can reproduce it on Linux with 7.4.3.2, so I've created 152641

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

[Libreoffice-bugs] [Bug 152641] SLIDESHOW Shape gradient angle not reflected when presenting

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152641

--- Comment #2 from Kurt Huwig  ---
Created attachment 184308
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184308=edit
How it looks during a presentation

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

[Libreoffice-bugs] [Bug 152641] SLIDESHOW Shape gradient angle not reflected when presenting

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152641

--- Comment #1 from Kurt Huwig  ---
Created attachment 184307
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184307=edit
How it looks while editing

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

[Libreoffice-bugs] [Bug 152641] New: SLIDESHOW Shape gradient angle not reflected when presenting

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152641

Bug ID: 152641
   Summary: SLIDESHOW Shape gradient angle not reflected when
presenting
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kurthu...@gmail.com

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

Description:
Shapes with a Linear angled gradient do not display correctly in present mode,
but do display correctly in edit more and PDF exports. (On Linux)

Steps to Reproduce:
1. Create an empty slide
2. Create a rectangle shape
3. Fill with two colors and set angle to 90 degrees Linear (Gradient should now
be horizontal in the preview)
4. Press Shift-F5

Actual Results:
In present mode, the shape is filled with a vertical gradient.

Expected Results:
The fill colors in presentation mode should resemble the fill in edit mode.


Reproducible: Always

Additional Info:
When exporting the presentation as PDF the gradients show up correctly.

Version: 7.4.3.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 12; OS: Linux 6.1; UI render: default; VCL: gtk3
Locale: de-DE (de_DE.utf8); UI: de-DE
7.4.3-3
Calc: threaded

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

[Libreoffice-bugs] [Bug 143987] Stylist: Merge PS and CS into one Text Styles view

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143987

--- Comment #8 from Mike Kaganski  ---
If you have the expanded list auto-sized to fill the available height (minus
the height of 4 other categories), then only a single click is needed.

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

[Libreoffice-bugs] [Bug 147884] Revert deprecation of API service RotationDescriptor

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147884

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 147915] Mirroring of page headers not working in one case

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147915

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 152409] ^ not working randomly with spanish keyboard

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152409

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 152404] Crash in Writer when inserting a new comment while there is uncommitted text

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152404

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 152412] STYLE spreadsheet function help: a phrase that refers to unknown context

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152412

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 152324] Document title jumps from Untitled 1 to Untitled 3 when text is is copied

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152324

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 152324] Document title jumps from Untitled 1 to Untitled 3 when text is is copied

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152324

--- 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 147806] Dummy bookmarks generated when importing .doc fiels

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147806

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 148431] document recovery includes file which failed previously

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148431

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 148431] document recovery includes file which failed previously

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148431

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

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

[Libreoffice-bugs] [Bug 147806] Dummy bookmarks generated when importing .doc fiels

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147806

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

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

[Libreoffice-bugs] [Bug 146596] Sporadically, superscripts in the text (indicating a footnote) do not print as superscripts.

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146596

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 146596] Sporadically, superscripts in the text (indicating a footnote) do not print as superscripts.

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146596

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

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

[Libreoffice-bugs] [Bug 144813] Tabbed UI (drop down box) and sidebar options - rapid blinking/flashing.

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144813

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

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

[Libreoffice-bugs] [Bug 144813] Tabbed UI (drop down box) and sidebar options - rapid blinking/flashing.

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144813

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 149641] Writer crashes if you select Tools-Mail Merge Wizard

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149641

--- Comment #5 from QA Administrators  ---
Dear Roman Kuznetsov,

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 149513] LibreOffice Draw 7.3 Navigator Drag broken + Crashes - Windows 10

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149513

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

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 148341] Webservice in Macro not working reliably (More then 1 request per macro call)

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148341

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

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 144720] Calc (linux) closes if the rows number range exceed the maximum

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144720

--- Comment #5 from QA Administrators  ---
Dear P.S.,

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 135759] Some border lines look grayish like (no border set) after DOCX export (but are actually present)

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135759

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

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 77484] Writer: Tabstopps applied wrong if page margins and frameborder are set.

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77484

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

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 88477] UI: No Different Icons for Selection Mode in Status Bar

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88477

--- Comment #8 from QA Administrators  ---
Dear Harald Koester,

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 138686] I cannot remove/disconnect automatic update from external source

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138686

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

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 137730] Dragging the mouse over an 3D object causes CPU spike

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137730

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 101537] Using "working copies" with 2 or more locked documents replace each other

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101537

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

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 137463] Impress duplicated table breaks formatting on Copy/paste

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137463

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

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 129238] Change Calc's Print Preview Page to Use Gradient As Writer's Page

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129238

--- Comment #2 from QA Administrators  ---
Dear Rizal Muttaqin,

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 152627] PDF with hyperlinks: links are lost with import to Draw

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152627

--- Comment #7 from V Stuart Foote  ---
(In reply to Graham Perrin from comment #6)
> > … the pdfium based insert 
> 
> Please, can you put this in a LibreOffice context for me? 
> 
> I see ,
> however it's entirely new to me. 
> 

The pdfium is the Google sponsored PDF viewer for the Chrome browse. Its open
source libs provide an alternative to poppler libs for parsing PDF pages to
LO's vcl canvas. See bug 89727 and its see also links...

these commits:
=-ref-=
https://gerrit.libreoffice.org/26586
https://gerrit.libreoffice.org/26628
https://gerrit.libreoffice.org/26695
https://gerrit.libreoffice.org/26706
https://gerrit.libreoffice.org/26724
https://gerrit.libreoffice.org/26739
https://gerrit.libreoffice.org/26743
https://gerrit.libreoffice.org/26755

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

[Libreoffice-bugs] [Bug 152639] New: Review fields is too long

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152639

Bug ID: 152639
   Summary: Review fields is too long
   Product: LibreOffice
   Version: 7.4.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sandrolu...@gmail.com

Created attachment 184305
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184305=edit
printscreen left and right side

Hi!
When I type in a box of text fields, if the texts are too long the box becomes
too long, occupying the entire screen, if I have two screens the text box moves
from one screen to the other.
See in the attached image (zip).
Tks

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

[Libreoffice-bugs] [Bug 152627] PDF with hyperlinks: links are lost with import to Draw

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152627

Graham Perrin  changed:

   What|Removed |Added

Summary|PDF with hyperlinks: links  |PDF with hyperlinks: links
   |are visually, and   |are lost with import to
   |functionally, broken with   |Draw
   |import to Draw  |

--- Comment #6 from Graham Perrin  ---
Thank you, 

(In reply to V Stuart Foote from comment #5)

> … the pdfium based insert 

Please, can you put this in a LibreOffice context for me? 

I see ,
however it's entirely new to me. 


> Strangely can't find an enhancement request for filter import of URL from
> PDF, setting => Enhancement

I'll edit the summary line here to focus on the enhancement. 



Assume that the visual breakage (essentially: monospace misrepresented as
proportional) falls under bug 85295.

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

[Libreoffice-bugs] [Bug 85295] PDF: handling of embedded fonts, glyphs, subsets

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

--- Comment #18 from Graham Perrin  ---
> Might this improve through the change that's currently associated with bug
> 143659? 

My bad, a typo there. Should have been bug 143095 …

Apologies for the noise.

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

[Libreoffice-bugs] [Bug 85295] PDF: handling of embedded fonts, glyphs, subsets

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

--- Comment #17 from Graham Perrin  ---
(In reply to Graham Perrin from comment #16)

> * wherever there's a monospace font, Draw presents 
>   proportional (not monospace).

Might this improve through the change that's currently associated with bug
143659? 

Maybe more useful than the preceding screenshot: the information below was
amongst output from strings(1) for the PDF. 


…
57 0 obj
<< /Type /FontDescriptor
   /FontName /IRJSJC+CairoFont-0-0
   /Flags 4
   /FontBBox [ -64 -240 907 760 ]
   /ItalicAngle 0
   /Ascent 760
   /Descent -240
   /CapHeight 760
   /StemV 80
   /StemH 80
   /FontFile3 53 0 R
endobj
26 0 obj
<< /Type /Font
   /Subtype /Type1
   /BaseFont /IRJSJC+CairoFont-0-0
   /FirstChar 32
   /LastChar 117
   /FontDescriptor 57 0 R
   /Encoding /WinAnsiEncoding
   /Widths [ 260 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 285 0 0 0 0
0 0 0 0 0 740 0 549 0 0 0 0 0 0 0 0 0 0 0 0 551 579 0 0 0 0 0 0 0 0 0 0 0 0 604
633 514 0 591 0 0 0 0 305 0 0 982 0 619 0 0 454 0 434 657 ]
/ToUnicode 55 0 R
endobj
…


…
62 0 obj
<< /Type /FontDescriptor
   /FontName /CTGIPS+CairoFont-1-0
   /Flags 4
   /FontBBox [ 0 -240 917 765 ]
   /ItalicAngle 0
   /Ascent 765
   /Descent -240
   /CapHeight 765
   /StemV 80
   /StemH 80
   /FontFile3 58 0 R
endobj
27 0 obj
<< /Type /Font
   /Subtype /Type1
   /BaseFont /CTGIPS+CairoFont-1-0
   /FirstChar 32
   /LastChar 133
   /FontDescriptor 62 0 R
   /Encoding /WinAnsiEncoding
   /Widths [ 260 0 408 0 0 0 0 0 0 0 0 0 268 322 0 372 572 572 572 572 572 0 0
0 0 0 268 0 572 0 572 0 899 0 0 0 730 0 519 0 0 0 0 0 0 0 0 0 605 0 0 0 0 0 0
930 0 0 0 0 0 0 0 0 0 561 0 480 615 564 344 615 618 258 0 0 258 935 618 605 615
0 413 479 361 0 0 0 0 510 0 0 0 0 0 0 0 0 0 0 0 791 ]
/ToUnicode 60 0 R
endobj
…


…
67 0 obj
<< /Type /FontDescriptor
   /FontName /UUAJCH+CairoFont-2-0
   /Flags 4
   /FontBBox [ 0 -235 602 765 ]
   /ItalicAngle 0
   /Ascent 765
   /Descent -235
   /CapHeight 765
   /StemV 80
   /StemH 80
   /FontFile3 63 0 R
endobj
28 0 obj
<< /Type /Font
   /Subtype /Type1
   /BaseFont /UUAJCH+CairoFont-2-0
   /FirstChar 32
   /LastChar 133
   /FontDescriptor 67 0 R
   /Encoding /WinAnsiEncoding
   /Widths [ 602 0 0 0 0 0 0 0 602 602 602 0 602 602 602 602 602 602 602 602
602 602 602 602 602 602 602 0 0 602 0 602 602 602 602 602 602 602 602 0 0 602 0
0 0 602 602 0 602 0 602 602 602 602 602 602 602 602 0 0 0 0 0 602 0 602 602 602
602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602 602
602 602 602 0 0 0 0 0 0 0 0 0 0 602 ]
/ToUnicode 65 0 R
endobj
…

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

[Libreoffice-bugs] [Bug 136523] Stripes in gradient in presentation mode Skia Raster/Vulkan

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136523

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 147645] Linear and axial gradients lost in presentation mode

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147645

V Stuart Foote  changed:

   What|Removed |Added

Summary|Linear and axial gradients  |Linear and axial gradients
   |lost in presentation mode   |lost in presentation mode
   |(Skia)  |
 CC||armin.le.gr...@me.com,
   ||vsfo...@libreoffice.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||4073,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||6523

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

[Libreoffice-bugs] [Bug 144073] UI. Corner of screen appears white when presenting, using the Lights template (Windows-only)

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144073

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 151703] Impress slide show loses 'Linear' and 'Axial' formatted background gradients if Skia enabled

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151703

--- Comment #10 from V Stuart Foote  ---
(In reply to Armin Le Grand from comment #7)
> > @Armin, I don't want to dump this solely on Luboš's plate, but does this
> > make any sense?
> 
> Comment 2 hints that it's Skia-related. I looked quickly on linux version
> where I am more concerned that 'Quadratic' is not kept quadratic anymore in
> slideshow, wrng as PageFill and ObjectFill (Hint to check gradients: Use a
> StepWidth (e.g. 5) and slight rotation in the gradient definition to quickly
> see problems).
> 
> Slideshow still transfers geometry info using Metafile (no primitives, see
> GradientStyle::Linear in cppcanvas & similar), one root of problems.
> 
> It renders these with an own renderer impl, not using PrimitiveRenderes,
> another root of problems. On Win this uses DirectX AFAIR - if that was not
> changed, problem may be there. -> This speaks against Skia as reason, as
> long as no one has implemented cppcanvas on skia
> 
> OTOH that it did change and worked before is a hint that someone changed
> something in that processing chain somewhere. Since that chain is long and
> old and converts gradient definition quite some times it would be necessary
> to deep-dive and dig for the reason - if there is no obvious change in
> mentioned areas. Maybe this can be bibisected somehow...?
> 
> Just my 2ct

Armin, maybe have a look at Luboš's work on bug 136523 --
https://gerrit.libreoffice.org/c/core/+/106016
and also on bug 144073 -- https://gerrit.libreoffice.org/c/core/+/129298

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

[Libreoffice-bugs] [Bug 143095] Draw and Writer PDF import: the fonts are shown in postscript names (PS names) rather than localized font family names

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143095

Graham Perrin  changed:

   What|Removed |Added

 CC||grahamper...@gmail.com
URL||https://gerrit.libreoffice.
   ||org/c/core/+/143659

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

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

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152638

Bug ID: 152638
   Summary: Rotating an image and not able to position correctly
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alanrrobert...@gmail.com

Description:
After importing an image I then rotate it 90 degrees. I then try and position
it to one side and the image seems to have a false size. Therefore large gap
between image and border.

Actual Results:
insert image (rectangular) not square
rotate
move image

Expected Results:
image will not position correctly


Reproducible: Always


User Profile Reset: No

Additional Info:
seen this problem on other reports

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

[Libreoffice-bugs] [Bug 126096] Hyperlink to in-document target adds path when exported to PDF from Draw

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126096

Graham Perrin  changed:

   What|Removed |Added

   Keywords||filter:pdf

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

[Libreoffice-bugs] [Bug 85295] PDF: handling of embedded fonts, glyphs, subsets

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

--- Comment #16 from Graham Perrin  ---
Created attachment 184304
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184304=edit
An Okular list of three embedded subsets

Please: is the attachment at bug 152627 comment 0 also an example of this bug
85295?

In this case, there was no intention to add any character (isntead, I might
have removed parts of e-mail addresses). 

Opening the file (keyword: filter:pdf) results in an essential difference: 

* wherever there's a monospace font, Draw presents proportional (not
monospace).

The attachment here shows the three embedded subsets.

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

[Libreoffice-bugs] [Bug 152627] PDF with hyperlinks: links are visually, and functionally, broken with import to Draw

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152627

Graham Perrin  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 85295] PDF: handling of embedded fonts, glyphs, subsets

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85295

Graham Perrin  changed:

   What|Removed |Added

   Keywords||filter:pdf
Summary|FILEOPEN: Import/preserve   |PDF: handling of embedded
   |embedded fonts from pdf |fonts, glyphs, subsets
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||2627

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

[Libreoffice-bugs] [Bug 112970] [META] Document recovery bugs and enhancements

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112970
Bug 112970 depends on bug 148438, which changed state.

Bug 148438 Summary: Get rid of unnecessary document recovery
https://bugs.documentfoundation.org/show_bug.cgi?id=148438

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 76992] LibreOffice Pretends a document recovery is successful, where no AutoRecovery data is available

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76992

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||mich...@vonglasow.com

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

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

[Libreoffice-bugs] [Bug 148438] Get rid of unnecessary document recovery

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148438

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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


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

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

[Libreoffice-bugs] [Bug 57414] File Recovery: Don't save read-only and empty files for recovery

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57414

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 137879] LO should know not to try and recover temporary files

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137879

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 112970] [META] Document recovery bugs and enhancements

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112970
Bug 112970 depends on bug 85687, which changed state.

Bug 85687 Summary: Do not attempt to restore empty documents
https://bugs.documentfoundation.org/show_bug.cgi?id=85687

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 57414] File Recovery: Don't save read-only and empty files for recovery

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57414

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||computergeoff...@zoho.com

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

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

[Libreoffice-bugs] [Bug 85687] Do not attempt to restore empty documents

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85687

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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


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

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

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

2022-12-21 Thread Andras Timar (via logerrit)
 editeng/source/editeng/impedit.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 17a8cb1573c5b75e5b7a6c480e09c681edcc26c0
Author: Andras Timar 
AuthorDate: Wed Dec 21 20:14:11 2022 +0100
Commit: Eike Rathke 
CommitDate: Thu Dec 22 00:56:50 2022 +

check for null pointer

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

diff --git a/editeng/source/editeng/impedit.cxx 
b/editeng/source/editeng/impedit.cxx
index 1223d717f5e5..7d378af4da14 100644
--- a/editeng/source/editeng/impedit.cxx
+++ b/editeng/source/editeng/impedit.cxx
@@ -1419,7 +1419,7 @@ void ImpEditView::ShowCursor( bool bGotoCursor, bool 
bForceVisCursor )
 EditView* pActiveView = GetEditViewPtr();
 
 boost::property_tree::ptree aHyperlinkTree;
-if (URLFieldHelper::IsCursorAtURLField(*pActiveView))
+if (pActiveView && 
URLFieldHelper::IsCursorAtURLField(*pActiveView))
 {
 if (const SvxFieldItem* pFld = GetField(aPos, nullptr, 
nullptr))
 if (auto pUrlField = dynamic_cast(pFld->GetField()))


[Libreoffice-bugs] [Bug 145636] [SLIDESHOW and PDF] color background of empty shape can be seen in edit mode but isn't shown in slideshow nor exported in PDF

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145636

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 OS|Windows (All)   |All
   Keywords||needsUXEval
 Ever confirmed|0   |1
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
Summary|[SLIDESHOW and PDF] color   |[SLIDESHOW and PDF] color
   |background can be seen in   |background of empty shape
   |edit mode but isn't shown   |can be seen in edit mode
   |in slideshow nor exported   |but isn't shown in
   |in PDF  |slideshow nor exported in
   ||PDF

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
This is easily reproducible only using LibreOffice and ODF:

1. Open Impress
2. Don't pick a template
3. Right-click on text box with placeholder text "click to add text"
4. Area > Color > pick a colour > OK

Results:
Placeholder text box colour is not shown in the slide sorter, or in slideshow
mode, or on PDF export.
Typing text in the placeholder makes it visible.

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

UX team, should this be something to improve or is it a WONTFIX?

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

[Libreoffice-ux-advise] [Bug 145636] [SLIDESHOW and PDF] color background of empty shape can be seen in edit mode but isn't shown in slideshow nor exported in PDF

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145636

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 OS|Windows (All)   |All
   Keywords||needsUXEval
 Ever confirmed|0   |1
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
Summary|[SLIDESHOW and PDF] color   |[SLIDESHOW and PDF] color
   |background can be seen in   |background of empty shape
   |edit mode but isn't shown   |can be seen in edit mode
   |in slideshow nor exported   |but isn't shown in
   |in PDF  |slideshow nor exported in
   ||PDF

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
This is easily reproducible only using LibreOffice and ODF:

1. Open Impress
2. Don't pick a template
3. Right-click on text box with placeholder text "click to add text"
4. Area > Color > pick a colour > OK

Results:
Placeholder text box colour is not shown in the slide sorter, or in slideshow
mode, or on PDF export.
Typing text in the placeholder makes it visible.

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

UX team, should this be something to improve or is it a WONTFIX?

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

[Libreoffice-bugs] [Bug 36766] [META] Impress Gradient and Transparency issues

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36766
Bug 36766 depends on bug 147939, which changed state.

Bug 147939 Summary: Shape gradient angle not reflected when presenting
https://bugs.documentfoundation.org/show_bug.cgi?id=147939

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145845] Impress gradient is not displayed the same way in edit mode and slide show

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145845

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||giger.jonat...@gmail.com

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

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

[Libreoffice-bugs] [Bug 147939] Shape gradient angle not reflected when presenting

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147939

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
Oh, likely to be Skia-related, if it wasn't in 6.1 as I said above.

I can't reproduce with Skia turned off:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 9b46020c262045aed0beace4708565235c2523cc
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

(You can test that by going to Tools > Options > LibreOffice > View > Graphics
output)

I can't reproduce with 7.0 either:

Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

But I can with:

Version: 7.1.0.3 (x64) / LibreOffice Community
Build ID: f6099ecf3d29644b5008cc8f48f42f4a40986e4c
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

So I'm pretty sure it's the same issue as bug 145845.

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

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

[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-7.5.0.1'

2022-12-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.5.0.1' created by Christian Lohmaier 
 at 2022-12-22 00:14 +

Tag libreoffice-7.5.0.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmOjoWEACgkQ9DSh76/u
rqPTwg//fZZnLTnsUG8VQ6dpLq06Hml9tnIEDkpcfDMnIzKVAV7RIddalDVG9vsd
sMmw9KjCtqWRaWz3N+7U6ADL+tji3pFj+GvJMhcstRtThXxu4UsDl0HAtZnGCo0K
2YMQH7emdQbM3GKXak7hh/O1WCPdRrHSCjg/qWw6U1J3ajlWK7mNiqmgYDDdzZ5w
mgyxbi1xEog3yqx7RRcNBDp+7/VCgK9QOMufqtltpy7ro8YiKQMuxpiVwHM0HsN+
1e2haznylsOwUqCi+lZifK9iNVeuLWBPTdkq8w/u6XP+nEUaTE34ipJ3g57EL5CM
RPvWjZjSxJJGSEaG1G03oVK6dKfJT6xMfeZcrOB5WMESSj8m88uq/jKAV5raEZ65
rCs1UPprOP2gN59HZAvxGedJDh8fo6hsceM6ZgANVfFNNDaGg1eKoBJ7u5lP7LXj
smt67VMlc2qme6hsUITVwryOjdKgUG/FyKYKag1PEbR1O+0BtgJRxupJx2UG1JTb
3d1JzLdBgp2oMEb/rSFHD4ZbqfNlVVsayRq36NL7dEllMaUTMzGBjJdulC2V2Sti
EsxtbIKz36Scx2I5oS7poBm5VV0kqo2CWA7mf4r94AUEIjDl1ymkswTXv6KM2Zyx
9EkxlLmDSpGYrnL1RgeVbe/6KOBiTPVNM6asv9fHCcGwGf2E0ZE=
=Jl1g
-END PGP SIGNATURE-

Changes since libreoffice-7-5-branch-point-213:
---
 0 files changed
---


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-7.5.0.1'

2022-12-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.5.0.1' created by Christian Lohmaier 
 at 2022-12-22 00:14 +

Tag libreoffice-7.5.0.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmOjoWEACgkQ9DSh76/u
rqMV2g/+PfLHJ2SeNiSq+Liy/uTcvloDGfvS6TwnhWLZDsT4pegbFatL77Vjk+Rm
cxQ0np6pGjA+EyzCHEpvZO6TKGqG7fxAhU/JFGnVf3HgPp7BNZiBITUyi2fjLxij
3wW4ORY1WePY5AicQREA7Qf3DU9GrH01TdzeDgihUqEpPeCefBxIF6VnDDQYTvAf
OZrLd6lfEKnlzrB3CC1C/q0lmMXzKgqCLzyYzGGpIGDu7CyvTg3O4/z47Pv5zadH
W/ObMZsjd6WDtwRgz4MSD2t0F81BmvA1MffAq9Q8K3zfUGZb4j9NXq7wdyENZX+z
LMkJBDP/ZZj21GCeenBsD3MePQZDAz05iBZg/qag1Njs2KkMfaKp2dRT1TAye/Yv
lV9n3b7zZg11eQr41LR4oAhfUpmKitKd8t7urIY+gETg8T3n8O0KVmSKOsJ69pZ2
umGggZl881MYiRf3qWbfqNZIjG1DhwAhD14gZnPkt8zB0mlXTYLpPJL7llf5cyXR
v6c96mZsk3Gd1juMLzSx4Ul8EYXqoh7O20/M1lVLwUiR0U7G6QKVdqFyMG/GVOTt
jgSoaR/fh1QzQUDLSNYseWICYUyobtiy8FMBPnWYg0kdI3j/Dqh2JqR6xyyVJ0Ww
8XfjejY8Jo94KRd1IfNufbf+w/GGLXjins3m+sPgK9Fok/fmwyI=
=t543
-END PGP SIGNATURE-

Changes since libreoffice-7-5-branch-point-7:
---
 0 files changed
---


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-7.5.0.1'

2022-12-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.5.0.1' created by Christian Lohmaier 
 at 2022-12-22 00:14 +

Tag libreoffice-7.5.0.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmOjoWEACgkQ9DSh76/u
rqNlUA/+KE+M9wFPEuhTeXrhpE5aFKcQ8+47Zfw+dyvwSuQDbaYx6uJFhXR/oUIL
9EwlczogGX5sP3pZKHaN54mNEmLJiV/wTxObd6wO3eKbbDzm2XnqEv5LLPd9synl
3v8Ss616GEnVyoOlWnoHWRDkFKfMXyML3WgHljNWkWmQolvxY/upY9ev08z1pTKG
QQwK2ziZmjbJiC+RbHexnBXdINysd+gj+7j737oMGRu0uFlC6OOF5Vc1lbUPMXsY
jQTLVoWruqVpWjI5dcSN5PER5WA3dM5fcVCllaKYqiyj3O2iGJhA9j4wSJTANJYs
6y/Ah18x7DoJw/iiLHtgqp74I/gC9lCYoDy5xCVyNGYSUz3OVHtbA2WdYUPEXBfI
bTdCk0biXdd31pnQilc9/k3zTx50x88eUMW+Lcbp+CCcPfjiiojMcO2KChZcwIca
Gct+eryL1GIdn0R4wxFu1VnX4y+urwqWoV7ejPMTDWaVkBy4GOWcGRuKq6QXZQz6
gnM+JtsfdP3CaJHJRRwscWcC9wkcFtfK2eOn1C5hxL4NJwD2OCZeUw+jhKItlwA9
+98gEbnckbIaClpmf0CoGq9zw9Kv1w8NUCxyCULc3QMzxli8N+sulP7KnUk/YSw2
/b6PTJPH3bKBk0kW6FV1S0EMkA/qXbyK5/4Nhblp5GNvCyzkixY=
=EU/0
-END PGP SIGNATURE-

Changes since libreoffice-7-5-branch-point-18:
---
 0 files changed
---


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-7.5.0.1'

2022-12-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-7.5.0.1' created by Christian Lohmaier 
 at 2022-12-22 00:14 +

Tag libreoffice-7.5.0.1
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAmOjoV4ACgkQ9DSh76/u
rqPoBg/+IuTz2jNaTwoCxRTi0wjudcA1rkIb0rGMrmw4GGMNzZT8DWisEHPOyWhb
1zmNTZ5DC6Ld8uObzg4WDeEVc1gmZzFS6b5z8oOliHN883EbKGwILhoPHCxZQppu
EJQ4K4pywCUq/X54iKRgY8/hxsCydouoksSbTHcXZyKVuAlcKb/tCWUQgAvHMd6c
h2e4pONgO5yoKJoO44M7RwNS1jxd9lndkQY5BmsgkSwIMgAmkVLRQPv/snDhOz52
itBGjULNsgU+Vzl4zeCdB2Eg8og+YCr59xVrp68v3FraU45tM/KN7c506mlUlvef
UbfWRdpgYujr8QL+e9jFtam+o/vErNBTRqhfzxgN/KA+9f3s8meh++lfpz4i9QZc
TBkBXku4t18nZAvEESJizuIqOk8IC4rNDk9WBj5iULXGTl6i/sDPcPvem+JT46qW
zpy5PFchA6OjZGQNHzjqZualxguJOBViLlaFGILCTbt3wkU1WTQlfeERWd8GOTf1
NHIvThOAF1bR1xs2aOBXB+LOw4hbWtAz3lmiliR3Bq4VYslvhj4XDsngkXtg5hZS
gmeE/9/zdtzxoIsLhBjMFOujkee9xt/mH8W9YIaIIeEkCSMz9HcguaCJKthsv2EI
qjoluhYlR8Sk3vD8MbRxiuipUyKtdoyEByciIMBt3J7YX7julJM=
=W67n
-END PGP SIGNATURE-

Changes since libreoffice-7-5-branch-point-1:
---
 0 files changed
---


[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - configure.ac

2022-12-21 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 02c01d00592348da229bbf0c3e23ddeb2a9da3fe
Author: Christian Lohmaier 
AuthorDate: Thu Dec 22 01:15:10 2022 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Dec 22 01:15:10 2022 +0100

bump product version to 7.5.0.1.0+

Change-Id: I63bc1026987d73f2849c680d557e3507d94c603f

diff --git a/configure.ac b/configure.ac
index 3c9dbb636899..b31c6b7f68da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[7.5.0.0.beta1+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[7.5.0.1.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard


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

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 147714, which changed state.

Bug 147714 Summary: Gradient background not shown in slide show if Skia enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=147714

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103610
Bug 103610 depends on bug 147714, which changed state.

Bug 147714 Summary: Gradient background not shown in slide show if Skia enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=147714

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 36766] [META] Impress Gradient and Transparency issues

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36766
Bug 36766 depends on bug 147714, which changed state.

Bug 147714 Summary: Gradient background not shown in slide show if Skia enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=147714

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 147645] Linear and axial gradients lost in presentation mode (Skia)

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147645

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

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

[Libreoffice-bugs] [Bug 147714] Gradient background not shown in slide show if Skia enabled

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147714

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
...and the first part is not reproducible in:

Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

So it's the regression described in bug 145845.

We can close this as a duplicate, I'll go with the more recent regression.

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

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - writerfilter/source

2022-12-21 Thread Caolán McNamara (via logerrit)
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)

New commits:
commit d94f1cca0d86184ff6ee855b11cbfefe6a6b58c5
Author: Caolán McNamara 
AuthorDate: Wed Dec 21 16:06:08 2022 +
Commit: Christian Lohmaier 
CommitDate: Thu Dec 22 00:14:00 2022 +

ofz#54461 Null-dereference

seen since:

commit 96a856f87f16cca2e039c973c18d57c8b9dca362
Date:   Fri Dec 16 13:20:25 2022 +0100

tdf#152206 DOCX import: fix mixed first footnote

Note: tdf#152506 is the correct issue identifier.

Change-Id: I6e66db1a6a87cfce444346f193a418880750e03c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144717
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 135938ae4dcd..f0fbd05209c5 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -3734,15 +3734,25 @@ void DomainMapper_Impl::PopFootOrEndnote()
 {
 if ( m_nFirstFootnoteIndex == -1 )
 lcl_convertToNoteIndices(m_aFootnoteIds, 
m_nFirstFootnoteIndex);
-xFootnotes->getByIndex(m_aFootnoteIds.front()) >>= 
xNoteFirst;
-m_aFootnoteIds.pop_front();
+if (m_aFootnoteIds.empty()) // lcl_convertToNoteIndices 
pops m_aFootnoteIds
+m_bSaxError = true;
+else
+{
+xFootnotes->getByIndex(m_aFootnoteIds.front()) >>= 
xNoteFirst;
+m_aFootnoteIds.pop_front();
+}
 }
 else if ( !IsInFootnote() && !m_aEndnoteIds.empty() )
 {
 if ( m_nFirstEndnoteIndex == -1 )
 lcl_convertToNoteIndices(m_aEndnoteIds, 
m_nFirstEndnoteIndex);
-xEndnotes->getByIndex(m_aEndnoteIds.front()) >>= 
xNoteFirst;
-m_aEndnoteIds.pop_front();
+if (m_aEndnoteIds.empty()) // lcl_convertToNoteIndices 
pops m_aEndnoteIds
+m_bSaxError = true;
+else
+{
+xEndnotes->getByIndex(m_aEndnoteIds.front()) >>= 
xNoteFirst;
+m_aEndnoteIds.pop_front();
+}
 }
 else
 m_bSaxError = true;


[Libreoffice-commits] translations.git: Branch 'libreoffice-7-5' - source/ast source/ca source/cs source/dsb source/es source/gug source/hsb source/pl source/pt-BR

2022-12-21 Thread Christian Lohmaier (via logerrit)
 source/ast/sw/messages.po  |   11 -
 source/ca/helpcontent2/source/text/scalc/00.po |6 
 source/ca/sd/messages.po   |4 
 source/ca/svx/messages.po  |4 
 source/ca/sw/messages.po   |   28 ++--
 source/cs/formula/messages.po  |6 
 source/cs/helpcontent2/source/text/sbasic/shared.po|   90 +++---
 source/cs/sysui/desktop/share.po   |   20 +--
 source/dsb/formula/messages.po |6 
 source/dsb/sysui/desktop/share.po  |   21 +--
 source/es/helpcontent2/source/text/scalc/00.po |6 
 source/es/svx/messages.po  |4 
 source/es/sw/messages.po   |   28 ++--
 source/gug/helpcontent2/source/text/scalc/00.po|6 
 source/hsb/formula/messages.po |6 
 source/hsb/helpcontent2/source/text/schart/01.po   |  104 -
 source/hsb/sysui/desktop/share.po  |   21 +--
 source/pl/formula/messages.po  |6 
 source/pl/helpcontent2/source/text/scalc/00.po |   14 +-
 source/pl/helpcontent2/source/text/scalc/guide.po  |   54 
 source/pl/sysui/desktop/share.po   |   20 +--
 source/pt-BR/formula/messages.po   |6 
 source/pt-BR/helpcontent2/source/text/sbasic/shared.po |8 -
 source/pt-BR/helpcontent2/source/text/shared/01.po |   20 +--
 source/pt-BR/sysui/desktop/share.po|   26 ++--
 25 files changed, 263 insertions(+), 262 deletions(-)

New commits:
commit 96ea34468fb6678ff6f378f36f22c19f16166d63
Author: Christian Lohmaier 
AuthorDate: Thu Dec 22 01:06:38 2022 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Dec 22 01:09:30 2022 +0100

update translations for 7.5.0 rc1

and force-fix errors using pocheck

Change-Id: If01e073a30643a65862a5a7ec1b304448654566f
(cherry picked from commit 08d0004b7aa823bedc51c521919faf0d82fe24f2)

diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index c7da7e0dc8b..a27d0c0a78a 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -4,7 +4,7 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
 "POT-Creation-Date: 2022-12-19 15:00+0100\n"
-"PO-Revision-Date: 2022-12-19 14:09+\n"
+"PO-Revision-Date: 2022-12-21 23:54+\n"
 "Last-Translator: Adolfo Jayme Barrientos \n"
 "Language-Team: Asturian 
\n"
 "Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
 "X-POOTLE-MTIME: 1542195213.00\n"
 
 #. v3oJv
@@ -26297,7 +26297,7 @@ msgstr ""
 #: sw/uiconfig/swriter/ui/privateuserpage.ui:609
 msgctxt "privateuserpage|label1"
 msgid "Private Data"
-msgstr ""
+msgstr "Datos privaos"
 
 #. 5d2FB
 #: sw/uiconfig/swriter/ui/privateuserpage.ui:617
@@ -30067,10 +30067,9 @@ msgstr "Escueya les regles del idioma qu'usar pa 
ordenar les entraes del índiz.
 
 #. MKA2M
 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1180
-#, fuzzy
 msgctxt "tocindexpage|mainstyleft5"
 msgid "Key type:"
-msgstr "Triba de clave"
+msgstr "Triba de clave:"
 
 #. x3YvG
 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1196
@@ -30154,7 +30153,7 @@ msgstr "Esbilla de llingua"
 #: sw/uiconfig/swriter/ui/translationdialog.ui:71
 msgctxt "LanguageSelectDialog"
 msgid "Select the target language for translation"
-msgstr ""
+msgstr "Esbilla la llingua de destín de la torna"
 
 #. od8Zz
 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:42
diff --git a/source/ca/helpcontent2/source/text/scalc/00.po 
b/source/ca/helpcontent2/source/text/scalc/00.po
index 8480cf14030..0da3c4e79d9 100644
--- a/source/ca/helpcontent2/source/text/scalc/00.po
+++ b/source/ca/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
 "POT-Creation-Date: 2022-11-22 14:43+0100\n"
-"PO-Revision-Date: 2022-10-22 12:14+\n"
+"PO-Revision-Date: 2022-12-21 22:17+\n"
 "Last-Translator: Adolfo Jayme Barrientos \n"
 "Language-Team: Catalan 
\n"
 "Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
 "X-Language: ca\n"
 "X-POOTLE-MTIME: 1551190063.00\n"
 
@@ -276,7 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - translations

2022-12-21 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2f7054872fdf21215fcab200eaf3390be4c50c94
Author: Christian Lohmaier 
AuthorDate: Thu Dec 22 01:11:49 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Dec 22 00:11:49 2022 +

Update git submodules

* Update translations from branch 'libreoffice-7-5'
  to 96ea34468fb6678ff6f378f36f22c19f16166d63
  - update translations for 7.5.0 rc1

and force-fix errors using pocheck

Change-Id: If01e073a30643a65862a5a7ec1b304448654566f
(cherry picked from commit 08d0004b7aa823bedc51c521919faf0d82fe24f2)

diff --git a/translations b/translations
index 13cb89a1658a..96ea34468fb6 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 13cb89a1658a4ecf92cafe2e259351b53d2ea376
+Subproject commit 96ea34468fb6678ff6f378f36f22c19f16166d63


[Libreoffice-commits] translations.git: source/ast source/ca source/cs source/dsb source/es source/gug source/hsb source/pl source/pt-BR

2022-12-21 Thread Christian Lohmaier (via logerrit)
 source/ast/sw/messages.po  |   11 -
 source/ca/helpcontent2/source/text/scalc/00.po |6 
 source/ca/sd/messages.po   |4 
 source/ca/svx/messages.po  |4 
 source/ca/sw/messages.po   |   28 ++--
 source/cs/formula/messages.po  |6 
 source/cs/helpcontent2/source/text/sbasic/shared.po|   90 +++---
 source/cs/sysui/desktop/share.po   |   20 +--
 source/dsb/formula/messages.po |6 
 source/dsb/sysui/desktop/share.po  |   21 +--
 source/es/helpcontent2/source/text/scalc/00.po |6 
 source/es/svx/messages.po  |4 
 source/es/sw/messages.po   |   28 ++--
 source/gug/helpcontent2/source/text/scalc/00.po|6 
 source/hsb/formula/messages.po |6 
 source/hsb/helpcontent2/source/text/schart/01.po   |  104 -
 source/hsb/sysui/desktop/share.po  |   21 +--
 source/pl/formula/messages.po  |6 
 source/pl/helpcontent2/source/text/scalc/00.po |   14 +-
 source/pl/helpcontent2/source/text/scalc/guide.po  |   54 
 source/pl/sysui/desktop/share.po   |   20 +--
 source/pt-BR/formula/messages.po   |6 
 source/pt-BR/helpcontent2/source/text/sbasic/shared.po |8 -
 source/pt-BR/helpcontent2/source/text/shared/01.po |   20 +--
 source/pt-BR/sysui/desktop/share.po|   26 ++--
 25 files changed, 263 insertions(+), 262 deletions(-)

New commits:
commit 08d0004b7aa823bedc51c521919faf0d82fe24f2
Author: Christian Lohmaier 
AuthorDate: Thu Dec 22 01:06:38 2022 +0100
Commit: Christian Lohmaier 
CommitDate: Thu Dec 22 01:06:38 2022 +0100

update translations for 7.5.0 rc1

and force-fix errors using pocheck

Change-Id: If01e073a30643a65862a5a7ec1b304448654566f

diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index c7da7e0dc8b..a27d0c0a78a 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -4,7 +4,7 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
 "POT-Creation-Date: 2022-12-19 15:00+0100\n"
-"PO-Revision-Date: 2022-12-19 14:09+\n"
+"PO-Revision-Date: 2022-12-21 23:54+\n"
 "Last-Translator: Adolfo Jayme Barrientos \n"
 "Language-Team: Asturian 
\n"
 "Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
 "X-POOTLE-MTIME: 1542195213.00\n"
 
 #. v3oJv
@@ -26297,7 +26297,7 @@ msgstr ""
 #: sw/uiconfig/swriter/ui/privateuserpage.ui:609
 msgctxt "privateuserpage|label1"
 msgid "Private Data"
-msgstr ""
+msgstr "Datos privaos"
 
 #. 5d2FB
 #: sw/uiconfig/swriter/ui/privateuserpage.ui:617
@@ -30067,10 +30067,9 @@ msgstr "Escueya les regles del idioma qu'usar pa 
ordenar les entraes del índiz.
 
 #. MKA2M
 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1180
-#, fuzzy
 msgctxt "tocindexpage|mainstyleft5"
 msgid "Key type:"
-msgstr "Triba de clave"
+msgstr "Triba de clave:"
 
 #. x3YvG
 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1196
@@ -30154,7 +30153,7 @@ msgstr "Esbilla de llingua"
 #: sw/uiconfig/swriter/ui/translationdialog.ui:71
 msgctxt "LanguageSelectDialog"
 msgid "Select the target language for translation"
-msgstr ""
+msgstr "Esbilla la llingua de destín de la torna"
 
 #. od8Zz
 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:42
diff --git a/source/ca/helpcontent2/source/text/scalc/00.po 
b/source/ca/helpcontent2/source/text/scalc/00.po
index 8480cf14030..0da3c4e79d9 100644
--- a/source/ca/helpcontent2/source/text/scalc/00.po
+++ b/source/ca/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
 "POT-Creation-Date: 2022-11-22 14:43+0100\n"
-"PO-Revision-Date: 2022-10-22 12:14+\n"
+"PO-Revision-Date: 2022-12-21 22:17+\n"
 "Last-Translator: Adolfo Jayme Barrientos \n"
 "Language-Team: Catalan 
\n"
 "Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
 "X-Language: ca\n"
 "X-POOTLE-MTIME: 1551190063.00\n"
 
@@ -276,7 +276,7 @@ msgctxt ""
 "par_id3148947\n"
 "help.text"
 msgid "Choose View - 

[Libreoffice-commits] core.git: translations

2022-12-21 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7db40989c530254b1a95a83e30e89e004f92e29d
Author: Christian Lohmaier 
AuthorDate: Thu Dec 22 01:11:03 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Dec 22 00:11:03 2022 +

Update git submodules

* Update translations from branch 'master'
  to 08d0004b7aa823bedc51c521919faf0d82fe24f2
  - update translations for 7.5.0 rc1

and force-fix errors using pocheck

Change-Id: If01e073a30643a65862a5a7ec1b304448654566f

diff --git a/translations b/translations
index bd369936bec0..08d0004b7aa8 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit bd369936bec0c2cc1934026a09e4ceb361b7de7f
+Subproject commit 08d0004b7aa823bedc51c521919faf0d82fe24f2


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

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||145845


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145845
[Bug 145845] Impress gradient is not displayed the same way in edit mode and
slide show
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103610

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||145845


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145845
[Bug 145845] Impress gradient is not displayed the same way in edit mode and
slide show
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 36766] [META] Impress Gradient and Transparency issues

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36766

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||145845


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145845
[Bug 145845] Impress gradient is not displayed the same way in edit mode and
slide show
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145845] Impress gradient is not displayed the same way in edit mode and slide show

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145845

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|EDITING - Impress Gradient  |Impress gradient is not
   |Issue : gradient is not |displayed the same way in
   |displayed the same way in   |edit mode and slide show
   |work space and slide show   |
 CC||l.lu...@collabora.com,
   ||stephane.guillou@libreoffic
   ||e.org
   Keywords||bibisectRequest, regression
Version|7.2.2.2 release |7.1.0.3 release
 Blocks||36766, 103610, 129062

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
(In reply to Kurt Huwig from comment #4)
> Still reproducible in
> 
> Version: 7.3.4.2 / LibreOffice Community
> Build ID: 30(Build:2)
> CPU threads: 12; OS: Linux 5.18; UI render: default; VCL: gtk3
> Locale: de-DE (de_DE.utf8); UI: de-DE
> 7.3.4-2
> Calc: threaded

I can't reproduce on Linux with either attachment, with LO 7.2 or 7.3:

Version: 7.3.7.2 / LibreOffice Community
Build ID: e114eadc50a9ff8d8c8a0567d6da8f454beeb84f
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: de-DE (en_AU.UTF-8); UI: en-US
Calc: threaded

I think what Gwenaël describes is specific to Windows+Skia, so if you still see
an issue on Linux, Kurt, please report it in a separate bug.

I can't reproduce it on Windows with Skia turned off, but I can with it turned
on:

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

In such a recent version of LO, it looks slightly different because of the
regression reported in bug 147645.

The issue Gwenaẽl can see in LO 7.2, I can see exactly as described in
attachment 176438:

Version: 7.2.0.3 (x64) / LibreOffice Community
Build ID: 2a7ea282da28d665a7dc086360567b4aea27bf08
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

It's the same in 7.1:

Version: 7.1.0.3 (x64) / LibreOffice Community
Build ID: f6099ecf3d29644b5008cc8f48f42f4a40986e4c
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

But not in 7.0:

Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-GB
Calc: threaded

It is therefore a regression.
(In 7.0, the gradient is correct but shows visible lines along the gradient,
which was fixed in bug 136523.)

A few gradient-related fixes made it into LO 7.1:
https://bugs.documentfoundation.org/buglist.cgi?bug_status=RESOLVED_status=VERIFIED=status_whiteboard_id=1539605=substring_format=advanced=FIXED_desc=gradient_desc_type=allwordssubstr=target%3A7.1

Lubos, you did a fair bit of that gradient work for 7.1, would you mind having
a look?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=36766
[Bug 36766] [META] Impress Gradient and Transparency issues
https://bugs.documentfoundation.org/show_bug.cgi?id=103610
[Bug 103610] [META] Slide show (presentation mode) bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
[Bug 129062] [META] Skia library bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152549] Line numbering horizontal placement options missing Start and End for better RTL support

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152549

--- Comment #6 from Eyal Rozenberg  ---
(In reply to Regina Henschel from comment #5)
> Traditional east Asian top-to-bottom writing mode has page bound on the
> right hand side, see section 2.2.3 in
> https://www.w3.org/2007/02/japanese-layout/docs/aligned/japanese-layout-
> requirements-en.html

Ok, but - not all printed items follow the same binding style. Still, this is a
minor point, so never mind.

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

[Libreoffice-ux-advise] [Bug 152549] Line numbering horizontal placement options missing Start and End for better RTL support

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152549

--- Comment #6 from Eyal Rozenberg  ---
(In reply to Regina Henschel from comment #5)
> Traditional east Asian top-to-bottom writing mode has page bound on the
> right hand side, see section 2.2.3 in
> https://www.w3.org/2007/02/japanese-layout/docs/aligned/japanese-layout-
> requirements-en.html

Ok, but - not all printed items follow the same binding style. Still, this is a
minor point, so never mind.

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

[Libreoffice-bugs] [Bug 118017] [META] macOS Dark Mode bugs and enhancements

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118017

steve  changed:

   What|Removed |Added

 Depends on||152637


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152637
[Bug 152637] macOS: dark mode: calc: Format Cells: example text black on dark
background
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152637] macOS: dark mode: calc: Format Cells: example text black on dark background

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152637

steve  changed:

   What|Removed |Added

 CC||caol...@redhat.com
   Priority|medium  |low
 Blocks||118017


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 152637] macOS: dark mode: calc: Format Cells: example text black on dark background

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152637

--- Comment #1 from steve  ---
Created attachment 184303
  --> https://bugs.documentfoundation.org/attachment.cgi?id=184303=edit
dark mode. wrong text color

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

[Libreoffice-bugs] [Bug 152617] Background of labels in Dialog Editor use wrong color

2022-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152617

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.6.0|target:7.6.0
   ||target:7.5.0.0.beta2

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

  1   2   3   4   5   >