[Libreoffice-bugs] [Bug 109329] [META] VLookup function bugs and enhancements

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109329
Bug 109329 depends on bug 119083, which changed state.

Bug 119083 Summary: Recalculation is slow with 9 VLOOKUP
https://bugs.documentfoundation.org/show_bug.cgi?id=119083

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 119083] Recalculation is slow with 90000 VLOOKUP

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119083

Luboš Luňák  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 119083] Recalculation is slow with 90000 VLOOKUP

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119083

--- Comment #39 from Commit Notification 
 ---
Luboš Luňák committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/fdcea8ccc8236b0975ac9c85dcabf9c663e4b627

make CollectCellAction sort cells by cell address (tdf#119083)

It will be available in 7.4.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: sc/source

2022-02-19 Thread Luboš Luňák (via logerrit)
 sc/source/core/tool/grouparealistener.cxx |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit fdcea8ccc8236b0975ac9c85dcabf9c663e4b627
Author: Luboš Luňák 
AuthorDate: Sun Feb 20 02:33:36 2022 +0100
Commit: Luboš Luňák 
CommitDate: Sun Feb 20 08:01:40 2022 +0100

make CollectCellAction sort cells by cell address (tdf#119083)

Many calc algorithms perform better if they process cells ordered
by tab,col,row. In the case of tdf#119083 it's
ScDocument::TrackFormulas().

Change-Id: I1eedefc0130f5cf95feb84a4160b7599d3a09fd6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130205
Tested-by: Luboš Luňák 
Reviewed-by: Luboš Luňák 

diff --git a/sc/source/core/tool/grouparealistener.cxx 
b/sc/source/core/tool/grouparealistener.cxx
index 4c92475d9a3f..39b92625b5b8 100644
--- a/sc/source/core/tool/grouparealistener.cxx
+++ b/sc/source/core/tool/grouparealistener.cxx
@@ -63,8 +63,14 @@ public:
 
 void swapCells( std::vector& rCells )
 {
-// Remove duplicate before the swap.
-std::sort(maCells.begin(), maCells.end());
+// Remove duplicate before the swap. Take care to sort them by 
tab,col,row before sorting by pointer,
+// as many calc algorithms perform better if cells are processed in 
this order.
+std::sort(maCells.begin(), maCells.end(), [](const ScFormulaCell* 
cell1, const ScFormulaCell* cell2)
+{
+if( cell1->aPos != cell2->aPos )
+return cell1->aPos < cell2->aPos;
+return cell1 < cell2;
+});
 std::vector::iterator it = 
std::unique(maCells.begin(), maCells.end());
 maCells.erase(it, maCells.end());
 


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

2022-02-19 Thread Luboš Luňák (via logerrit)
 sc/source/core/data/bcaslot.cxx |   31 +++
 1 file changed, 15 insertions(+), 16 deletions(-)

New commits:
commit 131710cba68e46c175babbd20c810e7fc2fb811f
Author: Luboš Luňák 
AuthorDate: Sun Feb 20 00:56:37 2022 +0100
Commit: Luboš Luňák 
CommitDate: Sun Feb 20 07:59:01 2022 +0100

optimize AreaBroadcast() a bit

Use ComputeAreaPoints() rather than repeated ComputeSlotOffset().

Change-Id: If7869fe4c37a1e844ec9e6513a7c1799290c077f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130204
Tested-by: Jenkins
Reviewed-by: Luboš Luňák 

diff --git a/sc/source/core/data/bcaslot.cxx b/sc/source/core/data/bcaslot.cxx
index 6869ca24e120..7e6383a9c35b 100644
--- a/sc/source/core/data/bcaslot.cxx
+++ b/sc/source/core/data/bcaslot.cxx
@@ -909,24 +909,23 @@ bool ScBroadcastAreaSlotMachine::AreaBroadcast( const 
ScHint& rHint ) const
 TableSlotsMap::const_iterator iTab( aTableSlotsMap.find( 
rAddress.Tab()));
 if (iTab == aTableSlotsMap.end())
 return false;
-// Process all slots for the given row range, but it's enough to 
process
-// each only once.
-ScBroadcastAreaSlot* pLastSlot = nullptr;
-ScAddress address(rAddress);
-bool wasBroadcast = false;
-for( SCROW nRow = rAddress.Row(); nRow < rAddress.Row() + 
rHint.GetRowCount(); ++nRow )
+// Process all slots for the given row range.
+ScRange broadcastRange( rAddress,
+ScAddress( rAddress.Col(), rAddress.Row() + rHint.GetRowCount() - 
1, rAddress.Tab()));
+bool bBroadcasted = false;
+ScBroadcastAreaSlot** ppSlots = (*iTab).second->getSlots();
+SCSIZE nStart, nEnd, nRowBreak;
+ComputeAreaPoints( broadcastRange, nStart, nEnd, nRowBreak );
+SCSIZE nOff = nStart;
+SCSIZE nBreak = nOff + nRowBreak;
+ScBroadcastAreaSlot** pp = ppSlots + nOff;
+while ( nOff <= nEnd )
 {
-address.SetRow(nRow);
-ScBroadcastAreaSlot* pSlot = (*iTab).second->getAreaSlot(
-ComputeSlotOffset( address));
-if ( pSlot && pSlot != pLastSlot )
-{
-if(pSlot->AreaBroadcast( rHint ))
-wasBroadcast = true;
-pLastSlot = pSlot;
-}
+if ( *pp )
+bBroadcasted |= (*pp)->AreaBroadcast( rHint );
+ComputeNextSlot( nOff, nBreak, pp, nStart, ppSlots, nRowBreak, 
mnBcaSlotsCol);
 }
-return wasBroadcast;
+return bBroadcasted;
 }
 }
 


[Libreoffice-bugs] [Bug 147547] crash when starting a report in LO Base

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147547

--- Comment #1 from Heinz-Dieter  ---
Created attachment 178400
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178400=edit
Error after open

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

[Libreoffice-bugs] [Bug 147547] New: crash when starting a report in LO Base

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147547

Bug ID: 147547
   Summary: crash when starting a report in LO Base
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: h...@swiateck.com

Description:
on Friday 18.02.22 LO Vers. 7.2.3.2 also arrived at openSuse Leap 15.3.
Since then the LO-Base reports do not work anymore.
The same error also occurs under openSuse Tumbleweed already since January.
I noticed that the error only occurred with version 7.2.x.
See also attachment.
Translated with Deepl.com

Steps to Reproduce:
1.open an LO-Base report
2.
3.

Actual Results:
Error Window

Expected Results:
Open Report


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.3.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 4; OS: Linux 5.3; UI render: default; VCL: kf5 (cairo+xcb)
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Calc: threaded

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

[Libreoffice-bugs] [Bug 147486] Text highlight attribute applied to pre-existing tracked change

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147486

raal  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||r...@post.cz
 Status|UNCONFIRMED |NEW

--- Comment #2 from raal  ---
Confirm with Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 8942956e05f2208ffb666a2118f5db092c30ce6a
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded Jumbo

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

[Libreoffice-bugs] [Bug 147220] Replacing with the track changes on but not visible results in false rendering

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147220

raal  changed:

   What|Removed |Added

 Blocks||138327
   Keywords||bibisected, bisected

--- Comment #4 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Michael Stahl; Could you possibly take a look at this one?
Thanks

ae82aa93d4536e9529688f412def4a23908f1d40 is the first bad commit
commit ae82aa93d4536e9529688f412def4a23908f1d40
Author: Jenkins Build User 
Date:   Wed Dec 19 08:07:30 2018 +0100

source sha:94c1af65367dcbc7272455cf6d4940252a289b62

https://git.libreoffice.org/core/+/94c1af65367dcbc7272455cf6d4940252a289b62
  sw_redlinehide: make layout based Show/Hide mode the default


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138327
[Bug 138327] [META] sw_redlinehide regressions (track changes)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138327] [META] sw_redlinehide regressions (track changes)

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138327

raal  changed:

   What|Removed |Added

 Depends on||147220


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147220
[Bug 147220] Replacing with the track changes on but not visible results in
false rendering
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147220] Replacing with the track changes on but not visible results in false rendering

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147220

raal  changed:

   What|Removed |Added

   Keywords||regression
 Whiteboard| QA:needsComment|

--- Comment #3 from raal  ---
Works in Version 4.1.0.0.alpha0+ (Build ID:
efca6f15609322f62a35619619a6d5fe5c9bd5a)
-> regression

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

[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946

raal  changed:

   What|Removed |Added

 Depends on||147220


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147220
[Bug 147220] Replacing with the track changes on but not visible results in
false rendering
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147220] Replacing with the track changes on but not visible results in false rendering

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147220

raal  changed:

   What|Removed |Added

 Blocks||83946
 CC||r...@post.cz
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from raal  ---
I can confirm with Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 8942956e05f2208ffb666a2118f5db092c30ce6a
CPU threads: 4; OS: Linux 5.11; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded Jumbo

 - write "él"
 - tracked changes ON
 - view changes OFF
 - Find and replace él -> Él


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 135234] Spelling dialog in Writer hard to use with screen reader

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135234

--- Comment #10 from Sarrah  ---
Hi, I'm looking to contribute to LO and find this interesting, reading the
above chats, can I take up the task of changing the initial focus as my first
EasyHack here?

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

[Libreoffice-bugs] [Bug 135234] Spelling dialog in Writer hard to use with screen reader

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135234

--- Comment #9 from Sarrah  ---
Hi, I'm looking to contribute to LO and find this interesting, reading the
above chats, can I take up the task of changing the initial focus as my first
EasyHack here?

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

[Libreoffice-bugs] [Bug 145924] Shortcuts for Alt+… are also connected to Ctrl+Alt+… (Linux, gtk3 and gen, not kf5)

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145924

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 147220] Replacing with the track changes on but not visible results in false rendering

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147220

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 147219] Feature request keyboard short cut

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147219

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 147214] Recent file list not updating

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147214

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 147216] LibreOffice seems to be properly scaled only for the primary screen

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147216

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 147212] Parallel texts function

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147212

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 147208] In Office Libre power point information not saved

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147208

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 147125] wrong display when using two monitors, when insert index

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147125

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 143509] UI corruption while using hardware acceleration on GTX 970

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143509

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 129062] [META] Skia library bugs

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

Bug 143509 Summary: UI corruption while using hardware acceleration on GTX 970
https://bugs.documentfoundation.org/show_bug.cgi?id=143509

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 143509] UI corruption while using hardware acceleration on GTX 970

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143509

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

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 48799] [META] Impress Bullets and Numbering bugs (formatting and UI)

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48799
Bug 48799 depends on bug 138798, which changed state.

Bug 138798 Summary: Use text alignment using tab to create slideshow outline
https://bugs.documentfoundation.org/show_bug.cgi?id=138798

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 138798] Use text alignment using tab to create slideshow outline

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138798

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 138798] Use text alignment using tab to create slideshow outline

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138798

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

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 107810] [META] OLE/Embedded object bugs and enhancements

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107810
Bug 107810 depends on bug 106360, which changed state.

Bug 106360 Summary: Writer table embedded in presentation rendered incorrectly
https://bugs.documentfoundation.org/show_bug.cgi?id=106360

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 106360] Writer table embedded in presentation rendered incorrectly

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106360

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 106360] Writer table embedded in presentation rendered incorrectly

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106360

--- Comment #13 from QA Administrators  ---
Dear Milan Bouchet-Valat,

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 147546] Transliteration with punctuation marks

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147546

--- Comment #2 from Óvári  ---
Regressions:
1. `?` is not transliterated
2. `,` is not transliterated
3. text in `(…)` is not transliterated

Not sure if these are transliterated or not:
4. `!`
5. `.`
6. `(` and ')'

Thank you

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

[Libreoffice-bugs] [Bug 147546] Transliteration with punctuation marks

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147546

Óvári  changed:

   What|Removed |Added

   Keywords||possibleRegression
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||3589
 CC||nem...@numbertext.org

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

[Libreoffice-bugs] [Bug 135859] [META] Formula-related issues

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135859
Bug 135859 depends on bug 90586, which changed state.

Bug 90586 Summary: Math formula objects move around when entering edit mode
https://bugs.documentfoundation.org/show_bug.cgi?id=90586

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 37754] In edit mode formula preview window is shifted in Draw

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37754

Francisco  changed:

   What|Removed |Added

 CC||franciscoadriansanchez@gmai
   ||l.com

--- Comment #23 from Francisco  ---
*** Bug 90586 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 90586] Math formula objects move around when entering edit mode

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90586

Francisco  changed:

   What|Removed |Added

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

--- Comment #28 from Francisco  ---
Well, this bug was filled because the issue was present when editing both,
charts and formulaes.

Charts aren't a problem anymore; and for formulaes, there's bug 37754, which is
older. I'm closing this one

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

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

[Libreoffice-bugs] [Bug 147546] Transliteration with punctuation marks

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147546

--- Comment #1 from Óvári  ---
Created attachment 178399
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178399=edit
LibreOffice 7.3.1.1 transliteration

Actual result with LibreOffice 7.3.1.1

```
ಥೋ೓೉೗ ೑ೢು೤ ೺೺೿೼೼-ೂೀ೙? ಉ೎೥೉ೢ೬, ೙ೀ೎೥೉ೢ೬!
ಘ೉್೎೟೯೟ (g-gy), ೘೉೎೎೑೯೬ (gy-gy).
ಮೋ್೉ 
```

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

[Libreoffice-bugs] [Bug 147546] New: Transliteration with punctuation marks

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147546

Bug ID: 147546
   Summary: Transliteration with punctuation marks
   Product: LibreOffice
   Version: 7.3.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovari...@zoho.com

Description:
The “Old Hungarian template document with embedded Noto Old Hungarian font”[1]
(from LibreOffice 7.0 Release Notes[2]) no longer transliterates punctuation
marks (i.e. commas, question marks) as shown in the “Screencast
demonstration”[3] with Linux Mint 20.3 Cinnamon and LibreOffice[4].

[1] Old Hungarian template document with embedded Noto Old Hungarian font 
https://wiki.documentfoundation.org/images/8/8f/Sz%C3%A9kely_%C3%ADr%C3%A1s_sablondokumentum_be%C3%A1gyazott_Noto_bet%C5%B1k%C3%A9szlettel.ott

[2] Transliteration to Old Hungarian, LibreOffice 7.0 Release Notes
https://wiki.documentfoundation.org/ReleaseNotes/7.0#Transliteration_to_Old_Hungarian

[3] Screencast demonstration
https://www.youtube.com/watch?v=w8BRhN5MZbs

[4] LibreOffice
Version: 7.3.1.1 / LibreOffice Community
Build ID: 349cd3ad57dce98d6b54b76f8e9f456ac7d7edb7
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Steps to Reproduce:
```
Székely írás 2020-ban? Egyszerű, nagyszerű!
Meggyőző (g-gy), meggyízű (gy-gy).
Vége
```

Are you able to reproduce? And please fix?

Should the following be added to this issue:
1. Add a unit test
2. Regression label

Thank you

Actual Results:
```
ಥೋ೓೉೗ ೑ೢು೤ ೺೺೿೼೼-ೂೀ೙? ಉ೎೥೉ೢ೬, ೙ೀ೎೥೉ೢ೬!
ಘ೉್೎೟೯೟ (g-gy), ೘೉೎೎೑೯೬ (gy-gy).
ಮೋ್೉ 
```

Will add a screenshot of the text above for people who don't have the font
installed.

Expected Results:
[3] Screencast demonstration
https://www.youtube.com/watch?v=w8BRhN5MZbs


Reproducible: Always


User Profile Reset: No



Additional Info:
Thank you

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

[Libreoffice-bugs] [Bug 147542] Draw should let the user define an Anchor, to snap the object

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147542

--- Comment #2 from tor...@yahoo.com ---
(In reply to Mike Kaganski from comment #1)
> Doesn't grouping provide the necessary functionality?

I am not trying to group anything. I want to move, say, a circle, with its
centre snapping to a snap point or line.

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

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

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||147540


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=147540
[Bug 147540] Feature request: Rotate entire PDF document in Draw
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 147540] Feature request: Rotate entire PDF document in Draw

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147540

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vmik...@collabora.com,
   ||vstuart.fo...@utsa.edu
   Severity|normal  |enhancement
   Keywords||needsUXEval
 Blocks||99746

--- Comment #2 from V Stuart Foote  ---
(In reply to Will from comment #0)
> ...
> I understand that Draw is not intended solely to be a PDF editor and the
> other PDF editing features it has are excellent.
> 
> Both Adobe and Foxit have a button at the top that will rotate the document
> or other highlighted documents 90 or 180 degrees left or right.
> 

Sorry but Draw (or one of the other LO modules that will filter import from
PDF) is NOT a PDF editor. LibreOffice is not a PDF editor--full stop.

Once a PDF has been filter imported and its content parsed to document canvas,
its content can be rotated, or reoriented. But that is a function of the Draw
(or other module) canvas handling. It no longer has ANYTHING to do with the
source PDF. Follow-on export from LO back to PDF will corrupt an original PDF
if you overwrite it and think of LO as an editor. DON'T DO IT!

Rotation / reorientation of a PDF page imported with the pdfium project libs is
trivial--but is limited to single PDF page import handling as an image.

All that said, an enhancement to module handling of PDF sourced images
(pdfium-based import) or full canvas of PDF source Draw objects (poppler-based
import) on canvas is probably feasible.

@Miklos? Worth doing, or toss it back => WF


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99746
[Bug 99746] [META] PDF import filter in Draw
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 147540] Feature request: Rotate entire PDF document in Draw

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147540

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vmik...@collabora.com,
   ||vstuart.fo...@utsa.edu
   Severity|normal  |enhancement
   Keywords||needsUXEval
 Blocks||99746

--- Comment #2 from V Stuart Foote  ---
(In reply to Will from comment #0)
> ...
> I understand that Draw is not intended solely to be a PDF editor and the
> other PDF editing features it has are excellent.
> 
> Both Adobe and Foxit have a button at the top that will rotate the document
> or other highlighted documents 90 or 180 degrees left or right.
> 

Sorry but Draw (or one of the other LO modules that will filter import from
PDF) is NOT a PDF editor. LibreOffice is not a PDF editor--full stop.

Once a PDF has been filter imported and its content parsed to document canvas,
its content can be rotated, or reoriented. But that is a function of the Draw
(or other module) canvas handling. It no longer has ANYTHING to do with the
source PDF. Follow-on export from LO back to PDF will corrupt an original PDF
if you overwrite it and think of LO as an editor. DON'T DO IT!

Rotation / reorientation of a PDF page imported with the pdfium project libs is
trivial--but is limited to single PDF page import handling as an image.

All that said, an enhancement to module handling of PDF sourced images
(pdfium-based import) or full canvas of PDF source Draw objects (poppler-based
import) on canvas is probably feasible.

@Miklos? Worth doing, or toss it back => WF


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99746
[Bug 99746] [META] PDF import filter in Draw
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 147545] number in status bar in persian locale

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147545

HM  changed:

   What|Removed |Added

 CC||goodlinuxu...@chmail.ir

--- Comment #1 from HM  ---
Created attachment 178398
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178398=edit
screen shot form clac in persian language

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

[Libreoffice-bugs] [Bug 147545] New: number in status bar in persian locale

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147545

Bug ID: 147545
   Summary: number in status bar in persian locale
   Product: LibreOffice
   Version: 7.3.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: goodlinuxu...@chmail.ir

Description:
Hello
in persian locale in libreoffice calc count and sum and so not display

Steps to Reproduce:
1.open libreoffice calc
2.change display language to Persian
3.see bug in status bar

Actual Results:
[][][] instead  number character

Expected Results:
correct character


Reproducible: Always


User Profile Reset: Yes



Additional Info:
this bug and same cause Persian user not use persian local

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

[Libreoffice-bugs] [Bug 147544] New: Macros run very slow

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147544

Bug ID: 147544
   Summary: Macros run very slow
   Product: LibreOffice
   Version: 7.3.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gunna...@hotmail.com

Description:
Macros that run in 1-2 seconds on earlier version now takes 20 seconds.

Steps to Reproduce:
1. Any macro.
2. Test with a more advanced macro that takes some time to execute.
3.

Actual Results:
Macros take up to 20 times longer to execute.

Expected Results:
Same execution time in all versions of Libre Office


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: StartModule
[Information guessed from browser]
OS: Windows 10 Pro, Lastest updates
OS is 64bit: Yes

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-3' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg

2022-02-19 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/cmd/32/selecttables.png  |binary
 icon-themes/breeze/cmd/lc_selecttables.png  |binary
 icon-themes/breeze/cmd/sc_selecttables.png  |binary
 icon-themes/breeze_dark/cmd/32/selecttables.png |binary
 icon-themes/breeze_dark/cmd/lc_selecttables.png |binary
 icon-themes/breeze_dark/cmd/sc_selecttables.png |binary
 icon-themes/breeze_dark_svg/cmd/32/selecttables.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg |1 +
 icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg |1 +
 icon-themes/breeze_svg/cmd/32/selecttables.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_selecttables.svg  |1 +
 icon-themes/breeze_svg/cmd/sc_selecttables.svg  |1 +
 12 files changed, 6 insertions(+)

New commits:
commit 3bc08a00a1fb18d84225efb261e47fea73cae5f4
Author: Rizal Muttaqin 
AuthorDate: Sat Feb 19 21:52:39 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Sat Feb 19 23:32:02 2022 +0100

Breeze: add Calc's Edit > Select > Select Sheets.. icons

Change-Id: Ide474cd818217f24ec144de00eab58f01f8d2575
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130159
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/breeze/cmd/32/selecttables.png 
b/icon-themes/breeze/cmd/32/selecttables.png
new file mode 100644
index ..1e83b60ec8c8
Binary files /dev/null and b/icon-themes/breeze/cmd/32/selecttables.png differ
diff --git a/icon-themes/breeze/cmd/lc_selecttables.png 
b/icon-themes/breeze/cmd/lc_selecttables.png
new file mode 100644
index ..0c46c467e51b
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_selecttables.png differ
diff --git a/icon-themes/breeze/cmd/sc_selecttables.png 
b/icon-themes/breeze/cmd/sc_selecttables.png
new file mode 100644
index ..c347b65a47a9
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_selecttables.png differ
diff --git a/icon-themes/breeze_dark/cmd/32/selecttables.png 
b/icon-themes/breeze_dark/cmd/32/selecttables.png
new file mode 100644
index ..1e83b60ec8c8
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/32/selecttables.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/lc_selecttables.png 
b/icon-themes/breeze_dark/cmd/lc_selecttables.png
new file mode 100644
index ..0c46c467e51b
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/lc_selecttables.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/sc_selecttables.png 
b/icon-themes/breeze_dark/cmd/sc_selecttables.png
new file mode 100644
index ..c347b65a47a9
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/sc_selecttables.png 
differ
diff --git a/icon-themes/breeze_dark_svg/cmd/32/selecttables.svg 
b/icon-themes/breeze_dark_svg/cmd/32/selecttables.svg
new file mode 100644
index ..39daa8838ab9
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/cmd/32/selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg 
b/icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg
new file mode 100644
index ..eb23bc31c348
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg 
b/icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg
new file mode 100644
index ..6d8612f66c19
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/cmd/32/selecttables.svg 
b/icon-themes/breeze_svg/cmd/32/selecttables.svg
new file mode 100644
index ..39daa8838ab9
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/32/selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/cmd/lc_selecttables.svg 
b/icon-themes/breeze_svg/cmd/lc_selecttables.svg
new file mode 100644
index ..eb23bc31c348
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/lc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/cmd/sc_selecttables.svg 
b/icon-themes/breeze_svg/cmd/sc_selecttables.svg
new file mode 100644
index ..6d8612f66c19
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/sc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file


[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg

2022-02-19 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/cmd/32/selecttables.png  |binary
 icon-themes/breeze/cmd/lc_selecttables.png  |binary
 icon-themes/breeze/cmd/sc_selecttables.png  |binary
 icon-themes/breeze_dark/cmd/32/selecttables.png |binary
 icon-themes/breeze_dark/cmd/lc_selecttables.png |binary
 icon-themes/breeze_dark/cmd/sc_selecttables.png |binary
 icon-themes/breeze_dark_svg/cmd/32/selecttables.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg |1 +
 icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg |1 +
 icon-themes/breeze_svg/cmd/32/selecttables.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_selecttables.svg  |1 +
 icon-themes/breeze_svg/cmd/sc_selecttables.svg  |1 +
 12 files changed, 6 insertions(+)

New commits:
commit b965efc0ab5d6996417c92b5588e9d1ff79e0572
Author: Rizal Muttaqin 
AuthorDate: Sat Feb 19 21:52:39 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Sat Feb 19 23:32:15 2022 +0100

Breeze: add Calc's Edit > Select > Select Sheets.. icons

Change-Id: Ide474cd818217f24ec144de00eab58f01f8d2575
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130196
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/breeze/cmd/32/selecttables.png 
b/icon-themes/breeze/cmd/32/selecttables.png
new file mode 100644
index ..1e83b60ec8c8
Binary files /dev/null and b/icon-themes/breeze/cmd/32/selecttables.png differ
diff --git a/icon-themes/breeze/cmd/lc_selecttables.png 
b/icon-themes/breeze/cmd/lc_selecttables.png
new file mode 100644
index ..0c46c467e51b
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_selecttables.png differ
diff --git a/icon-themes/breeze/cmd/sc_selecttables.png 
b/icon-themes/breeze/cmd/sc_selecttables.png
new file mode 100644
index ..c347b65a47a9
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_selecttables.png differ
diff --git a/icon-themes/breeze_dark/cmd/32/selecttables.png 
b/icon-themes/breeze_dark/cmd/32/selecttables.png
new file mode 100644
index ..1e83b60ec8c8
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/32/selecttables.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/lc_selecttables.png 
b/icon-themes/breeze_dark/cmd/lc_selecttables.png
new file mode 100644
index ..0c46c467e51b
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/lc_selecttables.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/sc_selecttables.png 
b/icon-themes/breeze_dark/cmd/sc_selecttables.png
new file mode 100644
index ..c347b65a47a9
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/sc_selecttables.png 
differ
diff --git a/icon-themes/breeze_dark_svg/cmd/32/selecttables.svg 
b/icon-themes/breeze_dark_svg/cmd/32/selecttables.svg
new file mode 100644
index ..39daa8838ab9
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/cmd/32/selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg 
b/icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg
new file mode 100644
index ..eb23bc31c348
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/cmd/lc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg 
b/icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg
new file mode 100644
index ..6d8612f66c19
--- /dev/null
+++ b/icon-themes/breeze_dark_svg/cmd/sc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/cmd/32/selecttables.svg 
b/icon-themes/breeze_svg/cmd/32/selecttables.svg
new file mode 100644
index ..39daa8838ab9
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/32/selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/cmd/lc_selecttables.svg 
b/icon-themes/breeze_svg/cmd/lc_selecttables.svg
new file mode 100644
index ..eb23bc31c348
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/lc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/breeze_svg/cmd/sc_selecttables.svg 
b/icon-themes/breeze_svg/cmd/sc_selecttables.svg
new file mode 100644
index ..6d8612f66c19
--- /dev/null
+++ b/icon-themes/breeze_svg/cmd/sc_selecttables.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file


[Libreoffice-commits] core.git: helpcontent2

2022-02-19 Thread Stanislav Horacek (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e64c2cf6cf64def94e9f382bcd101225173ae719
Author: Stanislav Horacek 
AuthorDate: Sat Feb 19 23:14:42 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Feb 19 23:14:42 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 2d7503bd781bb3d9b4680f75b4af7141fb6295c8
  - do not localize CallType values

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

diff --git a/helpcontent2 b/helpcontent2
index f5f8ee67bc1b..2d7503bd781b 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f5f8ee67bc1b48c912e3bf6490827a9815fa5674
+Subproject commit 2d7503bd781bb3d9b4680f75b4af7141fb6295c8


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

2022-02-19 Thread Stanislav Horacek (via logerrit)
 source/text/sbasic/shared/CallByName.xhp |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 2d7503bd781bb3d9b4680f75b4af7141fb6295c8
Author: Stanislav Horacek 
AuthorDate: Sat Feb 19 18:51:15 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Feb 19 23:14:41 2022 +0100

do not localize CallType values

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

diff --git a/source/text/sbasic/shared/CallByName.xhp 
b/source/text/sbasic/shared/CallByName.xhp
index 9a34a1883..90581cd66 100644
--- a/source/text/sbasic/shared/CallByName.xhp
+++ b/source/text/sbasic/shared/CallByName.xhp
@@ -34,7 +34,7 @@
 
 
 result: An 
optional variable that contains the result of the called method or 
property.
-  
+
 
 object: A Basic 
module, ClassModule instance or UNO service holding 
properties or methods.
 ProcName: The 
Function, Sub or 
Property that is being called.
@@ -47,19 +47,19 @@
CallType Description


-   1
+   1
Method: Calls a procedure as a function or a 
subroutine.


-   2
+   2
Get: Reads a property or variable 
content.


-   4
+   4
Let: Assigns a content to a 
Property or variable.


-   8
+   8
Set: Assigns a reference value to an 
Object or Variant 
variable.

 
@@ -77,7 +77,7 @@
 
 
 
-  Sub 
CallByName_example   
+  Sub 
CallByName_example
   
Const _Method = 1, _Get = 2, _Let = 4, _Set = 8
   
   
BasicLibraries.loadLibrary("Calc") ' Calc.Maths user library.module


[Libreoffice-commits] core.git: helpcontent2

2022-02-19 Thread Stanislav Horacek (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ba002449738d2837d270452351cf2e914db97312
Author: Stanislav Horacek 
AuthorDate: Sat Feb 19 23:13:18 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Feb 19 23:13:18 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to f5f8ee67bc1b48c912e3bf6490827a9815fa5674
  - do not localize UNO service names

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

diff --git a/helpcontent2 b/helpcontent2
index b54a0e6d50e8..f5f8ee67bc1b 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit b54a0e6d50e8eaaa37ca844b1c92d3778d4567cf
+Subproject commit f5f8ee67bc1b48c912e3bf6490827a9815fa5674


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

2022-02-19 Thread Stanislav Horacek (via logerrit)
 source/text/sbasic/shared/calc_functions.xhp |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

New commits:
commit f5f8ee67bc1b48c912e3bf6490827a9815fa5674
Author: Stanislav Horacek 
AuthorDate: Sat Feb 19 19:04:54 2022 +0100
Commit: Olivier Hallot 
CommitDate: Sat Feb 19 23:13:17 2022 +0100

do not localize UNO service names

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

diff --git a/source/text/sbasic/shared/calc_functions.xhp 
b/source/text/sbasic/shared/calc_functions.xhp
index 4d4d7b97e..fa495681f 100644
--- a/source/text/sbasic/shared/calc_functions.xhp
+++ b/source/text/sbasic/shared/calc_functions.xhp
@@ -939,7 +939,7 @@
 DAYSINYEAR
 
 
-com.sun.star.sheet.addin.DateFunctions.getDaysInMonth
+com.sun.star.sheet.addin.DateFunctions.getDaysInMonth
 
 
 
@@ -947,7 +947,7 @@
 MONTHS
 
 
-com.sun.star.sheet.addin.DateFunctions.getDiffMonths
+com.sun.star.sheet.addin.DateFunctions.getDiffMonths
 
 
 
@@ -955,7 +955,7 @@
 WEEKS
 
 
-com.sun.star.sheet.addin.DateFunctions.getDiffWeeks
+com.sun.star.sheet.addin.DateFunctions.getDiffWeeks
 
 
 
@@ -963,7 +963,7 @@
 YEARS
 
 
-com.sun.star.sheet.addin.DateFunctions.getDiffYears
+com.sun.star.sheet.addin.DateFunctions.getDiffYears
 
 
 
@@ -971,7 +971,7 @@
 ROT13
 
 
-com.sun.star.sheet.addin.DateFunctions.getRot13
+com.sun.star.sheet.addin.DateFunctions.getRot13
 
 
 
@@ -979,7 +979,7 @@
 WEEKSINYEAR
 
 
-com.sun.star.sheet.addin.DateFunctions.getWeeksInYear
+com.sun.star.sheet.addin.DateFunctions.getWeeksInYear
 
 
 
@@ -1001,7 +1001,7 @@
 OPT_BARRIER
 
 
-com.sun.star.sheet.addin.PrincingFunctions.getOptBarrier
+com.sun.star.sheet.addin.PrincingFunctions.getOptBarrier
 
 
 
@@ -1009,7 +1009,7 @@
 OPT_PROB_HIT
 
 
-com.sun.star.sheet.addin.PrincingFunctions.getOptProbHit
+com.sun.star.sheet.addin.PrincingFunctions.getOptProbHit
 
 
 
@@ -1017,7 +1017,7 @@
 OPT_PROB_INMONEY
 
 
-com.sun.star.sheet.addin.PrincingFunctions.getOptProbInMoney
+com.sun.star.sheet.addin.PrincingFunctions.getOptProbInMoney
 
 
 
@@ -1025,7 +1025,7 @@
 OPT_TOUCH
 
 
-com.sun.star.sheet.addin.PrincingFunctions.getOptTouch
+com.sun.star.sheet.addin.PrincingFunctions.getOptTouch
 
 
 


[Libreoffice-bugs] [Bug 147543] OLE CALC table cosmetic errors

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147543

--- Comment #2 from david_ashwo...@btinternet.com ---
I created a table in Calc which had some cells with backgrounds and all cells
with narrow borders.

Importing this as an OLE object into Draw showed 2 cosmetic errors.

1. When only some of the rows are shown the column borders extend a short
distance below the bottom row.
This appears to apply only to importing into Draw and Impress, Write appears
OK.

2. The background fill is up and to the left a small amount from the grid - see
#135891

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

[Libreoffice-bugs] [Bug 147543] OLE CALC table cosmetic errors

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147543

--- Comment #1 from david_ashwo...@btinternet.com ---
Created attachment 178397
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178397=edit
Draw file with embedded Calc - some rows hidden

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

[Libreoffice-bugs] [Bug 144585] button popups don't open with KF5 VCL on Wayland

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144585

--- Comment #16 from GeneC  ---
Confirm issue on Arch using Wayland.

Xcb is a not great workaround;  at least for me on 4k monitor, it looks pretty
icky. Fonts render quite poorly.

Packages provided by Arch repo:

Version: 7.3.0.3 / LibreOffice Community
Build ID: 30(Build:3)
CPU threads: 8; OS: Linux 5.17; UI render: default; VCL: kf5 (cairo+wayland)
Locale: en-US (en_US.UTF-8); UI: en-US
7.3.0-5
Calc: threaded

qt5-base 5.15.2+kde+r301-1
lasma-desktop 5.24.1-1

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

[Libreoffice-bugs] [Bug 144363] Experimental 4k+ columns bugs - 1) Merged / Big cells are confused in view, 2) cannot delete rows

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144363

--- Comment #6 from elias estatistics  ---
libre office 7.4. in linux bullseye 11 blurrings happens too.

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

[Libreoffice-bugs] [Bug 144363] Experimental 4k+ columns bugs - 1) Merged / Big cells are confused in view, 2) cannot delete rows

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144363

--- Comment #5 from elias estatistics  ---
libre office 7.4. in linux bullseye 11 blurrings happens too.

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

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

2022-02-19 Thread Caolán McNamara (via logerrit)
 editeng/source/outliner/outliner.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 19613544fcba9e08d0d9f24cbd976ed12431d4b2
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 20:43:33 2022 +
Commit: Caolán McNamara 
CommitDate: Sat Feb 19 22:41:18 2022 +0100

tdf#147166 EditTextObjectImpl copy ctor doesn't exactly copy 
EditTextObjectImpl

and this is apparently relied on, so eliding the copy gives unexpected
results.

EditTextObjectImpl::Clone returns a copy of *this, but the
EditTextObjectImpl copy ctor explicitly does not copy the "PortionInfo"
member, so in:

commit fb8973f31f111229be5184f4e4223e963ced2c7b
Author: Caolán McNamara 
Date:   Sat Oct 10 19:21:38 2020 +0100

ofz#23492 the only user of this ctor throws away the original of the 
clone

so we can take ownership of the original instead

where the copy was optimized away we want from a state where there was a
new EditTextObjectImpl with an empty PortionInfo member to one where the
PortionInfo of the EditTextObjectImpl was retained.

So explicitly clear this unwanted info.

It's very hard to make rational judgements about code if a copy behaves
differently than the orignal :-(

Change-Id: I642d60841d6bdccbf830f8a2ccdbd9f542a8aa18
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130201
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 

diff --git a/editeng/source/outliner/outliner.cxx 
b/editeng/source/outliner/outliner.cxx
index d5e6630cefe4..41e6ebc4adad 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -381,6 +381,7 @@ std::optional 
Outliner::CreateParaObject( sal_Int32 nStartPa
 aParagraphDataVector[nPara-nStartPara] = *GetParagraph(nPara);
 }
 
+xText->ClearPortionInfo(); // tdf#147166 the PortionInfo is unwanted here
 OutlinerParaObject aPObj(std::move(xText), 
std::move(aParagraphDataVector), bIsEditDoc);
 aPObj.SetOutlinerMode(GetOutlinerMode());
 


[Libreoffice-bugs] [Bug 147542] Draw should let the user define an Anchor, to snap the object

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147542

--- Comment #1 from Mike Kaganski  ---
Doesn't grouping provide the necessary functionality?

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

[Libreoffice-bugs] [Bug 141420] [META] UNO Object Inspector - Development tools

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141420
Bug 141420 depends on bug 141591, which changed state.

Bug 141591 Summary: DevTools: Add support for Tabbed Interface
https://bugs.documentfoundation.org/show_bug.cgi?id=141591

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

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

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107237
Bug 107237 depends on bug 141591, which changed state.

Bug 141591 Summary: DevTools: Add support for Tabbed Interface
https://bugs.documentfoundation.org/show_bug.cgi?id=141591

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[Libreoffice-bugs] [Bug 147543] New: OLE CALC table cosmetic errors

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147543

Bug ID: 147543
   Summary: OLE CALC table cosmetic errors
   Product: LibreOffice
   Version: 7.3.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: david_ashwo...@btinternet.com

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

[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg

2022-02-19 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/cmd/32/duplicatesheet.png  |binary
 icon-themes/breeze/cmd/32/move.png|binary
 icon-themes/breeze/cmd/lc_duplicatesheet.png  |binary
 icon-themes/breeze/cmd/lc_move.png|binary
 icon-themes/breeze/cmd/sc_duplicatesheet.png  |binary
 icon-themes/breeze/cmd/sc_move.png|binary
 icon-themes/breeze_dark/cmd/32/duplicatesheet.png |binary
 icon-themes/breeze_dark/cmd/32/move.png   |binary
 icon-themes/breeze_dark/cmd/lc_duplicatesheet.png |binary
 icon-themes/breeze_dark/cmd/lc_move.png   |binary
 icon-themes/breeze_dark/cmd/sc_duplicatesheet.png |binary
 icon-themes/breeze_dark/cmd/sc_move.png   |binary
 icon-themes/breeze_dark_svg/cmd/32/duplicatesheet.svg |1 +
 icon-themes/breeze_dark_svg/cmd/32/move.svg   |1 +
 icon-themes/breeze_dark_svg/cmd/lc_duplicatesheet.svg |1 +
 icon-themes/breeze_dark_svg/cmd/lc_move.svg   |1 +
 icon-themes/breeze_dark_svg/cmd/sc_duplicatesheet.svg |1 +
 icon-themes/breeze_dark_svg/cmd/sc_move.svg   |2 +-
 icon-themes/breeze_svg/cmd/32/duplicatesheet.svg  |1 +
 icon-themes/breeze_svg/cmd/32/move.svg|1 +
 icon-themes/breeze_svg/cmd/lc_duplicatesheet.svg  |1 +
 icon-themes/breeze_svg/cmd/lc_move.svg|1 +
 icon-themes/breeze_svg/cmd/sc_duplicatesheet.svg  |1 +
 icon-themes/breeze_svg/cmd/sc_move.svg|2 +-
 24 files changed, 12 insertions(+), 2 deletions(-)

New commits:
commit 992f3922cfe164369f47b5a0f614a54bd539e52a
Author: Rizal Muttaqin 
AuthorDate: Sat Feb 19 18:41:00 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Sat Feb 19 22:07:40 2022 +0100

Breeze: tdf#147521 add Duplicate Sheet icons

Change-Id: I4fdde4466f98a0c7d19c880781d1f17091a69619
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130193
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/breeze/cmd/32/duplicatesheet.png 
b/icon-themes/breeze/cmd/32/duplicatesheet.png
new file mode 100644
index ..e9b0ba41558e
Binary files /dev/null and b/icon-themes/breeze/cmd/32/duplicatesheet.png differ
diff --git a/icon-themes/breeze/cmd/32/move.png 
b/icon-themes/breeze/cmd/32/move.png
new file mode 100644
index ..6129a18ed53b
Binary files /dev/null and b/icon-themes/breeze/cmd/32/move.png differ
diff --git a/icon-themes/breeze/cmd/lc_duplicatesheet.png 
b/icon-themes/breeze/cmd/lc_duplicatesheet.png
new file mode 100644
index ..a022b391e7d9
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_duplicatesheet.png differ
diff --git a/icon-themes/breeze/cmd/lc_move.png 
b/icon-themes/breeze/cmd/lc_move.png
new file mode 100644
index ..234796611f50
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_move.png differ
diff --git a/icon-themes/breeze/cmd/sc_duplicatesheet.png 
b/icon-themes/breeze/cmd/sc_duplicatesheet.png
new file mode 100644
index ..67aaeefaf506
Binary files /dev/null and b/icon-themes/breeze/cmd/sc_duplicatesheet.png differ
diff --git a/icon-themes/breeze/cmd/sc_move.png 
b/icon-themes/breeze/cmd/sc_move.png
index 5a56b4eec0b1..1a05e0393ab9 100644
Binary files a/icon-themes/breeze/cmd/sc_move.png and 
b/icon-themes/breeze/cmd/sc_move.png differ
diff --git a/icon-themes/breeze_dark/cmd/32/duplicatesheet.png 
b/icon-themes/breeze_dark/cmd/32/duplicatesheet.png
new file mode 100644
index ..0d9b67a73b97
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/32/duplicatesheet.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/32/move.png 
b/icon-themes/breeze_dark/cmd/32/move.png
new file mode 100644
index ..ef47bf25540b
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/32/move.png differ
diff --git a/icon-themes/breeze_dark/cmd/lc_duplicatesheet.png 
b/icon-themes/breeze_dark/cmd/lc_duplicatesheet.png
new file mode 100644
index ..5c47c579768d
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/lc_duplicatesheet.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/lc_move.png 
b/icon-themes/breeze_dark/cmd/lc_move.png
new file mode 100644
index ..9a5ea0dffaff
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/lc_move.png differ
diff --git a/icon-themes/breeze_dark/cmd/sc_duplicatesheet.png 
b/icon-themes/breeze_dark/cmd/sc_duplicatesheet.png
new file mode 100644
index ..8b97f3a4fc9b
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/sc_duplicatesheet.png 
differ
diff --git a/icon-themes/breeze_dark/cmd/sc_move.png 
b/icon-themes/breeze_dark/cmd/sc_move.png
index efa6f6ff6cf7..19b035455b36 100644
Binary files a/icon-themes/breeze_dark/cmd/sc_move.png and 
b/icon-themes/breeze_dark/cmd/sc_move.png differ
diff --git a/icon-themes/breeze_dark_svg/cmd/32/duplicatesheet.svg 
b/icon-themes/breeze_dark_svg/cmd/32/duplicatesheet.svg
new file mode 100644

[Libreoffice-commits] core.git: icon-themes/sukapura icon-themes/sukapura_svg

2022-02-19 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sukapura/cmd/32/duplicatesheet.png |binary
 icon-themes/sukapura/cmd/lc_duplicatesheet.png |binary
 icon-themes/sukapura/cmd/sc_duplicatesheet.png |binary
 icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg |1 +
 icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg |1 +
 icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg |2 ++
 6 files changed, 4 insertions(+)

New commits:
commit 166f57d927802bbe489197097b02ad52bbbffd79
Author: Rizal Muttaqin 
AuthorDate: Sat Feb 19 18:17:44 2022 +0700
Commit: Rizal Muttaqin 
CommitDate: Sat Feb 19 22:07:03 2022 +0100

Sukapura: tdf#147521 add Duplicate Sheet icons

Change-Id: I3005a62a1938d832fa33511f08f610d3f23fc814
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130192
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/sukapura/cmd/32/duplicatesheet.png 
b/icon-themes/sukapura/cmd/32/duplicatesheet.png
new file mode 100644
index ..d339aae96f95
Binary files /dev/null and b/icon-themes/sukapura/cmd/32/duplicatesheet.png 
differ
diff --git a/icon-themes/sukapura/cmd/lc_duplicatesheet.png 
b/icon-themes/sukapura/cmd/lc_duplicatesheet.png
new file mode 100644
index ..9de1bc60cb18
Binary files /dev/null and b/icon-themes/sukapura/cmd/lc_duplicatesheet.png 
differ
diff --git a/icon-themes/sukapura/cmd/sc_duplicatesheet.png 
b/icon-themes/sukapura/cmd/sc_duplicatesheet.png
new file mode 100644
index ..76204d4f0da6
Binary files /dev/null and b/icon-themes/sukapura/cmd/sc_duplicatesheet.png 
differ
diff --git a/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg 
b/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg
new file mode 100644
index ..b95625d16ddb
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/32/duplicatesheet.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg 
b/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg
new file mode 100644
index ..55ddd07b9cee
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/lc_duplicatesheet.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg 
b/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg
new file mode 100644
index ..51cb201e9e9d
--- /dev/null
+++ b/icon-themes/sukapura_svg/cmd/sc_duplicatesheet.svg
@@ -0,0 +1,2 @@
+http://www.w3.org/2000/svg;>
+/amp;amp;amp;gt;<
 /g>
\ No newline at end of file


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-7-0' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2f9a7c854d6c4d598dd79a6e4dbf7ba2a9b41a92
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:43:53 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index 3749bee571d5..718c603cab19 100644
--- a/download.lst
+++ b/download.lst
@@ -50,8 +50,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a
 export ETONYEK_VERSION_MICRO := 9
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
19e5b1bc9d013a52063a44e1307629711f0bfef35b9aca16f9c793971e2eb1e5


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-4' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6be3e44a8a91fe7074d236432962922b10a7c203
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:43:06 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index c6a9c40aec65..057684402f15 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a
 export ETONYEK_VERSION_MICRO := 9
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017


[Libreoffice-bugs] [Bug 147166] Changing text color of list item changes vertical spacing

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147166

Caolán McNamara  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |
 Status|NEW |ASSIGNED

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

[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-3' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b554214a6dce841b55344153a51be3b34cc09794
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:41:19 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index 579a315491af..a147bcdee145 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a
 export ETONYEK_VERSION_MICRO := 9
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-2' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5b88cf450019229726760d3213ff8a9fe206ffac
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:40:47 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index a2cac70220c6..02347aadee4f 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a
 export ETONYEK_VERSION_MICRO := 9
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-1' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 86cccb19b7d0739be21916884ca47d3cafc9f0ca
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:40:05 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index 4ea63ec1628d..a1605e3193fa 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
9dc92347aee0cc9ed57b175a3e21f9d96ebe55d30fecb10e841d1050794ed82d
 export ETONYEK_VERSION_MICRO := 8
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-6-0' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4d792694b064419002571b32fc52e53eb32d6d7b
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:39:32 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index c7fc4b12ef5a..5ed550e00ae4 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.0.tar.bz2
 export ETONYEK_SHA256SUM := 
69dbe10d4426d52f09060d489f8eb90dfa1df592e82eb0698d9dbaf38cc734ac
 export ETONYEK_VERSION_MICRO := 7
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
cf0c30807d08f6a28ab46c61b8dbd55c97d2f292cf88f3a07d3384687f31f017


[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-5-4-7-2' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 23613ee34ff2a4558f77fea3a8ec1da13bfa80cd
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:38:51 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index b577337edffe..38b7c7404b62 100644
--- a/download.lst
+++ b/download.lst
@@ -41,8 +41,8 @@ export EPM_TARBALL := 
3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz
 export ETONYEK_SHA256SUM := 
032f53e8d7691e48a73ddbe74fa84c906ff6ff32a33e6ee2a935b6fdb6aecb78
 export ETONYEK_VERSION_MICRO := 6
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.bz2
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
b449a3e10c47e1d1c7a6ec6e2016cca73d3bd68fbbd4f0ae5cc6b573f7d6c7f3


[Libreoffice-bugs] [Bug 147541] Calc does correctly sort when using multiple sorting parameters.

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147541

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure  ---
Please attach a test file and explain step by step how you perform the sort.

Status has been set to NEEDINFO, please set it back to UNCONFIRMED once
requested information has been provided.

Best regards. JBF

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 73d16f3907678594091ce2439d2f600c17715ab0
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:35:55 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index 21762fad4e5d..3473daf8e1ab 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a
 export ETONYEK_VERSION_MICRO := 9
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
19e5b1bc9d013a52063a44e1307629711f0bfef35b9aca16f9c793971e2eb1e5


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 37b191c6e40e0b761c8b49ba3887b96070902ab0
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Andras Timar 
CommitDate: Sat Feb 19 21:33:52 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd

diff --git a/download.lst b/download.lst
index 8e3687e72555..7dbf11f5cfb7 100644
--- a/download.lst
+++ b/download.lst
@@ -42,8 +42,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
b430435a6e8487888b761dc848b7981626eb814884963ffe25eb26a139301e9a
 export ETONYEK_VERSION_MICRO := 10
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
6994be3555e23226630c587444be19d309b25b0fcf1f87df3b4e3f88943e5860
 export FIREBIRD_TARBALL := Firebird-3.0.0.32483-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
19e5b1bc9d013a52063a44e1307629711f0bfef35b9aca16f9c793971e2eb1e5


[Libreoffice-bugs] [Bug 147062] [GTK] shortcut Ctrl+Alt+ works as Alt+ : opens the first menu starting with

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147062

Aron Budea  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

Aron Budea  changed:

   What|Removed |Added

 Depends on||146739


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146739
[Bug 146739] some keyboard custom shortcut no more working
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144846] Opening File menu a second time in Impress doesn't work

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144846

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146739] some keyboard custom shortcut no more working

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146739

Aron Budea  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 147542] New: Draw should let the user define an Anchor, to snap the object

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147542

Bug ID: 147542
   Summary: Draw should let the user define an Anchor, to snap the
object
   Product: LibreOffice
   Version: 7.3.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tor...@yahoo.com

Description:
Draw should let the user define an Anchor (master point) for any shape s.he
wants to move —the centre of a circle, one corner or the centre of a rectangle
or a triangle, etc. Then, when the object is selected and dragged around, the
Anchor would snap to a point or line. In particular, snapping to a line would
help User to move the shape along that line.


Actual Results:
Object can be dragged anywhere

Expected Results:
Oject moved would snap to point or line


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.5.2 (x64) / LibreOffice Community
Build ID: 499f9727c189e6ef3471021d6132d4c694f357e5
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: en-CA (en_CA); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 147541] New: Calc does correctly sort when using multiple sorting parameters.

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147541

Bug ID: 147541
   Summary: Calc does correctly sort when using multiple sorting
parameters.
   Product: LibreOffice
   Version: 7.3.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vernice.potter...@gmail.com

Description:
When I use multiple sort parameters in Calc the ending spreadsheet has data
placed erroneously in different cells than they are supposed to be in (not all
of them though).  I have also noticed that some entire rows of data also come
up missing.  The ending data output is not correct or reliable.  

Steps to Reproduce:
1.Spread sheet with multiple columns and rows of data.  Output data at end of
rows via formulas.  Include dates, accounts, prices, quantities, etc.
2.Select rows and columns to sort.
3.Sort by at least 3 column parameters.

Actual Results:
Incorrect data inserted to wrong rows/cells distorting the output data.

Expected Results:
Sorting of data by rows with data integrity of each row maintained during the
sort.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Rows should have maintained correct data in their correct cells while be
sorted.  I use the sheets to keep track of options being trades.  Each row is
one option.  Each column is a piece of info for each row/option.  All the rows
get sorted according to: 1) account, 2) ticker symbol, and 3) the date the
option was started.  Other column data is price, share price, strike price,
number of contracts, amount of premium, expiration date, and total premium. 
Output data consists of total profit or loss, percentage of profit/loss made,
and annualized percentage.

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

[Libreoffice-bugs] [Bug 130674] Empty window behind password dialog

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130674

--- Comment #11 from Thorsten Wagner  ---
Issue still exists with LO 7.3.

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

[Libreoffice-bugs] [Bug 107244] [META] Ctrl+Alt (aka AltGR) keyboard shortcut issues

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107244
Bug 107244 depends on bug 147062, which changed state.

Bug 147062 Summary: [GTK] shortcut Ctrl+Alt+ works as Alt+ : 
opens the first menu starting with 
https://bugs.documentfoundation.org/show_bug.cgi?id=147062

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 147062, which changed state.

Bug 147062 Summary: [GTK] shortcut Ctrl+Alt+ works as Alt+ : 
opens the first menu starting with 
https://bugs.documentfoundation.org/show_bug.cgi?id=147062

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146739] some keyboard custom shortcut no more working

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146739

Caolán McNamara  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #8 from Caolán McNamara  ---
*** Bug 147062 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 147062] [GTK] shortcut Ctrl+Alt+ works as Alt+ : opens the first menu starting with

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147062

Caolán McNamara  changed:

   What|Removed |Added

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

--- Comment #4 from Caolán McNamara  ---
I don't know if there is going to be any solution that fully satisfies the
conundrum

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

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

[Libreoffice-bugs] [Bug 147540] Feature request: Rotate entire PDF document in Draw

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147540

--- Comment #1 from Will  ---
* I really enjoy what you make and appreciate your efforts in contributing to
Libre office.

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

[Libreoffice-commits] core.git: download.lst

2022-02-19 Thread Caolán McNamara (via logerrit)
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e1d0c27cc98006f8edfa6bc7e6dafb96ca1bc503
Author: Caolán McNamara 
AuthorDate: Sat Feb 19 16:53:58 2022 +
Commit: Caolán McNamara 
CommitDate: Sat Feb 19 20:40:09 2022 +0100

upgrade expat to 2.4.5

CVE-2022-25235
CVE-2022-25236
CVE-2022-25313
CVE-2022-25314
CVE-2022-25315

Change-Id: I1cb0449411fe938fe47ab47cead685fd04e137dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130198
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/download.lst b/download.lst
index bb4d12649d8f..078e5207435d 100644
--- a/download.lst
+++ b/download.lst
@@ -48,8 +48,8 @@ export EPUBGEN_TARBALL := libepubgen-0.1.1.tar.xz
 export ETONYEK_SHA256SUM := 
b430435a6e8487888b761dc848b7981626eb814884963ffe25eb26a139301e9a
 export ETONYEK_VERSION_MICRO := 10
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz
-export EXPAT_SHA256SUM := 
5963005ff8720735beb2d2db669afc681adcbcb43dd1eb397d5c2dd7adbc631f
-export EXPAT_TARBALL := expat-2.4.4.tar.gz
+export EXPAT_SHA256SUM := 
f2af8fc7cdc63a87920da38cd6d12cb113c3c3a3f437495b1b6541e0cff32579
+export EXPAT_TARBALL := expat-2.4.5.tar.xz
 export FIREBIRD_SHA256SUM := 
acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76
 export FIREBIRD_TARBALL := Firebird-3.0.7.33374-0.tar.bz2
 export FONTCONFIG_SHA256SUM := 
a5f052cb73fd479ffb7b697980510903b563bbb55b8f7a2b001fcfb94026003c


[Libreoffice-bugs] [Bug 147540] Feature request: Rotate entire PDF document in Draw

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147540

Will  changed:

   What|Removed |Added

Summary|Feature request: Rotate |Feature request: Rotate
   |entire document |entire PDF document in Draw

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

[Libreoffice-bugs] [Bug 147540] New: Feature request: Rotate entire document

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147540

Bug ID: 147540
   Summary: Feature request: Rotate entire document
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: w...@beedh.am

Description:
Hi, Thank you for all your hard work put into Libre office, I really enjoy what
you make and appreciate your

One feature that seems to be missing is a way to easily rotate pages when
editing a PDF, I am aware you can rotate the content and change the page
dimensions / set to landscape but there doesn't seem to be an easy way to
rotate it if a document has been scanned in the wrong orientation which it
seems all other popuklar commercial PDF editors have. 

I understand that Draw is not intended solely to be a PDF editor and the other
PDF editing features it has are excellent.

Both Adobe and Foxit have a button at the top that will rotate the document or
other highlighted documents 90 or 180 degrees left or right.

Thank you

Actual Results:
Have to change page orientation and content orientation separately, have to
reposition contents and have to do this in every page for PDF with many pages. 

Expected Results:
Highlighted PDF pages can be rotated left or right 90 or 180 degrees with a
button in the toolbar. 


Reproducible: Always


User Profile Reset: No



Additional Info:
Ideally have a button or right click that can rotate a single page or all pages
with contents in a PDF document.

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

[Libreoffice-bugs] [Bug 147539] New: Assertion fails in debug build in changing size of the thumbnail placeholder in handout master

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147539

Bug ID: 147539
   Summary: Assertion fails in debug build in changing size of the
thumbnail placeholder in handout master
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 178396
  --> https://bugs.documentfoundation.org/attachment.cgi?id=178396=edit
Call Stack by VS2019

Create a slide show, for example based on template "Candy".
menu View > Master Handout.
Select a thumbnail placeholder.
menu Format > Object and Shape > Position and Size.
Change the size to 80mm width and 45mm height to get a 16:9 thumbnail.
OK. => Crash.

I see the error in debug build of current master
Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 400568f51c63f5ec8de08a3255ce83cc1b0bdb66
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (en_US); UI: en-US
Calc: threaded

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

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

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146082

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

We have some utter mess with by-reference handling of array elements in general
(and not only in array - but it needs case-by-case analysis). We already were
hit several time in different forms (including some strange behavior with
ReDim); but first of all, I would love to see (or develop) some formal
specification where the ByRef semantics are needed - which array operations?
Assignment of array to another variable - do they become pointers to the same
array? or are different arrays with pointers to same elements? or different
arrays with independent elements? Passing to ByVal function argument? ReDim?
Here I suppose Andrew is the greatest expert who could at least suggest a list
of cases to consider, with suggested expected semantics ... and then test all
variations of element types -s strings, numbers, UNO and user types,
VBA-specific like enums... and then see the matrix of problems - and then try
to revise the implementation to fix that. Because now I feel that trying to fix
this thing would not help, only resulting in regression because of not seeing
the whole picture.

(Anyway, my opinion with this bug is that whenever the author of the bug is
Andrew, we must just automatically confirm :D - there's no one more
knowledgeable in this matter on this planet.)

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

[Libreoffice-bugs] [Bug 146786] File > Close exits the program

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146786

Michael Wogan  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #5 from Michael Wogan  ---
That doesn't change the behavior of Draw.  Skia was already enabled.  Closing
Draw returns you to the main page.  I can use it the way it is.  From the main
page I have to initiate Draw again.  It's just inconvenient if there are more
than one or two files to edit.  Mike

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

[Libreoffice-bugs] [Bug 147538] New: Style Deleting Problem

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147538

Bug ID: 147538
   Summary: Style Deleting Problem
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: protoxav...@yahoo.com

Description:
CALC will allow you to delete a STYLE if it is not used in any formula in any
sheet even if it IS used in a conditional format.  The STYLE delete function
needs to be corrected so that it also cross-references a STYLE in conditional
formats before it will allow you to delete it.  The Find/Change function also
needs to be enhanced to search and replace a STYLE in conditional formats as
well as formulas.

Steps to Reproduce:
1.Create a STYLE.
2.Create a conditional format that uses the STYLE.
3.DO NOT use the STYLE in any cell formula.
4.Delete the STYLE.

Actual Results:
The STYLE is deleted and the STYLE field in the conditional format is blank

Expected Results:
You should not be able to delete the STYLE.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.5.2 (x64) / LibreOffice Community
Build ID: 499f9727c189e6ef3471021d6132d4c694f357e5
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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

[Libreoffice-commits] core.git: helpcontent2

2022-02-19 Thread Stanislav Horacek (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d3232aaa3330180ddc929b289fed19e4a895661e
Author: Stanislav Horacek 
AuthorDate: Sat Feb 19 18:56:44 2022 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Feb 19 18:56:44 2022 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to b54a0e6d50e8eaaa37ca844b1c92d3778d4567cf
  - correct and reformulate description of CBool example

Change-Id: I4a17e3bebc834c095ce909bbb06f0d7c8655cb04
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130107
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/helpcontent2 b/helpcontent2
index 71a2d9e0c995..b54a0e6d50e8 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 71a2d9e0c995afbc1d71b7030b536c4590107afc
+Subproject commit b54a0e6d50e8eaaa37ca844b1c92d3778d4567cf


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

2022-02-19 Thread Stanislav Horacek (via logerrit)
 source/text/sbasic/shared/03100100.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b54a0e6d50e8eaaa37ca844b1c92d3778d4567cf
Author: Stanislav Horacek 
AuthorDate: Thu Feb 17 18:04:22 2022 +0100
Commit: Mike Kaganski 
CommitDate: Sat Feb 19 18:56:43 2022 +0100

correct and reformulate description of CBool example

Change-Id: I4a17e3bebc834c095ce909bbb06f0d7c8655cb04
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130107
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/source/text/sbasic/shared/03100100.xhp 
b/source/text/sbasic/shared/03100100.xhp
index 7dd18de93..66dd198cf 100644
--- a/source/text/sbasic/shared/03100100.xhp
+++ b/source/text/sbasic/shared/03100100.xhp
@@ -41,7 +41,7 @@
   CBool 
(expression As Variant) As Boolean
 
 expression can be a number or a 
set of combined expressions.
-  
+
 
 Boolean
 
@@ -54,7 +54,7 @@
 
 
 
-The following 
examples computes a logical expression and a mathematical formula. It uses the 
CBool function to evaluate the value that is returned by the 
Instr function. The function checks if the word "and" is 
found in the sentence that was entered by the user.
+In the 
following examples, the CBool function evaluates a logical 
expression, a mathematical formula and the value that is returned by the 
Instr function. The function checks if the character "a" is 
found in the sentence that was entered by the user.
 
 Sub 
ExampleCBool
 
Print CBool( 1>2 Xor 44 ) ' computes to True


[Libreoffice-bugs] [Bug 121133] Adobe Reader DC claims that the PDF has been modified after signing

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121133

--- Comment #54 from Golden Price Today  ---
To open files in Adobe they don't need to edit hope you understand
https://goldenpricetoday.com/;

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

[Libreoffice-bugs] [Bug 143995] Using Paste Special, pasting everything except comments deletes existing comments

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143995

Timur  changed:

   What|Removed |Added

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

--- Comment #3 from Timur  ---
Seems duplicate. Rule of thumb is search before reporting and confirming.

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

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

[Libreoffice-bugs] [Bug 139858] Paste Special > Comments must not overwrite cell content

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139858

Timur  changed:

   What|Removed |Added

 CC||j.tdhgf...@nurfuerspam.de

--- Comment #9 from Timur  ---
*** Bug 143995 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 57975] TABLE: Column with merged non-first rows can't be deleted if selected as column (can be if all column cells selected or no column selected)

2022-02-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57975

Timur  changed:

   What|Removed |Added

 CC||elias__0...@yahoo.com

--- Comment #17 from Timur  ---
*** Bug 147498 has been marked as a duplicate of this bug. ***

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

  1   2   3   >