[Libreoffice-bugs] [Bug 154966] Base is unable to manage firebird databases.

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154966

--- Comment #6 from Robert Großkopf  ---
(In reply to third='beedell', first='roke', second='julian lockhart' from
comment #4)
> (In reply to Julien Nabet from comment #2)
> > Following Robert's comment, let's put this one as NOTOURBUG.
> 
> I'd actually like to reopen this, since `sudo snap install libreoffice
> --edge` (obviously delegated to --beta) doesn't provide firebird either. The
> dropdown is also blank. Surely there shouldn't be an issue with the snap
> package, too?

So: Which version do you get? 
Help → About
Click on "Version Information" to copy and paste here.

I'm using OpenSUSE a long time. Every version of LO will support Firebird,
since Firebird has been introduced (LO 5.3). You have to enable experimental
features to create a new Firebird database. You won't need experimental
features 'on' for an existing Firebird database.

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

Re: UI/accessibility dev advice needed on change 150546

2023-04-26 Thread Heiko Tietze
The gla11y tool was implemented to ensure accessibility and is required. 
Silencing a warning is only appropriate for static strings; see 
https://wiki.documentfoundation.org/Development/Accessibility for more info.


The browselabel seems to be a (dynamic) label for the GtkEntry browseurl, and 
should provide a mnemonic. An example for the dynamic part might be the sortkey.ui.


On 27.04.23 06:19, Lionel Élie Mamane wrote:

Hi,

I'm reviewing https://gerrit.libreoffice.org/150546
by Nirnay. It adds a .ui file, and a "make" outputs warning like

WARNING: 'GtkLabel' 'browselabel' does not specify what it labels within 
'GtkFrame' 'frame1'

The other preexisting .ui files also generate a bunch of them, but
they are silenced in a .suppr file...

What is our policy on this? Should/can Nirnay just silence them, too,
by adding them to the .suppr file? I guess not. Please tell Nirnay
what he should do in respect of this; I'd rather not commit as is
with the warning (nor simply suppressing them) unless a
UI/accessibility knowledgeable persons signs off on it
(the rest of the change is nearly ready to merge, and should be
  completely ready within an hour so.)

Thanks in advance,

Lionel


--
Dr. Heiko Tietze, UX-Designer and UX-Mentor
Tel: +49 30 5557992-63 | Mail: heiko.tie...@documentfoundation.org
The Document Foundation, Winterfeldtstraße 52, 10781 Berlin, DE
Gemeinnützige rechtsfähige Stiftung des bürgerlichen Rechts
Legal details: https://www.documentfoundation.org/imprint


OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-bugs] [Bug 141894] Writer : when a mail address contains ç letter, its link is wrong

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141894

--- Comment #7 from david.vantyg...@laposte.net ---
Created attachment 186948
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186948=edit
This bug is still present

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

[Libreoffice-bugs] [Bug 38194] Style indicator in document margin

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38194

--- Comment #61 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/2ff85183b959c05134a2737d6d14afd1882f2ba3

tdf#38194 Use a hashed string HSL color approach

It will be available in 7.6.0.

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

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

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

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

2023-04-26 Thread Jim Raykowski (via logerrit)
 sfx2/source/dialog/StyleList.cxx |   42 ++-
 1 file changed, 11 insertions(+), 31 deletions(-)

New commits:
commit 2ff85183b959c05134a2737d6d14afd1882f2ba3
Author: Jim Raykowski 
AuthorDate: Wed Apr 26 17:16:20 2023 -0800
Commit: Tomaž Vajngerl 
CommitDate: Thu Apr 27 07:36:30 2023 +0200

tdf#38194 Use a hashed string HSL color approach

for style name color creation

New magic for style name color creation.

Change-Id: Ia6eec2dcf04fc2c3c38276bf6eaed73598505947
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151079
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/sfx2/source/dialog/StyleList.cxx b/sfx2/source/dialog/StyleList.cxx
index ce2d2f9bb7d0..7b17137363a7 100644
--- a/sfx2/source/dialog/StyleList.cxx
+++ b/sfx2/source/dialog/StyleList.cxx
@@ -63,6 +63,7 @@
 #include 
 
 #include 
+#include 
 
 using namespace css;
 using namespace css::beans;
@@ -94,42 +95,21 @@ public:
 
 namespace
 {
-Color ColorHash(const OUString& rString)
+Color ColorHash(std::u16string_view rString)
 {
-// method 1
-//Color aColor(rString.hashCode() & 0xFF);
+static std::vector aSaturationArray{ 0.90, 0.75, 0.60 };
+static std::vector aLightnessArray = aSaturationArray;
 
-// method 2 borrowed from 
https://github.com/RolandR/ColorHash/blob/master/colorhash.js
-//sal_Int32 nSum = 0;
+sal_uInt32 nStringHash = OUString(rString).hashCode();
 
-//for (int i = 0; i < rString.getLength(); i++)
-//{
-//nSum += rString[i];
-//}
+double nHue = nStringHash % 359;
+double nSaturation = aSaturationArray[nStringHash / 360 % 
aSaturationArray.size()];
+double nLightness
+= aLightnessArray[nStringHash / 360 / aSaturationArray.size() % 
aLightnessArray.size()];
 
-//sal_uInt8 nRed = OUString("0." + OUString(OUString::number(std::sin(nSum 
+ 1))).copy(6)).toDouble() * 256;
-//sal_uInt8 nGreen = OUString("0." + 
OUString(OUString::number(std::sin(nSum + 2))).copy(6)).toDouble() * 256;
-//sal_uInt8 nBlue = OUString("0." + 
OUString(OUString::number(std::sin(nSum + 3))).copy(6)).toDouble() * 256;
+basegfx::BColor aHSLColor(nHue, nSaturation, nLightness);
 
-//Color aColor(nRed, nGreen, nBlue);
-
-// method 3 std::hash
-//const std::hash hasher;
-//Color aColor(hasher(rString) & 0xFF);
-
-// method 4
-sal_uInt32 nLen = rString.getLength();
-sal_uInt32 nHashCode = nLen;
-while (nLen > 0)
-{
-nHashCode = (nHashCode * 107) + rString[nLen - 1];
-nLen--;
-}
-sal_uInt32 nColor = nHashCode & 0xFF;
-Color aColor(ColorTransparency, nColor);
-aColor.ApplyTintOrShade(5000);
-
-return aColor;
+return Color(basegfx::utils::hsl2rgb(aHSLColor));
 }
 
 // used to disallow the default character style in the styles highlighter 
character styles color map


[Libreoffice-bugs] [Bug 153985] Horrible performance scrolling up with PgUp when Automatic Spell Checking is on [kf5 (cairo+xcb), X11]

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153985

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 155036] Very slow sheet scrolling in Calc on MacOS

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155036

ady  changed:

   What|Removed |Added

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

--- Comment #2 from ady  ---
(In reply to Dan Dascalescu from comment #0)

> A test case is in this related bug,
bug 153985

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

[Libreoffice-commits] core.git: desktop/source include/LibreOfficeKit

2023-04-26 Thread Tor Lillqvist (via logerrit)
 desktop/source/lib/init.cxx   |  102 +++---
 include/LibreOfficeKit/LibreOfficeKit.h   |   12 ---
 include/LibreOfficeKit/LibreOfficeKit.hxx |   28 
 3 files changed, 25 insertions(+), 117 deletions(-)

New commits:
commit 0340cbbc34d2c97baa5b7ebc4a57650861907067
Author: Tor Lillqvist 
AuthorDate: Wed Apr 26 15:39:38 2023 +0300
Commit: Tor Lillqvist 
CommitDate: Thu Apr 27 06:53:22 2023 +0200

Bin the unused paintTileToCGContext special thing for iOS

It was used by "LibreOfficeLight" which died years ago.

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

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index af31b1829163..d6ce62b38be4 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -1119,13 +1119,6 @@ static void doc_paintTile(LibreOfficeKitDocument* pThis,
   const int nCanvasWidth, const int nCanvasHeight,
   const int nTilePosX, const int nTilePosY,
   const int nTileWidth, const int nTileHeight);
-#ifdef IOS
-static void doc_paintTileToCGContext(LibreOfficeKitDocument* pThis,
- void* rCGContext,
- const int nCanvasWidth, const int 
nCanvasHeight,
- const int nTilePosX, const int nTilePosY,
- const int nTileWidth, const int 
nTileHeight);
-#endif
 static void doc_paintPartTile(LibreOfficeKitDocument* pThis,
   unsigned char* pBuffer,
   const int nPart,
@@ -1392,9 +1385,6 @@ LibLODocument_Impl::LibLODocument_Impl(uno::Reference 
 xC
 m_pDocumentClass->setPartMode = doc_setPartMode;
 m_pDocumentClass->getEditMode = doc_getEditMode;
 m_pDocumentClass->paintTile = doc_paintTile;
-#ifdef IOS
-m_pDocumentClass->paintTileToCGContext = doc_paintTileToCGContext;
-#endif
 m_pDocumentClass->paintPartTile = doc_paintPartTile;
 m_pDocumentClass->getTileMode = doc_getTileMode;
 m_pDocumentClass->getDocumentSize = doc_getDocumentSize;
@@ -2586,41 +2576,6 @@ LibLibreOffice_Impl::~LibLibreOffice_Impl()
 namespace
 {
 
-#ifdef IOS
-void paintTileToCGContext(ITiledRenderable* pDocument,
-  void* rCGContext, const Size nCanvasSize,
-  const int nTilePosX, const int nTilePosY,
-  const int nTileWidth, const int nTileHeight)
-{
-SystemGraphicsData aData;
-aData.rCGContext = reinterpret_cast(rCGContext);
-
-ScopedVclPtrInstance pDevice(aData, Size(1, 1), 
DeviceFormat::WITHOUT_ALPHA);
-pDevice->SetBackground(Wallpaper(COL_TRANSPARENT));
-pDevice->SetOutputSizePixel(nCanvasSize);
-pDocument->paintTile(*pDevice, nCanvasSize.Width(), nCanvasSize.Height(),
-nTilePosX, nTilePosY, nTileWidth, nTileHeight);
-}
-
-void paintTileIOS(LibreOfficeKitDocument* pThis,
- unsigned char* pBuffer,
- const int nCanvasWidth, const int nCanvasHeight, const double 
fDPIScale,
- const int nTilePosX, const int nTilePosY,
- const int nTileWidth, const int nTileHeight)
-{
-CGContextRef pCGContext = CGBitmapContextCreate(pBuffer, nCanvasWidth, 
nCanvasHeight, 8,
-nCanvasWidth * 4, 
CGColorSpaceCreateDeviceRGB(),
-
kCGImageAlphaPremultipliedFirst | kCGImageByteOrder32Little);
-
-CGContextTranslateCTM(pCGContext, 0, nCanvasHeight);
-CGContextScaleCTM(pCGContext, fDPIScale, -fDPIScale);
-
-doc_paintTileToCGContext(pThis, (void*) pCGContext, nCanvasWidth, 
nCanvasHeight, nTilePosX, nTilePosY, nTileWidth, nTileHeight);
-
-CGContextRelease(pCGContext);
-}
-#endif
-
 void setLanguageAndLocale(OUString const & aLangISO)
 {
 SvtSysLocaleOptions aLocalOptions;
@@ -3933,8 +3888,31 @@ static void doc_paintTile(LibreOfficeKitDocument* pThis,
 comphelper::ScopeGuard dpiScaleGuard([]() { 
comphelper::LibreOfficeKit::setDPIScale(1.0); });
 
 #if defined(IOS)
-double fDPIScaleX = 1.0;
-paintTileIOS(pThis, pBuffer, nCanvasWidth, nCanvasHeight, fDPIScaleX, 
nTilePosX, nTilePosY, nTileWidth, nTileHeight);
+double fDPIScale = 1.0;
+
+CGContextRef pCGContext = CGBitmapContextCreate(pBuffer, nCanvasWidth, 
nCanvasHeight, 8,
+nCanvasWidth * 4, 
CGColorSpaceCreateDeviceRGB(),
+
kCGImageAlphaPremultipliedFirst | kCGImageByteOrder32Little);
+
+CGContextTranslateCTM(pCGContext, 0, nCanvasHeight);
+CGContextScaleCTM(pCGContext, fDPIScale, -fDPIScale);
+
+SAL_INFO( "lok.tiledrendering", 

UI/accessibility dev advice needed on change 150546

2023-04-26 Thread Lionel Élie Mamane
Hi,

I'm reviewing https://gerrit.libreoffice.org/150546
by Nirnay. It adds a .ui file, and a "make" outputs warning like

WARNING: 'GtkLabel' 'browselabel' does not specify what it labels within 
'GtkFrame' 'frame1'

The other preexisting .ui files also generate a bunch of them, but
they are silenced in a .suppr file...

What is our policy on this? Should/can Nirnay just silence them, too,
by adding them to the .suppr file? I guess not. Please tell Nirnay
what he should do in respect of this; I'd rather not commit as is
with the warning (nor simply suppressing them) unless a
UI/accessibility knowledgeable persons signs off on it
(the rest of the change is nearly ready to merge, and should be
 completely ready within an hour so.)

Thanks in advance,

Lionel


[Libreoffice-bugs] [Bug 149486] When you turn off the "Show Whitespace" condition you can see on the vertical ruler like there is the margin there.

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149486

BogdanB  changed:

   What|Removed |Added

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

--- Comment #3 from BogdanB  ---
Needs retesting in master, the revert for tdf#149485 should have fixed this one
also.

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

[Libreoffice-bugs] [Bug 149485] "Show Whitespace" condition changes other documents look

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149485

BogdanB  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 155015] Impress shows window title bar in display mode (not true full screen)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155015

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 155032] Crash when i write

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155032

--- 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 155032] Crash when i write

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155032

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 155015] Impress shows window title bar in display mode (not true full screen)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155015

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

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

[Libreoffice-bugs] [Bug 153626] Unable to sign with existing digital signature, and inconsistent UI for digital signature in Writer

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153626

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 153626] Unable to sign with existing digital signature, and inconsistent UI for digital signature in Writer

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153626

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

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

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

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

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

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 151191] Libreoffice 7.4 crash on Mac OS M1+ when saving to csv or excel format

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

--- Comment #4 from QA Administrators  ---
Dear David Roda,

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 151195] does not recognize characters

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

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 151488] page line-spacing: lines don't seem to be in level

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151488

--- Comment #5 from QA Administrators  ---
Dear peter josvai,

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 151487] page line-spacing: active page line-spacing cannot be set "OFF" in template

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151487

--- Comment #2 from QA Administrators  ---
Dear peter josvai,

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 65070] FILEOPEN: background image not displayed in XLS or XLSX created with MSO

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65070

--- Comment #18 from QA Administrators  ---
Dear squeezechart,

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 141894] Writer : when a mail address contains ç letter, its link is wrong

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141894

--- Comment #6 from QA Administrators  ---
Dear david.vantyghem,

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 141913] Bypass cell protection selection via Name box

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141913

--- Comment #4 from QA Administrators  ---
Dear Olivier Hallot,

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 118822] PDF export with bitmap Page background rather slow (not with lossless)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118822

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 154913] librecalc slow, over usage of resources, locks up

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154913

--- Comment #6 from Kent  ---
What I find interesting is that as I search the for a resolution to this issue,
I have finding references to it going back to 2010.  I have found numerous,
attempts at different settings and how to make libre office to work on a linux
computer, even into 2022, and I have tried most of these suggestions. I would
think that over the last 13 years, someone would have attempted to correct this
Bug. If you want sample spread sheets, I would be glad to send to you.
Actually today, I created a new spread sheet, 8 columns, 700 rows. I cut and
pasted an equations in, =if(e2="","",e2*d2). That locked the entire program up
for 10 minutes.  That equation was copied into all 700 rows.  The only way I
could get it to free up the system was to do a "pkill soffice.bin". stop the
program, and restart.  I then copied all of the data into a new spreadsheet,
rewrote the equation, and saved under another name. Someone really needs to
address this, because it basically makes librecalc, unusable.

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

[Libreoffice-ux-advise] [Bug 154705] Enhancement: Add Snap to Intersection

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154705

Don Matschull  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from Don Matschull  ---
(In reply to Stéphane Guillou (stragu) from comment #1)
> So your usecase would be to convert an ellipse to a polygon with nodes
> limited to where line objects intersect the ellipse?
> 
> I have not found a way to achieve the same, but seems like a pretty niche
> action.
> Maybe limiting the enhancement request to "add nodes at segment
> intersections" is more realistic.
> 
> Related:
> https://ask.libreoffice.org/t/create-a-polygon-form-line-intersection-draw/
> 8358
> 
> Or is you issue about converting _anything_ into Snap Guides, including
> ellipses and lines, instead of only having vertical and horizontal guides
> like currently?

Line segments of a polyline already have nodes where they meet. Being able to
add nodes where two separate objects cross would be a nice feature. Then, a
snap to nodes rather than a more general snap to object border would be a great
addition.

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

[Libreoffice-bugs] [Bug 154705] Enhancement: Add Snap to Intersection

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154705

Don Matschull  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from Don Matschull  ---
(In reply to Stéphane Guillou (stragu) from comment #1)
> So your usecase would be to convert an ellipse to a polygon with nodes
> limited to where line objects intersect the ellipse?
> 
> I have not found a way to achieve the same, but seems like a pretty niche
> action.
> Maybe limiting the enhancement request to "add nodes at segment
> intersections" is more realistic.
> 
> Related:
> https://ask.libreoffice.org/t/create-a-polygon-form-line-intersection-draw/
> 8358
> 
> Or is you issue about converting _anything_ into Snap Guides, including
> ellipses and lines, instead of only having vertical and horizontal guides
> like currently?

Line segments of a polyline already have nodes where they meet. Being able to
add nodes where two separate objects cross would be a nice feature. Then, a
snap to nodes rather than a more general snap to object border would be a great
addition.

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

[Libreoffice-bugs] [Bug 150165] (Visual) Aids for Impress

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150165

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
(In reply to rrosner5 from comment #0)
> First, when inserting a vector graphic without a background, you have to
> hover the mouse over a line to be able to select the image with a click.
> With an image with only few lines and when scaling it up a lot, it's very
> difficult to find a spot where you can actually select the image.

This has been reported in bug 50359.

> Adding to that, when you want to e.g. orient a text box on an image with
> white or no background, that's basically impossible. So when enabling the
> guiding lines when moving an object, it would be helpful when there's also a
> border around all other objects, so you see where everything begins and
> ends.  

I wonder if resolving bug 140263 would help.

> Also, when inserting a table and editing it, the cell borders show up when
> selecting the table itself, but not when simply editing it. So it's very
> difficult to edit, since you pretty much edit it blindly when you remove the
> default background color. It would be helpful if the cell borders would
> always be shown except in presentation mode, e.g. in gray, so you see they
> aren't really there but are only shown as a visual guide.

Good points. A non-printable border should always show, so a table without
border can still be located, like in Writer. Similar to what is asked for text
boxes in bug 62494.

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

[Libreoffice-bugs] [Bug 74364] EDITING: Selecting multiple draw objects should show (unselectable) handles for all objects

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74364

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 140263] Tools - Options - Draw - Display - "Contour of each individual object" does nothing

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140263

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

  Component|Documentation   |Draw
 CC||stephane.guillou@libreoffic
   ||e.org
Summary|[DOCUMENTATION] Tools - |Tools - Options - Draw -
   |Options - Draw - Display -  |Display - "Contour of each
   |"Contour of each individual |individual object" does
   |object" do nothing  |nothing
Version|6.4.7.2 release |Inherited From OOo
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=74
   ||364
 Blocks||108640

--- Comment #9 from Stéphane Guillou (stragu) 
 ---
I can't see a difference when this setting is on or off, since OOo 3.3 all the
way to:

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108640] [META] Object meta bugs and enhancements

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108640

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||140263


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140263
[Bug 140263] Tools - Options - Draw - Display - "Contour of each individual
object" does nothing
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 50359] Difficult to select PNG / SVG with transparent background and fine content

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50359

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Difficult to select PNG |Difficult to select PNG /
   |with transparent background |SVG with transparent
   |and fine content|background and fine content

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

[Libreoffice-bugs] [Bug 154966] Base is unable to manage firebird databases.

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154966

--- Comment #5 from third='beedell', first='roke', second='julian lockhart' 
 ---
I can't set the bug metadata to 7.5.3.1 (2023-04-25) since there's no option in
Bugzilla, but that's the version that I refer to.

Also, the
https://git.libreoffice.org/core/+log/b7648c7b88c50f810321d044831850fd6da77d2a
build listen in About doesn't resolve. This is all very buggy (probably to be
expected).

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

[Libreoffice-bugs] [Bug 154966] Base is unable to manage firebird databases.

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154966

third='beedell', first='roke', second='julian lockhart' 
 changed:

   What|Removed |Added

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

--- Comment #4 from third='beedell', first='roke', second='julian lockhart' 
 ---
(In reply to Julien Nabet from comment #2)
> Following Robert's comment, let's put this one as NOTOURBUG.

I'd actually like to reopen this, since `sudo snap install libreoffice --edge`
(obviously delegated to --beta) doesn't provide firebird either. The dropdown
is also blank. Surely there shouldn't be an issue with the snap package, too?

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

[Libreoffice-bugs] [Bug 150641] Libre Office Modules crashed after data input and restart in recovery mode

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150641

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Hi Andre
Could you please test the latest 7.5 version (7.5.2 or even the pre-release
7.5.3) and let us know if you can still reproduce the crash?
https://www.libreoffice.org/download/download-libreoffice/
Thank you!

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

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

2023-04-26 Thread Rafael Lima (via logerrit)
 sc/uiconfig/scalc/ui/notebookbar.ui |6 --
 1 file changed, 6 deletions(-)

New commits:
commit cb79692883e92de02d87b0662a431f6ff8fba9c8
Author: Rafael Lima 
AuthorDate: Wed Apr 26 20:53:15 2023 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Apr 27 02:51:18 2023 +0200

Remove wrong "toolti-text" in notebookbar.ui

This patch removes wrong "toolti-text" entries in Calc's notebookbar.ui
file.

Besides being wrong (the correct would be "tooltip-text"), these entries
do not make sense since tooltips are not supported in this manner by the
Tabbed UI.

Moreover, "toolti-textp" is not used in any of the notebookbar files.

Change-Id: I2f862cfe53a8de5fa1566fec7cc00c14d1bcc505
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151022
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index bbcc0b556fac..fc1e1cb91b75 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -3522,7 +3522,6 @@
 
   
 True
-Specify 
the borders of the selected cells.
 start
 .uno:SetBorderStyle
   
@@ -3799,7 +3798,6 @@
 
   
 True
-Increase 
Indent
 True
 .uno:IncrementIndent
 True
@@ -3812,7 +3810,6 @@
 
   
 True
-Decrease 
Indent
 True
 .uno:DecrementIndent
 True
@@ -6359,7 +6356,6 @@
 
   
 True
-Object 
Align
 start
 .uno:RowOperations
   
@@ -6384,7 +6380,6 @@
 
   
 True
-Object 
Align
 start
 .uno:ColumnOperations
   
@@ -6812,7 +6807,6 @@
 
   
 True
-Object 
Align
 start
 .uno:ObjectAlign
   


[Libreoffice-bugs] [Bug 112579] [META] Pattern fill bugs and enhancements

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112579

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||150875


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150875
[Bug 150875] Hatch pattern scaling depends on DPI (screen scaling) on PDF
export
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150875] Hatch pattern scaling depends on DPI (screen scaling) on PDF export

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150875

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||112579
Version|unspecified |7.4.1.2 release


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 128879] PDF Export Problems in LO 6.3.3 but working in 6.2.6

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128879

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #10 from Stéphane Guillou (stragu) 
 ---
Still present in:

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

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

[Libreoffice-bugs] [Bug 103434] [META] SIDEBAR: Tab bar bugs and enhancements

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103434

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||151724


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151724
[Bug 151724] Sidebar Settings Has Smaller Size Compare to Other Deck Icons (kf5
and gen)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 151724] Sidebar Settings Has Smaller Size Compare to Other Deck Icons (kf5 and gen)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151724

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1
   Priority|medium  |low
   Severity|normal  |trivial
 Status|UNCONFIRMED |NEW
 CC||caol...@redhat.com,
   ||stephane.guillou@libreoffic
   ||e.org
Version|7.5.0.0 alpha0+ |7.2.0.0.beta1+
 Blocks||103434
   Keywords||bibisected, bisected

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
reproduced in:

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

Started in 7.2 with:

commit  e2e89bb4187e08c4b6052f535d80886e198051c8
author  Caolán McNamara Sun Jun 06 11:30:31 2021 +0100
committer   Caolán McNamara Sun Jun 06 21:36:49
2021 +0200
enforce indicator consistency
so there is either a standard indicator shown or one of a small subset
of named icons
a) adds an indicator to show the MenuButton provides a dropdown to the
spelling dialog when there are multiple user dictionaries the word could
be added to
b) use open-menu-symbolic instead of gear icon for the sidebar menu
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116757

What do you think, Caolán?


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154966] Base is unable to manage firebird databases.

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154966

third='beedell', first='roke', second='julian lockhart' 
 changed:

   What|Removed |Added

URL||https://bugzilla.opensuse.o
   ||rg/show_bug.cgi?id=1210852

--- Comment #3 from third='beedell', first='roke', second='julian lockhart' 
 ---
(In reply to Robert Großkopf from comment #1)
> You are trying to get Firebird working with packages from SUSE. There is no
> Firebird available in repositories of OpenSUSE for LibreOffice.

https://bugzilla.opensuse.org/show_bug.cgi?id=1210852

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

[Libreoffice-bugs] [Bug 131023] Preinstalled 3000px theme graphics not extending full width of UI elements, affects 2K, 4K, 5K and multi-head systems

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131023

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||t...@wegurus.ax

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

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

[Libreoffice-bugs] [Bug 152529] Theme colour gets clipped on an ultrawide screen

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152529

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Whiteboard| QA:needsComment|
 Resolution|--- |DUPLICATE

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


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

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

[Libreoffice-bugs] [Bug 78035] No clear distinction in grid settings, saved/loaded with document, and set in the options

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78035

--- Comment #13 from Stéphane Guillou (stragu) 
 ---
Still an issue in:

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

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

[Libreoffice-bugs] [Bug 154201] Grid resolution not correctly restored from opened document

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154201

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Reproduced in:

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

A solution is already suggested in bug 78035, marking as a duplicate.
Thank you!

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

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

[Libreoffice-bugs] [Bug 78035] No clear distinction in grid settings, saved/loaded with document, and set in the options

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78035

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||fmgtack+libreoffice@gmail.c
   ||om

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

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

[Libreoffice-bugs] [Bug 154216] Scroll region window object; capture tools inhibited

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154216

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I'm not sure about the technical aspects of this, and I feel there will be
limitations for Calc (for example, the fact that even though you have limited
data in cells, the sheet can be scrolled all the way to row 1,048,576. Is the
tool supposed to grab all that?)

What about using the export options that already exist in Calc, like File >
Export as PDF > Structure > Whole sheet export, which will give you everything
in one go?

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

[Libreoffice-bugs] [Bug 154268] CALC - Export to(X)HTML should have option to format output

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154268

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Resolution|--- |DUPLICATE
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Please test the upcoming version 7.5.3, which can be found at the bottom of the
download page: https://www.libreoffice.org/download/download-libreoffice/
There is an improvement to the HTML export formatting which should help, not
only for Writer. See bug 153839.
Marking as a duplicate but please let us know if you think the fix is not
sufficient.

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

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

[Libreoffice-bugs] [Bug 153839] Exporting to xhtml results in most of the tags and content in one single line

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153839

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||rob...@prino.org

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

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

[Libreoffice-bugs] [Bug 154366] Fallback mechanism for hyphenation from specific to general/default language locale

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154366

--- Comment #2 from Marco A.G.Pinto  ---
(In reply to Stéphane Guillou (stragu) from comment #1)
> In a way similar to bug 83561, which would implement the fallback mechanism
> needed for language variants.
> 
> I am unsure how hyphenation rules work, and how possible it is to split that
> from the rest of the dictionary (i.e. using the dictionary for spellcheck
> but a fallback for hyphenation if it is missing). Marco and Sophie, any
> opinion on it?


Heya, hyphenation is very hard.

I have coded it into Proofing Tool GUI:
https://proofingtoolgui.org

See the subchapter in the user guide that explains how to use it:
https://proofingtoolgui.org/proofingtoolgui_files/ProofingToolGUI_manual_V30.html#5.4.hyphenation

It is very hard.

Anyway, my two cents: for English languages, you can probably use the one in
Gerrit as a fallback.

The English languages that ship with my .oxt commit are either updated by me or
by Kevin Atkinson, and none of us two change the hyphenation.

Kevin simply converts wordlists into .dic automatically and I don't change such
complex things, so definitely that until someone with great knowledge decides
to improve the hyphenator, it won't be ever changed (it will always be this).

For other languages, I am not sure.

:-)

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

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

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||154122


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154122
[Bug 154122] Cannot animate table rows, columns, cells, and their contents
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154122] Cannot animate table rows, columns, cells, and their contents

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154122

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||100366
 Status|UNCONFIRMED |NEW
 CC||stephane.guillou@libreoffic
   ||e.org
 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|
   Severity|normal  |enhancement

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I can see the use of having a table appear row-by-row, just like we already
allow with lists. -> New.


Referenced Bugs:

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

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

2023-04-26 Thread Eike Rathke (via logerrit)
 sc/source/core/data/queryiter.cxx |   18 +++---
 1 file changed, 15 insertions(+), 3 deletions(-)

New commits:
commit 9a555d79b3b00793edf1d51a8a7c76b723cc436d
Author: Eike Rathke 
AuthorDate: Wed Apr 26 21:11:44 2023 +0200
Commit: Eike Rathke 
CommitDate: Thu Apr 27 01:29:45 2023 +0200

Resolves: tdf#151958 Disable binary search on sorted cache for current 
releases

Temporary measure until the actual cause is fixed.
The by string query of binary search on sorted cache is broken for
mixed types like here the numeric date cells and text cells.

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

diff --git a/sc/source/core/data/queryiter.cxx 
b/sc/source/core/data/queryiter.cxx
index 7fef5381750e..58709957157a 100644
--- a/sc/source/core/data/queryiter.cxx
+++ b/sc/source/core/data/queryiter.cxx
@@ -1231,10 +1231,21 @@ ScQueryCellIteratorAccessSpecific< 
ScQueryCellIteratorAccess::SortedCache >::Mak
 return SortedCacheIndexer(rCells, nStartRow, nEndRow, sortedCache);
 }
 
-static bool CanBeUsedForSorterCache(ScDocument& rDoc, const ScQueryParam& 
rParam,
-SCTAB nTab, const ScFormulaCell* cell, const ScComplexRefData* refData,
-ScInterpreterContext& context)
+static bool CanBeUsedForSorterCache(ScDocument& /*rDoc*/, const ScQueryParam& 
/*rParam*/,
+SCTAB /*nTab*/, const ScFormulaCell* /*cell*/, const ScComplexRefData* 
/*refData*/,
+ScInterpreterContext& /*context*/)
 {
+#if 1
+/* TODO: tdf#151958 broken by string query of binary search on sorted
+ * cache, use the direct query instead for releases and fix SortedCache
+ * implementation after. Not only COUNTIF() is broken, but also COUNTIFS(),
+ * and maybe lcl_LookupQuery() for VLOOKUP() etc. as well. Just disable
+ * this for now.
+ * Can't just return false because below would be unreachable code. Can't
+ * just #if/#else/#endif either because parameters would be unused. Crap
+ * this and comment out parameter names. */
+return false;
+#else
 if(!rParam.GetEntry(0).bDoQuery || rParam.GetEntry(1).bDoQuery
 || rParam.GetEntry(0).GetQueryItems().size() != 1 )
 return false;
@@ -1290,6 +1301,7 @@ static bool CanBeUsedForSorterCache(ScDocument& rDoc, 
const ScQueryParam& rParam
 return false;
 }
 return true;
+#endif
 }
 
 // Generic query implementation.


[Libreoffice-bugs] [Bug 34965] Make Impress slides editable during presentation

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34965

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

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

[Libreoffice-bugs] [Bug 83561] Language variants should function when variant files are not there

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83561

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154366] Fallback mechanism for hyphenation from specific to general/default language locale

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154366

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||marcoagpi...@sapo.pt,
   ||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=83
   ||561
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
In a way similar to bug 83561, which would implement the fallback mechanism
needed for language variants.

I am unsure how hyphenation rules work, and how possible it is to split that
from the rest of the dictionary (i.e. using the dictionary for spellcheck but a
fallback for hyphenation if it is missing). Marco and Sophie, any opinion on
it?

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

[Libreoffice-bugs] [Bug 154978] Crash when closing a document in Writer/Impress with the message "Soffice closed unexpectedly" on kde

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154978

--- Comment #12 from agap...@hotmail.com ---
Created attachment 186947
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186947=edit
Test LO document

(In reply to Julien Nabet from comment #11)
> (In reply to agapp11 from comment #10)
> > ...
> > I wasn't aware I needed to launch LO from terminal. I exported the variable
> > again (copy/pasted to terminal) and then launched LO from terminal.
> Again what I described is a workaround, if there wasn't the bug, you
> wouldn't need to do this. The goal was to test if it was KDE rendering on LO
> related pb and a workaround so you're not stuck but of course, the bug isn't
> fixed.
> 
> > 
> > When launching the program again and opening the Test Document, it seems to
> > cause no issues (but I am not sure if LanguageTool is working correctly)
> > 
> > I also get the following responses in Terminal after closing LibreOffice:
> > (soffice.bin:299655): Gtk-WARNING **: 07:57:27.898: Theme parsing error:
> > gtk.css:1649:16: '-gtk-icon-size' is not a valid property name
> > 
> > (soffice.bin:299655): Gtk-WARNING **: 07:57:27.898: Theme parsing error:
> > gtk.css:1652:16: '-gtk-icon-size' is not a valid property name
> > 
> > (soffice.bin:299655): Gtk-WARNING **: 07:57:28.131: Theme parsing error:
> > gtk.css:1649:16: '-gtk-icon-size' is not a valid property name
> > 
> > (soffice.bin:299655): Gtk-WARNING **: 07:57:28.131: Theme parsing error:
> > gtk.css:1652:16: '-gtk-icon-size' is not a valid property name
> That's something else but ok.
> 
> BTW, I installed LanguageTool-20230425-snapshot.oxt by following these steps:
> - select menu Tools/Extensions
> - click button "Add"
> - choose "for me only"
> I also enabled LanguageTool Server by checking "Enable LanguageTool" and let
> the by default url https://api.languagetool.org/v2
> 
> Then I did:
> - open a term/console
> - export SAL_USE_VCLPLUGIN=kf5 (this one is to force LO to use KDE libs for
> the rendering since by default I use gtk rendering)
> - launch Writer
> - type some text with error
> - close
> => no crash.
> 
> Do you reproduce the crash with an empty doc or just with a specific
> document?
> If just a specific document, would it be possible you attach the file?
> (after having sanitized it if needed, see
> https://wiki.documentfoundation.org/QA/Bugzilla/
> Sanitizing_Files_Before_Submission)

> That's something else but ok.

Apologies. I am new to submitting bug reports.


> BTW, I installed LanguageTool-20230425-snapshot.oxt by following these steps:
> - select menu Tools/Extensions
> - click button "Add"
> - choose "for me only"
> I also enabled LanguageTool Server by checking "Enable LanguageTool" and let
> the by default url https://api.languagetool.org/v2
> 
> Then I did:
> - open a term/console
> - export SAL_USE_VCLPLUGIN=kf5 (this one is to force LO to use KDE libs for
> the rendering since by default I use gtk rendering)
> - launch Writer
> - type some text with error
> - close
> => no crash.

I installed the extension by downloading from the website and then double
clicking on it in the ~./Downloads folder. An "Extension" popup appears that
then prompts me to install the addon and requires a restart of LO. I also
followed the steps of enabling the server that you listed. 

> Do you reproduce the crash with an empty doc or just with a specific
> document?
> If just a specific document, would it be possible you attach the file?
> (after having sanitized it if needed, see
> https://wiki.documentfoundation.org/QA/Bugzilla/
> Sanitizing_Files_Before_Submission)

This happens to any file with text. If there is no text, closing the app does
not result in a crash. Here is the file I generally use for testing. The same
issue occurs with .odt file format as well.

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

[Libreoffice-bugs] [Bug 103407] [META] Unify behaviour and functions across apps

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103407

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||154368


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154368
[Bug 154368] UI: Status bar 'document modified' indicator/save button
horizontal placement inconsistent
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 86066] [META] Bugs and improvements to the status bar

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86066

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||154368


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154368
[Bug 154368] UI: Status bar 'document modified' indicator/save button
horizontal placement inconsistent
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154368] UI: Status bar 'document modified' indicator/save button horizontal placement inconsistent

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154368

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
Version|7.5.1.2 release |7.2.0.1 rc
   Priority|medium  |low
 Blocks||86066, 103407
  Component|LibreOffice |UI
 Whiteboard| QA:needsComment|
 CC||heiko.tietze@documentfounda
   ||tion.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEW

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Before 7.2, all components had it in the right half of the status bar.

Since 7.2 and commit d8026943e51fe651caed18c8d1441d6d84f72f93, Writer has it as
first element on the left, see bug 133265.

Icon in Calc has already been moved to the left in 7.6, which was done by
8dc8443c3b13e8782fdbaf61594056df8126.

Math, Draw and Impress still have it on the right.

Heiko, any chance you could follow up to have it on the left for the remaining
3 components?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86066
[Bug 86066] [META] Bugs and improvements to the status bar
https://bugs.documentfoundation.org/show_bug.cgi?id=103407
[Bug 103407] [META] Unify behaviour and functions across apps
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103407] [META] Unify behaviour and functions across apps

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103407

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||111409


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111409
[Bug 111409] [META] Unify text direction functionality for all components
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120581] [META] LibreOffice feature enhancements

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120581

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|111409  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111409
[Bug 111409] [META] Unify text direction functionality for all components
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 111409] [META] Unify text direction functionality for all components

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111409

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=10 |
   |5215|
 Blocks|120581  |103407


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103407
[Bug 103407] [META] Unify behaviour and functions across apps
https://bugs.documentfoundation.org/show_bug.cgi?id=120581
[Bug 120581] [META] LibreOffice feature enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 133026] [META] Tight integration of extensions

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133026

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||70935


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=70935
[Bug 70935] Direct download and installation of extensions
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120581] [META] LibreOffice feature enhancements

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120581

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|70935   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=70935
[Bug 70935] Direct download and installation of extensions
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 70935] Direct download and installation of extensions

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70935

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|NEW |RESOLVED
Version|unspecified |Inherited From OOo
 Blocks|120581  |133026
 Resolution|--- |WORKSFORME

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
I think this can be marked as resolved since extension search has been
integrated in the focused areas that needed it the most in 7.1: Templates, Icon
themes, Gallery and Dictionaries.
See bug 133026.
Integrating the whole catalogue in one spot and duplicating the functionalities
of the website is not desirable, in my opinion.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120581
[Bug 120581] [META] LibreOffice feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=133026
[Bug 133026] [META] Tight integration of extensions
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 133026] [META] Tight integration of extensions

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133026
Bug 133026 depends on bug 70935, which changed state.

Bug 70935 Summary: Direct download and installation of extensions
https://bugs.documentfoundation.org/show_bug.cgi?id=70935

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 155037] New: Crash in: rtl_uString_new when attempting to copy sheet to a sheet containing VBA macro

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155037

Bug ID: 155037
   Summary: Crash in: rtl_uString_new  when attempting to copy
sheet to a sheet containing VBA macro
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michael...@hotmail.com

Created attachment 186946
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186946=edit
histogram.xls containing binHistogram macro for counting data

This bug was filed from the crash reporting server and is
br-6353002a-03d3-4359-8301-6d1021d2fb70.
=
I hit this on an old version 7.3.3.  I upgraded to the latest and reproduced it
the same way
7.5.2.2 (x86_64)
https://git.libreoffice.org/core/+log/53bb9681a964705cf672590721dbc85eb4d0c3a2
I'm running windows 10 22H2

I'm wanted to use a VBA macro I had in Excel, so I made the following settings:
Tools\Options\LibreOffice\Security\Macro Security - Medium
Tools\Options\Load/Save\VBA Properties - all boxes checked

load histogram.xls (attached) containing VBA macro - confirm enable macros

save as history_test.ods

click new
type 1 in first cell
rename sheet from "Sheet1" to "Data"
right click "Data" tab / Move/Copy Sheet / copy to document
"histogram_test.ods"
Make sure "Copy" not "Move" is selected, then click the big "Copy" button at
the bottom.

"Due to an error, LibreOffice crashed "

When I restart Calc, it runs through recovery
https://crashreport.libreoffice.org/stats/crash_details/6353002a-03d3-4359-8301-6d1021d2fb70

Most times the data was not copied, but one time when I was doing this with
real data it actually had the copied sheet in the file with the macro when it
was  recovered.

If you have trouble reproducing this, let me know.  I should be able to do it
again and give more details.


Here's some mother crash reports for this issue:
First time, copied multiple tabs of data:
https://crashreport.libreoffice.org/stats/crash_details/0c8eae5f-a200-43f9-8800-d1e929f05077

Tried copying only one tab of data.  (This time data got copied when file was
recovered.)
https://crashreport.libreoffice.org/stats/crash_details/fcfe19f2-7ec1-4c19-922b-368a25594b4d

Tried again with page containing very little data
https://crashreport.libreoffice.org/stats/crash_details/6f3a2063-5bb6-4598-b2e9-38db95f2faba

Tried loading file containing macro, but with with macros disabled.  It still
crashed.
https://crashreport.libreoffice.org/stats/crash_details/23c87c1a-0828-4ca4-98e8-e119965896ab

Updated to latest version and retested repro steps to generate the main crash
report linked to this bug report.

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

[Libreoffice-bugs] [Bug 154705] Enhancement: Add Snap to Intersection

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154705

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Ever confirmed|0   |1
Version|7.4.6.2 release |Inherited From OOo
 Status|UNCONFIRMED |NEEDINFO
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
So your usecase would be to convert an ellipse to a polygon with nodes limited
to where line objects intersect the ellipse?

I have not found a way to achieve the same, but seems like a pretty niche
action.
Maybe limiting the enhancement request to "add nodes at segment intersections"
is more realistic.

Related:
https://ask.libreoffice.org/t/create-a-polygon-form-line-intersection-draw/8358

Or is you issue about converting _anything_ into Snap Guides, including
ellipses and lines, instead of only having vertical and horizontal guides like
currently?

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

[Libreoffice-ux-advise] [Bug 154705] Enhancement: Add Snap to Intersection

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154705

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Ever confirmed|0   |1
Version|7.4.6.2 release |Inherited From OOo
 Status|UNCONFIRMED |NEEDINFO
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
So your usecase would be to convert an ellipse to a polygon with nodes limited
to where line objects intersect the ellipse?

I have not found a way to achieve the same, but seems like a pretty niche
action.
Maybe limiting the enhancement request to "add nodes at segment intersections"
is more realistic.

Related:
https://ask.libreoffice.org/t/create-a-polygon-form-line-intersection-draw/8358

Or is you issue about converting _anything_ into Snap Guides, including
ellipses and lines, instead of only having vertical and horizontal guides like
currently?

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

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit f565658431d6841c9a551a4c160e49080b89a06b
Author: Olivier Hallot 
AuthorDate: Wed Apr 26 18:42:32 2023 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Apr 26 23:42:32 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 6a79a8d4a5ca9e76f0811ddc8fcf8d79b21728ac
  - Refactor page - no content change

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

diff --git a/helpcontent2 b/helpcontent2
index 77b1a5a71184..6a79a8d4a5ca 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 77b1a5a7118478c2b3a86fd43cfc68e336ac913c
+Subproject commit 6a79a8d4a5ca9e76f0811ddc8fcf8d79b21728ac


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

2023-04-26 Thread Olivier Hallot (via logerrit)
 source/text/scalc/05/0214.xhp |  164 +++---
 1 file changed, 82 insertions(+), 82 deletions(-)

New commits:
commit 6a79a8d4a5ca9e76f0811ddc8fcf8d79b21728ac
Author: Olivier Hallot 
AuthorDate: Wed Apr 26 18:27:57 2023 -0300
Commit: Olivier Hallot 
CommitDate: Wed Apr 26 23:42:32 2023 +0200

Refactor page - no content change

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

diff --git a/source/text/scalc/05/0214.xhp 
b/source/text/scalc/05/0214.xhp
index 42fbf28928..4c31d49c70 100644
--- a/source/text/scalc/05/0214.xhp
+++ b/source/text/scalc/05/0214.xhp
@@ -22,55 +22,55 @@
 
 
   
- Error Codes in %PRODUCTNAME 
Calc
+ Error Codes in %PRODUCTNAME Calc
  /text/scalc/05/0214.xhp
   


-error codes;list of
+error codes;list 
of
 mw deleted "%PRODUCTNAME Calc;error codes"
 Error Codes in 
%PRODUCTNAME Calc
-  The 
following table is an overview of the error messages for %PRODUCTNAME Calc. If the error occurs in the cell 
that contains the cursor, the error message is displayed on the Status 
Bar.
-### error 
message
-invalid references; error 
messages
+  The following table is an 
overview of the error messages for %PRODUCTNAME 
Calc. If the error occurs in the cell that contains the cursor, the error 
message is displayed on the Status Bar.
+### error 
message
+invalid references; 
error messages
error messages;invalid 
references
#REF error message
 
-invalid names; error messages
+invalid names; 
error messages
#NAME error message
 
   
  
 
-   Error Code
+   Error 
Code
 
 
-   Message
+   Message
 
 
-   Explanation
+   Explanation
 
  
  
 
-   ###
+   ###
 
 
-none
+none
 
 
-   The cell is not wide enough to display the 
contents.
+   The cell is 
not wide enough to display the contents.
 
  
 
 
-   #FMT
+   #FMT
 
 
-   none
+   none
 
 
-   This value is outside of limits valid for this 
format
+   This value is 
outside of limits valid for this format
 
  
  
@@ -78,10 +78,10 @@
501
 
 
-   Invalid character
+   Invalid 
character
 
 
-   Character in a formula is not valid.
+   Character in 
a formula is not valid.
 
  
  
@@ -89,21 +89,21 @@
502
 
 
-   Invalid argument
+   Invalid 
argument
 
 
-   Function argument is not valid. For example, a negative 
number for the SQRT() function, for this please use IMSQRT().
+   Function 
argument is not valid. For example, a negative number for the SQRT() function, 
for this please use IMSQRT().
 
  
  
 
-   503#NUM!
+   503#NUM!
 
 
-   Invalid floating point operation
+   Invalid 
floating point operation
 
 
-   A calculation results in an overflow of the defined value 
range.
+   A calculation 
results in an overflow of the defined value range.
 
  
  
@@ -111,10 +111,10 @@
504
 
 
-   Parameter list error
+   Parameter 
list error
 
 
-   Function parameter is not valid, for example, text instead 
of a number, or a domain reference instead of cell reference.
+   Function 
parameter is not valid, for example, text instead of a number, or a domain 
reference instead of cell reference.
 
  
  
@@ -122,10 +122,10 @@
507, 508
 
 
-   Error: Pair missing
+   Error: Pair 
missing
 
 
-   Missing bracket, for example, closing brackets, but no 
opening brackets
+   Missing 
bracket, for example, closing brackets, but no opening brackets
 
  
  
@@ -133,10 +133,10 @@
509
 
 
-   Missing operator
+   Missing 
operator
 
 
-   Operator is missing, for example, "=2(3+4) * ", where the 

[Libreoffice-bugs] [Bug 154282] editeng/source/items/frmitems.cxx:772: virtual bool SvxTextLeftMarginItem::QueryValue(uno::Any &, sal_uInt8) const: Assertion `false' failed.

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154282

Rafael Lima  changed:

   What|Removed |Added

 CC||michael.st...@allotropia.de

--- Comment #6 from Rafael Lima  ---
Actually these two asserts that fail with the Tabbed UI were introduced in:

https://gerrit.libreoffice.org/c/core/+/147023

@Michael, can you please take a look?

Apparently the commands .uno:LeftParaMargin and .uno:RightParaMargin do not
have a state set when Writer is started.

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

[Libreoffice-bugs] [Bug 118858] Copying selected filtered cells copies all cells in range to external app instead of only selected

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118858

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #10 from Regina Henschel  ---
LibreOffice puts a lot of formats into the clipboard. Some of them have all
rows, some of them exclude the filtered rows. It depends on the use case, what
is the best suitable format.
In Excel you can select 'SYLK' or 'DIF' and you get all rows or you select
'HTML' and the filters rows are excluded, for example.
If the decision were to only use formats, which exclude the filters rows, would
that really fit to all used cases?

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

[Libreoffice-bugs] [Bug 155036] Very slow sheet scrolling in Calc on MacOS

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155036

Telesto  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Keywords||perf
 Status|UNCONFIRMED |NEW

--- Comment #1 from Telesto  ---
It's not really fast at zoom-level 65%. It's faster at zoom 160%. I have no
linux comparison..

but there is lag between releasing fn + arrow up and the scrolling on screen.

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 066b23115c2a360507e306a88da572554daefab7
CPU threads: 8; OS: Mac OS X 12.6.3; UI render: Skia/Raster; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 155010] LibreOffice writer crashes when opening malformed docx file

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155010

Telesto  changed:

   What|Removed |Added

 Blocks||133092


Referenced Bugs:

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

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

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Telesto  changed:

   What|Removed |Added

 Depends on||155010


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=155010
[Bug 155010] LibreOffice writer crashes when opening malformed docx file
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155010] LibreOffice writer crashes when opening malformed docx file

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155010

Telesto  changed:

   What|Removed |Added

Summary|LibreOffice writer  |LibreOffice writer crashes
   |coredumps when opening  |when opening malformed docx
   |malformed docx file |file

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

[Libreoffice-bugs] [Bug 155010] LibreOffice writer coredumps when opening malformed docx file

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155010

--- Comment #3 from Telesto  ---
Created attachment 186945
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186945=edit
BT with symbols macOS

My BT is slightly different. Adding, just in case

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

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

2023-04-26 Thread Julien Nabet (via logerrit)
 sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx |   19 ++
 1 file changed, 7 insertions(+), 12 deletions(-)

New commits:
commit 2930179b0c0bbb42a66fcf7628060bda74e6c6c8
Author: Julien Nabet 
AuthorDate: Wed Apr 26 21:26:53 2023 +0200
Commit: Julien Nabet 
CommitDate: Wed Apr 26 22:18:14 2023 +0200

Simplify aCurNode.children construction in sw/WriterInspectorTextPanel.cxx

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

diff --git a/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx 
b/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx
index 71b0ad24fc58..63b952f0fa86 100644
--- a/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx
+++ b/sw/source/uibase/sidebar/WriterInspectorTextPanel.cxx
@@ -359,18 +359,13 @@ static svx::sidebar::TreeNode BorderToTreeNode(const 
OUString& rName, const css:
 aCurNode.sNodeName = PropertyNametoRID(rName);
 aCurNode.NodeType = svx::sidebar::TreeNode::ComplexProperty;
 
-aCurNode.children.push_back(SimplePropToTreeNode("BorderColor", 
css::uno::Any(aBorder.Color)));
-aCurNode.children.push_back(
-SimplePropToTreeNode("BorderLineWidth", 
css::uno::Any(aBorder.LineWidth)));
-aCurNode.children.push_back(
-SimplePropToTreeNode("BorderLineStyle", 
css::uno::Any(aBorder.LineStyle)));
-aCurNode.children.push_back(
-SimplePropToTreeNode("BorderLineDistance", 
css::uno::Any(aBorder.LineDistance)));
-aCurNode.children.push_back(
-SimplePropToTreeNode("BorderInnerLineWidth", 
css::uno::Any(aBorder.InnerLineWidth)));
-aCurNode.children.push_back(
-SimplePropToTreeNode("BorderOuterLineWidth", 
css::uno::Any(aBorder.OuterLineWidth)));
-
+aCurNode.children
+= { SimplePropToTreeNode("BorderColor", css::uno::Any(aBorder.Color)),
+SimplePropToTreeNode("BorderLineWidth", 
css::uno::Any(aBorder.LineWidth)),
+SimplePropToTreeNode("BorderLineStyle", 
css::uno::Any(aBorder.LineStyle)),
+SimplePropToTreeNode("BorderLineDistance", 
css::uno::Any(aBorder.LineDistance)),
+SimplePropToTreeNode("BorderInnerLineWidth", 
css::uno::Any(aBorder.InnerLineWidth)),
+SimplePropToTreeNode("BorderOuterLineWidth", 
css::uno::Any(aBorder.OuterLineWidth)) };
 return aCurNode;
 }
 


[Libreoffice-commits] translations.git: source/af source/an source/ast source/bg source/ca source/cs source/cy source/de source/dsb source/es source/fa source/fi source/gl source/gug source/he source/

2023-04-26 Thread Christian Lohmaier (via logerrit)
 source/af/chart2/messages.po   
 |4 
 source/af/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 
 |8 
 source/af/cui/messages.po  
 |   48 
 source/af/dictionaries/en/dialog.po
 |8 
 source/af/dictionaries/pt_BR/dialog.po 
 |6 
 source/af/extensions/messages.po   
 |   14 
 source/af/filter/messages.po   
 |   12 
 source/af/forms/messages.po
 |6 
 source/af/officecfg/registry/data/org/openoffice/Office/UI.po  
 |   36 
 source/af/sc/messages.po   
 |   70 -
 source/af/sd/messages.po   
 |   20 
 source/af/svtools/messages.po  
 |   16 
 source/af/svx/messages.po  
 |   26 
 source/af/sw/messages.po   
 |   18 
 source/an/dbaccess/messages.po 
 |4 
 source/an/dictionaries/en/dialog.po
 |6 
 source/an/dictionaries/hu_HU/dialog.po 
 |6 
 source/an/dictionaries/pt_BR/dialog.po 
 |6 
 source/an/filter/messages.po   
 |6 
 source/an/formula/messages.po  
 |6 
 source/an/fpicker/messages.po  
 |4 
 source/an/sc/messages.po   
 |   11 
 source/an/sd/messages.po   
 |8 
 source/an/sfx2/messages.po 
 |7 
 source/an/sw/messages.po   
 |   12 
 source/ast/connectivity/messages.po
 |6 
 source/ast/cui/messages.po 
 |   14 
 source/ast/filter/messages.po  
 |6 
 source/ast/formula/messages.po 
 |6 
 source/ast/helpcontent2/source/auxiliary.po
 |6 
 source/ast/helpcontent2/source/text/sbasic/shared.po   
 |4 
 source/ast/helpcontent2/source/text/sbasic/shared/03.po
 |6 
 source/ast/helpcontent2/source/text/sdatabase.po   
 |6 
 source/ast/helpcontent2/source/text/shared/01.po   
 |6 
 source/ast/helpcontent2/source/text/shared/optionen.po 
 |8 
 source/ast/helpcontent2/source/text/swriter/01.po  
 |   20 
 source/ast/helpcontent2/source/text/swriter/guide.po   
 |8 
 source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 
 |   29 
 source/ast/sc/messages.po  
 |   60 -
 source/ast/sd/messages.po  
 |   15 
 source/ast/svtools/messages.po 
 |6 
 source/ast/svx/messages.po 
 |   11 
 source/ast/sw/messages.po  
 |   57 -
 source/bg/basctl/messages.po   
 |   10 
 source/bg/cui/messages.po  
 |   20 
 source/bg/dictionaries/en/dialog.po
 |   10 
 source/bg/dictionaries/pt_BR/dialog.po 
 |6 
 source/bg/extensions/messages.po   
 |   10 
 source/bg/filter/messages.po   
 |   14 
 source/bg/forms/messages.po
 |6 
 source/bg/formula/messages.po  
 |8 
 source/bg/helpcontent2/source/auxiliary.po 
 |6 
 source/bg/helpcontent2/source/text/sbasic/shared/03.po 
 |   10 
 source/bg/helpcontent2/source/text/sdatabase.po
 |   30 
 source/bg/helpcontent2/source/text/shared/02.po
 |8 
 

[Libreoffice-commits] core.git: translations

2023-04-26 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f297cdffefc28443997de075aa1a9b617e0e66b4
Author: Christian Lohmaier 
AuthorDate: Wed Apr 26 21:58:36 2023 +0200
Commit: Gerrit Code Review 
CommitDate: Wed Apr 26 21:58:36 2023 +0200

Update git submodules

* Update translations from branch 'master'
  to bd22a155b84999d3a2e75cca0e1c735993971064
  - update translations for master

and force-fix errors using pocheck

Change-Id: I8c546190ea25d29f985750ecb2461a126f0815ff

diff --git a/translations b/translations
index 1d2b3738b883..bd22a155b849 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 1d2b3738b883c63406b69201713c4c702f4eae4f
+Subproject commit bd22a155b84999d3a2e75cca0e1c735993971064


[Libreoffice-ux-advise] [Bug 154903] Impress: Master Slide deck in Sibebar should have Title, Footers and more options

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154903

--- Comment #5 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #4)
> More opinions please.

Here's an opinion... 

1. "Master Elements" does nothing for me: I can click things on or off - that
doesn't make them appear in the slide. That's in a blank slide deck, not when
opening a specific template. I don't see footers or a page number.

2. The distinction between "Master Elements" and "Master Objects" is not clear
enough. After all, the "Master Elements" are (Drawing) Objects on the master
slide.

3. If I can toggle "Master Elements" from the Slide menu, why not also from the
Slide properties section of the sidebar?

4. Why is "Master Elements" a dialog rather than a submenu of the Slide menu,
seeing how it has four fixed items and no sub-panes etc.?

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

[Libreoffice-bugs] [Bug 154903] Impress: Master Slide deck in Sibebar should have Title, Footers and more options

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154903

--- Comment #5 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #4)
> More opinions please.

Here's an opinion... 

1. "Master Elements" does nothing for me: I can click things on or off - that
doesn't make them appear in the slide. That's in a blank slide deck, not when
opening a specific template. I don't see footers or a page number.

2. The distinction between "Master Elements" and "Master Objects" is not clear
enough. After all, the "Master Elements" are (Drawing) Objects on the master
slide.

3. If I can toggle "Master Elements" from the Slide menu, why not also from the
Slide properties section of the sidebar?

4. Why is "Master Elements" a dialog rather than a submenu of the Slide menu,
seeing how it has four fixed items and no sub-panes etc.?

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

[Libreoffice-bugs] [Bug 155036] New: Very slow sheet scrolling in Calc on MacOS

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155036

Bug ID: 155036
   Summary: Very slow sheet scrolling in Calc on MacOS
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ddascalescu+freedesk...@gmail.com

I use the same 10,000-row file on two machines, a Linux box with mediocre
specs, and a powerful MacBook Pro M1 Max with 32GB RAM. On the Mac, scrolling
is much, much slower than on the Linux laptop.

A test case is in this related bug,
https://bugs.documentfoundation.org/attachment.cgi?id=185775=edit

Version: 7.5.2.2 (X86_64) / LibreOffice Community
Build ID: 53bb9681a964705cf672590721dbc85eb4d0c3a2
CPU threads: 10; OS: Mac OS X 13.3.1; UI render: default; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 103512] [META] AutoFilter-related bugs and enhancements

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103512
Bug 103512 depends on bug 49205, which changed state.

Bug 49205 Summary: EDITING: Pasting range into autofiltered fields results in 
"Insert into multiple selection not possible"
https://bugs.documentfoundation.org/show_bug.cgi?id=49205

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 71519] Calc: Add option with warning for pasting selection/visible cells to filtered part of table (instead of "insert into multiple selection not possible")

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71519

Regina Henschel  changed:

   What|Removed |Added

 CC||mahf...@gmail.com

--- Comment #8 from Regina Henschel  ---
*** Bug 49205 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 49205] EDITING: Pasting range into autofiltered fields results in "Insert into multiple selection not possible"

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49205

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #8 from Regina Henschel  ---
I think, we should collect the "paste into range with filtered rows" problems
into one bug.

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

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

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

2023-04-26 Thread Sarper Akdemir (via logerrit)
 oox/source/drawingml/drawingmltypes.cxx |4 ++--
 sd/qa/unit/export-tests-ooxml3.cxx  |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 7dd994f8303a2b9396ed3848104028ff724e3bab
Author: Sarper Akdemir 
AuthorDate: Tue Apr 25 08:48:36 2023 +0300
Commit: Sarper Akdemir 
CommitDate: Wed Apr 26 21:13:31 2023 +0200

pptx export: fix export of vertical table text

The mapping (implemented in 77655fc3dca05d4bb2366e67ccea228e3886bfe2)
used on export and the accompanying roundtrip test was incorrect. This
patch fixes both.

Rotation value of
- 9000 maps to vert270
- 27000 maps to vert

Change-Id: I9a9f889a2bff0241e62ee685492034eec6d0cccf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150955
Tested-by: Jenkins
Reviewed-by: Sarper Akdemir 

diff --git a/oox/source/drawingml/drawingmltypes.cxx 
b/oox/source/drawingml/drawingmltypes.cxx
index ff8c46050c15..30fed83f4391 100644
--- a/oox/source/drawingml/drawingmltypes.cxx
+++ b/oox/source/drawingml/drawingmltypes.cxx
@@ -382,9 +382,9 @@ std::optional GetTextVerticalType(sal_Int32 
nRotateAngle)
 switch (nRotateAngle)
 {
   case 9000:
-  return "vert";
-  case 27000:
   return "vert270";
+  case 27000:
+  return "vert";
   default:
   return {};
 }
diff --git a/sd/qa/unit/export-tests-ooxml3.cxx 
b/sd/qa/unit/export-tests-ooxml3.cxx
index d8d92ca54ae8..6fdf10a5bcce 100644
--- a/sd/qa/unit/export-tests-ooxml3.cxx
+++ b/sd/qa/unit/export-tests-ooxml3.cxx
@@ -1991,8 +1991,8 @@ CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest3, 
testTableCellVerticalPropertyRoundtrip)
 
 xmlDocUniquePtr pXml = parseExport("ppt/slides/slide1.xml");
 
-assertXPath(pXml, "(//a:tcPr)[1]", "vert", "vert270");
-assertXPath(pXml, "(//a:tcPr)[2]", "vert", "vert");
+assertXPath(pXml, "(//a:tcPr)[1]", "vert", "vert");
+assertXPath(pXml, "(//a:tcPr)[2]", "vert", "vert270");
 assertXPath(pXml, "(//a:tcPr)[3]", "vert", "wordArtVert");
 }
 


[Libreoffice-bugs] [Bug 136749] Undo deleting a large table slow

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136749

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

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

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

2023-04-26 Thread Noel Grandin (via logerrit)
 sw/source/core/access/accmap.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit af8cb1039fd0cce86d771f4765c7d73c9f39b5a7
Author: Noel Grandin 
AuthorDate: Wed Apr 26 15:19:01 2023 +0200
Commit: Noel Grandin 
CommitDate: Wed Apr 26 20:55:58 2023 +0200

tdf#136749 std::map -> unordered_map

considerably faster when looking up pointers, shaves 10% of time off
here

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

diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx
index 46c0dbaf0714..fdee09f67722 100644
--- a/sw/source/core/access/accmap.cxx
+++ b/sw/source/core/access/accmap.cxx
@@ -89,10 +89,10 @@ public:
 typedef const SwFrame *   
key_type;
 typedef uno::WeakReference < XAccessible >  
mapped_type;
 typedef std::pair   
value_type;
-typedef std::map::iterator iterator;
-typedef std::map::const_iterator const_iterator;
+typedef std::unordered_map::iterator iterator;
+typedef std::unordered_map::const_iterator 
const_iterator;
 private:
-std::map  maMap;
+std::unordered_map  maMap;
 public:
 
 #if OSL_DEBUG_LEVEL > 0


[Libreoffice-qa] Minutes from the UX/design meeting 2023-Apr-26

2023-04-26 Thread Heiko Tietze

Present: Cor, Eyal, Heiko
Comments: Stuart, Mike, Ady, Ilmari

Tickets/Topics

 * Replace string is empty
   + https://bugs.documentfoundation.org/show_bug.cgi?id=154831
   + no need, WF (Stuart)
   + pro: common behavior, annoying to reselect, con: easy to do,
 danger of accidently replacing when just searching (Eyal)
   + last items are remembered but prefer to not auto select since
 destructive functions should be guarded (Cor, Heiko)
   => WF

 * The default width of Calc columns should be a bit narrower
   + https://bugs.documentfoundation.org/show_bug.cgi?id=154788
   + change the default col width?
   + better use a proper template (Mike)
   + expected length should be taken into account (Ady)
   + Excel too narrow, 2cm more appealing but very much personal
 taste (Cor)
   => let's run a poll on social media

 * "Apply border and shadow" option should be removed from
   AutoCaption dialog
   + https://bugs.documentfoundation.org/show_bug.cgi?id=154686
   + unclear function, no idea what it is good for (all)
   + blame anyone? (Eyal)- string dates back when the UI was
 created from previous *.src file
   + just hide/drop the UI control (Heiko)
   + prefer to dig into the issue aka bug (Cor)
   + charts apparently don't get the autocaption (Heiko)
   => bug, needsDevAdvice

 * UI: "augmented reality" hovering mode (immediate display of
   underlying formulas etc.)
   + https://bugs.documentfoundation.org/show_bug.cgi?id=147326
   + maybe as extension (Ilmari)
   + use case a bit unclear, but seems not to be a frequent
 use case (Eyal)
   + would be a clumsy interaction; and very slow with the tooltip
 delay (Heiko)
   + tooltip would clash with Tools > Options > Calc > View >
 Formula Indicator and Hint (Heiko)
   + wonder if View > Value Highlighting is sufficient (Cor, Eyal)
   => ask OP if that sufficient


OpenPGP_signature
Description: OpenPGP digital signature


Minutes from the UX/design meeting 2023-Apr-26

2023-04-26 Thread Heiko Tietze

Present: Cor, Eyal, Heiko
Comments: Stuart, Mike, Ady, Ilmari

Tickets/Topics

 * Replace string is empty
   + https://bugs.documentfoundation.org/show_bug.cgi?id=154831
   + no need, WF (Stuart)
   + pro: common behavior, annoying to reselect, con: easy to do,
 danger of accidently replacing when just searching (Eyal)
   + last items are remembered but prefer to not auto select since
 destructive functions should be guarded (Cor, Heiko)
   => WF

 * The default width of Calc columns should be a bit narrower
   + https://bugs.documentfoundation.org/show_bug.cgi?id=154788
   + change the default col width?
   + better use a proper template (Mike)
   + expected length should be taken into account (Ady)
   + Excel too narrow, 2cm more appealing but very much personal
 taste (Cor)
   => let's run a poll on social media

 * "Apply border and shadow" option should be removed from
   AutoCaption dialog
   + https://bugs.documentfoundation.org/show_bug.cgi?id=154686
   + unclear function, no idea what it is good for (all)
   + blame anyone? (Eyal)- string dates back when the UI was
 created from previous *.src file
   + just hide/drop the UI control (Heiko)
   + prefer to dig into the issue aka bug (Cor)
   + charts apparently don't get the autocaption (Heiko)
   => bug, needsDevAdvice

 * UI: "augmented reality" hovering mode (immediate display of
   underlying formulas etc.)
   + https://bugs.documentfoundation.org/show_bug.cgi?id=147326
   + maybe as extension (Ilmari)
   + use case a bit unclear, but seems not to be a frequent
 use case (Eyal)
   + would be a clumsy interaction; and very slow with the tooltip
 delay (Heiko)
   + tooltip would clash with Tools > Options > Calc > View >
 Formula Indicator and Hint (Heiko)
   + wonder if View > Value Highlighting is sufficient (Cor, Eyal)
   => ask OP if that sufficient


OpenPGP_signature
Description: OpenPGP digital signature


[Libreoffice-ux-advise] [Bug 147326] UI: "augmented reality" hovering mode (immediate display of underlying formulas etc.)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147326

--- Comment #8 from Cor Nouws  ---
So short: hovering shows cell content in formula bar.
Interesting.
If, then I would say moving the mouse is enough to end the visibility?

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

[Libreoffice-bugs] [Bug 147326] UI: "augmented reality" hovering mode (immediate display of underlying formulas etc.)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147326

--- Comment #8 from Cor Nouws  ---
So short: hovering shows cell content in formula bar.
Interesting.
If, then I would say moving the mouse is enough to end the visibility?

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

[Libreoffice-bugs] [Bug 147326] UI: "augmented reality" hovering mode (immediate display of underlying formulas etc.)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147326

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #7 from Cor Nouws  ---
So short: hover showing cell references.
Or is there more, a meta-description of the goal?
(One sentence ;) )?

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

[Libreoffice-ux-advise] [Bug 147326] UI: "augmented reality" hovering mode (immediate display of underlying formulas etc.)

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147326

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #7 from Cor Nouws  ---
So short: hover showing cell references.
Or is there more, a meta-description of the goal?
(One sentence ;) )?

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

  1   2   3   4   >