[Libreoffice-bugs] [Bug 146015] Output to HTML: Chapter numbering wrong

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

--- Comment #8 from achim  ---
> Second problem: Spacing after chapter numbering

is now in #tdf146365

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

[Libreoffice-bugs] [Bug 146366] New: Table pasted with Special paste RTF still present after undo

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

Bug ID: 146366
   Summary: Table pasted with Special paste RTF still present
after undo
   Product: LibreOffice
   Version: 4.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Table pasted with Special paste RTF still present after undo

Steps to Reproduce:
1. Open attachment 177053
2. CTRL+A
3. CTRL+C
4. CTRL+N
5. CTRL+SHIFT+V RTF
6. CTRL+Z

Actual Results:
Table still present after undo

Expected Results:
Empty page


Reproducible: Always


User Profile Reset: No



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

and in
Versie: 4.4.7.2 
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: nl_NL

not in
Version: 4.3.7.2
Build ID: 8a35821d8636a03b8bf4e15b48f59794652c68ba

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

[Libreoffice-bugs] [Bug 146366] Table pasted with Special paste RTF still present after undo

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

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

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

[Libreoffice-bugs] [Bug 145997] Changing Font might delete text

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

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEEDINFO

--- Comment #5 from Dieter  ---
(In reply to Bug Reports from comment #0)
> User Profile Reset: No

To be certain the reported issue is not related to corruption in the user
profile, could you please reset your Libreoffice profile
(https://wiki.documentfoundation.org/UserProfile) and re-test?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present.

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

[Libreoffice-bugs] [Bug 146281] [Feature Request] BaseDocumenter extension in Firebird not working

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I gave a try.

1) I installed the extension 0.6.0 retrieved from
https://extensions.libreoffice.org/en/extensions/show/basedocumenter-to-document-your-base-applications
(I chose  "For all users" when installing extension).

2) I created a brand new odb file (HSQLDB embedded) with just 1 table.

3) Menu BaseDocumenter/"New repository
=>  A new (empty) repository for database...
Do you agree to continue
I clicked Yes then selected a location (on local disk) and letting the by
default filename BaseDocumenter.odb

=> I got an popup message with just the title "ABORT"

Did I miss something?

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

[Libreoffice-bugs] [Bug 146281] [Feature Request] BaseDocumenter extension in Firebird not working

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

Julien Nabet  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||6063
 CC||j...@ledure.be

--- Comment #4 from Julien Nabet  ---
(In reply to Robert Großkopf from comment #3)
> (In reply to Julien Nabet from comment #2)
> > 
> > Did I miss something?
> 
> Could be you got an extension called basedocumenter.oxt. Seems it must be
> written BaseDocumenter.oxt. Another bug?

No I got BaseDocumenter.oxt with right uppercase/lowercase.
Digging a bit more, I found doc about Access2Base
http://www.access2base.com/access2base.html and added DBOpen macro.
But I got an abort.

Jean-Pierre: trying to debug, I got an abort here:
Public Function _CheckArgument(pvItem As Variant _
, ByVal piArgNr As Integer _
, Byval pvType As Variant _
, ByVal Optional pvValid As Variant _
, ByVal Optional pvError As Boolean _
) As Variant
'   Called by public functions to check the validity of their arguments
'pvItem Argument to be checked
'piArgNrArgument sequence number
'pvType Single value or array of allowed variable types
'   If of string type must contain one or more valid pseudo-object types
'pvValidSingle value or array of allowed values - comparison for
strings is case-insensitive
'pvErrorIf True (default), error handling in this routine. False in
_setProperty methods in class modules.

_CheckArgument = False

Dim iVarType As Integer, bValidIsMissing As Boolean
If IsArray(pvType) Then iVarType = VarType(pvType(LBound(pvType))) Else
iVarType = VarType(pvType)
If iVarType = vbString Then '   pvType is a pseudo-type string
_CheckArgument = Utils._IsPseudo(pvItem, pvType)
Else
bValidIsMissing = ( VarType(pvValid) = vbError ) < HERE

I think it's because pvValid is empty

I found this commit:
57666b8ba70f27c7250ef32f4cb9e7660e258521
Access2Base - tdf#136063 Workaround Basic missing argument handling (2)

But reading tdf#136063, it seems a proper fix has been done with tdf#136143.

Shouldn't revert the fix for tdf#136063 ?

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

[Libreoffice-bugs] [Bug 146362] New: Column flow in region stopped to work

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

Bug ID: 146362
   Summary: Column flow in region stopped to work
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

Description:
An ODT document last saved with LibreOffice 6.4.X (X unknown) displays
differently when loaded in LibreOffice Writer 7.1.5; specifically the option to
balance columns in a region seems to be ignored.

Steps to Reproduce:
1. Load a document with a multi-column region
2. Edit text in the multi-column region


Actual Results:
The text accumulates in first column and is not distributed equally among
columns.

Expected Results:
Text should be balanced between columns as instructed.


Reproducible: Always


User Profile Reset: No



Additional Info:
Worked up to LibreOffice 6.4 it seems. When creating a new document, it also
seems to work.

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

[Libreoffice-bugs] [Bug 146362] Column flow in region stopped to work

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #3 from BogdanB  ---
Created attachment 177070
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177070=edit
test document

I tested this bug on Linux with 7.3 and 7.4 and no repro.

I have attached a demo file. Could you test it in 6.4 and also in 7.1 on your
Windows?...

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

[Libreoffice-bugs] [Bug 146281] [Feature Request] BaseDocumenter extension in Firebird not working

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

Julien Nabet  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||5180
 CC||andreas.heini...@yahoo.de,
   ||mikekagan...@hotmail.com

--- Comment #5 from Julien Nabet  ---
Argh reverting
https://cgit.freedesktop.org/libreoffice/core/commit/?id=57666b8ba70f27c7250ef32f4cb9e7660e258521,
it fails here:

If IsMissing(pvValid) Then _CheckArgument = Utils._IsScalar(pvItem, pvType)
Else _CheckArgument = Utils._IsScalar(pvItem, pvType, pvValid)

In fact, after some debug it fails precisely on
IsMissing(pvValid)

Andreas/Mike: it might be related to tdf#125180

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

[Libreoffice-bugs] [Bug 146320] Base Report generator Java error

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

--- Comment #9 from Dennis Rice  ---
I did a Yast search for "Libreoffice-base-driver" and did not find any on my
laptop.  I also mounted the DVD from the original installation and again did
not find any files under "libreoffice-base-driver", not finding any such file. 
On my laptop I did find a driver for postgresql when doing a yast search.

I did find it on the Internet, should I download it and install?  There are
three options for installation:
 home:Alexander_Naumov:SSLmigration Community5.4.1.2
home:adamm:boost_test Community  7.0.3.1
home:frispete:LibreOffice Community  6.4.7.2 

Appreciate advice.

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

[Libreoffice-bugs] [Bug 34360] Various options forgotten from their previous state

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

Somya Singh  changed:

   What|Removed |Added

URL|https://www.ri.glamadults.c |http://poojaescorts.in/esco
   |om/ |rt-service-in-dwarka.html

--- Comment #39 from Somya Singh  ---
You will enjoy one of the best orgasms of your life, you will see. Book me
anytime at the best affordable rate.
http://poojaescorts.in/escort-service-in-dwarka.html
http://www.callgirlsservicesdelhi.com/dwarka-escort.html
https://www.missdelhiescort.com/dwarka-escorts.html

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

[Libreoffice-bugs] [Bug 34360] Various options forgotten from their previous state

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

--- Comment #40 from Somya Singh  ---
You will enjoy one of the best orgasms of your life, you will see. Book me
anytime at the best affordable rate.
http://poojaescorts.in/escort-service-in-dwarka.html
http://www.callgirlsservicesdelhi.com/dwarka-escort.html
https://www.missdelhiescort.com/dwarka-escorts.html

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

[Libreoffice-bugs] [Bug 142967] Crash in: SfxApplication::GetSidebarTheme()

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

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

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 143030] Crash in: SfxItemPool::Remove(SfxPoolItem const &)

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

--- Comment #2 from QA Administrators  ---
Dear Robert Hood,

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 122918] hotkeys in LibreOffice 6 on Win do not work correctly when uses RU keyboard layout

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

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

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 128453] Slide disappears if "empty" layout is chosen on iOS

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

--- Comment #10 from QA Administrators  ---
Dear Nicolas Christener,

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 143045] Updater UI is corrupted the first time it is run after update

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

--- Comment #3 from QA Administrators  ---
Dear Vadym Yusanenko,

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 146096] CRASH: Importing most video formats results in instant crash

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146097] RED CROSS -- search toolbar close button's RED color is ambiguous

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146101] Notebookbar is displayed regardless of the context

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146087] UI does not show Telemetry data when search and live mode is on

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146088] EDITING LibreOffice Writer crashes when selecting a row in the linked document

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146091] Text is out of text box's rectangle when using --convert-to pdf in commandline

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146102] Saved notation

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146106] Loading graphic with XGraphicProvider::queryGraphic from https: CRL validation does not use proxy setting

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146092] Make inserted frames rotatable

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 146364] Calc does not report the file closing to 7Zip if another LibreOffice document is open

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

stragu  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guil...@member.fsf
   ||.org

--- Comment #1 from stragu  ---
I could not reproduce on Ubuntu 18.04, opening the .7z archive with GNOME
Archive Manager 3.28.0. In both case, Archive Manager was able to prompt me to
update the archive.

Version: 7.1.8.1 / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Version: 7.2.4.1 / LibreOffice Community
Build ID: 27d75539669ac387bb498e35313b970b7fe9c4f9
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Can you please try again:
- with your user profile reset
- with one for the two versions above (there was a security fix in the latest
7.1 version so it's a good idea to update anyway)

It might be a Windows-specific issue, or it might be a 7zip issue, but in any
case, we will need you to try the above.

And can you please give use the version of 7Zip that you are using. Is it up to
date?

Instructions for user profile reset or safe mode:
https://wiki.documentfoundation.org/UserProfile#Help_wizard_.28LibreOffice_5.3_and_newer.29
Download a recent version of LO: https://www.libreoffice.org/download/download/

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

[Libreoffice-bugs] [Bug 146367] LibreOffice calc, problem with the number FORMATTING since upgrade to 7.2.4.1

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

stragu  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guil...@member.fsf
   ||.org
 Ever confirmed|0   |1

--- Comment #1 from stragu  ---
Hi Marcel
Thank you for the report.

I couldn't reproduce with:

Version: 7.2.4.1 / LibreOffice Community
Build ID: 27d75539669ac387bb498e35313b970b7fe9c4f9
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Can you please:

- share the information included in Help > About LibreOffice... (it might be
"Aide > À propos de LibreOffice..." en français). There is a button to copy
everything.
- tell us which version you updated from (the version you were using before
installing 7.2.4.1)
- provide us with a simple example file that shows the issue, or more precise
steps to reproduce (including what values are in the cells you referenced).

Thank you!

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

[Libreoffice-bugs] [Bug 146341] 7.2 calc update is a cpu hog

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

--- Comment #4 from BogdanB  ---
No necesary. Restart in Safe mode and Factory Settings is like you have a new
LibreOffice installation. So, it's enough. I don't know why. 

You could try to install LibreOffice with terminal with versions from
LibreOffice official web site. Search on youtube: "how to install Libreoffice
from deb packages" and try.

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

[Libreoffice-bugs] [Bug 108226] [META] PPTX (OOXML) bug tracker

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

Bug 146358 Summary: [FILEOPEN PPTX] fontwork has black text instead of color 
gradient
https://bugs.documentfoundation.org/show_bug.cgi?id=146358

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146281] [Feature Request] BaseDocumenter extension in Firebird not working

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

--- Comment #6 from Andreas Heinisch  ---
Have to investigate further, but in the function TraceError I get the error
message "Argument is not optional" raised at:

Public Function _CheckArgument
...
bValidIsMissing = ( VarType(pvValid) = vbError )
...

called in:

Public Function OpenDatabase
...
If Not Utils._CheckArgument(pvDatabaseURL, 1, vbString) Then Goto
Exit_Function
...

Strange though that here the iVarType is not vbString:

Dim iVarType As Integer, bValidIsMissing As Boolean
If IsArray(pvType) Then iVarType = VarType(pvType(LBound(pvType))) Else
iVarType = VarType(pvType)
If iVarType = vbString Then '  
pvType is a pseudo-type string
_CheckArgument = Utils._IsPseudo(pvItem, pvType)
Else
bValidIsMissing = ( VarType(pvValid) = vbError )
If Not bValidIsMissing Then bValidIsMissing =
IsMissing(pvValid)
If bValidIsMissing Then _CheckArgument =
Utils._IsScalar(pvItem, pvType) Else _CheckArgument = Utils._IsScalar(pvItem,
pvType, pvValid)
End If

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

[Libreoffice-bugs] [Bug 146092] Make inserted frames rotatable

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

Dieter  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
 Blocks||107656


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 107656] [META] Frame bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||146092


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146092
[Bug 146092] Make inserted frames rotatable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146097] RED CROSS -- search toolbar close button's RED color is ambiguous

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

Dieter  changed:

   What|Removed |Added

  Component|Writer  |UI
 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
 Blocks||108743
   Keywords||needsUXEval

--- Comment #2 from Dieter  ---
Let's decide design-team. Personally i won't follow you suggestion, because we
have the same red cross in 
File -> Close
and in every close-icon in the toolbar
Changing this in find-toolbar would be inconsistent


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108743] [META] Find toolbar bugs and enhancements

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

Dieter  changed:

   What|Removed |Added

 Depends on||146097


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146097
[Bug 146097] RED CROSS -- search toolbar close button's RED color is ambiguous
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 58194] FILESAVE Automatic first indent isn't saved in DOC/DOCX format

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

Kevin Suo  changed:

   What|Removed |Added

 CC||vmik...@collabora.com

--- Comment #10 from Kevin Suo  ---
Miklos Vajna: What do you think of my comment in comment 9?

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

[Libreoffice-bugs] [Bug 58194] FILESAVE Automatic first indent isn't saved in DOC/DOCX format

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

Kevin Suo  changed:

   What|Removed |Added

 Resolution|NOTABUG |---
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||9448
 CC||suokunl...@126.com
 Status|RESOLVED|NEW

--- Comment #9 from Kevin Suo  ---
Sorry but I set this to NEW. This *is* a bug.

It is true that ooxml does not support "auto" first line indent, but when
saving to docx/doc LibreOffice should at least preserve the calculated first
line indent value.

For instance, if in an ODT file the first line indent is "auto", and it is
calculated that the auto indent value should be "480 twips", in this "480
twips" which equals whatever cm or whatever pt should be written to the
docx/doc. Otherwise, it is a format loss.

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

[Libreoffice-bugs] [Bug 133737] Calc hangs/freezes on second sort action

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

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 133737] Calc hangs/freezes on second sort action

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

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

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

[Libreoffice-bugs] [Bug 144354] Mail Merge Wizard freezes LibreOffice with multiple versions installed from debs

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

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 144354] Mail Merge Wizard freezes LibreOffice with multiple versions installed from debs

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

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

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

[Libreoffice-bugs] [Bug 139870] Outline folding mode Writer doesn't hide lower level headings, only text body and Default

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

--- Comment #5 from QA Administrators  ---
Dear Peter Roelofsen,

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 135310] [META] Writer outline folding bugs and enhancements

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

Bug 139870 Summary: Outline folding mode Writer doesn't hide lower level 
headings, only text body and Default
https://bugs.documentfoundation.org/show_bug.cgi?id=139870

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 139870] Outline folding mode Writer doesn't hide lower level headings, only text body and Default

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 138017] printing multi-copy using printer-password

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

--- Comment #3 from QA Administrators  ---
Dear Xavier COUDIN,

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 138017] printing multi-copy using printer-password

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142374] Poprawić animację Nieumiałka - longJump

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 142374] Poprawić animację Nieumiałka - longJump

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

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

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 146341] 7.2 calc update is a cpu hog

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

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 146341] 7.2 calc update is a cpu hog

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

--- 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 146013] Output to HTML: (some) styles for tables are wrong

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

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 145921] Crash in: SfxItemSet::Get(unsigned short, bool) - EDITING

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

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 145921] Crash in: SfxItemSet::Get(unsigned short, bool) - EDITING

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

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

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

[Libreoffice-bugs] [Bug 146013] Output to HTML: (some) styles for tables are wrong

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

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

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

[Libreoffice-bugs] [Bug 146101] Notebookbar is displayed regardless of the context

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

--- Comment #2 from Dorange-Pattoret Didier  ---
I confirm for LO windows :
Version: 7.2.4.1 (x64) / LibreOffice Community
Build ID: 27d75539669ac387bb498e35313b970b7fe9c4f9
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: fr-FR (fr_FR); UI: fr-FR
Calc: CL

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

[Libreoffice-bugs] [Bug 146358] [FILEOPEN PPTX] fontwork has black text instead of color gradient

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

stragu  changed:

   What|Removed |Added

Summary|[FILEOPEN PPTX] black text  |[FILEOPEN PPTX] fontwork
   |instead of color gradient   |has black text instead of
   ||color gradient
 Blocks|139895  |108226, 107634

--- Comment #4 from stragu  ---
Object is actually fontwork / WordArt.
It is possible to change to a radial gradient by using Right Click > Area... >
Gradient.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107634
[Bug 107634] [META] Fontwork / WordArt bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108226
[Bug 108226] [META] PPTX (OOXML) bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=139895
[Bug 139895] [META] PPTX Character formatting issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107634] [META] Fontwork / WordArt bugs and enhancements

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

stragu  changed:

   What|Removed |Added

 Depends on||146358


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146358
[Bug 146358] [FILEOPEN PPTX] fontwork has black text instead of color gradient
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108226] [META] PPTX (OOXML) bug tracker

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

stragu  changed:

   What|Removed |Added

 Depends on||146358


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146358
[Bug 146358] [FILEOPEN PPTX] fontwork has black text instead of color gradient
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139895] [META] PPTX Character formatting issues

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

stragu  changed:

   What|Removed |Added

 Depends on|146358  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146358
[Bug 146358] [FILEOPEN PPTX] fontwork has black text instead of color gradient
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139618] FILEOPEN: PPTX: Wordart with Gradient Fill is imported as Solid Fill

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

stragu  changed:

   What|Removed |Added

 CC||stephane.guil...@member.fsf
   ||.org

--- Comment #5 from stragu  ---
Reproducible in:

Version: 7.0.6.2
Build ID: 00(Build:2)
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Ubuntu package version: 1:7.0.6-0ubuntu0.18.04.1_lo1
Calc: threaded

Version: 7.1.8.1 / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Version: 7.3.0.0.beta1 / LibreOffice Community
Build ID: 436f14c25ec1847646b953cf13d0db4f7ca3be57
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

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

Attachment 177077 shows OnlyOffice supporting this type of gradient in PPTX.

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

[Libreoffice-bugs] [Bug 104494] FILEOPEN DOC protected as read-only with selected parts as exceptions needs password to edit unprotected areas too

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

--- Comment #13 from Aron Budea  ---
For the record, attachment 145953 is a sample DOCX with the same feature.

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

[Libreoffice-bugs] [Bug 34360] Various options forgotten from their previous state

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

Nikitha Bangalore Escorts  changed:

   What|Removed |Added

 Whiteboard||https://www.divyagoal.com/b
   ||angalore-escorts.html

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

[Libreoffice-bugs] [Bug 34360] Various options forgotten from their previous state

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

--- Comment #41 from Nikitha Bangalore Escorts  ---
https://www.divyagoal.com/bangalore-escorts.html

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

[Libreoffice-bugs] [Bug 143098] The 'Styles Preview' section in the Tabbed NB doesn't follow the system theme like the sidebar

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

stragu  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
Summary|The 'Styles Preview'|The 'Styles Preview'
   |section in the Tabbed NB|section in the Tabbed NB
   |doesn't follow the system   |doesn't follow the system
   |theme   |theme like the sidebar

--- Comment #13 from stragu  ---
Heiko, I haven't been able to reproduce the grey font issue either, but can we
make this bug the one about this style preview section following the dark theme
exactly as the sidebar does?

As Yizi said for expected results:

"The background of the heading styles section should follow the system theme
and the font color should adapt to the background."

Which is why I marked bug 146289 as a duplicate.

Changing bug summary to add "like the sidebar".

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

[Libreoffice-bugs] [Bug 144354] Mail Merge Wizard freezes LibreOffice with multiple versions installed from debs

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

--- Comment #11 from stragu  ---
Julien, Ubuntu 18.04 is an LTS supported until 2028, so I expect us to try an
check if debs are still working for that distribution for a while more,
especially since it is the main method of installation advertised on
https://www.libreoffice.org/download/download/ (and there isn't even a mention
of PPAs on that page)

Wouldn't you agree?

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

[Libreoffice-bugs] [Bug 146368] scarletamou

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

stragu  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107634] [META] Fontwork / WordArt bugs and enhancements

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

Bug 146358 Summary: [FILEOPEN PPTX] fontwork has black text instead of color 
gradient
https://bugs.documentfoundation.org/show_bug.cgi?id=146358

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146358] [FILEOPEN PPTX] fontwork has black text instead of color gradient

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

stragu  changed:

   What|Removed |Added

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

--- Comment #5 from stragu  ---
... and this is a duplicate of bug 139618

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

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

[Libreoffice-bugs] [Bug 139618] FILEOPEN: PPTX: Wordart with Gradient Fill is imported as Solid Fill

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

stragu  changed:

   What|Removed |Added

 CC||pablo.pl...@gmail.com

--- Comment #4 from stragu  ---
*** Bug 146358 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 146320] Base Report generator Java error

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

--- Comment #10 from Robert Großkopf  ---
Please don't mix different version of LO. You won't get the driver
libreoffice-base-drivers-firebird working. It is the reason here with OpenSUSE
15.2: Different version and LO will fail to open the database.

Create a folder in your home directory for *.rpm-files.
Go to YaST → Software-Repositories and add this folder to the repositories. It
will be a local folder. You have also to click on "only rpm" (could be it isn't
the right translation …)

Go to https://www.libreoffice.org/download/download/ and download the release
of LO you want and also the translation and the help. 

Unpack all this and move the *.rpm-files to the directory you created.

Restart YaST and choose all files in your new repositories. Install and you
will get LO together with Firebird and all packages you need.

Seems packages of OpenSUSE aren't providing Firebird any more.

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

[Libreoffice-bugs] [Bug 146255] Text shift vertically when setting highlighting to no fill (appears to be zoom-related)

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

--- Comment #5 from stragu  ---
(In reply to LeroyG from comment #4)
> Just with putting the cursor in the "Le recyclage et la fin de vie  " line
> makes it to move a bit. This don't bothers me.
> 
> But I don't have Verdana in this PC.
> 
> Version: 7.1.8.1 / LibreOffice Community
> Build ID: e1f30c802c3269a1d052614453f260e49458c82c
> CPU threads: 1; OS: Linux 4.12; UI render: default; VCL: x11
> Locale: es-MX (es_AR.UTF-8); UI: en-US
> Calc: threaded

Agree that I notice some lines shifting a bit when clicking in the text area,
but it's not only in the highlighted area, and it does not happen when "no
fill" is applied.

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

[Libreoffice-bugs] [Bug 125201] Scrolling down on Touchpad erratic (6.2.3.2 on Ubuntu 18.04)

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

--- Comment #13 from jnd hotels  ---
Royal Kalinga Cottages Manali is one of the most prominent cottages in the
town.  The Cottage is designed to calm, delight your senses. The beautiful
spectacular views, peaceful and serene ambiance, makes this place fit for
travelers, nature lovers.

https://bit.ly/3cwoUmF

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

[Libreoffice-bugs] [Bug 121877] Tabbed UIs do not use theme color - keeps the default application color

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

--- Comment #14 from stragu  ---
Created attachment 177075
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177075=edit
themed tabbed UI in LO 7.2.4.1 on Ubuntu 18.04 using system dark theme

This is using the preinstalled theme "Green": only a rectangle around the
active tab is visible.

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

[Libreoffice-bugs] [Bug 131467] Positioning of mouse on "Default Button" not working with some dialogs

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

--- Comment #16 from Commit Notification 
 ---
Jan-Marek Glogowski committed a patch related to this issue.
It has been pushed to "libreoffice-7-3":

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

tdf#131467 Qt set default position on first resize

It will be available in 7.3.0.2.

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

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

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

[Libreoffice-bugs] [Bug 131467] Positioning of mouse on "Default Button" not working with some dialogs

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.4.0|target:7.4.0 target:7.3.0.2

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

[Libreoffice-bugs] [Bug 146082] In Basic , Structures stored in an array

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

--- Comment #4 from Leslie  ---
Created attachment 177076
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177076=edit
Simple code showing 1 aspect of bug

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

[Libreoffice-bugs] [Bug 146082] In Basic , Structures stored in an array

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

--- Comment #3 from Leslie  ---
I have added an attachment which shows 1 aspect of this bug in much simpler
code.  
2 simple integer classes and a collector class.  
Both the simple integer classes look like this: 

private _a as integer 

private sub class_initialize() 
end sub 
private sub class_terminate() 
end sub 

And the collector like this: 

public _a() as object 'ClassA
public _c() as ClassC
private _upperBound as integer

private sub class_initialize() 
   _upperBound = -1
end sub 
private sub class_terminate() 
end sub 
public sub AddElements(byref elementA as ClassA, byref elementC as ClassC)
   _upperBound = _upperBound + 1
   redim preserve _a(0 to _upperBound)
   set _a(_upperBound) = elementA
   redim preserve _c(0 to _upperBound)
   set _c(_upperBound) = elementC
   msgbox(_a(0)._a) 
   msgbox(_c(0)._c)
end sub

And then a test to see what happens: 
public sub test() 
   dim n as integer 
   dim a as ClassA, b as ClassB, c as ClassC, d as ClassD

   set a = new ClassA 
   a._a = 10
   set c = new ClassC 
   c._c = 12

   set b = new ClassB
   b.AddElements(a,c)
end sub 

When in the above code _a() is defined as ClassA the message box will always
show 0. 
When it is defined as object it will show the expected result 10.

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

[Libreoffice-bugs] [Bug 146368] New: scarletamou

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

Bug ID: 146368
   Summary: scarletamou
   Product: LibreOffice
   Version: 3.3.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: scarleta...@hotmail.com

Description:
it's far a unusual feeling to be picking the top canadian athletes of the one
year proper now. what those human beings did for our leisure can not evaluate
to the contributions of, say, a nurse or a kindergarten trainer. however,
despite the fact that, they added us some light in a dark time. and allowed us
to anticipate higher days in advance.

https://www.scarletamour.com

Actual Results:
it's far a unusual feeling to be picking the top canadian athletes of the one
year proper now. what those human beings did for our leisure can not evaluate
to the contributions of, say, a nurse or a kindergarten trainer. however,
despite the fact that, they added us some light in a dark time. and allowed us
to anticipate higher days in advance.

Expected Results:
gfeRGt


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
aDFWRTAEEFEGTEA

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

[Libreoffice-bugs] [Bug 146363] [regression] LibreOffice Draw crashes when changing width/height of text box

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

--- Comment #4 from BogdanB  ---
Confirm with
Version: 7.2.4.1 / LibreOffice Community
Build ID: 27d75539669ac387bb498e35313b970b7fe9c4f9
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 146358] [FILEOPEN PPTX] black text instead of color gradient

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

--- Comment #2 from stragu  ---
Created attachment 177077
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177077=edit
gradient shows in OnlyOffice 6.4.2

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

[Libreoffice-bugs] [Bug 146358] [FILEOPEN PPTX] black text instead of color gradient

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

stragu  changed:

   What|Removed |Added

Version|7.2.3.2 release |7.0.6.2 release
 Ever confirmed|0   |1
 Blocks||139895
 Status|UNCONFIRMED |NEW
 CC||stephane.guil...@member.fsf
   ||.org

--- Comment #3 from stragu  ---
Reproducible in:

Version: 7.0.6.2
Build ID: 00(Build:2)
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Ubuntu package version: 1:7.0.6-0ubuntu0.18.04.1_lo1
Calc: threaded

Version: 7.1.8.1 / LibreOffice Community
Build ID: e1f30c802c3269a1d052614453f260e49458c82c
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Version: 7.3.0.0.beta1 / LibreOffice Community
Build ID: 436f14c25ec1847646b953cf13d0db4f7ca3be57
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 17a4f4d5e4d49189b43e748271d2d4fa330eef9b
CPU threads: 8; OS: Linux 5.4; 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=139895
[Bug 139895] [META] PPTX Character formatting issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139895] [META] PPTX Character formatting issues

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

stragu  changed:

   What|Removed |Added

 Depends on||146358


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146358
[Bug 146358] [FILEOPEN PPTX] black text instead of color gradient
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 126208] Text not displayed, after hiding first row of merged cell

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

--- Comment #9 from Alexandramaria  ---
I am having the same problem which you have mentioned here. Surely, I will try
this method to fix this. Thanks for sharing this valuable information. Keep
updating more details like this. https://amrutveni.com/specialities

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

[Libreoffice-bugs] [Bug 34360] Various options forgotten from their previous state

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

Nikitha Bangalore Escorts  changed:

   What|Removed |Added

  Alias||Nikitha, Bangalore, Escorts
URL|http://poojaescorts.in/esco |https://nikithabangaloreesc
   |rt-service-in-dwarka.html   |orts.com/escorts-location/s
   ||arjapur-escorts-service.htm
   ||l

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

[Libreoffice-bugs] [Bug 146091] Text is out of text box's rectangle when using --convert-to pdf in commandline

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

Dieter  changed:

   What|Removed |Added

  Component|Writer  |Printing and PDF export

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

[Libreoffice-bugs] [Bug 146088] EDITING LibreOffice Writer crashes when selecting a row in the linked document

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

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|

--- Comment #2 from Dieter  ---
I can't confirm it with

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: deea3b7471c3dab0220eca6146c225a2d47681a2
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

Could you please try to reproduce it with a master build from
http://dev-builds.libreoffice.org/daily/master/current.html ? You can install
it alongside the standard version. I have set the bug's status to 'NEEDINFO'.
Please change it back to 'UNCONFIRMED' if the bug is still present in the
master build.

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

[Libreoffice-bugs] [Bug 146281] [Feature Request] BaseDocumenter extension in Firebird not working

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

--- Comment #7 from Mike Kaganski  ---
(In reply to Julien Nabet from comment #5)

Debugging _CheckArgument in Basic IDE, I see that *before* the initial
assignment '_CheckArgument = False', all the arguments show in the IDE's
tooltip (either their values, or ), and also they show in
watch window; but after that line, all of them are shown in Watch window as
"Out of scope".

Possibly the above is unrelated, and is only some bug in IDE, so please
disregard that for now.

Another possibly unrelated thing that I see while debugging is setting an error
when calling m_xMethod->Clear() in BasicScriptImpl::invoke [2] (see
tdf#143582).

My suspicion wrt the current problem would be SbiRuntime::StepPARAM call when
executing [1].

[1]
https://opengrok.libreoffice.org/xref/core/wizards/source/access2base/Utils.xba?r=57666b8b=4607=113#113
[2]
https://opengrok.libreoffice.org/xref/core/scripting/source/basprov/basscript.cxx?r=24d24deb=8965=247#247

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

<    1   2   3