[Libreoffice-bugs] [Bug 142877] monolingual installers

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142877

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 97991] Reducing the size of the Windows Installer

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97991

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 124992] Unsplit help packages for Windows: provide a single package for all languages, like main installer

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124992

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 157809] the MSI archive contains all translations and all language dictionaries

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157809

Mike Kaganski  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||991,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||4992,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||2877

--- Comment #3 from Mike Kaganski  ---
(In reply to Roman Kuznetsov from comment #2)
> I think I saw inverse report (to have all language packs in one DMG
> installer)

Here it is for MSI: bug 124992. No idea about DMG.

> Mike, what do you think about this one?

I think it is absolutely unclear what specific difficulties the organization
may encounter. Errors? Precious megabytes consumed on disk? What?

I don't believe there's a real reason to insist that today's applications must
avoid inclusion of some information. It is OK to just install everything. It is
also OK to use the installer-provided mechanism to only install a specific
subset. But if the organization uses some custom procedure, what is the
rationale, and the reason for that, which justifies a huge maintenance burden
on the community of volunteers? (I'd expect organizations using FLOSS to
*suggest* their contributions, not to ask volunteers to increase burden to
support niche use cases.)

See also:
bug 142877,
bug 97991.

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

[Libreoffice-commits] core.git: include/rtl

2023-10-17 Thread Stephan Bergmann (via logerrit)
 include/rtl/string.hxx  |   14 ++
 include/rtl/ustring.hxx |   14 ++
 2 files changed, 28 insertions(+)

New commits:
commit c7cef7500105c6122df90900b3ba919e80c3bbb9
Author: Stephan Bergmann 
AuthorDate: Tue Oct 17 23:40:05 2023 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Oct 18 07:36:40 2023 +0200

O[U]String move ctors should be constexpr, too

...similar to 5f2206e3ccf1cf64d2b11b0e5d419973269920a8 "O{U]String copy ctor
should be constexpr", which will again be useful for some upcoming 
replacements
of OUStringConstExpr with OUString, and making data actually constexpr.  
(For
example, the

  static o3tl::enumarray const map

in INetURLObject::getSchemeInfo (tools/source/fsys/urlobj.cxx) can actually 
be
constexpr, but the o3tl::enumarray ctor forwards its SchemeInfo arguments by
forwarding references, so uses an implicitly generated constexpr SchemeInfo 
move
ctor, which in turn requires constexpr member move ctors.  So when the 
m_sScheme
member will be changed from rtl::OUStringConstExpr to OUString, the OUString
move ctor better be constexpr.)

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

diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx
index de468f127757..a2be12ab320d 100644
--- a/include/rtl/string.hxx
+++ b/include/rtl/string.hxx
@@ -240,9 +240,23 @@ public:
   @paramstr an OString.
   @since LibreOffice 5.2
 */
+#if !(defined _MSC_VER && _MSC_VER <= 1929 && defined _MANAGED)
+constexpr
+#endif
 OString( OString && str ) noexcept
 {
 pData = str.pData;
+#if !(defined _MSC_VER && _MSC_VER <= 1929 && defined _MANAGED)
+if (std::is_constant_evaluated()) {
+//TODO: We would want to
+//
+//   assert(SAL_STRING_IS_STATIC(pData));
+//
+// here, but that wouldn't work because read of member `str` of 
OUStringLiteral's
+// anonymous union with active member `more` is not allowed in a 
constant expression.
+return;
+}
+#endif
 str.pData = nullptr;
 rtl_string_new(  );
 }
diff --git a/include/rtl/ustring.hxx b/include/rtl/ustring.hxx
index 8e8bd8e9580e..a88c2a303194 100644
--- a/include/rtl/ustring.hxx
+++ b/include/rtl/ustring.hxx
@@ -250,9 +250,23 @@ public:
   @paramstr an OUString.
   @since LibreOffice 5.2
 */
+#if !(defined _MSC_VER && _MSC_VER <= 1929 && defined _MANAGED)
+constexpr
+#endif
 OUString( OUString && str ) noexcept
 {
 pData = str.pData;
+#if !(defined _MSC_VER && _MSC_VER <= 1929 && defined _MANAGED)
+if (std::is_constant_evaluated()) {
+//TODO: We would want to
+//
+//   assert(SAL_STRING_IS_STATIC(pData));
+//
+// here, but that wouldn't work because read of member `str` of 
OUStringLiteral's
+// anonymous union with active member `more` is not allowed in a 
constant expression.
+return;
+}
+#endif
 str.pData = nullptr;
 rtl_uString_new(  );
 }


[Libreoffice-bugs] [Bug 157808] FORMATTING

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157808

--- Comment #3 from BogdanB  ---
I received this email from the reporter:

Your attachment is what I expect to see, however my spreadsheets do not show
the background fill color.

Previously on a Windows 10 Dell the background fill showed.

Since changing to an ASUS Vivobok Windows 11 the background fill does not show.

I have been using spreadsheets since 1980 and have not come across this
situation before; and have now exhausted all avenues available to me.  Both the
Dell and ASUS machines have dual graphics as in on Intel chip and Nvidia chip.

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

[Libreoffice-bugs] [Bug 157566] Data loss or misplacement when pasting / opening RTF superscript content into Writer

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157566

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Libreoffice-bugs] [Bug 157582] Upon saving a document the program hangs for minutes

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157582

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 157581] Drawing objects aligned with baseline and cap line - misaligned on zoom change

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157581

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 157580] Allow notebookbar and groupedbarcompact groups sections to be shown/hidden based on available space instead of only their order

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157580

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 157647] Getting F1 to work.

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157647

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 157647] Getting F1 to work.

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157647

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

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

[Libreoffice-bugs] [Bug 157366] Asian phonetic guide: make it easy to see which kana belong to which kanji

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157366

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-ux-advise] [Bug 157331] in automatic filter, add the number of the first row where the value appears

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157331

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 157331] in automatic filter, add the number of the first row where the value appears

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157331

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 157331] in automatic filter, add the number of the first row where the value appears

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157331

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

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

[Libreoffice-ux-advise] [Bug 157331] in automatic filter, add the number of the first row where the value appears

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157331

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

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

[Libreoffice-bugs] [Bug 154281] GoTo page

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154281

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 154280] Inserted png images do not print color

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154280

--- Comment #4 from QA Administrators  ---
Dear Dean Hunter,

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 154281] GoTo page

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154281

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

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 154280] Inserted png images do not print color

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154280

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154278] Widow-line suppression, even when turned off in all possible ways, still in some situations invoked by LibreOffice Writer

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154278

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154278] Widow-line suppression, even when turned off in all possible ways, still in some situations invoked by LibreOffice Writer

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154278

--- Comment #12 from QA Administrators  ---
Dear wmh120845,

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 154008] Crash when form merge from calc to write

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154008

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154008] Crash when form merge from calc to write

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154008

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

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 154007] LibreOffice is hidden in MS Store

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154007

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 154007] LibreOffice is hidden in MS Store

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154007

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

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 143969] Screen turns black after Helix slide transition finishes

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143969

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154921] LibreOffice extension error on opening

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154921

--- Comment #3 from QA Administrators  ---
Dear Eric A.Haakenson,

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 143969] Screen turns black after Helix slide transition finishes

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143969

--- Comment #6 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 99778] UI : Click on sheet name to activate it scroll the tabs whereas it's not necessary (specific file)

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99778

--- Comment #10 from QA Administrators  ---
Dear eric.coutier,

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 154390] autohide toolbars

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154390

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

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 94307] Child automatic character styles not recalculated correctly on reopening document

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94307

--- Comment #13 from QA Administrators  ---
Dear matthias.sonstiges,

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 78703] SLIDESHOW: fading slide transitions start with a white 'flash'

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78703

--- Comment #41 from QA Administrators  ---
Dear Rene Sedmik,

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 120586] A Track-Changes editing of a number can split it into two lines

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120586

--- Comment #9 from QA Administrators  ---
Dear Eyal Rozenberg,

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 76900] FILESAVE: Flat XML format broken. Formula size not preserved in roundtrip.

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76900

--- Comment #22 from QA Administrators  ---
Dear sergio.callegari,

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 120311] Pivot table filter locked empty when zero rows returned

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120311

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

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 119986] FILESAVE DOCX The MatchEntry property of the list box ActiveX control is incorrectly saved

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119986

--- Comment #6 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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 119984] FILESAVE DOCX The Enabled property of ActiveX controls is incorrectly saved

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119984

--- Comment #4 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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 119982] FILEOPEN DOCX The BackColor property of ActiveX controls are incorrectly imported, when the BackStyle property: 0 – fmBackStyleTransparent

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119982

--- Comment #6 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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 156662] Always using direct connection to api.languagetool.org

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156662

--- Comment #2 from Norimasa Yamamoto  ---
Created attachment 190274
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190274=edit
connect without proxy on startup

Not fixed at 7.5.7.1 release.

I captured Network activity for cleanly open ods file which contains Line shape
by Sysinternals ProcMon.
It tells me that soffice.bin connect/retry to api.languagetool.org:https
without proxy.

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

[Libreoffice-bugs] [Bug 86899] [META] Requests for the addition of UNO commands

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86899
Bug 86899 depends on bug 156114, which changed state.

Bug 156114 Summary: UNO commands / menu entries to enable PS/CS spotlight
https://bugs.documentfoundation.org/show_bug.cgi?id=156114

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: include/sfx2 officecfg/registry sfx2/source sw/inc sw/sdi sw/source sw/uiconfig

2023-10-17 Thread Jim Raykowski (via logerrit)
 include/sfx2/sfxsids.hrc|3 
 include/sfx2/templdlg.hxx   |   14 +
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |   33 +++
 sfx2/source/dialog/templdlg.cxx |   88 
--
 sw/inc/view.hxx |2 
 sw/sdi/_viewsh.sdi  |   12 +
 sw/sdi/swriter.sdi  |   34 +++
 sw/source/uibase/uiview/view0.cxx   |   28 +++
 sw/uiconfig/swriter/menubar/menubar.xml |8 
 9 files changed, 204 insertions(+), 18 deletions(-)

New commits:
commit 6320a4c21cf54d32c778417ee077d67fd0bad050
Author: Jim Raykowski 
AuthorDate: Mon Oct 16 06:48:35 2023 -0800
Commit: Jim Raykowski 
CommitDate: Wed Oct 18 04:13:55 2023 +0200

tdf#156114 UNO commands / menu entries to enable PS/CS spotlight

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

diff --git a/include/sfx2/sfxsids.hrc b/include/sfx2/sfxsids.hrc
index 9789cc8a0ac1..55327feb0034 100644
--- a/include/sfx2/sfxsids.hrc
+++ b/include/sfx2/sfxsids.hrc
@@ -388,6 +388,9 @@ class SvxZoomItem;
 #define SID_STYLE_UPD_BY_EX_NAME
TypedWhichId(SID_SFX_START + 1585)
 #define SID_STYLE_REFERENCE 
TypedWhichId(SID_SFX_START + 1602)
 
+#define SID_SPOTLIGHT_PARASTYLES
TypedWhichId(SID_SFX_START + 1605)
+#define SID_SPOTLIGHT_CHARSTYLES
TypedWhichId(SID_SFX_START + 1606)
+
 #define SID_TEMPLATE_NAME   
TypedWhichId(SID_SFX_START + 660)
 #define SID_TEMPLATE_REGIONNAME 
TypedWhichId(SID_SFX_START + 662)
 #define SID_TEMPLATE_LOAD   
TypedWhichId(SID_SFX_START + 663)
diff --git a/include/sfx2/templdlg.hxx b/include/sfx2/templdlg.hxx
index 5dd5b8b6b178..254fcc790fb0 100644
--- a/include/sfx2/templdlg.hxx
+++ b/include/sfx2/templdlg.hxx
@@ -24,11 +24,14 @@
 #include 
 #include 
 #include 
+#include 
 
 class SfxBindings;
 class SfxTemplateDialog_Impl;
 
-class UNLESS_MERGELIBS(SFX2_DLLPUBLIC) SfxTemplatePanelControl final : public 
PanelLayout
+class UNLESS_MERGELIBS(SFX2_DLLPUBLIC) SfxTemplatePanelControl final
+: public PanelLayout,
+  public ::sfx2::sidebar::ControllerItem::ItemUpdateReceiverInterface
 {
 public:
 SfxTemplatePanelControl(SfxBindings* pBindings, weld::Widget* pParent);
@@ -37,7 +40,16 @@ public:
 weld::Builder* get_builder() { return m_xBuilder.get(); }
 weld::Container* get_container() { return m_xContainer.get(); }
 
+virtual void NotifyItemUpdate(const sal_uInt16 nSId, const SfxItemState 
eState,
+  const SfxPoolItem* pState) override;
+
+virtual void GetControlState(const sal_uInt16 /*nSId*/,
+ boost::property_tree::ptree& /*rState*/) 
override{};
+
 private:
+::sfx2::sidebar::ControllerItem m_aSpotlightParaStyles;
+::sfx2::sidebar::ControllerItem m_aSpotlightCharStyles;
+
 std::unique_ptr pImpl;
 };
 
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index c0d820c0e43b..44a98e183ccc 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -429,6 +429,31 @@
 
   Spotlight Character Direct Formatting
 
+
+  Character Direct Formatting
+
+
+  1
+
+  
+  
+
+  Spotlight Paragraph Styles
+
+
+  Paragraph Styles
+
+
+  1
+
+  
+  
+
+  Spotlight Character Styles
+
+
+  Character Styles
+
 
   1
 
@@ -4214,6 +4239,14 @@
   Open the Accessibility Check Deck
 
   
+  
+
+  Spotlight
+
+
+  1
+
+  
 
   
 
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index 7f44bf64d366..db21ee720c2d 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -107,17 +107,6 @@ IMPL_LINK(SfxCommonTemplateDialog_Impl, 
OnAsyncExecuteDrop, void*, pStyleList, v
 ActionSelect("new", m_aStyleList);
 }
 
-SfxTemplatePanelControl::SfxTemplatePanelControl(SfxBindings* pBindings, 
weld::Widget* pParent)
-: PanelLayout(pParent, "TemplatePanel", "sfx/ui/templatepanel.ui")
-, pImpl(new SfxTemplateDialog_Impl(pBindings, this))
-{
-OSL_ASSERT(pBindings!=nullptr);
-}
-
-SfxTemplatePanelControl::~SfxTemplatePanelControl()
-{
-}
-
 namespace 

[Libreoffice-bugs] [Bug 157042] Calc crashes when closed

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157042

--- Comment #14 from Eric  ---
7.6.1.1 on openSuse Tumbleweed. Crashed on close.
I am sure TW will release a newer version soon. I wont report any more crashes
on 7.6.1.1

Application: soffice (soffice), signal: Segmentation fault

[KCrash Handler]
#4  0x7f8587a72ac0 in rtl_uString_release () at
/usr/lib64/libreoffice/program/libuno_sal.so.3
#5  0x7f85846beeab in  () at /usr/lib64/libreoffice/program/libmergedlo.so
#6  0x7f8584810083 in  () at /usr/lib64/libreoffice/program/libmergedlo.so
#7  0x7f8583041b26 in __run_exit_handlers () at /lib64/libc.so.6
#8  0x7f8583041c70 in  () at /lib64/libc.so.6
#9  0x7f85830281b7 in __libc_start_call_main () at /lib64/libc.so.6
#10 0x7f8583028279 in __libc_start_main_impl () at /lib64/libc.so.6
#11 0x558c2b9410c5 in  ()
[Inferior 1 (process 20941) detached]

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

[Libreoffice-bugs] [Bug 107237] [META] Notebookbar Tabbed

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107237
Bug 107237 depends on bug 127038, which changed state.

Bug 127038 Summary: Tabbed toolbar: Unnecessary uno::InsertField redundancy in 
the "References" option group
https://bugs.documentfoundation.org/show_bug.cgi?id=127038

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 127038] Tabbed toolbar: Unnecessary uno::InsertField redundancy in the "References" option group

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127038

Justin L  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |
 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 107237] [META] Notebookbar Tabbed

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107237
Bug 107237 depends on bug 121381, which changed state.

Bug 121381 Summary: Tabbed: combine "Page Break" and "Manual Break" into one 
Breaks drop down menu item in Layout tab
https://bugs.documentfoundation.org/show_bug.cgi?id=121381

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 121381] Tabbed: combine "Page Break" and "Manual Break" into one Breaks drop down menu item in Layout tab

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121381

Justin L  changed:

   What|Removed |Added

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

--- Comment #3 from Justin L  ---
(In reply to andreas_k from comment #1)
> In Insert there is "Only" direct page break but in Layout you have direct
> page break and manual Break menu.
Currently, all MenuInsert's have "Manual Break menu" (.uno:InsertBreak).

Home and Insert tabs only have .uno:InsertPageBreak.
In layout tab, the Page break and Manual break are stacked - so no wasted
space.

I don't see any reason to make changes. Plus, manual break contains Page Break
by definition, so what value would be combining these two into a dropdown?

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

[Libreoffice-bugs] [Bug 127038] Tabbed toolbar: Unnecessary uno::InsertField redundancy in the "References" option group

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127038

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

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

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

2023-10-17 Thread Justin Luth (via logerrit)
 sw/uiconfig/swriter/ui/notebookbar.ui |   36 
 sw/uiconfig/swriter/ui/notebookbar_compact.ui |   39 --
 2 files changed, 13 insertions(+), 62 deletions(-)

New commits:
commit efafe9b1771b1c20bf27345cafbeb9e1b9e635eb
Author: Justin Luth 
AuthorDate: Tue Oct 17 17:00:30 2023 -0400
Commit: Justin Luth 
CommitDate: Wed Oct 18 01:42:32 2023 +0200

tdf#127038 sw notebookbar: remove redundant "more fields"

.uno:InsertFieldCtrl includes all the fields plus "more fields".
While it can be nice to include 1-click access
to the most common fields, there is no need
for 1-click access to the rather large "more fields",
so it has been removed from the tabbed notebookbar ribbons.

Change-Id: I5ebd394106a8d44832adb6dcd598f92e696f48a8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158097
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/uiconfig/swriter/ui/notebookbar.ui 
b/sw/uiconfig/swriter/ui/notebookbar.ui
index bc79d1ba5b3a..b6a99ef1a79b 100644
--- a/sw/uiconfig/swriter/ui/notebookbar.ui
+++ b/sw/uiconfig/swriter/ui/notebookbar.ui
@@ -7538,29 +7538,6 @@
 vertical
 
   
-True
-True
-both-horiz
-False
-
-  
-True
-.uno:InsertField
-  
-  
-False
-True
-  
-
-  
-  
-False
-True
-0
-  
-
-
-  
 True
 True
 icons
@@ -7585,6 +7562,19 @@
 True
   
 
+  
+  
+False
+True
+0
+  
+
+
+  
+True
+True
+icons
+False
 
   
 True
diff --git a/sw/uiconfig/swriter/ui/notebookbar_compact.ui 
b/sw/uiconfig/swriter/ui/notebookbar_compact.ui
index 20a0270a1f39..fec64b30ce38 100644
--- a/sw/uiconfig/swriter/ui/notebookbar_compact.ui
+++ b/sw/uiconfig/swriter/ui/notebookbar_compact.ui
@@ -7179,45 +7179,6 @@
 9
   
 
-
-  
-True
-False
-center
-True
-
-  
-True
-True
-both-horiz
-False
-
-  
-True
-.uno:InsertField
-  
-  
-False
-True
-  
-
-  
-  
-False
-True
-1
-  
-
-
-  
-
-  
-  
-False
-True
-10
-  
-
 
   
 True


[Libreoffice-bugs] [Bug 151430] Groupedbar Compact UI : missing "columns..." entry of the "format" menu of the menu bar

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151430

--- Comment #6 from Justin L  ---
(In reply to Heiko Tietze from comment #5)
> Underneath "MenuInsert-InsertSection"> add a
> similar child with the command .uno:PageColumnType
There are two kinds of columns. One is a section column. However, this one is a
page style column. Putting two different column types in close proximity would
not be a good idea. It seems better to not include it at all, and require
people to either EDIT-PAGE STYLE, or INSERT-SECTION to access the type of
column that they want. (If you go with a compact menu, you should know where to
find things given a major grouping.)

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

[Libreoffice-bugs] [Bug 152297] Track comments in the Navigator also by focus inside the comment box

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152297

--- Comment #3 from loma...@gmail.com ---
It does not track for me in 7.6.2.1. Comment tracking is enabled, when I place
the cursor in comments in the document the navigator pane does nothing.

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

[Libreoffice-bugs] [Bug 142989] Groupedbar Compact UI : the "view" group is hidden when the cursor is into a table

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142989

Justin L  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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

[Libreoffice-bugs] [Bug 152492] Don't spell check URLs within hyperlinks (i.e. spell check only plain words within hyperlinks to avoid of false alarms)

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152492

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

https://git.libreoffice.org/core/commit/7acd895d8a6ed16611a20873f3b2216fccef0634

tdf#45949, tdf#152492: move UITest to CppUnittest

It will be available in 24.2.0.

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

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

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

[Libreoffice-bugs] [Bug 45949] SPELL check does not work for words with hyperlink

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45949

--- Comment #21 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/7acd895d8a6ed16611a20873f3b2216fccef0634

tdf#45949, tdf#152492: move UITest to CppUnittest

It will be available in 24.2.0.

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

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

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

[Libreoffice-bugs] [Bug 152492] Don't spell check URLs within hyperlinks (i.e. spell check only plain words within hyperlinks to avoid of false alarms)

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152492

Commit Notification  changed:

   What|Removed |Added

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

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

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

2023-10-17 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/uiwriter/uiwriter6.cxx   |   50 ++
 sw/qa/uitest/writer_tests4/spellDialog.py |   66 --
 2 files changed, 50 insertions(+), 66 deletions(-)

New commits:
commit 7acd895d8a6ed16611a20873f3b2216fccef0634
Author: Xisco Fauli 
AuthorDate: Tue Oct 17 12:59:15 2023 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 18 00:19:37 2023 +0200

tdf#45949, tdf#152492: move UITest to CppUnittest

Disable the test on mac because it fails with

Test name: testTdf45949::TestBody
equality assertion failed
- Expected: 2
- Actual  : 1

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

diff --git a/sw/qa/extras/uiwriter/uiwriter6.cxx 
b/sw/qa/extras/uiwriter/uiwriter6.cxx
index 3d4b6e3d8d8a..726e16774f3f 100644
--- a/sw/qa/extras/uiwriter/uiwriter6.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter6.cxx
@@ -1688,6 +1688,56 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf124603)
 }
 }
 
+#if !defined(MACOSX)
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf45949)
+{
+createSwDoc();
+SwDoc* pDoc = getSwDoc();
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+const SwViewOption* pOpt = pWrtShell->GetViewOptions();
+uno::Sequence params
+= comphelper::InitPropertySequence({ { "Enable", uno::Any(true) } });
+dispatchCommand(mxComponent, ".uno:SpellOnline", params);
+
+// Automatic Spell Checking is enabled
+CPPUNIT_ASSERT(pOpt->IsOnlineSpell());
+
+// check available en_US dictionary and test spelling with it
+uno::Reference xLngSvcMgr(GetLngSvcMgr_Impl());
+uno::Reference xSpell;
+xSpell.set(xLngSvcMgr->getSpellChecker(), UNO_QUERY);
+LanguageType eLang = LanguageTag::convertToLanguageType(lang::Locale("en", 
"US", OUString()));
+if (xSpell.is() && xSpell->hasLanguage(static_cast(eLang)))
+{
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+emulateTyping(*pTextDoc, u"baaad http://www.baaad.org baaad");
+SwCursorShell* pShell(pDoc->GetEditShell());
+SwTextNode* pNode = pShell->GetCursor()->GetPointNode().GetTextNode();
+
+// tdf#152492: Without the fix in place, this test would have failed 
with
+// - Expected: 1
+// - Actual  : 3
+CPPUNIT_ASSERT_EQUAL(sal_uInt16(1), pNode->GetWrong()->Count());
+
+pWrtShell->Left(SwCursorSkipMode::Chars, /*bSelect=*/false, 10, 
/*bBasicCall=*/false);
+emulateTyping(*pTextDoc, u" ");
+
+CPPUNIT_ASSERT_EQUAL(sal_uInt16(2), pNode->GetWrong()->Count());
+
+pWrtShell->Left(SwCursorSkipMode::Chars, /*bSelect=*/false, 6, 
/*bBasicCall=*/false);
+emulateTyping(*pTextDoc, u" ");
+
+// Move down to trigger spell checking
+pWrtShell->Down(/*bSelect=*/false, 1);
+
+// Without the fix in place, this test would have failed with
+// - Expected: 3
+// - Actual  : 2
+CPPUNIT_ASSERT_EQUAL(sal_uInt16(3), pNode->GetWrong()->Count());
+}
+}
+#endif
+
 #if !defined(MACOSX)
 CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf157442)
 {
diff --git a/sw/qa/uitest/writer_tests4/spellDialog.py 
b/sw/qa/uitest/writer_tests4/spellDialog.py
index 39ef8eaebe42..5fbffe93b1ca 100644
--- a/sw/qa/uitest/writer_tests4/spellDialog.py
+++ b/sw/qa/uitest/writer_tests4/spellDialog.py
@@ -139,72 +139,6 @@ frog, dogg, catt"""
 # correctly without the redline containing a deleted "o"
 self.assertEqual(output_text, 'goood baaadbaaed eeend')
 
-def test_DoNotCheckURL(self):
-supported_locale = self.is_supported_locale("en", "US")
-if not supported_locale:
-self.skipTest("no dictionary support for en_US available")
-
-with self.ui_test.create_doc_in_start_center("writer") as document:
-cursor = document.getCurrentController().getViewCursor()
-# Inserted text must be en_US, so make sure to set language in 
current location
-cursor.CharLocale = Locale("en", "US", "")
-
-xMainWindow = self.xUITest.getTopFocusWindow()
-xEdit = xMainWindow.getChild("writer_edit")
-
-# URL is recognized during typing
-type_text(xEdit, "baaad http://www.baaad.org baaad baaad")
-
-with 
self.ui_test.execute_modeless_dialog_through_command(".uno:SpellingAndGrammarDialog",
 close_button="close") as xDialog:
-checkgrammar = xDialog.getChild('checkgrammar')
-if get_state_as_dict(checkgrammar)['Selected'] == 'true':
-checkgrammar.executeAction('CLICK', ())
-self.assertTrue(get_state_as_dict(checkgrammar)['Selected'] == 
'false')
-
-change = xDialog.getChild('change')
-change.executeAction("CLICK", ())
-change.executeAction("CLICK", ())
-
- 

[Libreoffice-bugs] [Bug 45949] SPELL check does not work for words with hyperlink

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45949

Commit Notification  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 157799] Import of csv is insecure

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157799

Jens-D Doll  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

--- Comment #13 from Jens-D Doll  ---
The csv format has always been a database format with fixed types in each
column. See

https://support.microsoft.com/en-us/office/create-or-edit-csv-files-to-import-into-outlook-4518d70d-8fe9-46ad-94fa-1494247193c7

for reference. So this is a bug.

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

[Libreoffice-bugs] [Bug 157799] Import of csv is insecure

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157799

--- Comment #12 from Jens-D Doll  ---
Created attachment 190273
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190273=edit
a view of the buggy import

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

[Libreoffice-bugs] [Bug 157805] Forms: Content of numeric field won't be deleted completely with DEL or BACKSPACE

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157805

--- Comment #5 from jcs...@libreoffice.org ---
(In reply to jcsanz from comment #4)
> (In reply to Robert Großkopf from comment #1)
> 
> > In LO 7.1.5.2 will be save '0' in the numeric field, which content has been
> > deleted by Backspace.
> It seems that the empty value is replaced by the "Value min" property of the
> control, which is not possible to set to empty or NULL

Testing more, if you change the "Value min" to any other value, and clear the
numeric field, the value shown in the form is the value min, but really the
value saved in the table is 0

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

[Libreoffice-bugs] [Bug 157788] Saving the "Show navigation panel" setting for a device

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157788

--- Comment #13 from Adolfo Jayme Barrientos  ---
There is always the possibility of asking for a UI Freeze exception on the l10n
list, so that the translated strings are exceptionally unblocked for this
enhancement.

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

[Libreoffice-bugs] [Bug 157805] Forms: Content of numeric field won't be deleted completely with DEL or BACKSPACE

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157805

--- Comment #4 from jcs...@libreoffice.org ---
(In reply to Robert Großkopf from comment #1)

> In LO 7.1.5.2 will be save '0' in the numeric field, which content has been
> deleted by Backspace.
It seems that the empty value is replaced by the "Value min" property of the
control, which is not possible to set to empty or NULL

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

[Libreoffice-bugs] [Bug 157805] Forms: Content of numeric field won't be deleted completely with DEL or BACKSPACE

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157805

--- Comment #3 from jcs...@libreoffice.org ---
Confirmed with:
---
Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 56f7684011345957bbf33a7ee678afaf4d2ba333
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: es-ES
Calc: CL threaded
---

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

[Libreoffice-bugs] [Bug 133539] Inconsistent Comment Commands in Notebookbar Tabbed Interface Review Tab Across Modules

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133539

--- Comment #3 from Justin L  ---
Created attachment 190272
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190272=edit
Ribbon-Review-MSO2019.png: How the two ribbons look in MSO 2019

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

[Libreoffice-bugs] [Bug 157809] the MSI archive contains all translations and all language dictionaries

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157809

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||mikekagan...@hotmail.com

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
I think I saw inverse report (to have all language packs in one DMG installer)
just for macOS where we had problems with language packs installing

Mike, what do you think about this one?

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

[Libreoffice-bugs] [Bug 157809] the MSI archive contains all translations and all language dictionaries

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157809

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Maybe this page can help:
https://wiki.documentfoundation.org/Deployment_and_Migration

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

[Libreoffice-bugs] [Bug 157807] pptx import, picture (AlternateContent fallback) is not imported

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157807

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Reproducible with:

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e9374f74385d7dfe77d1902d3d82af20143bc775
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 157805] Forms: Content of numeric field won't be deleted completely with DEL or BACKSPACE

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157805

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
The first digit is saved, reproducible with
Version: 7.6.1.2 (X86_64) / LibreOffice Community
Build ID: f5defcebd022c5bc36bbb79be232cb6926d8f674
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e9374f74385d7dfe77d1902d3d82af20143bc775
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

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

[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129661

ady  changed:

   What|Removed |Added

 Depends on||157784


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=157784
[Bug 157784] In libreoffice calc, the names of the sheets are displayed in
opposite direction now, which is annoying.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157784] In libreoffice calc, the names of the sheets are displayed in opposite direction now, which is annoying.

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157784

ady  changed:

   What|Removed |Added

 Blocks||129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 157647] Getting F1 to work.

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157647

--- Comment #3 from Trevor  ---

Hello   [Bug 157647] Getting F1 to work.

I originally chose v7.5.7 and discovered the annoying F1 problem. Since then I
noticed that making Edge default browser F1 worked ok. Since then i have tried
6.4.4, v.7.5.7 and now v 7.6.2 all are now working ok and I'm back with Opera
as default browser.. My Opera has now updated but previously was vers
102.0.4880.78. I hope that helps. Now that the problem has gone away, I would
like to close my enquiry.

thanks

Trevor

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

[Libreoffice-bugs] [Bug 157803] Prevent extending decimal extension for calculations with floating point arithmetic accuracy issues (IEEE 754) in 'General' number format type

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157803

m.a.riosv  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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

[Libreoffice-bugs] [Bug 157802] Extra heading number when recording changes and copying headings

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157802

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #4 from m.a.riosv  ---
Please, can you attach a sample file with the issue before accept the changes.
I'm not able to reproduce from scratch.
Version: 7.5.8.1 (X86_64) / LibreOffice Community
Build ID: a3cc32c5bcaabeae7ab60e12c44c40a7d8d36345
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

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

[Libreoffice-bugs] [Bug 151875] MySQL/MariaDB direct Connection: Column Description won't be saved

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151875

jcs...@libreoffice.org changed:

   What|Removed |Added

 CC||nthieb...@gmail.com
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #6 from jcs...@libreoffice.org ---
Bibisected with bibisect-win64-7.2 repo, it seems that the "Column Description"
disappears and after that, when reappears didn't work properly, in the next
commit:

commit 2c370ceb462387c74878451e3bdf8c156175b4ea
Author: Norbert Thiebaud 
Date:   Wed Jun 16 00:01:53 2021 -0700

source sha:ffc6d564b91692cd9d99a0eb3b1ceaf54f7db89e

commit  ffc6d564b91692cd9d99a0eb3b1ceaf54f7db89e
author  Jan-Marek Glogowski  Tue Jun 01 07:40:12 2021 +0200
committer   Jan-Marek Glogowski  Tue Jun 01 20:04:56
2021 +0200
tree802161bbd2537009992ee519b3aefc59ee054ca8
parent  7cdf74b305be14825c615b2abe6ab8d79fe858ff

Adding Cc: to Jan-Marek Glogowski
Could you possibly take a look at this one? Thanks

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

[Libreoffice-bugs] [Bug 102345] [META] Formatting marks (aka Non-printing characters) bugs and enhancements

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102345
Bug 102345 depends on bug 157562, which changed state.

Bug 157562 Summary: Arabic text with No-Width optional break (U+200B) does not 
apply OpenType font feature properly
https://bugs.documentfoundation.org/show_bug.cgi?id=157562

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|NOTABUG |---

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

[Libreoffice-bugs] [Bug 157562] Arabic text with No-Width optional break (U+200B) does not apply OpenType font feature properly

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157562

⁨خالد حسني⁩  changed:

   What|Removed |Added

 OS|Windows (All)   |All
Version|7.6.2.1 release |Inherited From OOo
 Status|RESOLVED|NEW
 Resolution|NOTABUG |---

--- Comment #8 from ⁨خالد حسني⁩  ---
(In reply to Lateef Shaikh from comment #6)
> Thank you for your time and help with this. Actually I am trying different
> characters as alternate to the tatweel approach, because tatweel is more of
> a justification character and can only be used when we have this scenario
> between two connecting alphabets. When it comes to non connecting alphabets
> like Ra and alef then we can't use tatweel. Therefore I was looking for a
> space like character with zero width and allows joining.

FWIW, Unicode suggests using tatweel between connected letters, and NBSP
between unconnected ones. I can’t find where this is documented right now so
you have to  take my word for it. This has the advantage of being a simple
solution and works virtually with any font (and if it does not work properly,
the fallback will still be acceptable).

The behavior reported here is still a bug regardless.

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

[Libreoffice-bugs] [Bug 157801] Direct formatting is applied opening Character properties dialog (Highlighting tab) and pressing OK

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157801

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Reproducible with:
Version: 7.6.1.2 (X86_64) / LibreOffice Community
Build ID: f5defcebd022c5bc36bbb79be232cb6926d8f674
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
and
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e9374f74385d7dfe77d1902d3d82af20143bc775
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

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

[Libreoffice-bugs] [Bug 145542] FILESAVE DOCX When saving a .ODT file as a Word .DOCX file, image sizes are not preserved

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145542

--- Comment #10 from Regina Henschel  ---
The attached document has the rendered size in LayoutSize property. The Size,
Width and Height properties are different from LayoutSize. After the document
is resaved to odt and load again, Size, Width and Height properties have the
same values as LayoutSize property. I don't know why they are initially
different. The problem is not related to SVG.

I cannot reproduce the size problem with a new document. @Mike: How do you have
created your document?

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

[Libreoffice-bugs] [Bug 146758] Option to Reload a document is missing with Notebookbar enabled

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146758

--- Comment #10 from Justin L  ---
With the options to close a document/open recent document being readily
available, I do not see reasonable value in providing a reload button.

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

[Libreoffice-bugs] [Bug 155876] [LOCALHELP] - Calc - Help pages about dialogs should provide instructions for the Tabbed UI

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155876

--- Comment #7 from Commit Notification 
 ---
Olivier Hallot committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/7d08444f187ddea8a983565fc2c7fb8b2a38176c

tdf#155876 UI cmds Calc (04)

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

[Libreoffice-commits] core.git: helpcontent2

2023-10-17 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 45c166c002e1204600039c673ade94996351
Author: Olivier Hallot 
AuthorDate: Tue Oct 17 18:04:17 2023 -0300
Commit: Gerrit Code Review 
CommitDate: Tue Oct 17 23:04:17 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 7d08444f187ddea8a983565fc2c7fb8b2a38176c
  - tdf#155876 UI cmds Calc (04)

+ refactoring
+ Edit - cell edit mode

Change-Id: I43bcbd6f0467f0e923450a3b74b197b7166db15c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/158095
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index e3fa34a71832..7d08444f187d 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit e3fa34a71832b722a496534970be68e63ff1c0b8
+Subproject commit 7d08444f187ddea8a983565fc2c7fb8b2a38176c


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

2023-10-17 Thread Olivier Hallot (via logerrit)
 AllLangHelp_scalc.mk |1 
 source/text/scalc/00/0402.xhp|6 +
 source/text/scalc/01/SetInputMode.xhp|   36 +++
 source/text/scalc/main0102.xhp   |1 
 source/text/shared/optionen/01060300.xhp |1 
 5 files changed, 44 insertions(+), 1 deletion(-)

New commits:
commit 7d08444f187ddea8a983565fc2c7fb8b2a38176c
Author: Olivier Hallot 
AuthorDate: Tue Oct 17 17:14:51 2023 -0300
Commit: Olivier Hallot 
CommitDate: Tue Oct 17 23:04:17 2023 +0200

tdf#155876 UI cmds Calc (04)

+ refactoring
+ Edit - cell edit mode

Change-Id: I43bcbd6f0467f0e923450a3b74b197b7166db15c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/158095
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/AllLangHelp_scalc.mk b/AllLangHelp_scalc.mk
index 5dc4e85648..c553800518 100644
--- a/AllLangHelp_scalc.mk
+++ b/AllLangHelp_scalc.mk
@@ -291,6 +291,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,scalc,\
 helpcontent2/source/text/scalc/01/SelectColumn \
 helpcontent2/source/text/scalc/01/SelectData \
 helpcontent2/source/text/scalc/01/SelectRow \
+helpcontent2/source/text/scalc/01/SetInputMode \
 helpcontent2/source/text/scalc/01/shared_spreadsheet \
 helpcontent2/source/text/scalc/01/sheet_tab_color \
 helpcontent2/source/text/scalc/01/solver \
diff --git a/source/text/scalc/00/0402.xhp 
b/source/text/scalc/00/0402.xhp
index 670c386a3a..5fc250c4ff 100644
--- a/source/text/scalc/00/0402.xhp
+++ b/source/text/scalc/00/0402.xhp
@@ -154,6 +154,12 @@
 
 Choose 
Edit - Select - Select Visible Columns.
 
+
+  
+  Choose Edit 
- Cell Edit Mode.
+  
+  F2
+
 
 Choose Insert - Headers and 
Footers.
 Choose Insert - Headers and Footers - Header and 
Footer tabs.
diff --git a/source/text/scalc/01/SetInputMode.xhp 
b/source/text/scalc/01/SetInputMode.xhp
new file mode 100644
index 00..1c4d0418ae
--- /dev/null
+++ b/source/text/scalc/01/SetInputMode.xhp
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+Cell Edit Mode
+/text/scalc/01/SetInputMode.xhp
+
+
+
+
+
+cell edit mode
+F2;cell edit mode
+
+
+Cell Edit Mode
+Enable direct 
cell content editing.
+
+
+
+
+The cell edit mode 
enabled on a cell with formula displays the formula expression instead of the 
result of the formula calculation.
+In this mode, 
references to other cells are displayed in colors and the referenced cells have 
their borders highlighted with the same color. The highlighted cell displays 
handles on the corners to allow by dragging the handles, to extend the 
highlighted reference. The formula is automatically updated with the expression 
of the reference.
+For example, a 
cell with formula =A1+B1 displays A1 in 
color 1 and B1 in color 2 (colors are defined internally). 
The cell A1 is highlighted in color 1 and B1 is highlighted in color 
2.
+Press 
Enter to end the cell edit mode.
+
+
diff --git a/source/text/scalc/main0102.xhp b/source/text/scalc/main0102.xhp
index 4e83358605..74c251bae1 100644
--- a/source/text/scalc/main0102.xhp
+++ b/source/text/scalc/main0102.xhp
@@ -46,6 +46,7 @@
 
 
 
+
 
 
 
diff --git a/source/text/shared/optionen/01060300.xhp 
b/source/text/shared/optionen/01060300.xhp
index ffb349e13e..01e459681f 100644
--- a/source/text/shared/optionen/01060300.xhp
+++ b/source/text/shared/optionen/01060300.xhp
@@ -66,7 +66,6 @@
   Determines the 
direction that the cursor in the spreadsheet will move after you press the 
Enter key.
 
 
-
 see i53756
 Press Enter to switch to edit mode
 


[Libreoffice-bugs] [Bug 157785] The font colour of the text in cells is not changed in the editing mode

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157785

--- Comment #5 from m.a.riosv  ---
Created attachment 190271
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190271=edit
Register xcu file with the bad behavior.

This is getting me a bit crazy.

With the attached registrymodifications.xcu, the issue happens for me with
Version: 7.5.8.1 (X86_64) / LibreOffice Community
Build ID: a3cc32c5bcaabeae7ab60e12c44c40a7d8d36345
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
and with the same xcu file happens with:
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e9374f74385d7dfe77d1902d3d82af20143bc775
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded

But I'm not able now to solve it, deleting the scheme in:
Menu/Tools/Options/LibreOffice/Application colors/Color Scheme.

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

[Libreoffice-commits] core.git: helpcontent2

2023-10-17 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 85ed491ac9bd0ced02b61003da49d89b6b41f5ac
Author: Olivier Hallot 
AuthorDate: Tue Oct 17 23:03:54 2023 +0200
Commit: Gerrit Code Review 
CommitDate: Tue Oct 17 23:03:54 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to e3fa34a71832b722a496534970be68e63ff1c0b8
  - fix bad index entry

Change-Id: I5cb5f87e727101700446e8b94ab854ece8a9c269
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157956
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 020c1cb426fa..e3fa34a71832 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 020c1cb426fa951da23f51c1d93b59259ec87608
+Subproject commit e3fa34a71832b722a496534970be68e63ff1c0b8


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

2023-10-17 Thread Olivier Hallot (via logerrit)
 source/text/swriter/01/0314.xhp |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit e3fa34a71832b722a496534970be68e63ff1c0b8
Author: Olivier Hallot 
AuthorDate: Sat Oct 14 11:24:09 2023 +0200
Commit: Olivier Hallot 
CommitDate: Tue Oct 17 23:03:53 2023 +0200

fix bad index entry

Change-Id: I5cb5f87e727101700446e8b94ab854ece8a9c269
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/157956
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/swriter/01/0314.xhp 
b/source/text/swriter/01/0314.xhp
index b7d8d53b7a..139c9dafe1 100644
--- a/source/text/swriter/01/0314.xhp
+++ b/source/text/swriter/01/0314.xhp
@@ -28,9 +28,9 @@
 
 
 
-  show;hidden paragraph
-  view;hidden paragraph;show
-  hidden paragraph;show
+show;hidden paragraph
+view;hidden paragraph
+hidden paragraph;show
 
 
 


[Libreoffice-bugs] [Bug 157808] FORMATTING

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157808

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
Please paste here the version information copied from Help > About LibreOffice.
Thank you!

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

[Libreoffice-bugs] [Bug 157809] New: the MSI archive contains all translations and all language dictionaries

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157809

Bug ID: 157809
   Summary: the MSI archive contains all translations and all
language dictionaries
   Product: LibreOffice
   Version: 7.6.2.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jerome.bo...@laposte.net

My organization encounter difficulties to deploy LibreOffice on Windows boxes
with wapt. However my organization is using only one translation for the user
interface and about 3 dictionaries. My organization has to split the original
MSI file in about 10 parts in order to deploy it.

I extracted the content of the LibreOffice_7.6.2_Win_x86-64.msi archive (345MB)
with msiextract :
- the tar-gzipped "resource" directory which contains all translations needs
69MB
- the tar-gzipped language dictionaries in "share/extensions" needs 95MB.

I propose instead :
- a "language pack" MSI archive for each language with the translated user
interface and the offline translated help,
- a "dictionary" MSI archive for each language.

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

[Libreoffice-bugs] [Bug 102345] [META] Formatting marks (aka Non-printing characters) bugs and enhancements

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102345
Bug 102345 depends on bug 157562, which changed state.

Bug 157562 Summary: Arabic text with No-Width optional break (U+200B) does not 
apply OpenType font feature properly
https://bugs.documentfoundation.org/show_bug.cgi?id=157562

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

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

[Libreoffice-bugs] [Bug 157562] Arabic text with No-Width optional break (U+200B) does not apply OpenType font feature properly

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157562

Lateef Shaikh  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|NEW |RESOLVED

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

[Libreoffice-bugs] [Bug 157562] Arabic text with No-Width optional break (U+200B) does not apply OpenType font feature properly

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157562

--- Comment #7 from Lateef Shaikh  ---
Created attachment 190270
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190270=edit
U2060

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

LLVM exit code 139 building git master on Xubuntu 22.04

2023-10-17 Thread David Gerard
I pulled from git master today to build LO and got LLVM exit code 139
- an error code I can't find the meaning of, but it's apparently an
internal error.

The build ends like this, even after a make clean (I've cut the stack dump):

...
[CXX] sal/osl/unx/tempfile.cxx
[CXX] sal/osl/unx/thread.cxx
[CXX] sal/osl/unx/time.cxx
[CXX] sal/osl/unx/uunxapi.cxx
[CXX] sal/osl/unx/system.cxx
PLEASE submit a bug report to
https://github.com/llvm/llvm-project/issues/ and include the crash
backtrace, preprocessed source, and associated run script.
Stack dump:
0.Program arguments: /usr/bin/c++ -DBOOST_ERROR_CODE_HEADER_ONLY
-DBOOST_SYSTEM_NO_DEPRECATED -DCPPU_ENV=gcc3 -DLINUX -DNDEBUG
-DOSL_DEBUG_LEVEL=0 -DUNIX -DUNX -DX86_64 -D_PTHREADS -D_REENTRANT
-DSAL_DLLIMPLEMENTATION -DRTL_OS=\"Linux\" -DRTL_ARCH=\"X86_64\"
-DSRCDIR=\"/home/fun/libreoffice\" -DCOND_LIB_SAL_TEXTENC
-DSYSTEM_ZLIB -DZLIB_CONST -fvisibility=hidden -Wall
-Wno-missing-braces -Wendif-labels -Wextra -Wundef -Wunreachable-code
-Wshadow -Wunused-macros -Wembedded-directive -finput-charset=UTF-8
-fmessage-length=0 -fno-common -pipe -fstack-protector-strong
-Wdeprecated-copy-dtor -Wimplicit-fallthrough
-Wunused-exception-parameter -Wrange-loop-analysis
-fvisibility-inlines-hidden -fPIC -Wshadow -Woverloaded-virtual
-std=c++20 -pthread -O2 -fexceptions -DLIBO_INTERNAL_ONLY -c
/home/fun/libreoffice/sal/osl/all/debugbase.cxx -o
/home/fun/libreoffice/workdir/CxxObject/sal/osl/all/debugbase.o -MMD
-MT /home/fun/libreoffice/workdir/CxxObject/sal/osl/all/debugbase.o
-MP -MF /home/fun/libreoffice/workdir/Dep/CxxObject/sal/osl/all/debugbase.d_
-I/home/fun/libreoffice/workdir/UnpackedTarball/dtoa/include/
-I/home/fun/libreoffice/workdir/UnpackedTarball/dragonbox/include/
-I/home/fun/libreoffice/include
-I/usr/lib/jvm/java-17-openjdk-amd64/include
-I/usr/lib/jvm/java-17-openjdk-amd64/include/linux
-I/home/fun/libreoffice/config_host -I/home/fun/libreoffice/sal/inc
-fcolor-diagnostics
1./home/fun/libreoffice/sal/osl/all/debugbase.cxx:52:8: current
parser token ';'
2./home/fun/libreoffice/sal/osl/all/debugbase.cxx:30:1: parsing
namespace '(anonymous)'
3./home/fun/libreoffice/sal/osl/all/debugbase.cxx:33:1: parsing
function body '(anonymous namespace)::StaticDebugBaseAddressFilter'
4./home/fun/libreoffice/sal/osl/all/debugbase.cxx:33:1: in
compound statement ('{}')
Stack dump without symbol names (ensure you have llvm-symbolizer in
your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point
to it):

[...]

clang: error: clang frontend command failed with exit code 139 (use -v
to see invocation)
Ubuntu clang version 14.0.0-1ubuntu1.1
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin


I don't see everyone else complaining about this, so I expect it's
something special in my setup. Does anyone have any idea?


- thanks, David.


[Libreoffice-bugs] [Bug 157562] Arabic text with No-Width optional break (U+200B) does not apply OpenType font feature properly

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157562

--- Comment #6 from Lateef Shaikh  ---
Thank you for your time and help with this. Actually I am trying different
characters as alternate to the tatweel approach, because tatweel is more of a
justification character and can only be used when we have this scenario between
two connecting alphabets. When it comes to non connecting alphabets like Ra and
alef then we can't use tatweel. Therefore I was looking for a space like
character with zero width and allows joining.

U+200B breaks the word so after posting this bug I had a discussion with a
friend who made me realize that it is not a good choice anyways.

Then I first found U+FEFF (ZWNBSP) but that is deprecated, the new character is
Word Joiner (U+2060). It works fine in Chrome and in Libre (using Noto Naskh
font).

So I think you can close this ticket.

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

[Libreoffice-bugs] [Bug 157074] Program freeze when editing graphics, saving file

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157074

--- Comment #22 from Andreas Zieritz  ---
I've downloaded both 7.5 and 7.6.3.0.0 from Github as described in your
instructions.

Both versions do not show the freeze, it only appears in the current
installation version.

I've also switched the language from default (norwegian) in the installed
version to English, but the problem doesn't disappear because of that.

Regarding the Git version I am not sure how to install a different language for
the interface, just found a Youtube video showing that this can be done using
the installation file.

- git versions don't show any problem
- installed version freezes during save

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

[Libreoffice-bugs] [Bug 157074] Program freeze when editing graphics, saving file

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157074

--- Comment #21 from Andreas Zieritz  ---
Created attachment 190269
  --> https://bugs.documentfoundation.org/attachment.cgi?id=190269=edit
7.6 Versions used during test

Screenshot of versions used during testing.

Left side shows 7.6.3.0.0 used from Git, right side current download 7.6.2.1

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

[Libreoffice-bugs] [Bug 119111] Shapes losing position and z-index

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119111

--- Comment #34 from Gabriele Ponzo  ---
I was(In reply to Gabriele Ponzo from comment #33)
> It still hides callouts behind pictures :(
> 
> Version: 7.6.2.1 (X86_64) / LibreOffice Community
> Build ID: 60(Build:1)
> CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
> Locale: it-IT (it_IT.UTF-8); UI: it-IT
> Ubuntu package version: 4:7.6.2~rc1-0ubuntu0.20.04.1~lo1
> Calc: threaded

And I did also rename all the (hundreds of) objects in my files.

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

[Libreoffice-bugs] [Bug 119111] Shapes losing position and z-index

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119111

--- Comment #33 from Gabriele Ponzo  ---
It still hides callouts behind pictures :(

Version: 7.6.2.1 (X86_64) / LibreOffice Community
Build ID: 60(Build:1)
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: it-IT (it_IT.UTF-8); UI: it-IT
Ubuntu package version: 4:7.6.2~rc1-0ubuntu0.20.04.1~lo1
Calc: threaded

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

[Libreoffice-bugs] [Bug 157442] Redlining of a misspelled word disappears when you write an erroneous word with a number after it

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157442

--- Comment #14 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/4be9bd0595cec36b6a22ca12b48661e080a5a1d8

tdf#157442: sw_uiwriter6: Add unittest

It will be available in 24.2.0.

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

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

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

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

2023-10-17 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/uiwriter/uiwriter6.cxx |   43 ++--
 1 file changed, 41 insertions(+), 2 deletions(-)

New commits:
commit 4be9bd0595cec36b6a22ca12b48661e080a5a1d8
Author: Xisco Fauli 
AuthorDate: Tue Oct 17 11:13:07 2023 +0200
Commit: Xisco Fauli 
CommitDate: Tue Oct 17 21:30:57 2023 +0200

tdf#157442: sw_uiwriter6: Add unittest

gerrit_mac fails with

[_RUN_] testTdf157442::TestBody

Error: a unit test failed, please do one of:
make CppunitTest_sw_uiwriter6 CPPUNITTRACE="lldb --"   # for 
interactive debugging on macOS
make CppunitTest_sw_uiwriter6 VALGRIND=memcheck# for memory 
checking

You can limit the execution to just one particular test by:

make CppunitTest_sw_uiwriter6 CPPUNIT_TEST_NAME="testXYZ" ...above 
mentioned params...

so disable it for now on mac

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

diff --git a/sw/qa/extras/uiwriter/uiwriter6.cxx 
b/sw/qa/extras/uiwriter/uiwriter6.cxx
index ac5155f429a9..3d4b6e3d8d8a 100644
--- a/sw/qa/extras/uiwriter/uiwriter6.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter6.cxx
@@ -46,6 +46,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1687,9 +1688,47 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf124603)
 }
 }
 
-CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf65535)
+#if !defined(MACOSX)
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf157442)
 {
+createSwDoc();
+SwDoc* pDoc = getSwDoc();
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+const SwViewOption* pOpt = pWrtShell->GetViewOptions();
+uno::Sequence params
+= comphelper::InitPropertySequence({ { "Enable", uno::Any(true) } });
+dispatchCommand(mxComponent, ".uno:SpellOnline", params);
+
+// Automatic Spell Checking is enabled
+CPPUNIT_ASSERT(pOpt->IsOnlineSpell());
+
+// check available en_US dictionary and test spelling with it
+uno::Reference xLngSvcMgr(GetLngSvcMgr_Impl());
+uno::Reference xSpell;
+xSpell.set(xLngSvcMgr->getSpellChecker(), UNO_QUERY);
+LanguageType eLang = LanguageTag::convertToLanguageType(lang::Locale("en", 
"US", OUString()));
+if (xSpell.is() && xSpell->hasLanguage(static_cast(eLang)))
+{
+uno::Reference xLinguProperties(
+LinguMgr::GetLinguPropertySet());
+
+// Spell with digits is disabled by default
+CPPUNIT_ASSERT_EQUAL(sal_False, 
xLinguProperties->getIsSpellWithDigits());
+
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+emulateTyping(*pTextDoc, u"ErrorError Treee2 ");
+SwCursorShell* pShell(pDoc->GetEditShell());
+SwTextNode* pNode = pShell->GetCursor()->GetPointNode().GetTextNode();
+
+// Without the fix in place, this test would have crashed because 
GetWrong() returns nullptr
+CPPUNIT_ASSERT_EQUAL(sal_uInt16(1), pNode->GetWrong()->Count());
+}
+}
+#endif
+
 #if !defined(MACOSX)
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf65535)
+{
 createSwDoc("tdf65535.fodt");
 SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
 SwWrtShell* pWrtShell = pTextDoc->GetDocShell()->GetWrtShell();
@@ -1755,8 +1794,8 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testTdf65535)
 }
 // This was false (lost comment with spelling replacement)
 CPPUNIT_ASSERT_EQUAL(OString("with comment"), sCommentText);
-#endif
 }
+#endif
 
 CPPUNIT_TEST_FIXTURE(SwUiWriterTest6, testRedlineAutoCorrect)
 {


[Libreoffice-bugs] [Bug 157701] LibreOffice Calc crashes when trying to apply formatting to entire row

2023-10-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157701

--- Comment #5 from BogdanB  ---
Also I filled 586 rows and until FT column with data, and I selected a whole
row, and bold, and I have a 1 second working process, than all is done. No
freeze.

Ubuntu 22.04.3
64
42.9
X11

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

  1   2   3   4   >