[Libreoffice-bugs] [Bug 52944] EDITING: Report-Builder - Edit column Header/Footer has no function

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52944

--- Comment #21 from Robert Großkopf  ---
Bug still exists on LO 7.1.4.2, OpenSUSE 15.2 64bit rpm Linux

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52430] EDITING: Report-Builder - conditional print expression won't work with repeated section

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52430

--- Comment #14 from Robert Großkopf  ---
This bug couldn't be tested any more because bug 82097 doesn't change values of
the group in a group-header.
So I couldn't test if the bug exists any more it with LO 7.1.4.2, OpenSUSE
15.2, 64bit rpm Linux.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-06-25 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests8/tdf114710.py|   35 -
 sc/qa/uitest/calc_tests8/tdf118308.py|   47 ++-
 sc/qa/uitest/calc_tests9/tdf113571.py|   19 -
 sc/qa/uitest/calc_tests9/tdf125440.py|   26 +
 sc/qa/uitest/chart/copyPaste.py  |   53 ---
 sc/qa/uitest/chart/tdf107097.py  |   41 +---
 sc/qa/uitest/chart/tdf120348.py  |   38 +--
 sc/qa/uitest/chart/tdf136011.py  |   21 --
 sc/qa/uitest/chart/tdf62057.py   |   26 ++---
 sc/qa/uitest/chart/tdf98690.py   |   29 ++
 sc/qa/uitest/conditional_format/tdf117899.py |   32 +++-
 sw/qa/uitest/writer_tests6/tdf118883.py  |   18 ++---
 uitest/uitest/test.py|   13 +-
 13 files changed, 181 insertions(+), 217 deletions(-)

New commits:
commit 1db375e06516d0532f01f9585986617aa3079866
Author: Xisco Fauli 
AuthorDate: Fri Jun 25 19:39:17 2021 +0200
Commit: Xisco Fauli 
CommitDate: Sat Jun 26 07:25:59 2021 +0200

uitest: introduce load_empty_file

to make sure the documents are closed in inverse order when
different documents are used in the same test

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

diff --git a/sc/qa/uitest/calc_tests8/tdf114710.py 
b/sc/qa/uitest/calc_tests8/tdf114710.py
index a4989a72de58..34ab90f56a5c 100644
--- a/sc/qa/uitest/calc_tests8/tdf114710.py
+++ b/sc/qa/uitest/calc_tests8/tdf114710.py
@@ -19,32 +19,29 @@ class tdf114710(UITestCase):
 gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": 
"A1:O7"}))
 self.xUITest.executeCommand(".uno:Copy")
 
-self.xUITest.executeCommand(".uno:CloseDoc")
+with self.ui_test.load_empty_file("writer") as writer_document:
 
-self.ui_test.create_doc_in_start_center("writer")
+self.xUITest.getTopFocusWindow()
 
-self.xUITest.getTopFocusWindow()
+
self.ui_test.execute_dialog_through_command(".uno:PasteSpecial")
+xDialog = self.xUITest.getTopFocusWindow()
 
-self.ui_test.execute_dialog_through_command(".uno:PasteSpecial")
-xDialog = self.xUITest.getTopFocusWindow()
+xList = xDialog.getChild('list')
 
-xList = xDialog.getChild('list')
+for childName in xList.getChildren():
+xChild = xList.getChild(childName)
+if get_state_as_dict(xChild)['Text'] == "Graphics Device 
Interface metafile (GDI)":
+break
 
-for childName in xList.getChildren():
-xChild = xList.getChild(childName)
-if get_state_as_dict(xChild)['Text'] == "Graphics Device 
Interface metafile (GDI)":
-break
+xChild.executeAction("SELECT", tuple())
+self.assertEqual(
+get_state_as_dict(xList)['SelectEntryText'], "Graphics 
Device Interface metafile (GDI)")
 
-xChild.executeAction("SELECT", tuple())
-self.assertEqual(
-get_state_as_dict(xList)['SelectEntryText'], "Graphics 
Device Interface metafile (GDI)")
+xOkBtn = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOkBtn)
 
-xOkBtn = xDialog.getChild("ok")
-self.ui_test.close_dialog_through_button(xOkBtn)
-
-# Without the fix in place, this test would have crashed here
-document = self.ui_test.get_component()
-self.assertEqual(1, document.GraphicObjects.getCount())
+# Without the fix in place, this test would have crashed here
+self.assertEqual(1, writer_document.GraphicObjects.getCount())
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
 
diff --git a/sc/qa/uitest/calc_tests8/tdf118308.py 
b/sc/qa/uitest/calc_tests8/tdf118308.py
index 2c38cd11394d..7a99d5aedac3 100644
--- a/sc/qa/uitest/calc_tests8/tdf118308.py
+++ b/sc/qa/uitest/calc_tests8/tdf118308.py
@@ -22,40 +22,33 @@ class tdf118308(UITestCase):
 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
 self.xUITest.executeCommand(".uno:Copy")
 
-self.ui_test.execute_dialog_through_command(".uno:CloseDoc")
-xDialog = self.xUITest.getTopFocusWindow()
-xDiscardBtn = xDialog.getChild("discard")
-self.ui_test.close_dialog_through_button(xDiscardBtn)
+with self.ui_test.load_empty_file("calc") as calc_document:
 
-calc_doc = self.ui_test.create_doc_in_start_center("calc")
-
-xCalcDoc = self.xUITest.getTopFocusWindow()
-gridwin = xCalcDoc.getChild("grid_window")
-document = 

[Libreoffice-bugs] [Bug 113213] When "Continue previous numbering" is applied, it should also toggle off "restart numbering" for any item(s) that were selected for "Continue previous numbering"

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113213

Justin L  changed:

   What|Removed |Added

   Assignee|jl...@mail.com  |libreoffice-b...@lists.free
   ||desktop.org

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87351] [META] Conditional formatting bugs and enhancements

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351
Bug 87351 depends on bug 128881, which changed state.

Bug 128881 Summary: Conditional Formats sometimes evaluated wrongly when using 
Named Ranges
https://bugs.documentfoundation.org/show_bug.cgi?id=128881

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 128881] Conditional Formats sometimes evaluated wrongly when using Named Ranges

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128881

Jim Avera  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED

--- Comment #7 from Jim Avera  ---
@m.a.riosv -- That would be the case if Condition #3 was the only condition,
but Condition #1 should match after deleting the content of A2.

---

However, the problem seems to be gone in a recent master build.   So I will
close this as WFM using

Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: 0bcc06b0a563da08ccf1704b2f51376f27f51f62
CPU threads: 12; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-05-23_18:42:59
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142811] UI: Ruler grid inaccurate for tabstops in metric units

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142811

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142810] Add "Apply this animation effect to currently focused slide object" to context menu

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142810

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142785] UI Enabling hidden Writer header/footer works unreliably

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142785

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142796] insertion point invisible though still functional

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142796

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142793] UI Enabling display of data series on the secondary Y axis in Chart sidebar does not enable the secondary Y axis

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142793

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|target:7.3.0|target:7.3.0
   ||QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142798] FILEOPEN DOCX "Alignment relative to Margin" is wrongly rendered

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142798

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142797] FILESAVE XLSX Text anchor point inside shapes incorrectly saved

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142797

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142787] freeze row/columns get (temporarily) suspended when freeze point outside Window

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142787

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142808] UI: Tabstop jumps on ruler when placed on right triangle

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142808

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142807] Libreoffice don't insert nor playback videos from ver 7 and later

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142807

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142783] SELECTING Date Field dropdown causes 'When losing focus' event.

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142783

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142784] FILEOPEN DOCX Hidden first page header cannot be enabled

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142784

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142781] HTML import: base64 PNG image is resized, too big and doesn't keep aspect ratio

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142781

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142780] LibreOffice Impress cannot page down or up, while Zoom interpreter console is running on windows

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142780

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142778] Hyperlink>TargetInDocument does not respect user's numbering format

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142778

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142779] PRINTING from Draw is missing objects

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142779

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142766] PARAGRAPH STYLE: Indent of selected paragraph (with paragraph style Heading 1) not rendered after "Update Selected Style"

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142766

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142759] Compatibility problems with MS Word file and EndNote reference fields

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142759

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142719] Undo after autocorrect two initial capitals disables auto-correction two initial capitals at profile level

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142719

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138493] Wrong value in Pivot for a table

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138493

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138493] Wrong value in Pivot for a table

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138493

--- Comment #3 from QA Administrators  ---
Dear Roland.Dietz,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138830] After LobreOffice Writer crashed last few inserts are lost during recovery.

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138830

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136601] Inserted Formula is deleted and replaced by Object after saving and reopening file

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136601

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

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87012] REPORT-BUILDER: Charts without content if chart contain date or time

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87012

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83279] VIEWING: Scrollbar missing in report builder after closing properties panel

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83279

--- Comment #9 from QA Administrators  ---
Dear Rainer Rillke,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 78814] Oracle Report Builder parameter "visible" not working

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78814

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 68619] REPORTBUILDER: Functions in fields were changed to user-defined-functions in properties of the field, if fieldnames have special characters

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68619

--- Comment #31 from QA Administrators  ---
Dear franco.violi,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55202] EDITING: Report-Builder - Vertical position of text with shapes in the background impossible

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55202

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53253] REPORTBUILDER: Automatic page break destroys details group

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53253

--- Comment #12 from QA Administrators  ---
Dear Rainer Bielefeld Retired,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52944] EDITING: Report-Builder - Edit column Header/Footer has no function

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52944

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52430] EDITING: Report-Builder - conditional print expression won't work with repeated section

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52430

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 118332] Table height unnecessarily increases with multi-line text in merged cells.

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118332

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105441] styles don't resize shape with "resize shape to fit text"

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105441

--- Comment #6 from QA Administrators  ---
Dear Justin C,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100788] Letter wizard: form fields not correctly labelled

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100788

--- Comment #13 from QA Administrators  ---
Dear Alex ARNAUD,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103859

Valek Filippov  changed:

   What|Removed |Added

 Depends on||143076


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143076
[Bug 143076] [EMF+] StringFormat Lead/Trail margins and StringAlign Center
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143076] [EMF+] StringFormat Lead/Trail margins and StringAlign Center

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143076

Valek Filippov  changed:

   What|Removed |Added

 Blocks||103859


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103859
[Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143076] [EMF+] StringFormat Lead/Trail margins and StringAlign Center

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143076

--- Comment #2 from Valek Filippov  ---
Created attachment 173212
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173212=edit
Screenshot of the sample opened in LO7.3alpha and MS Paint

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143076] [EMF+] StringFormat Lead/Trail margins and StringAlign Center

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143076

--- Comment #1 from Valek Filippov  ---
Created attachment 173211
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173211=edit
EMF sample with combinations of margins and aligns

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143076] New: [EMF+] StringFormat Lead/Trail margins and StringAlign Center

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143076

Bug ID: 143076
   Summary: [EMF+] StringFormat Lead/Trail margins and StringAlign
Center
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@df.ru

Description:
LO should consider trailing margin when StringAlign is set to Center.

Steps to Reproduce:
Open attached EMF sample.

Actual Results:
LO shows "HCVB" between vertical red lines and "HCVT"/"HCVC" with right red
line through letter "V".

Expected Results:
"HCVC" should be placed between vertical red lines.
For "HCVT" vertical red line should go between "V" and "T", for "HCVB" --
between "H" and "C". 


Reproducible: Always


User Profile Reset: No



Additional Info:
"HL*" is left-aligned, "HC" is centered, "HR" is right-aligned.
"*VT" has lead margin of 1.
"*VC" has both lead and trail margins of 1.
"*VB" has trail margin of 1.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 142174, which changed state.

Bug 142174 Summary: Characters shift to top in vertical layout with the Skia 
backend enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=142174

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 142174] Characters shift to top in vertical layout with the Skia backend enabled

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142174

Mark Hung  changed:

   What|Removed |Added

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

--- Comment #14 from Mark Hung  ---
(In reply to Volga from comment #12)
> Created attachment 172009 [details]
> Screenshot from a recent LibreOfficeDev build, Skia is enabled
> 
> On the recent master build, the texts works pretty with original Segoe UI
> Symbol font, but after I switch to Segoe UI font, it happened again to me
> while they are rendering with fallback fonts.
> 
> Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
> Build ID: 6c8ca02c5935a800cff70f3c173319b454b63c41
> CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL:
> win
> Locale: zh-CN (zh_CN); UI: zh-CN
> Calc: threaded

Set the status to resolved fixed because original test file now rendered
correctly.

@Volga:
The cause of the issue is different when you a fallback font is used. It is
related to neither vertical layout nor Skia, that makes the summary of the
issue invalid. Please fill another issue with different reproducing steps.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114525] WIKIHELP: Help and Help button in Conditional Formatting dialogs give empty page

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114525

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.1.0|target:6.1.0 target:7.3.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: helpcontent2

2021-06-25 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f2e781c92bb96d626cf7a75c134f339a8a95d183
Author: Olivier Hallot 
AuthorDate: Fri Jun 25 19:52:24 2021 -0300
Commit: Gerrit Code Review 
CommitDate: Sat Jun 26 00:52:24 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 0a0327f63e2825b25c5b3a5e8c34ca97e4911ef4
  - tdf#114525 Bookmarks for Calc conditional formatting

Plus some refactor

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

diff --git a/helpcontent2 b/helpcontent2
index fde2f8d1b9da..0a0327f63e28 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit fde2f8d1b9da240726a939922cc9118d3305bb5d
+Subproject commit 0a0327f63e2825b25c5b3a5e8c34ca97e4911ef4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114525] WIKIHELP: Help and Help button in Conditional Formatting dialogs give empty page

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114525

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

https://git.libreoffice.org/help/commit/0a0327f63e2825b25c5b3a5e8c34ca97e4911ef4

tdf#114525 Bookmarks for Calc conditional formatting

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-06-25 Thread Olivier Hallot (via logerrit)
 source/text/scalc/01/0512.xhp |   29 -
 1 file changed, 16 insertions(+), 13 deletions(-)

New commits:
commit 0a0327f63e2825b25c5b3a5e8c34ca97e4911ef4
Author: Olivier Hallot 
AuthorDate: Fri Jun 25 16:59:21 2021 -0300
Commit: Olivier Hallot 
CommitDate: Sat Jun 26 00:52:24 2021 +0200

tdf#114525 Bookmarks for Calc conditional formatting

Plus some refactor

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

diff --git a/source/text/scalc/01/0512.xhp 
b/source/text/scalc/01/0512.xhp
index 7aae88576..ae62356fa 100644
--- a/source/text/scalc/01/0512.xhp
+++ b/source/text/scalc/01/0512.xhp
@@ -31,24 +31,27 @@
 
 
 
-Conditional Formatting
+Conditional Formatting
   Choose 
Conditional Formatting to define format styles depending on 
certain conditions.
  If a style was already assigned to a cell, it remains unchanged. 
The style entered here is then evaluated. There are several types of 
conditional formatting that can be used.
   You can 
enter several conditions that query the contents of cell values or formulas. 
The conditions are evaluated from the first to the last. If the condition 1 
matches the condition, the defined style will be used. Otherwise, condition 2 
is evaluated, and its defined style is used. If this style does not match, then 
the next condition is evaluated and so on.
   
  
   
-  To apply 
conditional formatting, AutoCalculate must be enabled. Choose Data - 
Calculate - AutoCalculate (you see a check mark next to the command when 
AutoCalculate is enabled).
+  To apply conditional formatting, 
AutoCalculate must be enabled. Choose Data - Calculate - 
AutoCalculate (you see a check mark next to the command when 
AutoCalculate is enabled).
 conditional formatting; 
conditions
 
 
-  List of the conditions defined for the cell range 
in order of evaluation.
+Condition list
+  List of 
the conditions defined for the cell range in order of evaluation. You can 
define as many conditions as you want.
 
-  Increase priority of the selected 
condition.
-
-  Decrease priority of the selected 
condition.
-Condition
-  You can 
define as many conditions as you want.
+Up
+Increase priority of the selected condition.
+  Down
+  
+  Decrease priority of the selected condition.
+
+Condition list entry
   Specify 
if conditional formatting is dependent on one of the entry listed on the drop 
down box:
   
   
@@ -84,14 +87,14 @@
   
   
 
-Color 
Scale
+Color Scale
   This is 
the same dialog box as if you select All cells in the first sub 
menu entry Condition.
 Apply a color scale to a range consist of displaying a bicolor or tricolor 
gradient on this range depending on the value of each cell. A typical example 
might be an array of temperatures, lower blue colored, warmer red with a 
gradient nuances to the intermediate values.
   You must 
choose the two "extreme" colors indicate the method of calculation. The 
calculation of the color applied will be made in relation to: Min - Max - 
Percentile - Value - Percent - Formula.
   The 
choices Min and Max are sufficient to themselves as found in the range. Other 
options need to be specified by a value (Percentile, Value, Percentage) or a 
cell reference or formula (Formula).
   For a 
detailed explanation and examples, please visit https://wiki.documentfoundation.org/Faq/Calc/142;>How to apply a Color 
Scale Conditional Formatting page in TDF Wiki.
 
-Data 
Bar
+Data Bar
   Data bar option 
will fill the cell with solid or gradient color corresponding to the numeric 
value in the cell. Default is blue for positive and red for negative. 

   The calculation 
of the area of fill is based on Min - Max - Percentile - Value - Percent - 
Formula.
   The choices Min 
and Max are sufficient to themselves as found in the range. Other options need 
to be specified by a value (Percentile, Value, Percentage) or a cell reference 
or formula (Formula).
@@ -108,7 +111,7 @@ Apply a color scale to a range consist of displaying a 
bicolor or tricolor gradi
   
   
 
-Icon 
Set
+Icon Set
   It is 
desired to plot the position of a value relative to the thresholds. The set of 
icons will help to indicate the thresholds and choose the type of icons. 
Available icon sets are:
 
 
@@ -139,7 +142,7 @@ Apply a color scale to a range consist of displaying a 
bicolor or tricolor gradi
   Conditions to display each icon can be specified relative to a 
value (Value), a percentage of the number of values in the range (Percentage) 
as a percentage of range values (Percentile) or formula (Formula).
   For a 
detailed explanation and examples, please visit https://wiki.documentfoundation.org/Faq/Calc/141;>How to use Icon Set 
Conditional Formatting 

[Libreoffice-bugs] [Bug 143075] New: Libreoffice Writer - Paste special, DDE cannot be deleted

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143075

Bug ID: 143075
   Summary: Libreoffice Writer - Paste special, DDE cannot be
deleted
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: baloo...@gmail.com

Description:
When pasting content as DDE, the added content cannot be deleted. 

Receive message "Read-only content. Write-protected content cannot be changed.
No modifications will be accepted" 

Document is effectively corrupted at this point. Have to copy desired content
into a new odt in order to carve out DDE section.

Steps to Reproduce:
1. Copy content from an external source (e.g. Google drive document)
2. Enter odt, Paste special
3. Paste as DDE

Actual Results:
Content pasted as a DDE section. Any attempt to delete errors.

Expected Results:
Expect content could be deleted.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.6.2
Build ID: 1:6.4.6-0ubuntu0.20.04.1
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143074] side palette with pages overview is unstable on duplicating and rearranege -- REGRESSION, worked in 6.4.7.2

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143074

--- Comment #1 from birnb...@posteo.de  ---
Duplicate of 143073, sorry

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143074] New: side palette with pages overview is unstable on duplicating and rearranege -- REGRESSION, worked in 6.4.7.2

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143074

Bug ID: 143074
   Summary: side palette with pages overview is unstable on
duplicating and rearranege -- REGRESSION, worked in
6.4.7.2
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: birnb...@posteo.de

Description:
Draw has an overview pane to the left where miniatures of the pages of a multi
page document are shown. Here, pages can be selected, rearranged and
duplicated. These operations do not work reliably.

This porblem seems to be a regression as it does not exist in version 6.4.7.2,
where moving and copying pages is no problem at all.

Steps to Reproduce:
1. create multi page drawing document
2. change order of pages in left-hand overview miniatures by dragging
3. copy pages by pressing ALT key while dragging (mouse cursor gets green '+'
icon)

Actual Results:
moving or copying fails, no changes to page order

Expected Results:
drawn page gets moved or copied


Reproducible: Sometimes


User Profile Reset: Yes



Additional Info:
Version: 7.1.3.2 / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 6; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143073] New: side palette with pages overview is unstable on duplicating and rearranege -- REGRESSION, worked in 6.4.7.2

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143073

Bug ID: 143073
   Summary: side palette with pages overview is unstable on
duplicating and rearranege -- REGRESSION, worked in
6.4.7.2
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: birnb...@posteo.de

Description:
Draw has an overview pane to the left where miniatures of the pages of a multi
page document are shown. Here, pages can be selected, rearranged and
duplicated. These operations do not work reliably.

This porblem seems to be a regression as it does not exist in version 6.4.7.2,
where moving and copying pages is no problem at all.

Steps to Reproduce:
1. create multi page drawing document
2. change order of pages in left-hand overview miniatures by dragging
3. copy pages by pressing ALT key while dragging (mouse cursor gets green '+'
icon)

Actual Results:
moving or copying fails, no changes to page order

Expected Results:
drawn page gets moved or copied


Reproducible: Sometimes


User Profile Reset: Yes



Additional Info:
Version: 7.1.3.2 / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 6; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143072] eyedropper tool picks color offset from mouse position

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143072

--- Comment #1 from birnb...@posteo.de  ---
Could trace this problem back to version 6.4.7.2, may be a lot older.

Is reproducible both on retina and old school Mac.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143072] New: eyedropper tool picks color offset from mouse position

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143072

Bug ID: 143072
   Summary: eyedropper tool picks color offset from mouse position
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: birnb...@posteo.de

Description:
The eyedropper tool has a field to the upper left that is supposed to show the
color of the pixel the mouse currently hovers over. Shown colors are incorrect
and some areas of the drawing area seem to be inaccessible to the tool.

Steps to Reproduce:
1. create drawing with one red box
2. select eyedropper tool
3. activate pickup mode (click on button in upper left corner of the eyedropper
window)
4. move mouse over red box

Actual Results:
Color area never shows red but two or three colors between white and gray.
Shown colors relate reproducibly to mouse cursor position but mouse cursor is
never over shown color. 

Expected Results:
Color area (right next to pickup button in eyedropper window) shows red color.



Reproducible: Always


User Profile Reset: No



Additional Info:
This is a duplicate of bug 143070 where I could not enter detailed information
(sorry, probably misused the bug tool).

Version: 7.1.3.2 / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 6; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-06-25 Thread Stephan Bergmann (via logerrit)
 connectivity/source/drivers/ado/APreparedStatement.cxx |7 ++-
 connectivity/source/drivers/ado/AStatement.cxx |8 ++--
 2 files changed, 4 insertions(+), 11 deletions(-)

New commits:
commit 3e2eee260b45dc69d03ce0c0d4eb6add09824bda
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 13:52:19 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 22:39:08 2021 +0200

More -Werror,-Wunused-but-set-variable when catching SQLWarning

...similar to f09cb84b274edd2a27697a7dc803a7ee42946de2
"-Werror,-Wunused-but-set-variable (Clang 13 trunk)", this time with 
clang-cl 13
trunk in Windows-only code

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

diff --git a/connectivity/source/drivers/ado/APreparedStatement.cxx 
b/connectivity/source/drivers/ado/APreparedStatement.cxx
index bffecc94afc8..0db461ef12d3 100644
--- a/connectivity/source/drivers/ado/APreparedStatement.cxx
+++ b/connectivity/source/drivers/ado/APreparedStatement.cxx
@@ -145,7 +145,6 @@ sal_Bool SAL_CALL OPreparedStatement::execute(  )
 ::osl::MutexGuard aGuard( m_aMutex );
 checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
-SQLWarning  warning;
 clearWarnings ();
 
 // Call SQLExecute
@@ -154,12 +153,10 @@ sal_Bool SAL_CALL OPreparedStatement::execute(  )
 
CHECK_RETURN(m_Command.Execute(m_RecordsAffected,m_Parameters,adCmdUnknown,))
 m_RecordSet = WpADORecordset(pSet);
 }
-catch (SQLWarning& ex)
+catch (SQLWarning&)
 {
-// Save pointer to warning and save with ResultSet
+//TODO: Save pointer to warning and save with ResultSet
 // object once it is created.
-
-warning = ex;
 }
 return m_RecordSet.IsValid();
 }
diff --git a/connectivity/source/drivers/ado/AStatement.cxx 
b/connectivity/source/drivers/ado/AStatement.cxx
index 57f9c347ecea..9670d92292bd 100644
--- a/connectivity/source/drivers/ado/AStatement.cxx
+++ b/connectivity/source/drivers/ado/AStatement.cxx
@@ -441,8 +441,6 @@ sal_Bool SAL_CALL OStatement_Base::getMoreResults(  )
 checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
 
-SQLWarning  warning;
-
 // clear previous warnings
 
 clearWarnings ();
@@ -456,13 +454,11 @@ sal_Bool SAL_CALL OStatement_Base::getMoreResults(  )
 if(m_RecordSet.IsValid() && 
m_RecordSet.NextRecordset(aRecordsAffected,) && pSet)
 assignRecordSet( pSet );
 }
-catch (SQLWarning )
+catch (SQLWarning &)
 {
 
-// Save pointer to warning and save with ResultSet
+//TODO: Save pointer to warning and save with ResultSet
 // object once it is created.
-
-warning = ex;
 }
 return m_RecordSet.IsValid();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/harfbuzz

2021-06-25 Thread Stephan Bergmann (via logerrit)
 external/harfbuzz/UnpackedTarball_harfbuzz.mk|1 +
 external/harfbuzz/Wunused-but-set-variable.patch |   12 
 2 files changed, 13 insertions(+)

New commits:
commit f54cba63809c511106f291e66019ebe57eafdfe0
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 10:53:37 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 22:38:40 2021 +0200

Silence -Werror,-Wunused-but-set-variable (clang-cl 13 trunk)

...during build of ExternalProject_harfbuzz:

> In file included from hb-ot-shape-complex-myanmar.cc:136:
> hb-ot-shape-complex-myanmar-machine.rl(108,36): error: variable 'act' set 
but not used [-Werror,-Wunused-but-set-variable]
>   unsigned int p, pe, eof, ts, te, act HB_UNUSED;
>^

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

diff --git a/external/harfbuzz/UnpackedTarball_harfbuzz.mk 
b/external/harfbuzz/UnpackedTarball_harfbuzz.mk
index adec72ed0d57..49119e30861b 100644
--- a/external/harfbuzz/UnpackedTarball_harfbuzz.mk
+++ b/external/harfbuzz/UnpackedTarball_harfbuzz.mk
@@ -20,6 +20,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,harfbuzz,0))
 $(eval $(call gb_UnpackedTarball_add_patches,harfbuzz, \
 external/harfbuzz/ubsan.patch \
 external/harfbuzz/icu-65-api-macros-with-semicolon.patch.1 \
+external/harfbuzz/Wunused-but-set-variable.patch \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/harfbuzz/Wunused-but-set-variable.patch 
b/external/harfbuzz/Wunused-but-set-variable.patch
new file mode 100644
index ..2150c737e489
--- /dev/null
+++ b/external/harfbuzz/Wunused-but-set-variable.patch
@@ -0,0 +1,12 @@
+--- src/hb.hh
 src/hb.hh
+@@ -242,7 +242,7 @@
+ #define HB_CONST_FUNC
+ #define HB_PRINTF_FUNC(format_idx, arg_idx)
+ #endif
+-#if defined(__GNUC__) && (__GNUC__ >= 4)
++#if defined(__GNUC__) && (__GNUC__ >= 4) || defined __clang__
+ #define HB_UNUSED __attribute__((unused))
+ #elif defined(_MSC_VER) /* https://github.com/harfbuzz/harfbuzz/issues/635 */
+ #define HB_UNUSED __pragma(warning(suppress: 4100 4101))
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143071] New: Eyedropper tool palette disappears

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143071

Bug ID: 143071
   Summary: Eyedropper tool palette disappears
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: birnb...@posteo.de

Description:
Upoon moving the eyedropper tool window, it is minimized to a few pixels width
and docked to one side of the drawing area. 
This is very hard to spot, the palette just seems to disappear. Disabling and
re-enabling it through the "Extras" menu restores the palette to its camouflage
position.

Steps to Reproduce:
1. select Extras -> Eyedropper tool
2. drag eyedropper window over the LO window


Actual Results:
Eyedropper window disappears. 
Note that the drawing area gets an extra few pixels to one side. They disappear
if the eyedropper is hidden through Extras -> Eyedropper. These pixels, upon
careful mouse positioning, can be expanded horizontally to reveal the palette.

Expected Results:
Eyedropper window follows mouse. 
Window is not minimized upon docking to one side of the drawing area. 


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.1.3.2 / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 6; OS: Mac OS X 10.15.7; UI render: default; VCL: osx
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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143070] New: eyedropper tool offset by several hundred pixels

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143070

Bug ID: 143070
   Summary: eyedropper tool offset by several hundred pixels
   Product: LibreOffice
   Version: 7.1.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: birnb...@posteo.de

The eyedropper tool has a preview field for the color that is picked up under
the mouse cursor. After one first successful use of the tool, the field keeps
showing a color from elsewhere on the screen. Offset could not be determined
any better because eyedropper palette disappeared (will file another bug in a
minute). 

Behaviour may be related to using retina display.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: bin/ui-rules-enforcer.py

2021-06-25 Thread Caolán McNamara (via logerrit)
 bin/ui-rules-enforcer.py |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 408be00b15ec44c9750450fc4dba70120dd0e978
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 16:59:45 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:30:00 2021 +0200

add no max-length property in GtkSpinButton rule

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

diff --git a/bin/ui-rules-enforcer.py b/bin/ui-rules-enforcer.py
index f2da99524737..020c10cd14a4 100755
--- a/bin/ui-rules-enforcer.py
+++ b/bin/ui-rules-enforcer.py
@@ -224,6 +224,22 @@ def remove_spin_button_input_purpose(current):
 if input_purpose != None:
   current.remove(input_purpose)
 
+def remove_spin_button_max_length(current):
+  max_length = None
+  isspinbutton = current.get('class') == "GtkSpinButton"
+  for child in current:
+remove_spin_button_max_length(child)
+if not isspinbutton:
+continue
+if child.tag == "property":
+  attributes = child.attrib
+  if attributes.get("name") == "max_length" or attributes.get("name") == 
"max-length":
+max_length = child
+
+  if isspinbutton:
+if max_length != None:
+  current.remove(max_length)
+
 def remove_track_visited_links(current):
   track_visited_links = None
   islabel = current.get('class') == "GtkLabel"
@@ -366,6 +382,7 @@ replace_image_stock(root)
 remove_check_button_align(root)
 remove_check_button_relief(root)
 remove_spin_button_input_purpose(root)
+remove_spin_button_max_length(root)
 remove_track_visited_links(root)
 remove_expander_label_fill(root)
 remove_expander_spacing(root)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Caolán McNamara (via logerrit)
 filter/source/graphicfilter/icgm/class0.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 524e2103b639831eb4b27102d4ddff3a568a1b21
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 15:51:39 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:19:50 2021 +0200

ofz#30930 each picture triggers accumulating codesets

seems to make more sense on EndPicture to return to the pre-StartPicture
state

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

diff --git a/filter/source/graphicfilter/icgm/class0.cxx 
b/filter/source/graphicfilter/icgm/class0.cxx
index aa6152d241d0..01e1dd2977db 100644
--- a/filter/source/graphicfilter/icgm/class0.cxx
+++ b/filter/source/graphicfilter/icgm/class0.cxx
@@ -49,13 +49,13 @@ void CGM::ImplDoClass0()
 break;
 case 0x03 : /*Begin Picture*/
 {
-ImplDefaultReplacement();
-ImplSetMapMode();
 if ( mbPicture )
 mbStatus = false;
 else
 {
 *pCopyOfE = *pElement;
+ImplDefaultReplacement();
+ImplSetMapMode();
 mbPicture = mbFirstOutPut = true;
 mbFigure = false;
 mnAct4PostReset = 0;
diff --git a/sd/qa/unit/data/cgm/fail/recurse-1.cgm 
b/sd/qa/unit/data/cgm/pass/recurse-1.cgm
similarity index 100%
rename from sd/qa/unit/data/cgm/fail/recurse-1.cgm
rename to sd/qa/unit/data/cgm/pass/recurse-1.cgm
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Caolán McNamara (via logerrit)
 sd/source/filter/pdf/sdpdffilter.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit c38d0d501f5eca648bdf0fd2914b57e06f505f7e
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 15:54:26 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:13:52 2021 +0200

new doesn't return null on failure

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

diff --git a/sd/source/filter/pdf/sdpdffilter.cxx 
b/sd/source/filter/pdf/sdpdffilter.cxx
index 9725bcc8b998..eb64897db853 100644
--- a/sd/source/filter/pdf/sdpdffilter.cxx
+++ b/sd/source/filter/pdf/sdpdffilter.cxx
@@ -85,8 +85,6 @@ bool SdPdfFilter::Import()
 
 SdrGrafObj* pSdrGrafObj = new 
SdrGrafObj(pPage->getSdrModelFromSdrPage(), rGraphic,
  tools::Rectangle(Point(), 
aSizeHMM));
-if (!pSdrGrafObj) // out of memory
-return false;
 
 pSdrGrafObj->SetResizeProtect(true);
 pSdrGrafObj->SetMoveProtect(true);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: cui/source cui/uiconfig

2021-06-25 Thread Caolán McNamara (via logerrit)
 cui/source/options/optsave.cxx |2 ++
 cui/uiconfig/ui/optsavepage.ui |1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit bbddb67a59655660ea028bcf1ca23c0f75a29779
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 16:56:50 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:13:10 2021 +0200

remove max-length from GtkSpinButton .ui

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

diff --git a/cui/source/options/optsave.cxx b/cui/source/options/optsave.cxx
index 3ee6a66c40d2..9ad1c1f5a4c5 100644
--- a/cui/source/options/optsave.cxx
+++ b/cui/source/options/optsave.cxx
@@ -91,6 +91,8 @@ SvxSaveTabPage::SvxSaveTabPage(weld::Container* pPage, 
weld::DialogController* p
 , m_xODFWarningFI(m_xBuilder->weld_widget("odfwarning_image"))
 , m_xODFWarningFT(m_xBuilder->weld_label("odfwarning_label"))
 {
+m_xAutoSaveEdit->set_max_length(2);
+
 m_xODFVersionLB->set_id(0, OUString::number(SvtSaveOptions::ODFVER_011)); 
// 1.0/1.1
 m_xODFVersionLB->set_id(1, OUString::number(SvtSaveOptions::ODFVER_012)); 
// 1.2
 m_xODFVersionLB->set_id(2, 
OUString::number(SvtSaveOptions::ODFVER_012_EXT_COMPAT)); // 1.2 Extended 
(compatibility mode)
diff --git a/cui/uiconfig/ui/optsavepage.ui b/cui/uiconfig/ui/optsavepage.ui
index 8588dde7c7aa..49d237aa0548 100644
--- a/cui/uiconfig/ui/optsavepage.ui
+++ b/cui/uiconfig/ui/optsavepage.ui
@@ -129,7 +129,6 @@
   
 True
 True
-2
 True
 adjustment1
 True
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Caolán McNamara (via logerrit)
 sc/uiconfig/scalc/ui/sheetprintpage.ui|1 -
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx |2 --
 2 files changed, 3 deletions(-)

New commits:
commit 80b055683bd8381f78214e2310f2a703ae7638ff
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 16:44:37 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:12:55 2021 +0200

remove stray max-length from GtkSpinButton

since...

commit cb553bdba77c80f323dbed1874874cf2465abd83
Date:   Sun Mar 31 14:52:34 2013 -0300

Convert Calc sheet page style to Widget UI

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

diff --git a/sc/uiconfig/scalc/ui/sheetprintpage.ui 
b/sc/uiconfig/scalc/ui/sheetprintpage.ui
index 5dae7d8ed5cf..37e72ec589b8 100644
--- a/sc/uiconfig/scalc/ui/sheetprintpage.ui
+++ b/sc/uiconfig/scalc/ui/sheetprintpage.ui
@@ -137,7 +137,6 @@
   
 True
 True
-5
 True
 adjustmentFirstPage
 
commit 9e6a7c043d2b19ffc870ab283ac29850447a9cd2
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 09:53:33 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 21:12:43 2021 +0200

-Werror,-Wunused-but-set-variable (clang-cl 13 trunk)

...since 362a21d3a129b90149f6ef645c127f5e86e0ba61 "Use explicit function 
names
for fooA/fooW WinAPI; prefer fooW"

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

diff --git 
a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx 
b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx
index ff6bc2f319e4..0a4d9191f366 100644
--- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx
+++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx
@@ -383,10 +383,8 @@ uno::Reference< XCertificate > 
SecurityEnvironment_MSCryptImpl::getCertificate(
 CERT_INFO certInfo ;
 
 // for correct encoding
-sal_uInt16 encoding ;
 rtl_Locale *pLocale = nullptr ;
 osl_getProcessLocale(  ) ;
-encoding = osl_getTextEncodingFromLocale( pLocale ) ;
 
 //Create cert info from issue and serial
 LPCWSTR pszName = o3tl::toW( issuerName.getStr() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - embedserv/source vcl/unx

2021-06-25 Thread Stephan Bergmann (via logerrit)
 embedserv/source/embed/servprov.cxx |4 +---
 vcl/unx/gtk3/gtkinst.cxx|5 +
 2 files changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 3c5ac66e21bc3b0efffe44743fbb5289da85a4f6
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 14:01:52 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 21:12:22 2021 +0200

-Werror,-Wunused-but-set-parameter (clang-cl 13 trunk)

...ever since a934115b3ea90d7883681a6ca8922a4b859be36f "Initial revision"

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

diff --git a/embedserv/source/embed/servprov.cxx 
b/embedserv/source/embed/servprov.cxx
index 8a1efd5152a5..ebf6c1eb2c28 100644
--- a/embedserv/source/embed/servprov.cxx
+++ b/embedserv/source/embed/servprov.cxx
@@ -168,11 +168,9 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP_(ULONG) 
EmbedProviderFactory_Impl::Release()
 return nCount;
 }
 
-COM_DECLSPEC_NOTHROW STDMETHODIMP 
EmbedProviderFactory_Impl::CreateInstance(IUnknown* punkOuter,
+COM_DECLSPEC_NOTHROW STDMETHODIMP 
EmbedProviderFactory_Impl::CreateInstance(IUnknown*,
 
REFIID riid, void** ppv)
 {
-punkOuter = nullptr;
-
 IUnknown* pEmbedDocument = 
static_cast(static_cast( new EmbedDocument_Impl( 
m_xFactory, _guid ) ));
 
 return pEmbedDocument->QueryInterface( riid, ppv );
commit b0eb7f3e7010539aad7c0d8496dfc539c87ed859
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 16:37:27 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:12:09 2021 +0200

gtk4: reenable calc format cells dialog

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

diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index cb036803d5eb..9344c211425a 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -22294,6 +22294,7 @@ weld::Builder* GtkInstance::CreateBuilder(weld::Widget* 
pParent, const OUString&
 rUIFile != "cui/ui/bitmaptabpage.ui" &&
 rUIFile != "cui/ui/borderpage.ui" &&
 rUIFile != "cui/ui/breaknumberoption.ui" &&
+rUIFile != "cui/ui/cellalignment.ui" &&
 rUIFile != "cui/ui/charnamepage.ui" &&
 rUIFile != "cui/ui/colorpage.ui" &&
 rUIFile != "cui/ui/colorpickerdialog.ui" &&
@@ -22426,9 +22427,12 @@ weld::Builder* 
GtkInstance::CreateBuilder(weld::Widget* pParent, const OUString&
 rUIFile != "modules/BasicIDE/ui/newlibdialog.ui" &&
 rUIFile != "modules/BasicIDE/ui/organizedialog.ui" &&
 rUIFile != "modules/scalc/ui/advancedfilterdialog.ui" &&
+rUIFile != "modules/scalc/ui/analysisofvariancedialog.ui" &&
+rUIFile != "modules/scalc/ui/cellprotectionpage.ui" &&
 rUIFile != "modules/scalc/ui/checkwarningdialog.ui" &&
 rUIFile != "modules/scalc/ui/colwidthdialog.ui" &&
 rUIFile != "modules/scalc/ui/consolidatedialog.ui" &&
+rUIFile != "modules/scalc/ui/correlationdialog.ui" &&
 rUIFile != "modules/scalc/ui/dataform.ui" &&
 rUIFile != "modules/scalc/ui/dataformfragment.ui" &&
 rUIFile != "modules/scalc/ui/datastreams.ui" &&
@@ -22439,6 +22443,7 @@ weld::Builder* GtkInstance::CreateBuilder(weld::Widget* 
pParent, const OUString&
 rUIFile != "modules/scalc/ui/doubledialog.ui" &&
 rUIFile != "modules/scalc/ui/erroralerttabpage.ui" &&
 rUIFile != "modules/scalc/ui/externaldata.ui" &&
+rUIFile != "modules/scalc/ui/formatcellsdialog.ui" &&
 rUIFile != "modules/scalc/ui/goalseekdlg.ui" &&
 rUIFile != "modules/scalc/ui/groupdialog.ui" &&
 rUIFile != "modules/scalc/ui/inputstringdialog.ui" &&
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/unx

2021-06-25 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtkinst.cxx |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 7be06a4dce699d8216b5978155ab3e575dda0367
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 13:00:55 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:11:33 2021 +0200

gtk3: gtk_menu_attach_to_widget to the final pWidget

probably doesn't make a difference in practice

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

diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index e0c3047875ff..cb036803d5eb 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -10404,13 +10404,12 @@ public:
 #else
 gulong nSignalId = g_signal_connect_swapped(G_OBJECT(m_pMenu), 
"deactivate", G_CALLBACK(g_main_loop_quit), pLoop);
 
-gtk_menu_attach_to_widget(m_pMenu, pWidget, nullptr);
-
 #if GTK_CHECK_VERSION(3,22,0)
 if (gtk_check_version(3, 22, 0) == nullptr)
 {
 GdkRectangle aRect;
 pWidget = getPopupRect(pWidget, rRect, aRect);
+gtk_menu_attach_to_widget(m_pMenu, pWidget, nullptr);
 
 // Send a keyboard event through gtk_main_do_event to toggle any 
active tooltip offs
 // before trying to launch the menu
@@ -10432,6 +10431,8 @@ public:
 (void) rRect;
 #endif
 {
+gtk_menu_attach_to_widget(m_pMenu, pWidget, nullptr);
+
 guint nButton;
 guint32 nTime;
 
@@ -10441,7 +10442,8 @@ public:
 GdkEvent *pEvent = gtk_get_current_event();
 if (pEvent)
 {
-gdk_event_get_button(pEvent, );
+if (!gdk_event_get_button(pEvent, ))
+nButton = 0;
 nTime = gdk_event_get_time(pEvent);
 }
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Stephan Bergmann (via logerrit)
 shell/source/win32/shlxthandler/infotips/infotips.cxx   |2 +-
 shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7d5346eb09a9e4acc72c646800e77f363fe10e2f
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 10:25:45 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 21:10:28 2021 +0200

-Werror,-Wunused-but-set-parameter (clang-cl 13 trunk)

...revealing that these places apparently wanted to assign to *pClassID 
rather
than pClassID ever since their introduction with
b718f390bf3dcc85dc97b2ef7483d93bbe3968ec "INTEGRATION: CWS desktintgr01" and
9b1b1b00818d177ed32f5a3d0e0d1f41b40de926 "INTEGRATION: CWS desktintgr02"

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

diff --git a/shell/source/win32/shlxthandler/infotips/infotips.cxx 
b/shell/source/win32/shlxthandler/infotips/infotips.cxx
index 60343e1a4c0b..af03f4a32faa 100644
--- a/shell/source/win32/shlxthandler/infotips/infotips.cxx
+++ b/shell/source/win32/shlxthandler/infotips/infotips.cxx
@@ -308,7 +308,7 @@ COM_DECLSPEC_NOTHROW HRESULT STDMETHODCALLTYPE 
CInfoTip::GetInfoFlags(DWORD * /*
 
 HRESULT STDMETHODCALLTYPE CInfoTip::GetClassID(CLSID* pClassID)
 {
-pClassID = const_cast(_INFOTIP_HANDLER);
+*pClassID = CLSID_INFOTIP_HANDLER;
 return S_OK;
 }
 
diff --git a/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx 
b/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx
index a2ae80dd0daf..ad5cbe03b0e1 100644
--- a/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx
+++ b/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx
@@ -470,7 +470,7 @@ HRESULT STDMETHODCALLTYPE CThumbviewer::GetLocation(
 
 HRESULT STDMETHODCALLTYPE CThumbviewer::GetClassID(CLSID* pClassID)
 {
-pClassID = const_cast(_THUMBVIEWER_HANDLER);
+*pClassID = CLSID_THUMBVIEWER_HANDLER;
 return S_OK;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Stephan Bergmann (via logerrit)
 sc/uiconfig/scalc/ui/cellprotectionpage.ui |1 -
 vcl/qa/cppunit/svm/svmtest.cxx |4 
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit c1abdd5ad801a48e104fe8596cfbde5b3d4aa453
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 10:21:01 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 21:10:04 2021 +0200

loplugin:unreffun (clang-cl)

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

diff --git a/vcl/qa/cppunit/svm/svmtest.cxx b/vcl/qa/cppunit/svm/svmtest.cxx
index a95c249c96bf..c260a974282d 100644
--- a/vcl/qa/cppunit/svm/svmtest.cxx
+++ b/vcl/qa/cppunit/svm/svmtest.cxx
@@ -166,7 +166,9 @@ class SvmTest : public test::BootstrapFixture, public 
XmlTestTools
 void checkMapMode(const GDIMetaFile& rMetaFile);
 void testMapMode();
 
+#if HAVE_MORE_FONTS && !defined(_WIN32)
 void checkFont(const GDIMetaFile& rMetaFile);
+#endif
 void testFont();
 
 void checkPushPop(const GDIMetaFile& rMetaFile);
@@ -1890,6 +1892,7 @@ void SvmTest::testMapMode()
 checkMapMode(readFile(u"mapmode.svm"));
 }
 
+#if HAVE_MORE_FONTS && !defined(_WIN32)
 void SvmTest::checkFont(const GDIMetaFile& rMetafile)
 {
 xmlDocUniquePtr pDoc = dumpMeta(rMetafile);
@@ -1905,6 +1908,7 @@ void SvmTest::checkFont(const GDIMetaFile& rMetafile)
 {"vertical", "true"},
 });
 }
+#endif
 
 void SvmTest::testFont()
 {
commit 9b2dca857efea82722f82b20de68b7dc9c439fb6
Author: Caolán McNamara 
AuthorDate: Fri Jun 25 16:35:58 2021 +0100
Commit: Caolán McNamara 
CommitDate: Fri Jun 25 21:09:52 2021 +0200

unused always-show-image in GtkCheckButton

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

diff --git a/sc/uiconfig/scalc/ui/cellprotectionpage.ui 
b/sc/uiconfig/scalc/ui/cellprotectionpage.ui
index 22662a55d721..17581b7deb14 100644
--- a/sc/uiconfig/scalc/ui/cellprotectionpage.ui
+++ b/sc/uiconfig/scalc/ui/cellprotectionpage.ui
@@ -77,7 +77,6 @@
 True
 False
 True
-True
 True
 True
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142759] Compatibility problems with MS Word file and EndNote reference fields

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142759

Mohammadreza  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #3 from Mohammadreza  ---
Hi,

Thank you so much for your follow up.

Best,
Mohammadreza

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-06-25 Thread Justin Luth (via logerrit)
 sw/qa/extras/ww8export/ww8export3.cxx |3 +--
 sw/source/filter/ww8/ww8par3.cxx  |4 +++-
 2 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 27aedd8f7de6f94469ab515cf0ab0c7e85550efc
Author: Justin Luth 
AuthorDate: Wed Jun 23 11:29:48 2021 +0200
Commit: Justin Luth 
CommitDate: Fri Jun 25 20:33:28 2021 +0200

tdf#104239 doc import: use "Outline" for m_pChosenWW8OutlineStyle

This looks like it was a logic error.
Probably they were only looking at the situation where
the paragraph style set the numbering style to "Outline".
Well, in this case, Heading 1 is actually not part
of Chapter Numbering, but it was the body sprm
that set the style.

In any case, whenever the LFO chosen as the outline
style is referenced, it should apply LO's special,
unique and extremely troublesome "Outline" numbering style.

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

diff --git a/sw/qa/extras/ww8export/ww8export3.cxx 
b/sw/qa/extras/ww8export/ww8export3.cxx
index 77c090f1f22d..087d66a6573c 100644
--- a/sw/qa/extras/ww8export/ww8export3.cxx
+++ b/sw/qa/extras/ww8export/ww8export3.cxx
@@ -815,10 +815,9 @@ 
DECLARE_WW8EXPORT_TEST(testTdf106541_inheritOutlineNumbering, "tdf106541_inherit
 
 DECLARE_WW8EXPORT_TEST(testTdf104239_sharedOutlineNumId, 
"tdf104239_sharedOutlineNumId.doc")
 {
-// The list should show both level 1 and level 2 digits.  It really ought 
to be "2.1."
 uno::Reference xPara(getParagraph(5, "Principes"), 
uno::UNO_QUERY);
 // This was ".1." previously.
-CPPUNIT_ASSERT(3 < getProperty(xPara, 
"ListLabelString").getLength());
+CPPUNIT_ASSERT_EQUAL(OUString("2.1."), getProperty(xPara, 
"ListLabelString"));
 }
 
 DECLARE_WW8EXPORT_TEST(testTdf120394, "tdf120394.doc")
diff --git a/sw/source/filter/ww8/ww8par3.cxx b/sw/source/filter/ww8/ww8par3.cxx
index 80bfebd68a61..a7a246d4952f 100644
--- a/sw/source/filter/ww8/ww8par3.cxx
+++ b/sw/source/filter/ww8/ww8par3.cxx
@@ -1827,7 +1827,9 @@ void 
SwWW8ImplReader::RegisterNumFormatOnTextNode(sal_uInt16 nCurrentLFO,
 {
 // Now this is either not a part of Chapter Numbering,
 // or else it is using a different numRule than the one copied to 
Chapter Numbering.
-pTextNd->SetAttr(SwNumRuleItem(pRule->GetName()));
+OUString sName = pRule == m_pChosenWW8OutlineStyle ? 
m_rDoc.GetOutlineNumRule()->GetName()
+   : pRule->GetName();
+pTextNd->SetAttr(SwNumRuleItem(sName));
 }
 pTextNd->SetAttrListLevel(nCurrentLevel);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142759] Compatibility problems with MS Word file and EndNote reference fields

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142759

--- Comment #2 from Mohammadreza  ---
Created attachment 173210
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173210=edit
MS Word file with EndNote fields (as references)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: sc/CppunitTest_sc_bugfix_test.mk

2021-06-25 Thread Mike Kaganski (via logerrit)
 sc/CppunitTest_sc_bugfix_test.mk |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit a0d54088a91ec85417bf06a2fa369cf785fd9bf3
Author: Mike Kaganski 
AuthorDate: Fri Jun 25 16:53:11 2021 +0200
Commit: Mike Kaganski 
CommitDate: Fri Jun 25 20:21:10 2021 +0200

Missing dependency

Fixes "GpgME not installed correctly" at
'make CppunitTest_sc_bugfix_test' after 'make clean'.
See commit 5b66a038701241e0b9fa3a339acbd74f9ca4cf92.

Change-Id: Idac64821609ab07a5411489deddf551fef7fd437
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117861
Tested-by: Mike Kaganski 
Reviewed-by: Mike Kaganski 

diff --git a/sc/CppunitTest_sc_bugfix_test.mk b/sc/CppunitTest_sc_bugfix_test.mk
index 3b89413b5da9..813e0c9b4bad 100644
--- a/sc/CppunitTest_sc_bugfix_test.mk
+++ b/sc/CppunitTest_sc_bugfix_test.mk
@@ -120,4 +120,11 @@ $(eval $(call 
gb_CppunitTest_use_components,sc_bugfix_test,\
 
 $(eval $(call gb_CppunitTest_use_configuration,sc_bugfix_test))
 
+ifeq ($(OS),WNT)
+# gpgme-w32spawn.exe is needed in workdir/LinkTarget/Executable
+$(eval $(call gb_CppunitTest_use_packages,sc_bugfix_test,\
+$(call gb_Helper_optional,GPGMEPP,gpgmepp)\
+))
+endif
+
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117100] Request for reinstall after successful installation of an extension started by double-clicking an .OXT file in file manager

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117100

--- Comment #11 from Jean-Pierre Penelle  ---
erreur 1714 installation précédante n'a pu etre suprimé

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'feature/cib_contract57c' - external/openldap

2021-06-25 Thread Michael Stahl (via logerrit)
 external/openldap/ExternalProject_openldap.mk |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 5972e7b2fc2063de03aa39bea01204fd77df0e2a
Author: Michael Stahl 
AuthorDate: Fri Jun 25 19:17:12 2021 +0200
Commit: Michael Stahl 
CommitDate: Fri Jun 25 19:17:12 2021 +0200

Revert "openldap: mysterious build failure"

This reverts commit 8d58d9e8becaacdfe89a2bf3cf96d56a2ed91e6b.

Of course it breaks the jenkins build.

diff --git a/external/openldap/ExternalProject_openldap.mk 
b/external/openldap/ExternalProject_openldap.mk
index 67adcd06ed3c..0c7aaa6ae17d 100644
--- a/external/openldap/ExternalProject_openldap.mk
+++ b/external/openldap/ExternalProject_openldap.mk
@@ -29,7 +29,6 @@ endif
 $(call gb_ExternalProject_get_state_target,openldap,build) :
$(call gb_ExternalProject_run,build,\
./configure \
-ol_cv_dcl_sys_errlist=no \
--disable-slapd \
--with-pic \
--with-tls=moznss \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 135310] [META] Writer outline folding bugs and enhancements

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

Bug 136435 Summary: Explain new Outline features
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 136435, which changed state.

Bug 136435 Summary: Explain new Outline features
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136435] Explain new Outline features

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

Olivier Hallot  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: helpcontent2

2021-06-25 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a5a501c9e1da326de1d28b10777bd74dbc35bce6
Author: Olivier Hallot 
AuthorDate: Fri Jun 25 13:56:03 2021 -0300
Commit: Gerrit Code Review 
CommitDate: Fri Jun 25 18:56:03 2021 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to fde2f8d1b9da240726a939922cc9118d3305bb5d
  - tdf#136435 Add contents on the outline folding options

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

diff --git a/helpcontent2 b/helpcontent2
index a09c6d5edbbd..fde2f8d1b9da 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a09c6d5edbbd00da7ff34685cf83bf9a6fd47af8
+Subproject commit fde2f8d1b9da240726a939922cc9118d3305bb5d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136435] Explain new Outline features

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136435

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

https://git.libreoffice.org/help/commit/fde2f8d1b9da240726a939922cc9118d3305bb5d

tdf#136435 Add contents on the outline folding options

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-06-25 Thread Olivier Hallot (via logerrit)
 source/text/shared/optionen/01040200.xhp |   43 ---
 source/text/shared/optionen/experimental.xhp |6 ---
 2 files changed, 28 insertions(+), 21 deletions(-)

New commits:
commit fde2f8d1b9da240726a939922cc9118d3305bb5d
Author: Olivier Hallot 
AuthorDate: Fri Jun 25 11:43:09 2021 -0300
Commit: Olivier Hallot 
CommitDate: Fri Jun 25 18:56:03 2021 +0200

tdf#136435 Add contents on the outline folding options

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

diff --git a/source/text/shared/optionen/01040200.xhp 
b/source/text/shared/optionen/01040200.xhp
index bc5a8bc62..31fe317e2 100644
--- a/source/text/shared/optionen/01040200.xhp
+++ b/source/text/shared/optionen/01040200.xhp
@@ -1,7 +1,4 @@
 
-
-
-
 
-
-
-   
+
 
 
 View
@@ -30,7 +25,8 @@
 
 
 
-snap lines; showing when moving frames 
(Writer)
+
+snap lines; showing when moving frames 
(Writer)
 scrollbars; horizontal and vertical (Writer)
 horizontal scrollbars (Writer)
 vertical scrollbars (Writer)
@@ -50,7 +46,7 @@
 
 
 
-View
+View
 Defines the default settings for displaying objects in your text 
documents and also the default settings for the window 
elements.
 
 
@@ -63,32 +59,34 @@
 Displays snap lines around 
the frames when frames are moved. You can select the Helplines While 
Moving option to show the exact position of the object using lineal 
values.
 Display
 Defines which 
document elements are displayed.
-Images and objects
+
+Images and objects
 Specifies whether to display 
images and objects on the screen.
  If these elements are hidden, you will see empty frames as 
placeholders.
 You can also 
control the display of graphics through the Images and 
Charts icon. If a text document is open, this icon is displayed 
on the Tools bar.
-If the Images 
and objects option is not selected, no graphics will be loaded from the 
Internet. Graphics within a table and without an indication of their size can 
cause display problems when using an older HTML standard on the browsed 
page.
-Tables
+If the Images and objects option is not 
selected, no graphics will be loaded from the Internet. Graphics within a table 
and without an indication of their size can cause display problems when using 
an older HTML standard on the browsed page.
+
+Tables
 Displays the tables contained 
in your document.
 To display the table 
boundaries, right-click any table and choose Table Boundaries, or 
choose Table - Table Boundaries in a Writer 
document.
-Drawings and controls
+Drawings and controls
 Displays the drawings and 
controls contained in your document.
-Comments
+Comments
 Displays comments. Click a 
comment to edit the text. Use the context menu in Navigator to locate or delete 
a comment. Use the comments's context menu to delete this comment or all 
comments or all comments of this author.
 Display fields
 
 Hidden textUFI: this is the 
old "Hidden text" control renamed
 Displays text that 
is hidden by Conditional Text or Hidden Text 
fields.
 
-Hidden paragraphs
+Hidden paragraphs
 Display paragraphs 
that contain a Hidden Paragraph field. This option has the 
same function as the menu command View - Field Hidden 
ParagraphsView - Hidden 
Paragraphs.
 View
 Specifies 
whether scrollbars and rulers are displayed.
 
-Horizontal ruler
+Horizontal ruler
 Displays the horizontal 
ruler. Select the desired measurement unit from the corresponding 
list.
 
-Vertical ruler
+Vertical ruler
 Displays the vertical 
ruler. Select the desired measurement unit from the corresponding 
list.
 
 Smooth scroll
@@ -97,6 +95,19 @@
 Right-aligned
 
 Aligns the vertical ruler 
with the right border.
+
+
+
+
+outline folding buttons;settings
+
+Outline folding
+
+Show outline-folding buttons
+Displays outline 
folding buttons on the left of the outline headings.
+Include sub levels
+Also displays the 
folding buttons of the outline sub levels.
+
 Settings (for HTML document only)
 
 Measurement unit
diff --git a/source/text/shared/optionen/experimental.xhp 
b/source/text/shared/optionen/experimental.xhp
index 500227379..1cd77c756 100644
--- a/source/text/shared/optionen/experimental.xhp
+++ b/source/text/shared/optionen/experimental.xhp
@@ -24,13 +24,9 @@
 /text/shared/optionen/experimental.xhp
   
 
-
 
-
-
 
-This feature is 
experimental and may produce errors or behave unexpectedly. To enable it 
anyway, choose %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - 
Advanced and select Enable experimental features 
checkbox.
+This feature is experimental and may produce errors 
or behave unexpectedly. To enable it anyway, choose %PRODUCTNAME - 
PreferencesTools - 
Options - %PRODUCTNAME - 
Advanced and select Enable experimental features 
checkbox.
 
 
-
 
___
Libreoffice-commits mailing list

[Libreoffice-bugs] [Bug 142574] Help article is required for Wildcard functionality; and disambiguation with regular expressions.

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142574

Steve Fanning  changed:

   What|Removed |Added

 CC||stevemfanning...@gmail.com

--- Comment #2 from Steve Fanning  ---
I included some (hopefully) useful material about wildcards in the 7.0 Calc
Guide. This could be used as the basis of a help page on the topic.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: uitest/uitest

2021-06-25 Thread Xisco Fauli (via logerrit)
 uitest/uitest/test.py |   31 +--
 1 file changed, 13 insertions(+), 18 deletions(-)

New commits:
commit 66494118ec1ddad3af56a1ed708f0a59fe063e86
Author: Xisco Fauli 
AuthorDate: Thu Jun 24 14:28:22 2021 +0200
Commit: Xisco Fauli 
CommitDate: Fri Jun 25 18:36:49 2021 +0200

uitest: raise exception if timeout is reached

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

diff --git a/uitest/uitest/test.py b/uitest/uitest/test.py
index 833f5a726049..e8238f790d6b 100644
--- a/uitest/uitest/test.py
+++ b/uitest/uitest/test.py
@@ -16,13 +16,6 @@ from com.sun.star.uno import RuntimeException
 
 from libreoffice.uno.eventlistener import EventListener
 
-class DialogNotExecutedException(Exception):
-def __init__(self, command):
-self.command = command
-
-def __str__(self):
-return "Dialog not executed for: " + self.command
-
 class UITest(object):
 
 def __init__(self, xUITest, xContext):
@@ -58,28 +51,28 @@ class UITest(object):
 
 def wait_until_child_is_available(self, childName):
 time_ = 0
-xChild = None
 
 while time_ < MAX_WAIT:
 xDialog = self._xUITest.getTopFocusWindow()
 if childName in xDialog.getChildren():
-xChild = xDialog.getChild(childName)
-break
+return xDialog.getChild(childName)
 else:
 time_ += DEFAULT_SLEEP
 time.sleep(DEFAULT_SLEEP)
 
-return xChild
+raise Exception("Child not found: " + childName)
 
 def wait_until_property_is_updated(self, element, propertyName, value):
 time_ = 0
 while time_ < MAX_WAIT:
 if get_state_as_dict(element)[propertyName] == value:
-break
+return
 else:
 time_ += DEFAULT_SLEEP
 time.sleep(DEFAULT_SLEEP)
 
+raise Exception("Property not updated: " + childName)
+
 @contextmanager
 def wait_until_component_loaded(self):
 with EventListener(self._xContext, "OnLoad") as event:
@@ -91,10 +84,12 @@ class UITest(object):
 if len(frames) == 1:
 self.get_desktop().setActiveFrame(frames[0])
 time.sleep(DEFAULT_SLEEP)
-break
+return
 time_ += DEFAULT_SLEEP
 time.sleep(DEFAULT_SLEEP)
 
+raise Exception("Component not loaded")
+
 # Calls UITest.close_doc at exit
 @contextmanager
 def load_file(self, url):
@@ -107,7 +102,7 @@ class UITest(object):
 def execute_dialog_through_command(self, command, printNames=False):
 with EventListener(self._xContext, "DialogExecute", 
printNames=printNames) as event:
 if not self._xUITest.executeDialog(command):
-raise DialogNotExecutedException(command)
+raise Exception("Dialog not executed for: " + command)
 while True:
 if event.executed:
 time.sleep(DEFAULT_SLEEP)
@@ -117,7 +112,7 @@ class UITest(object):
 def execute_modeless_dialog_through_command(self, command, 
printNames=False):
 with EventListener(self._xContext, "ModelessDialogVisible", printNames 
= printNames) as event:
 if not self._xUITest.executeCommand(command):
-raise DialogNotExecutedException(command)
+raise Exception("Dialog not executed for: " + command)
 time_ = 0
 while time_ < MAX_WAIT:
 if event.executed:
@@ -126,7 +121,7 @@ class UITest(object):
 time_ += DEFAULT_SLEEP
 time.sleep(DEFAULT_SLEEP)
 
-raise DialogNotExecutedException(command)
+raise Exception("Dialog not executed for: " + command)
 
 # Calls UITest.close_dialog_through_button at exit
 @contextmanager
@@ -147,7 +142,7 @@ class UITest(object):
 return
 time_ += DEFAULT_SLEEP
 time.sleep(DEFAULT_SLEEP)
-raise DialogNotExecutedException(action)
+raise Exception("Dialog not executed for: " + action)
 
 def _handle_crash_reporter(self):
 xCrashReportDlg = self._xUITest.getTopFocusWindow()
@@ -244,6 +239,6 @@ class UITest(object):
 return
 time_ += DEFAULT_SLEEP
 time.sleep(DEFAULT_SLEEP)
-raise DialogNotExecutedException("did not execute a dialog for a 
blocking action")
+raise Exception("Did not execute a dialog for a blocking action")
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143069] EDITING:

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143069

Ricardo  changed:

   What|Removed |Added

  Alias||Copy, Conditional, Format,
   ||result

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 143069] EDITING:

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143069

Ricardo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55956] FILESAVE: Circular Arrow broken after save as PPT/PPTX & reopening

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55956

--- Comment #20 from Regina Henschel  ---
Created attachment 173209
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173209=edit
w and h attributes manually set

Here the w and h attributes were manually set to the shape size (cx, cy) in
Hmm. You can see, that the size is correct now. But such will not be the
complete fix, because position has to be corrected too.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55956] FILESAVE: Circular Arrow broken after save as PPT/PPTX & reopening

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55956

--- Comment #19 from Regina Henschel  ---
Created attachment 173208
  --> https://bugs.documentfoundation.org/attachment.cgi?id=173208=edit
Other effected shapes

The document has the shapes in Blue and behind each one a screen shot in Red.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2021-06-25 Thread Michael Meeks (via logerrit)
 sd/source/filter/pdf/sdpdffilter.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 18264abc2d0cd56c1838e71045d5d11b3e0aa947
Author: Michael Meeks 
AuthorDate: Fri Jun 25 10:31:28 2021 +0100
Commit: Michael Meeks 
CommitDate: Fri Jun 25 18:23:30 2021 +0200

pdf import: handle out of memory / failure to duplicate page.

Avoid some reported segv's from null pages.

Change-Id: Ic336b36fb57dc70fff183cd5aa5f3f3ef4562674
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117872
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Gökay ŞATIR 

diff --git a/sd/source/filter/pdf/sdpdffilter.cxx 
b/sd/source/filter/pdf/sdpdffilter.cxx
index 6bc036f7fa21..290eea440e3c 100644
--- a/sd/source/filter/pdf/sdpdffilter.cxx
+++ b/sd/source/filter/pdf/sdpdffilter.cxx
@@ -71,12 +71,17 @@ bool SdPdfFilter::Import()
 
 // Create the page and insert the Graphic.
 SdPage* pPage = mrDocument.GetSdPage(nPageNumber, PageKind::Standard);
+if (!pPage) // failed to duplicate page, out of memory?
+return false;
 
 // Make the page size match the rendered image.
 pPage->SetSize(aSizeHMM);
 
 SdrGrafObj* pSdrGrafObj = new 
SdrGrafObj(pPage->getSdrModelFromSdrPage(), rGraphic,
  tools::Rectangle(Point(), 
aSizeHMM));
+if (!pSdrGrafObj) // out of memory
+return false;
+
 pPage->InsertObject(pSdrGrafObj);
 
 for (auto const& rPDFAnnotation : rPDFGraphicResult.maAnnotations)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests9/tdf124318.py|   18 
 sc/qa/uitest/chart/chartArea.py  |  140 ++---
 sc/qa/uitest/chart/chartAxes.py  |   42 -
 sc/qa/uitest/chart/chartDataLabels.py|  298 +--
 sc/qa/uitest/chart/chartGrid.py  |  172 ++
 sc/qa/uitest/chart/chartGrids.py |   71 +-
 sc/qa/uitest/chart/chartLegend.py|   11 
 sc/qa/uitest/chart/chartTitles.py|   90 +--
 sc/qa/uitest/chart/chartWall.py  |  166 ++
 sc/qa/uitest/chart/chartXAxis.py |  354 ++---
 sc/qa/uitest/chart/chartYAxis.py |  358 ++---
 sc/qa/uitest/chart/edit_chart.py |9 
 sc/qa/uitest/chart/formatDataSeries.py   |  134 ++---
 sc/qa/uitest/chart/tdf122398.py  |   92 +--
 sc/qa/uitest/chart/tdf123013.py  |   34 -
 sc/qa/uitest/chart/tdf123231.py  |   57 --
 sc/qa/uitest/chart/tdf123520.py  |   70 +-
 sc/qa/uitest/chart/tdf124111.py  |   58 --
 sc/qa/uitest/chart/tdf129587.py  |   31 -
 sc/qa/uitest/chart/tdf133630.py  |   28 -
 sc/qa/uitest/chart/tdf134059.py  |   19 
 sc/qa/uitest/chart/tdf142851.py  |   10 
 sc/qa/uitest/chart/tdf93506_trendline.py |  706 ---
 sc/qa/uitest/chart/tdf96432.py   |   36 -
 sc/qa/uitest/chart/tdf99069.py   |   27 -
 sc/qa/uitest/conditional_format/tdf100793.py |   52 -
 sc/qa/uitest/conditional_format/tdf105544.py |7 
 sc/qa/uitest/conditional_format/tdf96453.py  |7 
 sw/qa/uitest/chart/tdf138556.py  |   22 
 sw/qa/uitest/writer_tests4/tdf134439.py  |   19 
 sw/qa/uitest/writer_tests4/tdf135636.py  |   13 
 sw/qa/uitest/writer_tests6/tdf131041.py  |   13 
 uitest/uitest/test.py|   10 
 uitest/uitest/uihelper/guarded.py|   10 
 34 files changed, 1455 insertions(+), 1729 deletions(-)

New commits:
commit 8a2d7c797958680bcf133fef44abcf2efd1007d1
Author: Xisco Fauli 
AuthorDate: Wed Jun 23 12:14:24 2021 +0200
Commit: Xisco Fauli 
CommitDate: Fri Jun 25 18:21:22 2021 +0200

uitest: guard execute_dialog_through_action

Mostly done with a script
for motivation, see 89aaa17a0a4413f07da2bc5084b0164f15dc01ac
< UITest: introduce guarded context managers >

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

diff --git a/sc/qa/uitest/calc_tests9/tdf124318.py 
b/sc/qa/uitest/calc_tests9/tdf124318.py
index 8aad127c608e..80a1d004b941 100644
--- a/sc/qa/uitest/calc_tests9/tdf124318.py
+++ b/sc/qa/uitest/calc_tests9/tdf124318.py
@@ -19,15 +19,13 @@ class tdf124318(UITestCase):
 
 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B4"}))
 
-self.ui_test.execute_dialog_through_action(gridwin, "TYPE", 
mkPropertyValues({"KEYCODE": "CTRL+k"}))
-xDialog = self.xUITest.getTopFocusWindow()
-
-# Without the fix in place, this test would have failed with
-# AssertionError: 'mobile/identification/authentification' !=
-# 
'mobile/identification/authentification%00塹\uf481ᴻ䡿ⲯ嶂藄挧%00%00ꮥ%00'
-self.assertEqual("mobile/identification/authentification",
-
get_state_as_dict(xDialog.getChild("target"))['Text'].split(".fr/")[1])
-self.assertEqual("mobile/identification/authentification",
-
get_state_as_dict(xDialog.getChild("indication"))['Text'].split(".fr/")[1])
+with self.ui_test.execute_dialog_through_action(gridwin, "TYPE", 
mkPropertyValues({"KEYCODE": "CTRL+k"})) as xDialog:
+# Without the fix in place, this test would have failed with
+# AssertionError: 'mobile/identification/authentification' !=
+# 
'mobile/identification/authentification%00塹\uf481ᴻ䡿ⲯ嶂藄挧%00%00ꮥ%00'
+self.assertEqual("mobile/identification/authentification",
+
get_state_as_dict(xDialog.getChild("target"))['Text'].split(".fr/")[1])
+self.assertEqual("mobile/identification/authentification",
+
get_state_as_dict(xDialog.getChild("indication"))['Text'].split(".fr/")[1])
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sc/qa/uitest/chart/chartArea.py b/sc/qa/uitest/chart/chartArea.py
index d7a744749188..05aac7a5bf8e 100644
--- a/sc/qa/uitest/chart/chartArea.py
+++ b/sc/qa/uitest/chart/chartArea.py
@@ -34,20 +34,17 @@ class chartArea(UITestCase):
 xChartMainTop = self.xUITest.getTopFocusWindow()
 xChartMain = xChartMainTop.getChild("chart_window")
 xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
-self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", 
mkPropertyValues({"COMMAND": 

[Libreoffice-bugs] [Bug 55956] FILESAVE: Circular Arrow broken after save as PPT/PPTX & reopening

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55956

--- Comment #18 from Regina Henschel  ---
The reason is, that the w and h attributes of the path element are set to the
bound rectangle of the path, but they need to be set to the shape size in Hmm.

The 'circular arrow' shape has no compatible ooxml preset shape, so the error
cannot be fixed with the new introduced DMLPresetShapeExporter.

The ooxml preset shape 'circularArrow' is not compatible, because its arrow
head has a different direction in its base. For a full fix including handles,
it would be necessary to generate an individual custGeom element. That is not
trivial, because our circular Arrow uses the enhanced path commands B and W,
whereas PowerPoint needs the command G (arcTo).

PowerPoint 365 reads our circular arrow from an .odp document and converts it
to a suitable shape including handles for pptx. That is very likely done by a
general algorithm, because the resulting shape has 247 equations (gd elements).
Astonishing, opening a .ppt document with this shape in PowerPoint looses the
handles.

But even exporting our shape to such ooxml custGeom, would not really help
here, because we would not be able to detect that it is our circular arrow on
import. Thus we will convert it to a general path and that has the same
problem, that w and h is wrongly set.

Other shapes with the same error are 'up-right-down-arrow' and
'up-right-arrow-callout' and Bezier-curves.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'feature/cib_contract57c' - configure.ac

2021-06-25 Thread Michael Stahl (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8637abd96ab04d6efe57ce7ee9a2e9e737a6844f
Author: Michael Stahl 
AuthorDate: Fri Jun 25 17:31:53 2021 +0200
Commit: Michael Stahl 
CommitDate: Fri Jun 25 17:31:53 2021 +0200

Bump version to 6.1.7.1

Change-Id: Ie6f6bd9631d18e0938b16c7116a85ee4c94bef33

diff --git a/configure.ac b/configure.ac
index 6d2cb1c0857f..ebdf87ec6ebe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.1.7.0.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.1.7.1.0+],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Stephan Bergmann (via logerrit)
 vcl/source/uitest/uno/uiobject_uno.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 49cf5e5303d064a66e4ae97223df92238d556dd1
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 14:06:26 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 17:29:48 2021 +0200

Fix misuse of volatile to avoid a data race

...introduced with 2601708e3c00092693af6dd04561125cafb21d8e "cleanup mutex 
and
signalling in ExecuteWrapper"

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

diff --git a/vcl/source/uitest/uno/uiobject_uno.cxx 
b/vcl/source/uitest/uno/uiobject_uno.cxx
index ed208fd65d7d..14a50f08c7b7 100644
--- a/vcl/source/uitest/uno/uiobject_uno.cxx
+++ b/vcl/source/uitest/uno/uiobject_uno.cxx
@@ -7,6 +7,9 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
+
+#include 
 #include 
 #include "uiobject_uno.hxx"
 #include 
@@ -56,7 +59,7 @@ class ExecuteWrapper
 {
 std::function mFunc;
 Link mHandler;
-volatile bool mbSignal;
+std::atomic mbSignal;
 
 public:
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-25 Thread Stephan Bergmann (via logerrit)
 extensions/source/ole/oleobjw.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 5caba6ebf48e1ffe3f281055ae2aff5234bd594e
Author: Stephan Bergmann 
AuthorDate: Fri Jun 25 10:05:52 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Fri Jun 25 17:16:40 2021 +0200

Add back computation of excepinfo.bstrDescription length

...which had been dropped with eebd84b337506c8fff151493f9b51bd127dbc89f
"loplugin:stringview (clang-cl)".  But as discussed in the comments at


"loplugin:stringview (clang-cl)", that dropped support for embedded NULs 
("not
that this should matter here", though).

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

diff --git a/extensions/source/ole/oleobjw.cxx 
b/extensions/source/ole/oleobjw.cxx
index b9123a031ee8..0cc08f94d535 100644
--- a/extensions/source/ole/oleobjw.cxx
+++ b/extensions/source/ole/oleobjw.cxx
@@ -26,6 +26,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1428,7 +1429,8 @@ uno::Any SAL_CALL IUnknownWrapper::directInvoke( const 
OUString& aName, const un
 break;
 case DISP_E_EXCEPTION:
 message = OUString::Concat("[automation bridge]: ")
-+ o3tl::toU(excepinfo.bstrDescription);
++ 
std::u16string_view(o3tl::toU(excepinfo.bstrDescription),
+::SysStringLen(excepinfo.bstrDescription));
 throw InvocationTargetException(message, 
Reference(), Any());
 break;
 case DISP_E_MEMBERNOTFOUND:
@@ -2049,7 +2051,8 @@ Any  IUnknownWrapper::invokeWithDispIdComTlb(FuncDesc& 
aFuncDesc,
 break;
 case DISP_E_EXCEPTION:
 message = OUString::Concat("[automation bridge]: ")
-+ o3tl::toU(excepinfo.bstrDescription);
++ std::u16string_view(o3tl::toU(excepinfo.bstrDescription),
+::SysStringLen(excepinfo.bstrDescription));
 
 throw InvocationTargetException(message, 
Reference(), Any());
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143055] Snap-to-grid button should be on more toolbars, optionally or by default

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143055

--- Comment #4 from Eyal Rozenberg  ---
(In reply to V Stuart Foote from comment #3)
> (In reply to Eyal Rozenberg from comment #2)
> 
> > For Impress and Write... 
> 
> Imress and Draw?

Impress and Draw.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143055] Snap-to-grid button should be on more toolbars, optionally or by default

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143055

--- Comment #4 from Eyal Rozenberg  ---
(In reply to V Stuart Foote from comment #3)
> (In reply to Eyal Rozenberg from comment #2)
> 
> > For Impress and Write... 
> 
> Imress and Draw?

Impress and Draw.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: Branch 'feature/cib_contract57c' - sw/source

2021-06-25 Thread Michael Stahl (via logerrit)
 sw/source/core/layout/wsfrm.cxx |   17 +
 1 file changed, 13 insertions(+), 4 deletions(-)

New commits:
commit d5c9e1b939d76748f30002e73982475856b68a16
Author: Michael Stahl 
AuthorDate: Fri Jun 25 10:25:59 2021 +0200
Commit: Michael Stahl 
CommitDate: Fri Jun 25 16:50:11 2021 +0200

sw: layout: fix table split loop caused by RemoveFollowFlowLinePending

In no_view.odt, the table 1340 does RemoveFollowFlowLine(), then splits
again, and by the time Split() returns, its flag
m_bRemoveFollowFlowLinePending is set and so in the next
SwTabFrame::MakeAll() it will do the same thing again, until eventually
it hits
layact.cxx:544: LoopControl_1 in SwLayAction::InternalAction

The flag is set during lcl_RecalcSplitLine(), in SwContentFrame::Cut(),
which operates under the assumption that there are no other cells in the
follow flow line that may contain content frames.

This only happens if "Verdana" and "Arial" fonts are available and not
substituted with "DejaVu Sans" etc.

(regression from c4af8b0f106f31b6e79a145bc4ab83bb6a55c808)

Unfortunately this uncovers another pagination bug in testTdf88496
which was hidden by this flag being set from text frames that shouldn't
exist anyway.

Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117851
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit a0cd270a99f43049fc099ddd463e57aa243d5b0e)

Change-Id: I3cc82c13bfc06960b827aefc64f5b5b12520955a

diff --git a/sw/source/core/layout/wsfrm.cxx b/sw/source/core/layout/wsfrm.cxx
index cdce7870a536..aa16548c1851 100644
--- a/sw/source/core/layout/wsfrm.cxx
+++ b/sw/source/core/layout/wsfrm.cxx
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1144,6 +1145,7 @@ void SwContentFrame::Cut()
 }
 }
 
+SwTabFrame* pMasterTab(nullptr);
 if( nullptr != (pFrame = GetIndNext()) )
 {
 // The old follow may have calculated a gap to the predecessor which
@@ -1207,11 +1209,9 @@ void SwContentFrame::Cut()
 if ( IsInTab() )
 {
 SwTabFrame* pThisTab = FindTabFrame();
-SwTabFrame* pMasterTab = pThisTab && pThisTab->IsFollow() ? 
pThisTab->FindMaster() : nullptr;
-if ( pMasterTab )
+if (pThisTab && pThisTab->IsFollow())
 {
-pMasterTab->InvalidatePos_();
-pMasterTab->SetRemoveFollowFlowLinePending( true );
+pMasterTab = pThisTab->FindMaster();
 }
 }
 }
@@ -1219,8 +1219,17 @@ void SwContentFrame::Cut()
 //Remove first, then shrink the upper.
 SwLayoutFrame *pUp = GetUpper();
 RemoveFromLayout();
+assert(pUp || !pMasterTab);
 if ( pUp )
 {
+if (pMasterTab
+&& 
!pMasterTab->GetFollow()->GetFirstNonHeadlineRow()->ContainsContent())
+{   // only do this if there's no content in other cells of the row!
+pMasterTab->InvalidatePos_();
+pMasterTab->SetRemoveFollowFlowLinePending(true);
+}
+
+
 SwSectionFrame *pSct = nullptr;
 if ( !pUp->Lower() &&
  ( ( pUp->IsFootnoteFrame() && !pUp->IsColLocked() ) ||
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 143055] Snap-to-grid button should be on more toolbars, optionally or by default

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143055

--- Comment #3 from V Stuart Foote  ---
(In reply to Eyal Rozenberg from comment #2)

> For Impress and Write... 

Imress and Draw?

> Also, can you confirm the issue?

Nope. It is open for UX-Advise, only goes to => WF, or to => NEW should there
be concensus to proceed and how.  For now UNCONFIRMED is correct.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 143055] Snap-to-grid button should be on more toolbars, optionally or by default

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143055

--- Comment #3 from V Stuart Foote  ---
(In reply to Eyal Rozenberg from comment #2)

> For Impress and Write... 

Imress and Draw?

> Also, can you confirm the issue?

Nope. It is open for UX-Advise, only goes to => WF, or to => NEW should there
be concensus to proceed and how.  For now UNCONFIRMED is correct.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 128881] Conditional Formats sometimes evaluated wrongly when using Named Ranges

2021-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128881

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #6 from m.a.riosv  ---
Maybe I'm missing something, but third condition is:
STYLE(IF(Shading="";"WhiteOnMagenta";VLOOKUP(Shading;StyleTbl;2;0)))
Delete A2 -> Shading="", so WhiteOnMagenta style is applied.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   >