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

2022-09-26 Thread Noel Grandin (via logerrit)
 dbaccess/source/core/api/SingleSelectQueryComposer.cxx |8 ++---
 dbaccess/source/core/misc/dsntypes.cxx |4 +-
 dbaccess/source/core/recovery/dbdocrecovery.cxx|   23 -
 dbaccess/source/filter/hsqldb/rowinputbinary.cxx   |4 +-
 dbaccess/source/filter/hsqldb/utils.cxx|4 +-
 dbaccess/source/filter/hsqldb/utils.hxx|2 -
 dbaccess/source/inc/dsntypes.hxx   |2 -
 dbaccess/source/ui/control/SqlNameEdit.cxx |8 ++---
 dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx  |2 -
 dbaccess/source/ui/dlg/DbAdminImpl.hxx |4 +-
 dbaccess/source/ui/dlg/TextConnectionHelper.cxx|   14 +++---
 dbaccess/source/ui/dlg/dbwizsetup.cxx  |8 ++---
 dbaccess/source/ui/inc/SqlNameEdit.hxx |2 -
 13 files changed, 46 insertions(+), 39 deletions(-)

New commits:
commit 1026527a517fbdf35392d97f89b470a02d2e40e0
Author: Noel Grandin 
AuthorDate: Mon Sep 26 15:50:56 2022 +0200
Commit: Noel Grandin 
CommitDate: Tue Sep 27 07:59:08 2022 +0200

use more string_view in dbaccess

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

diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx 
b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
index f69742d4422a..45d9a8ce6595 100644
--- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
+++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
@@ -1524,9 +1524,9 @@ OUString OSingleSelectQueryComposer::getStatementPart( 
TGetParseNode const & _aG
 
 namespace
 {
-OUString lcl_getDecomposedColumnName(const OUString& rComposedName, const 
OUString& rQuoteString)
+OUString lcl_getDecomposedColumnName(const OUString& rComposedName, 
std::u16string_view rQuoteString)
 {
-const sal_Int32 nQuoteLength = rQuoteString.getLength();
+const size_t nQuoteLength = rQuoteString.size();
 OUString sName = rComposedName.trim();
 OUString sColumnName;
 sal_Int32 nPos, nRPos = 0;
@@ -1539,7 +1539,7 @@ namespace
 nRPos = sName.indexOf( rQuoteString, nPos + nQuoteLength );
 if ( nRPos > nPos )
 {
-if ( nRPos + nQuoteLength < sName.getLength() )
+if ( static_cast(nRPos + nQuoteLength) < 
sName.getLength() )
 {
 nRPos += nQuoteLength; // -1 + 1 skip dot
 }
@@ -1561,7 +1561,7 @@ namespace
 OUString lcl_getCondition(const Sequence< Sequence< PropertyValue > >& 
filter,
 const OPredicateInputController& i_aPredicateInputController,
 const Reference< XNameAccess >& i_xSelectColumns,
-const OUString& rQuoteString)
+std::u16string_view rQuoteString)
 {
 OUStringBuffer sRet;
 const Sequence< PropertyValue >* pOrIter = filter.getConstArray();
diff --git a/dbaccess/source/core/misc/dsntypes.cxx 
b/dbaccess/source/core/misc/dsntypes.cxx
index 91b93f353946..0038e0968c77 100644
--- a/dbaccess/source/core/misc/dsntypes.cxx
+++ b/dbaccess/source/core/misc/dsntypes.cxx
@@ -106,7 +106,7 @@ OUString ODsnTypeCollection::cutPrefix(std::u16string_view 
_sURL) const
 return sRet;
 }
 
-OUString ODsnTypeCollection::getPrefix(const OUString& _sURL) const
+OUString ODsnTypeCollection::getPrefix(std::u16string_view _sURL) const
 {
 OUString sRet;
 OUString sOldPattern;
@@ -119,7 +119,7 @@ OUString ODsnTypeCollection::getPrefix(const OUString& 
_sURL) const
 //   foo*
 // that is, the very concept of "prefix" applies.
 sRet = comphelper::string::stripEnd(dsnPrefix, '*');
-OSL_ENSURE(sRet.getLength() <= _sURL.getLength(), "How can A match 
B when A shorter than B?");
+OSL_ENSURE(sRet.getLength() <= 
static_cast(_sURL.size()), "How can A match B when A shorter than 
B?");
 sOldPattern = dsnPrefix;
 }
 }
diff --git a/dbaccess/source/core/recovery/dbdocrecovery.cxx 
b/dbaccess/source/core/recovery/dbdocrecovery.cxx
index e027cc834e37..1c8763c02b4c 100644
--- a/dbaccess/source/core/recovery/dbdocrecovery.cxx
+++ b/dbaccess/source/core/recovery/dbdocrecovery.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -65,23 +66,23 @@ namespace dbaccess
 o_rBuffer.append( sal_Unicode( i_rComponentDesc.second.bForEditing 
? '1' : '0' ) );
 }
 
-bool lcl_extractCompDesc( const OUString& i_rIniLine, OUString& 
o_rStorName, SubComponentDescriptor& o_rCompDesc )
+bool lcl_extractCompDesc( std::u16string_view i_rIniLine, OUString& 
o_rStorName, SubComponentDescriptor& o_rCompDesc )
 {
-const sal_Int32 nEqualSignPos = i_rIniLine.indexOf( '=' );
-

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

2022-09-26 Thread Noel Grandin (via logerrit)
 connectivity/source/drivers/hsqldb/HStorageMap.cxx  |4 +-
 connectivity/source/drivers/postgresql/pq_statement.cxx |6 +--
 connectivity/source/drivers/postgresql/pq_statement.hxx |2 -
 connectivity/source/drivers/postgresql/pq_tools.cxx |   28 
 connectivity/source/drivers/postgresql/pq_tools.hxx |4 +-
 connectivity/source/inc/hsqldb/HStorageMap.hxx  |2 -
 6 files changed, 23 insertions(+), 23 deletions(-)

New commits:
commit 23a7bdecee5278673a7c79286fb3faea553a85b2
Author: Noel Grandin 
AuthorDate: Mon Sep 26 15:49:48 2022 +0200
Commit: Noel Grandin 
CommitDate: Tue Sep 27 07:58:41 2022 +0200

use more string_view in connectivity

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

diff --git a/connectivity/source/drivers/hsqldb/HStorageMap.cxx 
b/connectivity/source/drivers/hsqldb/HStorageMap.cxx
index 4d4863619186..01a9c3d34be3 100644
--- a/connectivity/source/drivers/hsqldb/HStorageMap.cxx
+++ b/connectivity/source/drivers/hsqldb/HStorageMap.cxx
@@ -132,9 +132,9 @@ namespace connectivity::hsqldb
 return OUString::number(s_nCount++);
 }
 
-OUString StorageContainer::removeURLPrefix(std::u16string_view 
_sURL,const OUString& _sFileURL)
+OUString StorageContainer::removeURLPrefix(std::u16string_view _sURL, 
std::u16string_view _sFileURL)
 {
-return OUString(_sURL.substr(_sFileURL.getLength()+1));
+return OUString(_sURL.substr(_sFileURL.size()+1));
 }
 
 OUString StorageContainer::removeOldURLPrefix(const OUString& _sURL)
diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx 
b/connectivity/source/drivers/postgresql/pq_statement.cxx
index 1dc5e8c420f6..9622bfee6b7a 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.cxx
@@ -590,7 +590,7 @@ Reference< XResultSet > getGeneratedValuesFromLastInsert(
 ConnectionSettings *pConnectionSettings,
 const Reference< XConnection > ,
 sal_Int32 nLastOid,
-const OUString & lastTableInserted,
+std::u16string_view lastTableInserted,
 const OString & lastQuery )
 {
 Reference< XResultSet > ret;
@@ -599,7 +599,7 @@ Reference< XResultSet > getGeneratedValuesFromLastInsert(
 splitConcatenatedIdentifier(
 lastTableInserted, ,  );
 
-if( nLastOid && lastTableInserted.getLength() )
+if( nLastOid && lastTableInserted.size() )
 {
 OUStringBuffer buf( 128 );
 buf.append( "SELECT * FROM " );
@@ -611,7 +611,7 @@ Reference< XResultSet > getGeneratedValuesFromLastInsert(
 buf.append( nLastOid );
 query = buf.makeStringAndClear();
 }
-else if ( lastTableInserted.getLength() && lastQuery.getLength() )
+else if ( lastTableInserted.size() && lastQuery.getLength() )
 {
 // extract nameValue Pairs
 String2StringMap namedValues;
diff --git a/connectivity/source/drivers/postgresql/pq_statement.hxx 
b/connectivity/source/drivers/postgresql/pq_statement.hxx
index fae6568bb505..816d2a55afaa 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.hxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.hxx
@@ -189,7 +189,7 @@ css::uno::Reference< css::sdbc::XResultSet > 
getGeneratedValuesFromLastInsert(
 ConnectionSettings *pConnectionSettings,
 const css::uno::Reference< css::sdbc::XConnection > ,
 sal_Int32 nLastOid,
-const OUString & lastTableInserted,
+std::u16string_view lastTableInserted,
 const OString & lastQuery );
 
 
diff --git a/connectivity/source/drivers/postgresql/pq_tools.cxx 
b/connectivity/source/drivers/postgresql/pq_tools.cxx
index 94f032f8c128..b9ff495a5105 100644
--- a/connectivity/source/drivers/postgresql/pq_tools.cxx
+++ b/connectivity/source/drivers/postgresql/pq_tools.cxx
@@ -315,30 +315,30 @@ bool isWhitespace( sal_Unicode c )
 return ' ' == c || 9 == c || 10 == c || 13 == c;
 }
 
-OUString extractTableFromInsert( const OUString & sql )
+OUString extractTableFromInsert( std::u16string_view sql )
 {
 OUString ret;
-int i = 0;
-while (i < sql.getLength() && isWhitespace(sql[i])) { i++; }
+size_t i = 0;
+while (i < sql.size() && isWhitespace(sql[i])) { i++; }
 
-if( sql.matchIgnoreAsciiCase("insert", i) )
+if( o3tl::matchIgnoreAsciiCase(sql, u"insert", i) )
 {
 i += 6;
-while (i < sql.getLength() && isWhitespace(sql[i])) { i++; }
-if( sql.matchIgnoreAsciiCase("into", i) )
+while (i < sql.size() && isWhitespace(sql[i])) { i++; }
+if( o3tl::matchIgnoreAsciiCase(sql, u"into", i) )
 {
 i +=4;
-while (i < sql.getLength() && isWhitespace(sql[i])) { i++; }
+while (i < sql.size() && isWhitespace(sql[i])) { i++; }
 int start = i;
 

[Libreoffice-bugs] [Bug 140265] Emoji selector takes too long to load and respond

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140265

خالد حسني  changed:

   What|Removed |Added

 CC||kha...@aliftype.com
 OS|All |Linux (All)

--- Comment #10 from خالد حسني  ---
It seems that most of the time is spent in glyph fallback, which matches my
experience that the font the emoji widget sets is unused and the default font
is used and then glyph fallback is used to select fonts with emoji and this
seems to be extremely slow on Linux.

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

[Libreoffice-bugs] [Bug 140265] Emoji selector takes too long to load and respond

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140265

خالد حسني  changed:

   What|Removed |Added

 CC||med.medin.2...@gmail.com

--- Comment #9 from خالد حسني  ---
*** Bug 136922 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 136922] Emoji selector is slow

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136922

خالد حسني  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||kha...@aliftype.com
 Status|NEW |RESOLVED

--- Comment #9 from خالد حسني  ---


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

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

[Libreoffice-bugs] [Bug 150922] Default Arabic style names have a gratuitous definite article marker

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150922

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 150916] Bibliography entry creation does not update type if selected from dropdown

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150916

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 147672] Crash in: SwContentNode::GetAttr(SfxItemSet &) fails during Spell-Check Editing

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147672

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 150907] Capitalize not working after tamil content.

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150907

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 150907] Capitalize not working after tamil content.

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150907

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

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

[Libreoffice-bugs] [Bug 147672] Crash in: SwContentNode::GetAttr(SfxItemSet &) fails during Spell-Check Editing

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147672

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140507] embedded pictures disappear when name changed

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140507

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140650] And easy the select a collection of shapes for grouping

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140650

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140650] And easy the select a collection of shapes for grouping

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140650

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152
Bug 103152 depends on bug 140507, which changed state.

Bug 140507 Summary: embedded pictures disappear when name changed
https://bugs.documentfoundation.org/show_bug.cgi?id=140507

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140507] embedded pictures disappear when name changed

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140507

--- Comment #10 from QA Administrators  ---
Dear Dr. Matthias Weisser,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 147773] FILEOPEN: Draw imports images with wrong size

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147773

--- Comment #2 from QA Administrators  ---
Dear sekret,

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 96387] deadlock in HSQLDB

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96387

--- Comment #4 from QA Administrators  ---
Dear Michael Stahl (CIB),

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 98491] Split hsqldb Base application will not start under OSX10.11.x causes LO to freeze requiring force kill

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98491

--- Comment #17 from QA Administrators  ---
Dear jay Arr,

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 95191] Forms and dialogs opened via macros on ODB file open no longer work

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95191

--- Comment #35 from QA Administrators  ---
Dear antonio,

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 88239] Impress: Wrong icon in new presentantions for changed default slide master in the slidemaster's pane in the sidebar.

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88239

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

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 54930] EDITING Report builder: mouse-resize control allows to move top of control to out of section

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54930

--- Comment #11 from QA Administrators  ---
Dear Lionel Elie Mamane,

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 87737] EDITING: Date-parameter in HSQLDB-queries don't work in UI-language, if parameter is only in subquery

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87737

--- Comment #13 from QA Administrators  ---
Dear Robert Großkopf,

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 91814] Problem when copying large table with floating-point values from Calc to Base (HSQLDB)

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91814

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

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 36546] Internal HSQLDB 1.8 fails to cascade updates through multiple paths and deletions through some cyclic structures

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36546

--- Comment #27 from QA Administrators  ---
Dear R.D.Nielsen,

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 53473] Embedded HSQLDB calls flush (CHECKPOINT) too often

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53473

--- Comment #18 from QA Administrators  ---
Dear Lionel Elie Mamane,

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 136993] Unwanted scroll after pressing undo for moving frame in header

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136993

--- Comment #2 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 136540] Unwanted scroll when deleting all comments by an author

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136540

--- 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 136131] FORMCONTROLS: Numerical & Formatted Field Form Controls Value Limits Don't Save User Inputs & Returns To Default +/- 1000000

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136131

--- Comment #6 from QA Administrators  ---
Dear sims.316,

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 132888] Inconsistency with drag and drop and adding spaces

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132888

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 132879] UI: The dialog always showing the "To frame" option, even when not applicable (see comment 1)

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132879

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 112628] Disable 'Header and Footer' when in master slide mode

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112628

--- Comment #5 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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 106336] EDITING: Copying column or row to another one with different width doesn't reposition image correctly

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106336

--- Comment #8 from QA Administrators  ---
Dear Thomas Lendo,

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 100940] Clicking the right mouse button scrolls a page

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100940

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

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 151196] FORMATTING "MM/DD/YYYY HH:MM" won't wrap (wrapping uses pre-formatted data?)

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151196

--- Comment #1 from Jim Avera  ---
Created attachment 182692
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182692=edit
Small demo spreadsheet

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

[Libreoffice-bugs] [Bug 151196] New: FORMATTING "MM/DD/YYYY HH:MM" won't wrap (wrapping uses pre-formatted data?)

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151196

Bug ID: 151196
   Summary: FORMATTING "MM/DD/ HH:MM" won't wrap (wrapping
uses pre-formatted data?)
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jim.av...@gmail.com

Description:
If a Calc cell has Alignment set to "wrap", a formatted date with time which
contains a space should wrap at the space.  But it does not wrap.

Instead "###" appears.

It is as if the text-wrapping machine works on the cell value before applying
formatting, which in this case introduces a space where wrapping can occur.  If
that is true, then I think wrapping should use the post-formatted value.

Steps to Reproduce:
(Demo spreadsheet will be attached to this bug)

1.  Format a cell with with the Number Format set to a Date form which
introduces a space, for example format code MM/DD/YY HH:MM AM/PM (note space
between date and time).

2. Set the "Alignment" format to "Wrap"
3. Increase the height of the cell to allow several lines to be visible.
4. Store a value in the cell, for example 9/10/11 12:13:14
4. Adjust the column width to be slightly too narrow for the entire date & time

Actual Results:
"###" appears in the cell

Expected Results:
Value should be wrapped, e.g.

09/10/11
12:13:14


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.8.0.0+
Build ID: 71a3f015f2ac45ad4a2625a3b6398f5d75feed40
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-4, Time:
2020-10-01_08:33:37
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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

[Libreoffice-commits] core.git: Changes to 'refs/tags/cib-6.4-10'

2022-09-26 Thread Michael Stahl (via logerrit)
Tag 'cib-6.4-10' created by Thorsten Behrens  
at 2022-09-27 00:38 +

Release CIB Office 6.4-10
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEEF13c36gxow74AXmeM3dpmHHuF/gFAmMyRg5fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDE3
NUREQ0RGQTgzMUEzMEVGODAxNzk5RTMzNzc2OTk4NzFFRTE3RjgACgkQM3dpmHHu
F/h7vQ//YmzKLGGcE0Uas2NkzVE42zoeJq20BkK3jicIaBCtlBc4IoSelNM0W9op
n19SWvB/a+dGjtFvDiCYoZ1KsN9PqX4fb7p2nwoDQtOQRxmy5mk7IiWyFq5X1z/3
9qAQvMILFE+M2XxsvE2sIOg15y+IKO64dq81sC0YlRgc1sHWtUe9Ul6LwV35+Sol
7o1LniXKjjfiCdsuaeNBRdebpQEGeiV+hzpFa2D3OApVh8p3+UPnjtR69PMMhqVe
HLXnVhzsmAcOARFn6/vJE80rT5YlN5rXRzupipRkaB9QqEbYu25RedcmHs1e94g2
ICk+7IUG72+ftIp+tl8/e6bGfmQwULu9AD1UuQ9MeBMJs/AZMmU6Qd6zr81bSKTt
PghxuZQj2usjN7uC4FFByktuvTbCmqtiqma/oL9bAWOW2gRsjgDqKS3aD/7tNDjv
udqrhs8eG5NUX5ehMaZpcttntlStkqM1Qv3cGAq1k3MftMVNWSkQrzUrhgRM6S+S
htpgec1v1jjkr8pq03Z01Ei1BMuUs57n+/TG4RDfoPLuFs4bT4zHoN7LwPGwhK6M
dCI2pH6qcFsDnAhq6aFiSSX2YxBClsKAf9jWzf85JinMB4hupc6v2wiXPwBEnudG
h2DB7cDD5UjGvtmJz7BtH8aDOGSDHsfP4YkysJ+2u+rUV2JsKJA=
=mdIH
-END PGP SIGNATURE-

Changes since cib-6.4-9-127:
---
 0 files changed
---


[Libreoffice-commits] core.git: Changes to 'refs/tags/cib-6.1-37'

2022-09-26 Thread Vasily Melenchuk (via logerrit)
Tag 'cib-6.1-37' created by Thorsten Behrens  
at 2022-09-26 07:46 +

Release CIB Office 6.1-37
-BEGIN PGP SIGNATURE-

iQKTBAABCgB9FiEEF13c36gxow74AXmeM3dpmHHuF/gFAmMxWL1fFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDE3
NUREQ0RGQTgzMUEzMEVGODAxNzk5RTMzNzc2OTk4NzFFRTE3RjgACgkQM3dpmHHu
F/ggLA//f11Iv6eJJvR06zFm5K8IL1ZEp1OEXl54QR4CQ9IpEh7ffx2oAfxuj5u1
x1M4Au5n13zzenj0SnqrLK665lM5MRitJV8NontlMOM+7Okt33zwJ/fPHduhNsgs
aJxu15/GyXEFWY+KQN1514JFfxgMxHlo9LBcKzUQ6CkjqumVA7eslt3BL+i696E1
10BLI/CW9yZeIQi38R5QRTEVarvH+trhNTeNOtrnlO0lLiFGqj/xpOvg/DbLtzlm
YgXOfUCq9VYcVcqgmwU5JutnQbLc1BV7FVzvbZ1N/4Z7P1afmq91XGxbb0K6KRMP
xSUHGuAxaYivg0Q7uQhB4ZfgJ5g0vdRXAnKG7sHuECHTVMzckEt8wvSkINAu8Qz7
gDA1feImxLGbiaY6EuE+ceeuOwdMbnFlRb/f2M2zOpqoL3a5cxl2GrqlJMvE6xM+
HVjUGn4st6mUtf6W1XorHNvCmtkrO7VKlzf0Mwm0MdfAiScTpa3YXK65Kg00rMs6
v8ymfUh12vXUvxWnkWaITZX7BjSN/OLTVKp+QHLenUoZP8AaUM1DdClFztC5hgH3
Bc80TtjXNsUrDQs9AW/RdeHLZPdpv3jmB8K7qBqrBKBAo62szNYUo9r1nbLLsa54
DYigxqYCS9B73NNSW0qD3YnVpwOd7sCwjeWGLMb+jRPbcgmbHzo=
=TxV3
-END PGP SIGNATURE-

Changes since cib-6.1-36-10:
---
 0 files changed
---


[Libreoffice-bugs] [Bug 151195] does not recognize characters

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151195

--- Comment #1 from alphasquadsni...@gmail.com ---
Created attachment 182691
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182691=edit
picture of smashed minimization

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

[Libreoffice-bugs] [Bug 151195] New: does not recognize characters

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151195

Bug ID: 151195
   Summary: does not recognize characters
   Product: LibreOffice
   Version: 7.3.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: alphasquadsni...@gmail.com

Description:
when highlighting columns, placing the cursor in between columns and double
clicking to minimize them to character size. it doesn't recognize some of the
characters and shrinks too far. 

Actual Results:
when highlighting columns, placing the cursor in between columns and double
clicking to minimize them to character size. it doesn't recognize some of the
characters and shrinks too far. 

Expected Results:
shrunk columns down so the information was just a "#"


Reproducible: Always


User Profile Reset: No



Additional Info:
Removed extra empty space after the information

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

[Libreoffice-bugs] [Bug 37967] VIEWING: Option like "MS WORD's normal view" needed

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37967

--- Comment #23 from ero...@aol.com ---
How is Bug 121107 ("hide whitespace" not persistent) a duplicate of this bug?

Bug 121107 an independent bug of its own, whether on not one considers "hide
whitespace" to be a reasonable and adequate resolution of this bug 37967 -
'Option like "MS WORD's normal view" needed'

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

[Libreoffice-bugs] [Bug 109362] [META] Custom/object animation bugs and enhancements

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109362

Rafael Lima  changed:

   What|Removed |Added

 Depends on||151173


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151173
[Bug 151173] Shadow appears before object entrance animation is scheduled
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 151173] Shadow appears before object entrance animation is scheduled

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151173

Rafael Lima  changed:

   What|Removed |Added

 Blocks||109362


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 151173] Shadow appears before object entrance animation is scheduled

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151173

Rafael Lima  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Rafael Lima  ---
Repro with

Version: 7.2.6.2 / LibreOffice Community
Build ID: b0ec3a565991f7569a5a7f5d24fed7f52653d754
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

And with

Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: 8b5a989dcdcf4edd50c9fdb092d4180432ce4b6a
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: CL threaded

The red shadow is visible when you start the presentation (it should not be
visible). Then the black text appears on click.

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

[Libreoffice-bugs] [Bug 61914] [META] Start Center bugs and enhancements

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914

Rafael Lima  changed:

   What|Removed |Added

 Depends on||151159


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151159
[Bug 151159] StartCenter: Document Filter: rename from `All Applications` to
`All Documents`
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 151159] StartCenter: Document Filter: rename from `All Applications` to `All Documents`

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151159

Rafael Lima  changed:

   What|Removed |Added

 Blocks||61914


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=61914
[Bug 61914] [META] Start Center bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 151159] StartCenter: Document Filter: rename from `All Applications` to `All Documents`

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151159

Rafael Lima  changed:

   What|Removed |Added

 Blocks||61914


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 151159] StartCenter: Document Filter: rename from `All Applications` to `All Documents`

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151159

Rafael Lima  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #3 from Rafael Lima  ---
Let's hear the opinion of the UX team.

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

[Libreoffice-ux-advise] [Bug 151159] StartCenter: Document Filter: rename from `All Applications` to `All Documents`

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151159

Rafael Lima  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #3 from Rafael Lima  ---
Let's hear the opinion of the UX team.

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

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

2022-09-26 Thread Eike Rathke (via logerrit)
 svl/source/numbers/zforfind.cxx |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

New commits:
commit 0d3dd0aa54ad792f91d0905f3d46c13df3512d89
Author: Eike Rathke 
AuthorDate: Mon Sep 26 22:52:02 2022 +0200
Commit: Eike Rathke 
CommitDate: Tue Sep 27 00:33:39 2022 +0200

Prevent erroneous fraction detection of not yet accepted date

May had happened if the locale's date separator is not '/' but a
preset format uses it (for example DD/MM/) and the locale's
date acceptance patterns do not contain D/M/Y so the first '/' did
not already lead to a possible date before a match against the
format is to be tried.

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

diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx
index a30bbf600ef6..56c929e44407 100644
--- a/svl/source/numbers/zforfind.cxx
+++ b/svl/source/numbers/zforfind.cxx
@@ -2633,15 +2633,17 @@ bool ImpSvNumberInputScan::ScanMidString( const 
OUString& rString, sal_uInt16 nS
 if (SkipChar('/', rString, nPos))   // fraction?
 {
 if ( eScannedType != SvNumFormatType::UNDEFINED &&  // already another 
type
- eScannedType != SvNumFormatType::DATE)   // except date
+ eScannedType != SvNumFormatType::DATE) // except date
 {
-return MatchedReturn(); // => jan/31/1994
+return MatchedReturn(); // => jan/31/1994
 }
-else if (eScannedType != SvNumFormatType::DATE &&// analyzed no 
date until now
- ( eSetType == SvNumFormatType::FRACTION ||  // and preset was 
fraction
-   (nNumericsCnt == 3 && // or 3 numbers
-(nStringPos == 3 ||  // and 3rd string 
particle
- (nStringPos == 4 && nSign)  // or 4th  if signed
+else if (eScannedType != SvNumFormatType::DATE &&   // analyzed no 
date until now
+ (eSetType == SvNumFormatType::FRACTION ||  // and preset was 
fraction
+  (nNumericsCnt == 3 && // or 3 numbers
+   (nStringPos == 3 ||  // and 4th string 
particle
+(nStringPos == 4 && nSign)) &&  // or 5th if signed
+   sStrArray[nStringPos-2].indexOf('/') == -1)))  // and not 
23/11/1999
+  // that was 
not accepted as date yet
 {
 SkipBlanks(rString, nPos);
 if (nPos == rString.getLength())


[Libreoffice-bugs] [Bug 134941] Start screen is bigger than desktop resolution

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134941

Rafael Lima  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 151194] VIEWING: Cannot maximize LO start center window when using low resolution screen

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151194

Rafael Lima  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 151194] VIEWING: Cannot maximize LO start center window when using low resolution screen

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151194

--- Comment #2 from Rafael Lima  ---
Created attachment 182690
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182690=edit
Screenshot of Start Center on 1366 x 768 (with panel)

I could NOT reproduce this with

Version: 7.3.6.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.6-0ubuntu0.22.04.1
Calc: threaded

I tested with a 1366 x 768 display on Kubuntu. The Start Center window
maximized as expected.

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

[Libreoffice-bugs] [Bug 151156] Accessing Help - LibreOffice Help results in "File not found" error

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151156

Rafael Lima  changed:

   What|Removed |Added

Summary|File not found  |Accessing Help -
   ||LibreOffice Help results in
   ||"File not found" error

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

[Libreoffice-bugs] [Bug 151152] Autofilter checkbox status is wrong when I deselect one item, click OK, then click on the dropdown again (2nd case)

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151152

Rafael Lima  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Rafael Lima  ---
Repro with

Version: 7.3.6.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.6-0ubuntu0.22.04.1
Calc: threaded

Also repro with

Version: 7.5.0.0.alpha0+ / LibreOffice Community
Build ID: 8b5a989dcdcf4edd50c9fdb092d4180432ce4b6a
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: CL threaded

It does filter correctly though. But the "2020-01-4" entry remains checked in
the AutoFilter even after unchecking it.

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

[Libreoffice-bugs] [Bug 151188] Area-Fill color in Sidebar is not selected on click on the 1st element

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151188

Rafael Lima  changed:

   What|Removed |Added

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

--- Comment #2 from Rafael Lima  ---
Isn't this related to bug 150802 ?

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

[Libreoffice-bugs] [Bug 151188] Area-Fill color in Sidebar is not selected on click on the 1st element

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151188

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com
   Keywords||bibisectRequest
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Rafael Lima  ---
Repro with

Version: 7.4.0.3 / LibreOffice Community
Build ID: f85e47c08ddd19c015c0114a68350214f7066f5a
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

Not repro with

Version: 7.3.6.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 1:7.3.6-0ubuntu0.22.04.1
Calc: threaded

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

[Libreoffice-bugs] [Bug 151194] VIEWING: Cannot maximize LO start center window when using low resolution screen

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151194

tr_mail_...@t-online.de changed:

   What|Removed |Added

 Attachment #182689|Bottom part of main window  |Bottom part of main window
description|hidden behind task bar  |("help" and "extensions"
   ||buttons) hidden behind task
   ||bar

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

[Libreoffice-bugs] [Bug 151194] VIEWING: Cannot maximize LO start center window when using low resolution screen

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151194

--- Comment #1 from tr_mail_...@t-online.de ---
Created attachment 182689
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182689=edit
Bottom part of main window hidden behind task bar

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

[Libreoffice-bugs] [Bug 151194] New: VIEWING: Cannot maximize LO start center window when using low resolution screen

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151194

Bug ID: 151194
   Summary: VIEWING: Cannot maximize LO start center window when
using low resolution screen
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tr_mail_...@t-online.de

Description:
When starting LO 7.3 start center / main window (the window that shows the
recently used documents) I cannot maximize this very window as apparently its
minimum height is larger than the available size on my 1366x768 laptop screen.
The lowest part of the window gets hidden behind my DEs task bar (see attached
screenshot). The window is about ~38px too tall although there is plenty of
free vertical space within the window.

While this itself is a minor problem, the non-maximized state is taken over by
every opened document such that, e.g., in a Calc document the status bar and
sheets tabs will then as well be hidden behind the task bar. I always have to
manually maximize the window after opening a document from start center.

First observed this behavior after updating from version 7.2.7.5 to 7.3.6.2.
Looks like the start center has been slightly rearranged in 7.3.

See also this old thread, same problem with different version and even smaller
resolution:
https://ask.libreoffice.org/t/screen-too-small-for-libreoffice/18381

Operating system:
- ArchLinux

Desktop environment:
- XFCE

Steps to Reproduce:
1. Use screen with low resolution such as 1366x768
2. Start LibreOffice main window / start center

Actual Results:
Window does not start maximized and cannot be maximized

Expected Results:
Minimum window height should be smaller / window should be maximizable


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 7.3.6.2 / LibreOffice Community
Build ID: 30(Build:2)
CPU threads: 4; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: de-DE (de_DE.UTF-8); UI: de-DE
7.3.6-2
Calc: threaded

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

[Libreoffice-bugs] [Bug 67544] FILESAVE: Slide transistion sound(other sound) is not included in presentation file

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67544

YuNoH  changed:

   What|Removed |Added

 CC||marsupilami...@gmail.com

--- Comment #24 from YuNoH  ---
I had the same issue on LibreOffice Impress 7.3.6.2, custom transition sounds
are only linked, and when sending the odp file to someone else (on another
computer), the sound is gone.
This is especially a big problem if you need to make a soundtrack to the
slides, for a work you need to send to someone else. At least, it should be
stated somewhere that files are only linked, to warn the user that the sound is
not included in the .odp ... Because otherwise the user just notices the
problem at the end of the work, which might cause him big troubles and
annoyances.

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

[Libreoffice-bugs] [Bug 151193] New: Couldn't establish data source connection when Java 18 is installed.

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151193

Bug ID: 151193
   Summary: Couldn't establish data source connection when Java 18
is installed.
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rajasekara...@gmail.com

Created attachment 182688
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182688=edit
Dialog box asking 32 -bit Java installation.

Couldn't establish connection to the existing database file because LibreOffice
Base asks 32-bit version of Java installation. But I already installed latest
version(Java 18) 64-bit on my laptop.

When I try to open the data base file,I get the following dialog box:

"The connection to the data source "Test" couldn't be established.
No Java installation could be found.Please check your installation."

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

[Libreoffice-bugs] [Bug 134408] Character transparency don't work properly in Writer and Calc

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134408

Leandro Martín Drudi  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #16 from Leandro Martín Drudi  ---
In the case of Writer:
7.4.1: Transparency with color Automatic, applies white font color.

In Calc's case:
7.4.1: Transparency is not applied at all.

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

[Libreoffice-bugs] [Bug 134294] Chapter numbering not updated when heading added in between (until heading applied again or reload )

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134294

Björn Michaelsen  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #14 from Björn Michaelsen  ---
(In reply to Timur from comment #13)
> I set New again, as original steps from Description are reproduced for me in
> 7.5+.
> Test Build ID: bb47ffbc9d36e83695aa0d01767d3f83533c04e0, VCL: gtk3

... which is not the current master at the time of my comment. That is older.

This might be relevant as the fix for
https://bugs.documentfoundation.org/show_bug.cgi?id=144939 came in after that
and might also have fixed this one.

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

[Libreoffice-bugs] [Bug 147371] save icon misleading

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147371

Adolfo Jayme Barrientos  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #9 from Adolfo Jayme Barrientos  ---
We already show the icon in a different way to signal when the document has
unsaved changes; we just don’t do it by disabling the icon. You can see commit
22328a224df4619218b88205838307f70612207e for the rationale, but basically, we
want to allow you to save the document whenever you want.

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

[Libreoffice-bugs] [Bug 53976] XLS FILESAVE: File loses it's VBA functionality after saving in latest version(after 3.4)

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53976

Justin L  changed:

   What|Removed |Added

Summary|Calc FILESAVE: File loses   |XLS FILESAVE: File loses
   |it's VBA functionality  |it's VBA functionality
   |after saving in latest  |after saving in latest
   |version(after 3.4)  |version(after 3.4)

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

[Libreoffice-bugs] [Bug 100366] [META] Impress/Draw table bugs and enhancements

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100366

Rafael Lima  changed:

   What|Removed |Added

 Depends on||151185


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151185
[Bug 151185] Impress: Table design icon without function
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 151185] Impress: Table design icon without function

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151185

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com
 Blocks||100366

--- Comment #2 from Rafael Lima  ---
This isn't a bug per se. The "Table Design" command simply opens the Table
Design sidebar. If it is already open, then nothing happens.

(In reply to Timur from comment #1)
> But let's hear UX on changing this icon to dropdown with table designs.

I'm not sure this would be the way to go, because the current implementation of
Table Design needs a deeper rework. Basically, the available set of table
styles is hardcoded (see bug 34391, bug 38213 and bug 74142).

There's also bug 101802 that requests an integration of Table Design across
Writer / Draw / Impress, which seems the better approach.

So I believe that when these enhancements have been made, this bug report will
be automatically fixed. The main question is whether any dev will take on these
huge tasks.

I am an avid user of Impress Tables and I can tell that table support in
Impress/Draw is very lacking and buggy.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100366
[Bug 100366] [META] Impress/Draw table bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 151185] Impress: Table design icon without function

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151185

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com
 Blocks||100366

--- Comment #2 from Rafael Lima  ---
This isn't a bug per se. The "Table Design" command simply opens the Table
Design sidebar. If it is already open, then nothing happens.

(In reply to Timur from comment #1)
> But let's hear UX on changing this icon to dropdown with table designs.

I'm not sure this would be the way to go, because the current implementation of
Table Design needs a deeper rework. Basically, the available set of table
styles is hardcoded (see bug 34391, bug 38213 and bug 74142).

There's also bug 101802 that requests an integration of Table Design across
Writer / Draw / Impress, which seems the better approach.

So I believe that when these enhancements have been made, this bug report will
be automatically fixed. The main question is whether any dev will take on these
huge tasks.

I am an avid user of Impress Tables and I can tell that table support in
Impress/Draw is very lacking and buggy.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 151192] Print Dialog Print Preview: Orientation of page changes after switching paper size to something different and back

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151192

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest

--- Comment #1 from Telesto  ---
Changing paper size doesn't affect orientation with (with orientation set to
automatic)
Version: 6.4.0.0.beta1+ (x64)
Build ID: e75dd1fc992f168f24d66595265a978071cdd277
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL


Impossible to change paper size from LibreOffice Print Dialog
Version: 6.2.9.0.0+ (x86)
Build ID: 5f01fe15eb2661f1f9ce12d1d99dc2a705b462ee
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 151192] New: Print Dialog Print Preview: Orientation of page changes after switching paper size to something different and back

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151192

Bug ID: 151192
   Summary: Print Dialog Print Preview: Orientation of page
changes after switching paper size to something
different and back
   Product: LibreOffice
   Version: 7.5.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Print Dialog Print Preview: Orientation of page changes after switching paper
size to something different and back

Steps to Reproduce:
1. Open Impress (empty sheet or template)
2. CTRL+P -> Preview Landscape (OK)
3. Change the suggested Paper Size from A4 to B5 (or something else) in the
Print Dialog
4. Change the Paper Size back to A4 -> Print Preview in Portrait -> Should be
Landscape, IMHO

Actual Results:
Portrait

Expected Results:
Landscape


Reproducible: Always


User Profile Reset: No



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

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

[Libreoffice-bugs] [Bug 151154] Change category "draw" in Template Manager and make it translatable

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151154

--- Comment #6 from Laurent BP  ---
(In reply to Rafael Lima from comment #4)
> This is exactly what I did. However, for it to take effect you need to be on
> a clear user profile. You need to either be on safe mode or apply the "Reset
> settings and user interface modifications" option to see the new category
> name.

You are so right! :-) Thanks, I feel better. I added some comments on your
patch.

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

[Libreoffice-bugs] [Bug 47295] Default paragraph style should be "Text body" and not "Default"

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47295

--- Comment #42 from Telesto  ---
FWIW: I'm not a PS Style expert.. I'm not even sure if the below could be
implemented at all (compatibility reasons). Only thinking out loud.. 

A) I surely grasp inconvenience mentioned in comment 30 comment 36. Where the
order of actions has influence on the formatting. Terrible, IMHO

B) Default Paragraph Style is actually "Master/Parent Paragraph Style" (like
comment 5 points out). It's not a ordinary style, in principle it affects all
other Paragraph Styles except if those other paragraphs explicitly define
otherwise. Currently the 'Master/Parent Paragraph Style is set to be default
too.,

C) There is the (taste) question: do you like the 'Text Body' formatting to be
default.. comment 38

A way out would be to change Next Paragraph Style from headings and such to
Default Paragraph Style instead of Text Body. However you likely into the issue
at comment 22.. so no go

If the current called Default Paragraph Style would be renamed Master Style or
Parent Style. And a new Style introduced: a 'dummy' style: which would be an
empty style.. so exact copy of Master Style or Parent Style (the current
Default Paragraph Style), called yet Default Paragraph Style. And this style
would be made default, instead of the Master Style: problem 22 would be gone.

If you change Next Style to the 'future' Default Paragraph Style (instead of
Text Body), the formatting difference would be gone as mentioned under A

If you prefer different look you can modify the Default Paragraph Style (new),
without affect all other styles. Sadly it's impossible to say: replace Default
Paragraph Style (new) by say Text Body Style. Which would make it easy an
existing PS style to something else of desire. Why would I manually configure
the default Paragraph Style to match the specifications of Text Body.

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

[Libreoffice-bugs] [Bug 151191] New: Libreoffice 7.4 crash on Mac OS M1+ when saving to csv or excel format

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151191

Bug ID: 151191
   Summary: Libreoffice 7.4 crash on Mac OS M1+ when saving to csv
or excel format
   Product: LibreOffice
   Version: 7.4.1.2 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@davidroda.es

Description:
Libreoffice 7.4 crash on Mac OS M1+ when saving to csv or excel format

Actual Results:
Close the program and open in file recovery mode

Expected Results:
Close the program and open in file recovery mode


Reproducible: Always


User Profile Reset: No



Additional Info:
The csv file even if it closes if it ends up creating them but when it is xlsx
it closes and does not create them, it creates a temporary file but does not
create the xlsx

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

[Libreoffice-bugs] [Bug 100100] Emoji toolbar control

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100100

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||144348


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144348
[Bug 144348] Remove bundled emoji font
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 100100] Emoji toolbar control

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100100

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||144348


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144348
[Bug 144348] Remove bundled emoji font
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - desktop/source external/cairo external/fontconfig external/freetype external/harfbuzz vcl/source vcl/unx

2022-09-26 Thread Tor Lillqvist (via logerrit)
 desktop/source/lib/init.cxx  |   20 +++
 external/cairo/ExternalPackage_cairo.mk  |3 
 external/cairo/UnpackedTarball_cairo.mk  |2 
 external/cairo/cairo/cairo-fd-hack.patch.0   |   15 ++
 external/cairo/cairo/libcairo-bundled-soname.patch.0 |   12 ++
 external/fontconfig/ExternalPackage_fontconfig.mk|   16 ++
 external/fontconfig/ExternalProject_fontconfig.mk|   15 ++
 external/fontconfig/Module_fontconfig.mk |1 
 external/fontconfig/UnpackedTarball_fontconfig.mk|1 
 external/fontconfig/libfontconfig-bundled-soname.patch.0 |   11 +
 external/freetype/ExternalPackage_freetype.mk|   16 ++
 external/freetype/ExternalProject_freetype.mk|5 
 external/freetype/Module_freetype.mk |1 
 external/freetype/UnpackedTarball_freetype.mk|2 
 external/freetype/freetype-fd-hack.patch.0   |   53 
 external/freetype/libfreetype-bundled-soname.patch.0 |   11 +
 external/harfbuzz/ExternalPackage_harfbuzz.mk|   17 ++
 external/harfbuzz/ExternalProject_harfbuzz.mk|9 +
 external/harfbuzz/Module_harfbuzz.mk |1 
 external/harfbuzz/UnpackedTarball_harfbuzz.mk|4 
 external/harfbuzz/harfbuzz-fd-hack.patch.0   |   24 
 external/harfbuzz/libharfbuzz-bundled-soname.patch.0 |   24 
 vcl/source/fontsubset/sft.cxx|   23 +++
 vcl/unx/generic/fontmanager/fontmanager.cxx  |   90 ---
 vcl/unx/generic/glyphs/freetype_glyphcache.cxx   |   13 ++
 25 files changed, 342 insertions(+), 47 deletions(-)

New commits:
commit d8b04077bb63f05efa256f353bfd6acb409a6983
Author: Tor Lillqvist 
AuthorDate: Tue Sep 20 16:07:14 2022 +0300
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:59:18 2022 +0200

Enable opening of downloaded fonts only in ForKit in Online

We want that only the ForKit process needs to have access to new font
files added to a Collabora Online instance dynamically by downloading
from a server. There are however many locations in the Kit process, in
core and in external libraries like harfbuzz, where the code wants to
open a font file.

Handle this so that the ForKit process opens such a downloaded font
file and doesn't close it. The file descriptor is thus inherited by
Kit processes.  The font file pathname passed on to other code is a
fake on in the format "/:FD:/%d" where the %d is the file descriptor
of the opened font file. Add checks in all places where font files are
opened, look for this special pathname format, and modify the code to
just dup() the already open file descriptor in that case.

All this is relevant for Linux only, as Collabora Online runs on
Linux.

Do the above for harfbuzz, cairo, fontconfig, and freetype.

In addition make sure that these libraries when bundled, on Linux, are
built as shared libraries, and won't be confused with the
corresponding system libraries by making sure their sonames are
different.

Change-Id: I85ff853ac1d1f6b098a3c254a38e3fe3bca774c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140243
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 4eed88331948..a08c6d8b275d 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -24,6 +24,10 @@
 #include 
 #endif
 
+#ifdef LINUX
+#include 
+#endif
+
 #ifdef ANDROID
 #include 
 #endif
@@ -4330,13 +4334,27 @@ static void lo_setOption(LibreOfficeKit* /*pThis*/, 
const char *pOption, const c
 else
 sal_detail_set_log_selector(pCurrentSalLogOverride);
 }
+#ifdef LINUX
 else if (strcmp(pOption, "addfont") == 0)
 {
+if (memcmp(pValue, "file://", 7) == 0)
+pValue += 7;
+
+int fd = open(pValue, O_RDONLY);
+if (fd == -1)
+{
+std::cerr << "Could not open font file '" << pValue << "': " << 
strerror(errno) << std::endl;
+return;
+}
+
+OUString sMagicFileName = "file:///:FD:/" + OUString::number(fd);
+
 OutputDevice *pDevice = Application::GetDefaultDevice();
 OutputDevice::ImplClearAllFontData(false);
-pDevice->AddTempDevFont(OUString::fromUtf8(pValue), "");
+pDevice->AddTempDevFont(sMagicFileName, "");
 OutputDevice::ImplRefreshAllFontData(false);
 }
+#endif
 }
 
 static void lo_dumpState (LibreOfficeKit* pThis, const char* /* pOptions */, 
char** pState)
diff --git a/external/cairo/ExternalPackage_cairo.mk 
b/external/cairo/ExternalPackage_cairo.mk
index 116db8a3499d..74a46688406a 100644
--- a/external/cairo/ExternalPackage_cairo.mk
+++ 

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

2022-09-26 Thread Tor Lillqvist (via logerrit)
 configure.ac |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 2076ae6168a76c534262a191442448186692ea74
Author: Tor Lillqvist 
AuthorDate: Thu Sep 15 14:44:27 2022 +0300
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:58:50 2022 +0200

Make --with-system-nss default on Linux again

Functionally revert what I did in the 'Temporarily revert "tdf#147250
configure: default to --with-system-nss on..."' commit.

Change-Id: Ic576d3969976057dd520ee03bc1cb32540078c63
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140055
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/configure.ac b/configure.ac
index c4de07a897b9..7b855a5e89a3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10479,7 +10479,14 @@ dnl 
===
 dnl Check for system NSS
 dnl ===
 if test "$enable_fuzzers" != "yes" -a "$enable_nss" = "yes"; then
-libo_CHECK_SYSTEM_MODULE([nss],[NSS],[nss >= 3.9.3 nspr >= 4.8])
+case "$_os" in
+Linux)
+libo_CHECK_SYSTEM_MODULE([nss],[NSS],[nss >= 3.9.3 nspr >= 
4.8],,,TRUE)
+;;
+*)
+libo_CHECK_SYSTEM_MODULE([nss],[NSS],[nss >= 3.9.3 nspr >= 4.8])
+;;
+esac
 AC_DEFINE(HAVE_FEATURE_NSS)
 ENABLE_NSS=TRUE
 elif test $_os != iOS ; then


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - external/skia sdext/Executable_xpdfimport.mk vcl/Library_vcl.mk vcl/Library_vclplug_gen.mk

2022-09-26 Thread Tor Lillqvist (via logerrit)
 external/skia/Library_skia.mk  |1 +
 sdext/Executable_xpdfimport.mk |2 ++
 vcl/Library_vcl.mk |1 +
 vcl/Library_vclplug_gen.mk |1 +
 4 files changed, 5 insertions(+)

New commits:
commit 1c43b81320ee54e719661ca85a74ff5fd1e90720
Author: Tor Lillqvist 
AuthorDate: Thu Sep 15 12:53:54 2022 +0300
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:57:48 2022 +0200

Fix building without system cairo, fontconfig, freetype, and harfbuzz

At least for me, this was needed when I added --without-system-cairo
--without-system-fontconfig --without-system-freetype
--without-system-harfbuzz to my otherwise fairly normal autogen.input
on Linux.

Change-Id: I149a57c24d6c11d710298125e53cb9524cb3dcaa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140054
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/external/skia/Library_skia.mk b/external/skia/Library_skia.mk
index d3c3dd2cae7c..48717bdcffb3 100644
--- a/external/skia/Library_skia.mk
+++ b/external/skia/Library_skia.mk
@@ -83,6 +83,7 @@ endif
 
 else
 $(eval $(call gb_Library_use_externals,skia,\
+expat \
 freetype \
 fontconfig \
 ))
diff --git a/sdext/Executable_xpdfimport.mk b/sdext/Executable_xpdfimport.mk
index 495671a4ecae..bbdc76217c59 100644
--- a/sdext/Executable_xpdfimport.mk
+++ b/sdext/Executable_xpdfimport.mk
@@ -11,6 +11,8 @@ $(eval $(call gb_Executable_Executable,xpdfimport))
 
 $(eval $(call gb_Executable_use_externals,xpdfimport,\
 boost_headers \
+expat \
+freetype \
 poppler \
 $(if $(filter-out WNT MACOSX,$(OS)),fontconfig) \
 zlib \
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index fe0e0998ed4e..75b37832cfea 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -79,6 +79,7 @@ $(eval $(call gb_Library_use_libraries,vcl,\
 
 $(eval $(call gb_Library_use_externals,vcl,\
 boost_headers \
+expat \
 gio \
 glm_headers \
 graphite \
diff --git a/vcl/Library_vclplug_gen.mk b/vcl/Library_vclplug_gen.mk
index 3ebf80034c91..a8d4bb5ac26f 100644
--- a/vcl/Library_vclplug_gen.mk
+++ b/vcl/Library_vclplug_gen.mk
@@ -54,6 +54,7 @@ $(eval $(call gb_Library_use_externals,vclplug_gen,\
cairo \
graphite \
epoxy \
+   expat \
glm_headers \
harfbuzz \
icu_headers \


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

2022-09-26 Thread Stephan Bergmann (via logerrit)
 external/freetype/ExternalProject_freetype.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit b48cb69dae4118fe4a471921510281bbd16f5c4f
Author: Stephan Bergmann 
AuthorDate: Wed Jan 5 08:07:11 2022 +0100
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:56:42 2022 +0200

Explicitly build external/freetype --without-png

...instead of having its configure.ac determine whether to support png 
based on
it being installed on the system, but which then might cause a Linux
--without-system-freetype build to fail to link Library_pdfium with

> workdir/UnpackedTarball/freetype/src/sfnt/pngshim.c:199: error: undefined 
reference to 'png_get_error_ptr'

etc.

Change-Id: Idf47ba5252b8f4d7f2e295f7adf6b761dbee4d2f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127985
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140053
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/external/freetype/ExternalProject_freetype.mk 
b/external/freetype/ExternalProject_freetype.mk
index a3e0a7ca3e4b..4cb2920ae923 100644
--- a/external/freetype/ExternalProject_freetype.mk
+++ b/external/freetype/ExternalProject_freetype.mk
@@ -23,6 +23,7 @@ $(call gb_ExternalProject_get_state_target,freetype,build) :
--without-brotli \
--without-bzip2 \
--without-harfbuzz \
+   --without-png \
--prefix=$(call 
gb_UnpackedTarball_get_dir,freetype/instdir) \
--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
CFLAGS="$(CFLAGS) $(if $(debug),-g) 
$(gb_VISIBILITY_FLAGS)" \


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

2022-09-26 Thread Stephan Bergmann (via logerrit)
 external/freetype/ExternalProject_freetype.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ac891f0ba9d4c2675d7dae8390a28f44a7a83eaf
Author: Stephan Bergmann 
AuthorDate: Sun Jan 2 12:31:14 2022 +0100
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:56:16 2022 +0200

Make external/freetype use -fPIC

...to prevent Library_pdfium from failing to link with

> ld.lld: error: relocation R_X86_64_64 cannot be used against local 
symbol; recompile with -fPIC
> >>> defined in 
workdir/UnpackedTarball/freetype/instdir/lib/libfreetype.a(ftinit.o)
> >>> referenced by ftinit.c:89 (src/base/ftinit.c:89)
> >>>   ftinit.o:(FT_Add_Default_Modules) in archive 
workdir/UnpackedTarball/freetype/instdir/lib/libfreetype.a

etc., presumably since 8677e994d37329a28ca8278358a99d18b9cada69 "Simplify
FONTCONFIG and FREETYPE tests" no longer implicitly forces use of system
freetype on Linux

Change-Id: I2743619768e2dd636ec431408fcb2871871504f1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127864
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140052
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/external/freetype/ExternalProject_freetype.mk 
b/external/freetype/ExternalProject_freetype.mk
index 032e0362917a..a3e0a7ca3e4b 100644
--- a/external/freetype/ExternalProject_freetype.mk
+++ b/external/freetype/ExternalProject_freetype.mk
@@ -18,6 +18,7 @@ $(call gb_ExternalProject_get_state_target,freetype,build) :
$(call gb_ExternalProject_run,build,\
$(gb_RUN_CONFIGURE) ./configure \
--disable-shared \
+   --with-pic \
--without-zlib \
--without-brotli \
--without-bzip2 \


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

2022-09-26 Thread Stephan Bergmann (via logerrit)
 external/fontconfig/ExternalProject_fontconfig.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 1689ce98ce2b41470497a9c2468d47ee62ae638b
Author: Stephan Bergmann 
AuthorDate: Tue Jan 11 09:14:43 2022 +0100
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:55:24 2022 +0200

Make external/fontconfig use -fPIC

...to prevent Library_skia from failing to link with

> /usr/bin/ld.gold: error: 
workdir/UnpackedTarball/fontconfig/src/.libs/libfontconfig.a(fccfg.o): requires 
dynamic R_X86_64_32 reloc which may overflow at runtime; recompile with -fPIC

etc. in a --without-system-fontconfig build

Change-Id: Idd09785096d1a8be3f3086d6e565f307fa046a60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128267
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140051
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/external/fontconfig/ExternalProject_fontconfig.mk 
b/external/fontconfig/ExternalProject_fontconfig.mk
index 1d65173ce0f5..8cb9498fe763 100644
--- a/external/fontconfig/ExternalProject_fontconfig.mk
+++ b/external/fontconfig/ExternalProject_fontconfig.mk
@@ -25,6 +25,7 @@ $(call gb_ExternalProject_get_state_target,fontconfig,build) :
$(gb_RUN_CONFIGURE) ./configure \
--disable-shared \
--disable-silent-rules \
+   --with-pic \
$(if $(filter ANDROID,$(OS)),--with-arch=arm) \
--with-expat-includes=$(call 
gb_UnpackedTarball_get_dir,expat)/lib \
--with-expat-lib=$(gb_StaticLibrary_WORKDIR) \


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - configure.ac m4/libo_externals.m4

2022-09-26 Thread Jan-Marek Glogowski (via logerrit)
 configure.ac |   62 ++-
 m4/libo_externals.m4 |   12 ++---
 2 files changed, 26 insertions(+), 48 deletions(-)

New commits:
commit be7a238c33dc02dfba40b2ad60485a56f4685d26
Author: Jan-Marek Glogowski 
AuthorDate: Tue Dec 7 05:19:01 2021 +0100
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:54:56 2022 +0200

Simplify FONTCONFIG and FREETYPE tests

Add an additional option to libo_CHECK_SYSTEM_MODULE to select
the default external lookup.

Don't "if" the libo_CHECK_SYSTEM_MODULE, so the AC_SUBST are
always run, but set the test_* flags instead.

Change-Id: Ie0a1204b34d596fdd57a7ee770418f91bf8c5d00
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126464
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140050
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/configure.ac b/configure.ac
index 910c6f6655b9..c4de07a897b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1171,6 +1171,9 @@ if test "$using_freetype_fontconfig" = yes; then
 AC_DEFINE(ENABLE_HEADLESS)
 ENABLE_HEADLESS=TRUE
 fi
+else
+test_fontconfig=no
+test_freetype=no
 fi
 
 AC_SUBST(ENABLE_HEADLESS)
@@ -5863,23 +5866,7 @@ fi
 
 AC_SUBST(ENABLE_CUPS)
 
-# fontconfig checks
-if test "$using_freetype_fontconfig" = yes; then
-AC_MSG_CHECKING([which fontconfig to use])
-fi
-if test "$using_freetype_fontconfig" = yes -a "$test_system_fontconfig" != no; 
then
-AC_MSG_RESULT([external])
-PKG_CHECK_MODULES([FONTCONFIG], [fontconfig >= 2.4.1])
-SYSTEM_FONTCONFIG=TRUE
-FilterLibs "${FONTCONFIG_LIBS}"
-FONTCONFIG_LIBS="${filteredlibs}"
-elif test "$using_freetype_fontconfig" = yes; then
-AC_MSG_RESULT([internal])
-BUILD_TYPE="$BUILD_TYPE FONTCONFIG"
-fi
-AC_SUBST(FONTCONFIG_CFLAGS)
-AC_SUBST(FONTCONFIG_LIBS)
-AC_SUBST([SYSTEM_FONTCONFIG])
+libo_CHECK_SYSTEM_MODULE([fontconfig],[FONTCONFIG],[fontconfig >= 
2.4.1],,,TRUE)
 
 dnl whether to find & fetch external tarballs?
 dnl ===
@@ -9511,38 +9498,25 @@ fi
 
 dnl ===
 dnl Check whether freetype is available
+dnl
+dnl FreeType has 3 different kinds of versions
+dnl * release, like 2.4.10
+dnl * libtool, like 13.0.7 (this what pkg-config returns)
+dnl * soname
+dnl FreeType's docs/VERSION.DLL provides a table mapping between the three
+dnl
+dnl 9.9.3 is 2.2.0
+dnl When the minimal version is at least 2.8.1, remove Skia's check down below.
 dnl ===
-if test "$using_freetype_fontconfig" = yes; then
-AC_MSG_CHECKING([which freetype to use])
-fi
-if test "$using_freetype_fontconfig" = yes -a "$test_system_freetype" != no; 
then
-AC_MSG_RESULT([external])
-# FreeType has 3 different kinds of versions
-# * release, like 2.4.10
-# * libtool, like 13.0.7 (this what pkg-config returns)
-# * soname
-# FreeType's docs/VERSION.DLL provides a table mapping between the three
-#
-# 9.9.3 is 2.2.0
-# When the minimal version is at least 2.8.1, remove Skia's check down 
below.
-PKG_CHECK_MODULES(FREETYPE, freetype2 >= 9.9.3)
-FREETYPE_CFLAGS=$(printf '%s' "$FREETYPE_CFLAGS" | sed -e 
"s/-I/${ISYSTEM?}/g")
-FilterLibs "${FREETYPE_LIBS}"
-FREETYPE_LIBS="${filteredlibs}"
-SYSTEM_FREETYPE=TRUE
-elif test "$using_freetype_fontconfig" = yes; then
-AC_MSG_RESULT([internal])
-FREETYPE_CFLAGS="${ISYSTEM}${WORKDIR}/UnpackedTarball/freetype/include"
+if test "$test_freetype" != no; then
 if test "x$ac_config_site_64bit_host" = xYES; then
-FREETYPE_LIBS="-L${WORKDIR}/UnpackedTarball/freetype/instdir/lib64 
-lfreetype"
+
FREETYPE_LIBS_INTERNAL="-L${WORKDIR}/UnpackedTarball/freetype/instdir/lib64 
-lfreetype"
 else
-FREETYPE_LIBS="-L${WORKDIR}/UnpackedTarball/freetype/instdir/lib 
-lfreetype"
+
FREETYPE_LIBS_INTERNAL="-L${WORKDIR}/UnpackedTarball/freetype/instdir/lib 
-lfreetype"
 fi
-BUILD_TYPE="$BUILD_TYPE FREETYPE"
 fi
-AC_SUBST(FREETYPE_CFLAGS)
-AC_SUBST(FREETYPE_LIBS)
-AC_SUBST([SYSTEM_FREETYPE])
+libo_CHECK_SYSTEM_MODULE([freetype],[FREETYPE],[freetype2 >= 9.9.3],
+
["${ISYSTEM}${WORKDIR}/UnpackedTarball/freetype/include"],["$FREETYPE_LIBS_INTERNAL"],TRUE)
 
 # ===
 # Check for system libxslt
diff --git a/m4/libo_externals.m4 b/m4/libo_externals.m4
index d19178ab8250..b2b314fec933 100644
--- a/m4/libo_externals.m4
+++ b/m4/libo_externals.m4
@@ -6,15 +6,19 @@ dnl -*- Mode: Autoconf; tab-width: 4; indent-tabs-mode: nil; 
fill-column: 102 -*
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 #
+# ,,,
+# ,,
 

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

2022-09-26 Thread Jan-Marek Glogowski (via logerrit)
 m4/libo_externals.m4 |   30 ++
 1 file changed, 18 insertions(+), 12 deletions(-)

New commits:
commit df45cb78617eebcace731c2a8e61cc4aaec2a8cf
Author: Jan-Marek Glogowski 
AuthorDate: Tue May 25 14:57:29 2021 +0200
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:54:32 2022 +0200

m4: Add test flag to libo_CHECK_SYSTEM_MODULE

Automatically adds an ENABLE_* AC_SUBST and test for a disabled
test via test_*, like ENABLE_EPUBGEN and test_libepubgen.

Change-Id: Ifaf27d4d1193f41de6291ab70d973fe151f36b2e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126169
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140049
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/m4/libo_externals.m4 b/m4/libo_externals.m4
index f755358bb395..d19178ab8250 100644
--- a/m4/libo_externals.m4
+++ b/m4/libo_externals.m4
@@ -12,20 +12,26 @@ AC_ARG_WITH(system-$1,
 [Use $1 from operating system instead of building and bundling it.]),,
 [with_system_$1="$with_system_libs"])
 AC_MSG_CHECKING([which $1 to use])
-if test "$with_system_$1" = "yes"; then
-AC_MSG_RESULT([external])
-SYSTEM_$2=TRUE
-PKG_CHECK_MODULES([$2], [$3])
-$2_CFLAGS=$(printf '%s' "${$2_CFLAGS}" | sed -e "s/-I/${ISYSTEM?}/g")
-FilterLibs "${$2_LIBS}"
-$2_LIBS="$filteredlibs"
+if test "$test_$1" != "no"; then
+ENABLE_$2=TRUE
+if test "$with_system_$1" = "yes"; then
+AC_MSG_RESULT([external])
+SYSTEM_$2=TRUE
+PKG_CHECK_MODULES([$2], [$3])
+$2_CFLAGS=$(printf '%s' "${$2_CFLAGS}" | sed -e "s/-I/${ISYSTEM?}/g")
+FilterLibs "${$2_LIBS}"
+$2_LIBS="$filteredlibs"
+else
+AC_MSG_RESULT([internal])
+SYSTEM_$2=
+$2_CFLAGS=$4
+$2_LIBS=$5
+BUILD_TYPE="$BUILD_TYPE $2"
+fi
 else
-AC_MSG_RESULT([internal])
-SYSTEM_$2=
-$2_CFLAGS=$4
-$2_LIBS=$5
-BUILD_TYPE="$BUILD_TYPE $2"
+AC_MSG_RESULT([ignored])
 fi
+AC_SUBST([ENABLE_$2])
 AC_SUBST([SYSTEM_$2])
 AC_SUBST([$2_CFLAGS])
 AC_SUBST([$2_LIBS])


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - bin/check-elf-dynamic-objects configure.ac m4/libo_externals.m4

2022-09-26 Thread Tor Lillqvist (via logerrit)
 bin/check-elf-dynamic-objects |2 +-
 configure.ac  |   10 +-
 m4/libo_externals.m4  |2 +-
 3 files changed, 3 insertions(+), 11 deletions(-)

New commits:
commit c9409ff2d467f0b29f0fa0a1f16e33bdf165bc1e
Author: Tor Lillqvist 
AuthorDate: Thu Sep 8 13:51:07 2022 +0300
Commit: Tor Lillqvist 
CommitDate: Mon Sep 26 20:53:31 2022 +0200

Temporarily revert "tdf#147250 configure: default to --with-system-nss 
on..."

I am going to back-port some other commits that interfere with this,
and will then re-apply this as part of that.

This reverts commit 16ad0a66321530b185138af3a5b01b38c572e396.

Change-Id: I4c1f84aef7eecbb4c69e91a4221ae7daac76f5de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140048
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tor Lillqvist 

diff --git a/bin/check-elf-dynamic-objects b/bin/check-elf-dynamic-objects
index 712856d1104c..523a892e4259 100755
--- a/bin/check-elf-dynamic-objects
+++ b/bin/check-elf-dynamic-objects
@@ -88,7 +88,7 @@ programfiles=$(echo ${files} | grep -o '/program/[^/]* ' | 
xargs -n 1 basename)
 # of maintaining ABI stability
 # allow extending the allowlist using the environment variable to be able to 
work
 # on the installer stuff without the need for a baseline setup
-globalallowlist="ld-linux-x86-64.so.2 ld-linux.so.2 libc.so.6 libm.so.6 
libdl.so.2 libpthread.so.0 librt.so.1 libutil.so.1 libnsl.so.1 libcrypt.so.1 
libgcc_s.so.1 libstdc++.so.6 libz.so.1 libfontconfig.so.1 libfreetype.so.6 
libxml2.so.2 libxslt.so.1 libexslt.so.0 libnspr4.so libnss3.so libnssutil3.so 
libplc4.so libplds4.so libsmime3.so libssl3.so ${LO_ELFCHECK_ALLOWLIST-}"
+globalallowlist="ld-linux-x86-64.so.2 ld-linux.so.2 libc.so.6 libm.so.6 
libdl.so.2 libpthread.so.0 librt.so.1 libutil.so.1 libnsl.so.1 libcrypt.so.1 
libgcc_s.so.1 libstdc++.so.6 libz.so.1 libfontconfig.so.1 libfreetype.so.6 
libxml2.so.2 libxslt.so.1 libexslt.so.0 ${LO_ELFCHECK_ALLOWLIST-}"
 x11allowlist="libX11.so.6 libX11-xcb.so.1 libXext.so.6 libSM.so.6 libICE.so.6 
libXinerama.so.1 libXrender.so.1 libXrandr.so.2 libcairo.so.2"
 openglallowlist="libGL.so.1"
 gobjectallowlist="libgobject-2.0.so.0 libglib-2.0.so.0"
diff --git a/configure.ac b/configure.ac
index 121af3c74626..910c6f6655b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10505,15 +10505,7 @@ dnl 
===
 dnl Check for system NSS
 dnl ===
 if test "$enable_fuzzers" != "yes" -a "$enable_nss" = "yes"; then
-libo_CHECK_SYSTEM_MODULE([nss],[NSS],[nss >= 3.9.3 nspr >= 4.8],,,[
-case "$_os" in
-Linux)
-with_system_nss=yes
-;;
-*)
-with_system_nss=no
-;;
-esac])
+libo_CHECK_SYSTEM_MODULE([nss],[NSS],[nss >= 3.9.3 nspr >= 4.8])
 AC_DEFINE(HAVE_FEATURE_NSS)
 ENABLE_NSS=TRUE
 elif test $_os != iOS ; then
diff --git a/m4/libo_externals.m4 b/m4/libo_externals.m4
index 659b539dc539..f755358bb395 100644
--- a/m4/libo_externals.m4
+++ b/m4/libo_externals.m4
@@ -10,7 +10,7 @@ AC_DEFUN([libo_CHECK_SYSTEM_MODULE], [
 AC_ARG_WITH(system-$1,
 AS_HELP_STRING([--with-system-$1],
 [Use $1 from operating system instead of building and bundling it.]),,
-ifelse([$6],,[with_system_$1="$with_system_libs"],[[$6]]))
+[with_system_$1="$with_system_libs"])
 AC_MSG_CHECKING([which $1 to use])
 if test "$with_system_$1" = "yes"; then
 AC_MSG_RESULT([external])


[Libreoffice-bugs] [Bug 151122] Need way to avoid selecting fonts which don't cover the relevant language Unicode range

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151122

--- Comment #15 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #13)
> What bothers is the wish to get some very broad information at
> a control that is simply a picker. But if we turn it around 

I just need to know the font I'm selecting covers my language(s). The title may
overstate what's necessary, I've rephrased it.

> unicode coverage does not match the paragraph language.

There's a language choice underneath the picker - I believe it's better to go
with that one. That can also allow the user to require coverage of multiple
languages or no language.


I haven't made up my mind regarding whether I like italicizing, graying-out or
filtering-out better.

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

[Libreoffice-ux-advise] [Bug 151122] Need way to avoid selecting fonts which don't cover the relevant language Unicode range

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151122

--- Comment #15 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #13)
> What bothers is the wish to get some very broad information at
> a control that is simply a picker. But if we turn it around 

I just need to know the font I'm selecting covers my language(s). The title may
overstate what's necessary, I've rephrased it.

> unicode coverage does not match the paragraph language.

There's a language choice underneath the picker - I believe it's better to go
with that one. That can also allow the user to require coverage of multiple
languages or no language.


I haven't made up my mind regarding whether I like italicizing, graying-out or
filtering-out better.

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

[Libreoffice-ux-advise] [Bug 151122] Need way to avoid selecting fonts which don't cover the relevant language Unicode range

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151122

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|Need some indication of |Need way to avoid selecting
   |font (family) coverage  |fonts which don't cover the
   |range when selecting fonts  |relevant language Unicode
   ||range

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

[Libreoffice-bugs] [Bug 151122] Need way to avoid selecting fonts which don't cover the relevant language Unicode range

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151122

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|Need some indication of |Need way to avoid selecting
   |font (family) coverage  |fonts which don't cover the
   |range when selecting fonts  |relevant language Unicode
   ||range

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

[Libreoffice-bugs] [Bug 151122] Need some indication of font (family) coverage range when selecting fonts

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151122

--- Comment #14 from Eyal Rozenberg  ---
(In reply to V Stuart Foote from comment #11)

> There are already some fabulous programs for doing font
> selection based on its Unicode coverage.  Point being 
> these font management features do not belong in an office
> product bcz they are handled better either by os/DE
> provided apps--eg fontconfig and the fc- utilities or the
> ancient xfd or xfontsel, or by any number of GUI based
> character map utilities including the GNOME Character Map.

You seem to be suggesting LO remove its font selection dialog, or the font
selection pane of the font dialog, entirely...

Font selection belongs in (almost) any application in which the user needs to
select fonts. And while complex font exploration may perhaps be better suited
for a different app, it is not a complex or esoteric task to want to choose a
font which can be used for the language you want to write in; and my office
productivity app must help me avoid choosing fonts (or font families) which
don't cover the language I'm making the choice for.

> It has *ALL* the features that Eyal is asking for,

I asked for just one thing. And I'm not even the one who asks for it; I would
argue every user asks for it: Not misdirected into choosing an invalid font for
the language I'm writing in.

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

[Libreoffice-ux-advise] [Bug 151122] Need some indication of font (family) coverage range when selecting fonts

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151122

--- Comment #14 from Eyal Rozenberg  ---
(In reply to V Stuart Foote from comment #11)

> There are already some fabulous programs for doing font
> selection based on its Unicode coverage.  Point being 
> these font management features do not belong in an office
> product bcz they are handled better either by os/DE
> provided apps--eg fontconfig and the fc- utilities or the
> ancient xfd or xfontsel, or by any number of GUI based
> character map utilities including the GNOME Character Map.

You seem to be suggesting LO remove its font selection dialog, or the font
selection pane of the font dialog, entirely...

Font selection belongs in (almost) any application in which the user needs to
select fonts. And while complex font exploration may perhaps be better suited
for a different app, it is not a complex or esoteric task to want to choose a
font which can be used for the language you want to write in; and my office
productivity app must help me avoid choosing fonts (or font families) which
don't cover the language I'm making the choice for.

> It has *ALL* the features that Eyal is asking for,

I asked for just one thing. And I'm not even the one who asks for it; I would
argue every user asks for it: Not misdirected into choosing an invalid font for
the language I'm writing in.

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

[Libreoffice-bugs] [Bug 151170] Need mechanism for re-centering "Slides pane" onto current slide with edit focus

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151170

--- Comment #8 from Eyal Rozenberg  ---
(In reply to V Stuart Foote from comment #7)
> NO it is strictly a feature request for the Slide / Page pane -- which
> technically is a list as Heiko notes.

Stuart is exactly right.

(In reply to Heiko Tietze from comment #3)
> Do we talk about what slide is the currently active - which is clearly shown
> in the slides bar by highlighting

Ah, but it isn't always. That is, the currently active slide is only shown in
the slides bar if its scroll position is close enough to the slide's position.

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

[Libreoffice-ux-advise] [Bug 151170] Need mechanism for re-centering "Slides pane" onto current slide with edit focus

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151170

--- Comment #8 from Eyal Rozenberg  ---
(In reply to V Stuart Foote from comment #7)
> NO it is strictly a feature request for the Slide / Page pane -- which
> technically is a list as Heiko notes.

Stuart is exactly right.

(In reply to Heiko Tietze from comment #3)
> Do we talk about what slide is the currently active - which is clearly shown
> in the slides bar by highlighting

Ah, but it isn't always. That is, the currently active slide is only shown in
the slides bar if its scroll position is close enough to the slide's position.

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

[Libreoffice-bugs] [Bug 148806] FILEOPEN: Event-Driven Macros don't enable in DOCM, or after round-tripping in DOC

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148806

--- Comment #11 from Justin L  ---
Created attachment 182687
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182687=edit
formfieldMacros.docm: macro on fileOpen, checkbox1 click

repro 7.5+
This is a FILEOPEN problem. Round-tripping this file still works fine in Excel.

DOC format is a bit better than this. At least on initial file-open the
checkbox1 and commandButton macros are working. LO doesn't work on a RT though.

DOCX format has never worked in LO. ActiveX support first came in LO 6.0 via
bug 50097, but event-macros were never working.

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

[Libreoffice-bugs] [Bug 151172] LibODev crashed if Grammalect extension activated

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151172

Julien Nabet  changed:

   What|Removed |Added

 CC||momonas...@gmail.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||9956

--- Comment #4 from Julien Nabet  ---
I noticed in bt "ImageOrientationController" and it's new from:
dbeb697d62250e9429462c7f61b859893262a651
tdf#149956 Rework toolbar image flipping

An unified code, covering both vcl and weld cases. For
SidebarToolBox, the controller is created before items
are inserted, so we listen for item insert event to set
initially correct state.

=> cc Maxim

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

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

2022-09-26 Thread Andrea Gelmini (via logerrit)
 toolkit/source/awt/vclxaccessiblecomponent.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 55219f771cd4e255a079cb4272f640807c805e0f
Author: Andrea Gelmini 
AuthorDate: Mon Sep 26 18:58:20 2022 +0200
Commit: Julien Nabet 
CommitDate: Mon Sep 26 20:16:04 2022 +0200

Fix typo

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

diff --git a/toolkit/source/awt/vclxaccessiblecomponent.cxx 
b/toolkit/source/awt/vclxaccessiblecomponent.cxx
index 5d3b15653ba3..7fbb1ea1ccd6 100644
--- a/toolkit/source/awt/vclxaccessiblecomponent.cxx
+++ b/toolkit/source/awt/vclxaccessiblecomponent.cxx
@@ -185,7 +185,7 @@ void VCLXAccessibleComponent::ProcessWindowChildEvent( 
const VclWindowEvent& rVc
 xAcc = GetChildAccessible( rVclWindowEvent );
 if( xAcc.is() )
 {
-// send send state change event for SHOWING before sending the 
CHILD event below,
+// send state change event for SHOWING before sending the 
CHILD event below,
 // since that one results in a11y event listeners getting 
removed
 uno::Reference xChildContext = 
xAcc->getAccessibleContext();
 if (xChildContext.is())


[Libreoffice-bugs] [Bug 151181] I can't find "Edit Style..." in the keyboard customization functions

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151181

Nik Gervae  changed:

   What|Removed |Added

 Resolution|NOTABUG |---
 Status|RESOLVED|REOPENED
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 151181] I can't find "Edit Style..." in the keyboard customization functions

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151181

--- Comment #3 from Nik Gervae  ---
Okay, I found Edit and set its keyboard shortcut to command+alt+E, and when I
press that, the Extension Manager window appears (see attachment). Setting the
shortcut didn't do anything.

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

[Libreoffice-bugs] [Bug 151181] I can't find "Edit Style..." in the keyboard customization functions

2022-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151181

--- Comment #2 from Nik Gervae  ---
Created attachment 182686
  --> https://bugs.documentfoundation.org/attachment.cgi?id=182686=edit
Keyboard shortcut set for "Edit" doesn't take

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

[Libreoffice-commits] core.git: desktop/qa

2022-09-26 Thread Andrea Gelmini (via logerrit)
 desktop/qa/desktop_lib/test_desktop_lib.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 920ca8c8eea0ccd40f42d3d72a3c43f59e6373e8
Author: Andrea Gelmini 
AuthorDate: Mon Sep 26 16:02:03 2022 +0200
Commit: Julien Nabet 
CommitDate: Mon Sep 26 20:10:11 2022 +0200

Fix typo

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

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 54c8a8189ab5..437acd28df42 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -3276,7 +3276,7 @@ namespace
 {
 SfxChildWindow* lcl_initializeSidebar()
 {
-// in init.cxx we do setupSidebar which creaes the controller, do it 
here
+// in init.cxx we do setupSidebar which creates the controller, do it 
here
 
 SfxViewShell* pViewShell = SfxViewShell::Current();
 CPPUNIT_ASSERT(pViewShell);


  1   2   3   >