[Libreoffice-bugs] [Bug 65266] FILEOPEN CJK: DOCX import text with Enclosed Characters not rendered

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65266

--- Comment #14 from Po-Yen Huang  ---
Reproducible with LibreOffice 7.1.2 on Arch 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: compilerplugins/clang

2021-04-07 Thread Stephan Bergmann (via logerrit)
 compilerplugins/clang/compat.hxx   |8 
 compilerplugins/clang/unnecessaryparen.cxx |   14 +-
 2 files changed, 21 insertions(+), 1 deletion(-)

New commits:
commit 673297dea98892abca3e4421a2e40d8940d7220b
Author: Stephan Bergmann 
AuthorDate: Wed Apr 7 16:37:50 2021 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Apr 8 07:31:47 2021 +0200

Adapt loplugin:unnecessaryparen to CXXRewrittenBinaryOperator

...as debuted in Clang with


"[c++20] Add CXXRewrittenBinaryOperator to represent a comparison operator 
that
is rewritten as a call to multiple other operators" towards Clang 10, and 
would
have caused a false

> xmloff/source/style/XMLRtlGutterPropertyHandler.cxx:40:16: error: 
parentheses immediately inside assignment [loplugin:unnecessaryparen]
> rValue <<= (it != aRtlModes.end());
>^~~

with --with-latest-c++ and an appropriate libstdc++.

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

diff --git a/compilerplugins/clang/compat.hxx b/compilerplugins/clang/compat.hxx
index ae7557b71956..897d9fe855c0 100644
--- a/compilerplugins/clang/compat.hxx
+++ b/compilerplugins/clang/compat.hxx
@@ -321,6 +321,14 @@ inline bool isComparisonOp(clang::CXXOperatorCallExpr 
const * callExpr)
|| op == OO_EqualEqual || op == OO_ExclaimEqual;
 }
 
+inline bool isPtrMemOp(clang::BinaryOperatorKind op) {
+#if CLANG_VERSION >= 8
+return clang::BinaryOperator::isPtrMemOp(op);
+#else
+return op == clang::BO_PtrMemD || op == clang::BO_PtrMemI;
+#endif
+}
+
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/compilerplugins/clang/unnecessaryparen.cxx 
b/compilerplugins/clang/unnecessaryparen.cxx
index e93dfa64b5ec..d39dd074eb43 100644
--- a/compilerplugins/clang/unnecessaryparen.cxx
+++ b/compilerplugins/clang/unnecessaryparen.cxx
@@ -68,6 +68,11 @@ Expr const * ignoreAllImplicit(Expr const * expr) {
 return expr;
 }
 
+bool isParenWorthyOpcode(BinaryOperatorKind op) {
+return !(BinaryOperator::isMultiplicativeOp(op) || 
BinaryOperator::isAdditiveOp(op)
+ || compat::isPtrMemOp(op));
+}
+
 class UnnecessaryParen:
 public loplugin::FilteringRewritePlugin
 {
@@ -430,9 +435,16 @@ bool UnnecessaryParen::VisitCXXOperatorCallExpr(const 
CXXOperatorCallExpr* callE
 // Sometimes parentheses make the RHS of an assignment easier to read by
 // visually disambiguating the = from a call to ==
 auto sub = parenExpr->getSubExpr();
+#if CLANG_VERSION >= 10
+if (auto const e = dyn_cast(sub)) {
+if (isParenWorthyOpcode(e->getDecomposedForm().Opcode)) {
+return true;
+}
+}
+#endif
 if (auto subBinOp = dyn_cast(sub))
 {
-if (!(subBinOp->isMultiplicativeOp() || subBinOp->isAdditiveOp() || 
subBinOp->isPtrMemOp()))
+if (isParenWorthyOpcode(subBinOp->getOpcode()))
 return true;
 }
 if (auto subOperatorCall = dyn_cast(sub))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138942] In the Navigator, change the name of "Headings" tree to "Outline" tree

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138942

--- Comment #12 from Jim Raykowski  ---
I don't see any code issues with changing "Heading(s)" to "Outline(s)".

sw/inc/strings.hrc
STR_CONTENT_TYPE_OUTLINE
STR_CONTENT_TYPE_SINGLE_OUTLINE

-- 
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 141514] Fileopen of RT XLSX with autofilter crashes 64-bit LO from 7.2+ (only Windows 7? )

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141514

Timur  changed:

   What|Removed |Added

 Resolution|INSUFFICIENTDATA|---
 Status|RESOLVED|UNCONFIRMED
Summary|Fileopen of RT XLSX with|Fileopen of RT XLSX with
   |autofilter crashes 64-bit   |autofilter crashes 64-bit
   |LO from 7.2+ (only some |LO from 7.2+ (only Windows
   |Windows computers)  |7? )

--- Comment #17 from Timur  ---
Could be that it's Windows 7 only.

-- 
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 141514] Fileopen of RT XLSX with autofilter crashes 64-bit LO from 7.2+ (only some Windows computers)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141514

Timur  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|UNCONFIRMED |RESOLVED

--- Comment #16 from Timur  ---
Thanks to all. 
With so many no repro, I'll close. 
Obviously there's something specific

-- 
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 132042] TEMPLATE MANAGER: Errors when deleting a category in templates

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132042

--- Comment #7 from BogdanB  ---
I don't know how to test a patch before being included in master.

-- 
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 140147] position of cursor not saved

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140147

--- Comment #16 from BogdanB  ---
7.1.2 was released last week. Please install and try to rerpoduce the bug.

See here:
https://www.libreoffice.org/download/download/

-- 
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 75440] FILEOPEN DOC file: text in circular path has too big character spacing

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75440

--- Comment #13 from Justin L  ---
repro 7.2+

-- 
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 141511] CRASH: creating new document while navigator is displayed

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141511

Jim Raykowski  changed:

   What|Removed |Added

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

--- Comment #4 from Jim Raykowski  ---
@Xisco, thanks for the bibisect.
@Julien, thanks for the location of the null pointer use crash.

-- 
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 141511] CRASH: creating new document while navigator is displayed

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141511

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

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

tdf#141511 fix null pointer use crash

It will be available in 7.2.0.

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

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

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


[Libreoffice-bugs] [Bug 141511] CRASH: creating new document while navigator is displayed

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141511

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.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: sd/source

2021-04-07 Thread Jim Raykowski (via logerrit)
 sd/source/ui/dlg/navigatr.cxx |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit f458b30b15526e95a6d25820450241fd6234171c
Author: Jim Raykowski 
AuthorDate: Wed Apr 7 18:49:56 2021 -0800
Commit: Jim Raykowski 
CommitDate: Thu Apr 8 06:14:03 2021 +0200

tdf#141511 fix null pointer use crash

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

diff --git a/sd/source/ui/dlg/navigatr.cxx b/sd/source/ui/dlg/navigatr.cxx
index c0e2ec79992e..c8d23c068491 100644
--- a/sd/source/ui/dlg/navigatr.cxx
+++ b/sd/source/ui/dlg/navigatr.cxx
@@ -639,10 +639,13 @@ void SdNavigatorControllerItem::StateChanged( sal_uInt16 
nSId,
 {
 const auto pDrawViewShell =
 static_cast<::sd::DrawViewShell 
*>(pDrawDocShell->GetViewShell());
-bool bEditModePage(pDrawViewShell->GetEditMode() == EditMode::Page);
-pNavigatorWin->mxToolbox->set_sensitive(bEditModePage);
-pNavigatorWin->mxLbDocs->set_sensitive(bEditModePage);
-pNavigatorWin->mxTlbObjects->set_sensitive(bEditModePage);
+if (pDrawViewShell)
+{
+bool bEditModePage(pDrawViewShell->GetEditMode() == 
EditMode::Page);
+pNavigatorWin->mxToolbox->set_sensitive(bEditModePage);
+pNavigatorWin->mxLbDocs->set_sensitive(bEditModePage);
+pNavigatorWin->mxTlbObjects->set_sensitive(bEditModePage);
+}
 }
 
 const SfxUInt32Item& rStateItem = dynamic_cast(*pItem);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108769] [META] DOCX (OOXML) character-related issues

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108769

Justin L  changed:

   What|Removed |Added

 Depends on|115291  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115291
[Bug 115291] List incompatible features when saving to alien formats in detail
(see c5)
-- 
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 112681] [META] DOC (binary) character-related issues

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112681

Justin L  changed:

   What|Removed |Added

 Depends on|115291  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115291
[Bug 115291] List incompatible features when saving to alien formats in detail
(see c5)
-- 
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 115291] List incompatible features when saving to alien formats in detail (see c5)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115291

Justin L  changed:

   What|Removed |Added

 Blocks|108769, 112681  |
 OS|Windows (All)   |All


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108769
[Bug 108769] [META] DOCX (OOXML) character-related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=112681
[Bug 112681] [META] DOC (binary) character-related issues
-- 
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 141237] Security restrictions not applied while exporting to PDF document

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141237

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 141231] Prefix symbol YES/NO not saved after closing the form in Base

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141231

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 141224] Option window to change the user interface is blank

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141224

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 141190] Writer: wrapped object anchor position is invalid

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141190

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 105582] [META] Function wizard dialog bugs and enhancements

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105582
Bug 105582 depends on bug 33387, which changed state.

Bug 33387 Summary: Last Used category in Function Wizard can not contain 
functions from Add-In
https://bugs.documentfoundation.org/show_bug.cgi?id=33387

   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 33387] Last Used category in Function Wizard can not contain functions from Add-In

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33387

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 33387] Last Used category in Function Wizard can not contain functions from Add-In

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33387

--- Comment #9 from QA Administrators  ---
Dear scren2001-pub,

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 109530] [META] File opening issues

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109530
Bug 109530 depends on bug 32228, which changed state.

Bug 32228 Summary: Encoding problem when reading some XLS files produced by 
Microsoft Excel 2008 for Mac
https://bugs.documentfoundation.org/show_bug.cgi?id=32228

   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 109072] [META] XLS (binary) format bug tracker

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109072
Bug 109072 depends on bug 32228, which changed state.

Bug 32228 Summary: Encoding problem when reading some XLS files produced by 
Microsoft Excel 2008 for Mac
https://bugs.documentfoundation.org/show_bug.cgi?id=32228

   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 32228] Encoding problem when reading some XLS files produced by Microsoft Excel 2008 for Mac

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32228

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 32228] Encoding problem when reading some XLS files produced by Microsoft Excel 2008 for Mac

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=32228

--- Comment #16 from QA Administrators  ---
Dear Simon Lipp,

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 136571] Crash in: s_stub_releaseInterface

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136571

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 136571] Crash in: s_stub_releaseInterface

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136571

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

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 136444] When opening a new CALC worksheet, the grid lines are not visible.

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136444

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 136444] When opening a new CALC worksheet, the grid lines are not visible.

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136444

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

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 136322] black

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136322

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 136322] black

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136322

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

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 136031] Can not rotate an object by a negative number of degrees

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136031

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 136031] Can not rotate an object by a negative number of degrees

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136031

--- Comment #3 from QA Administrators  ---
Dear Gerben Van Duyl,

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 135831] Crashed when editing master document

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135831

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 135831] Crashed when editing master document

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135831

--- Comment #3 from QA Administrators  ---
Dear Luke Kendall,

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 137374] FILEEXPORT - Unable to save file as XML

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137374

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

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 134671] FILEOPEN DOCX : If you use pinyin guide and set the offset > 0, the Pinyin display on the text is incomplete

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134671

--- Comment #5 from QA Administrators  ---
Dear NSO LibreOffice Team,

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 134425] UPDATING STYLES from Template -- aka the document's RELATION (link and unset link) to the template's styles and the template

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134425

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 133875] LibreOffice Calc freezes when trying to sort (Wayland)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133875

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

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 121929] When doing something on another tab then going to the "General" tab the file name is selected on Properties window

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121929

--- Comment #8 from QA Administrators  ---
Dear Liad Skiva,

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 95052] vertical-align:top ignored in HTML documents

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95052

--- Comment #4 from QA Administrators  ---
Dear Fran Ontanaya,

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 88473] EDITING: Selection in Mode ‘Extended Selection’ Can’t be Corrected

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88473

--- Comment #11 from QA Administrators  ---
Dear Harald Koester,

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 50572] EDITING: bug clipboard bug: after copying thousands of lines, and closing LO, process keeps running at 100% CPU

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50572

--- Comment #19 from QA Administrators  ---
Dear andrey,

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 124614] FILESAVE: Calc may retain illegitimate space characters between function names and parentheses, violating standard requirements

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124614

--- Comment #5 from QA Administrators  ---
Dear Victor V. Terber,

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 122184] Spellcheck highlight updates only after entering space or new line after specific word

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122184

--- Comment #5 from QA Administrators  ---
Dear larionenkorus...@gmail.com,

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 120464] Creating a new Heading style from standard Heading N style does not inherit outline level

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120464

--- Comment #3 from QA Administrators  ---
Dear Mike Kaganski,

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 118363] Smiley shape with background image displayed as polygon in slideshow when hardware acceleration is disabled

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118363

--- Comment #14 from QA Administrators  ---
Dear Jean-Sebastien Bevilacqua,

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 116663] Ungrouping collapsed rows leaves them hidden

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116663

--- Comment #7 from QA Administrators  ---
Dear Aron Budea,

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 115377] Export to EPUB should get rid of spans being sole child of their p parent

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115377

--- Comment #4 from QA Administrators  ---
Dear Daniel Glazman,

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 101243] Clicking "Slide Master" button second time does not return view mode to "Normal"

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101243

--- Comment #7 from QA Administrators  ---
Dear iremsendur,

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 108591] xdg-open path is hardcoded

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108591

--- Comment #9 from David H. Gutteridge  ---
I can offer the perspective of someone involved with downstream packaging (for
NetBSD and others). One of our users hit this issue on NetBSD. BSDs as a rule
don't install most third-party software to /usr/bin, they isolate it elsewhere
by policy (with NetBSD, the default being /usr/pkg/bin, with most other BSDs,
it's /usr/local/bin). So patches like these are welcomed.

There is of course a risk with simply looking for xdg-open. Sometimes, what we
do in this case is substitute our own (user-configurable at build time) paths
over whatever the upstream software expects. I don't know if you want to deal
with that additional complexity at your end. You're making a reasonable effort
to find something appropriate already.

I'd be inclined to prefer xdg-open over kde-open, as xdg-open is intended to be
a standard/cross-desktop tool, and so I'd expect either it would be more
commonly available by default (not with us, but with mainstream Linux distros),
and probably a less complex external dependency. (That said, I don't know if
the KDE version offers some advantage I don't know about.)

Thanks,

Dave

-- 
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 141554] New: Enhancement Request:

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141554

Bug ID: 141554
   Summary: Enhancement Request:
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michaeltownl...@gmail.com

Description:
I know you guys probably get this all the time but the one thing that would
complete my move to LibreOffice would be a notetaking application. I am not a
good enough programmer at the moment to build such off of your application so I
guess what I am asking you is why not integrate a another opensource
application into your project such as CherryTree. I really would love to see
your application have a notetaking application 

Actual Results:
No Notetaking Application Just an enhancement request.

Expected Results:
Notetaking application.


Reproducible: Always


User Profile Reset: No



Additional Info:
Just an Enhancement Request.

-- 
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 141375] equation change at the opening of the editor

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141375

--- Comment #4 from Bernard Ruchet  ---
No, I can't systematically reproduce a bugged formula. I had this bug more than
once, and always with documents being mainly formulas. The way I edit these
documents has a scheme: I cut and paste a previous formula then I modify it.
When expanding formula, they may become very big... And it’s generally when the
formula are then reduced that the bug appears, and sadly “undo” isn’t working
anymore on these formulas, so there is no easy way to reproduce the bug...
Do you know a way to save and replay every editing in a document? If yes, I’ll
try this method next time I’ll have to write a big “equation document”.

-- 
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: Changes to 'private/jmux/meson-gsoc-2021'

2021-04-07 Thread Jan-Marek Glogowski (via logerrit)
New branch 'private/jmux/meson-gsoc-2021' available with the following commits:
commit 9f6e90ef41019f17f65fef499803173141873316
Author: Jan-Marek Glogowski 
Date:   Thu Apr 8 04:33:35 2021 +0200

Update meson branch to master, Ubuntu 20.04 based

This rebases my private/jmux/meson branch on Jussis github master
branch and then rebases the whole stack on current master.

It was a bit tedious work with minor addoptions for mdds and orcus
handled in an extra patch. I don't know what exactly is now
supposed to work and what not.

Jussis last commit "Generate the locale registry (it is still
broken, though)." doesn't help with that. And it's at least a
nice summary of all the copied codegen bit, which needs some
conversation.

Should be a better development starting point, then the year old
branch.

commit 58e299f7c26fd0e5094fb68a30349c5962c003ef
Author: Jan-Marek Glogowski 
Date:   Thu Apr 8 03:04:13 2021 +0200

Downgrade to liborcus 0.15 and mdds 0.15

... so LO can build with stock Ubuntu 20.04.

Change-Id: I7c2647ba932f4c6d8f540fca1a531d498c5c3675

commit faccfb6e7d692d5b562e5687034350b1873b426a
Author: Jan-Marek Glogowski 
Date:   Mon Mar 29 18:59:38 2021 +0200

fix missing libnumbertext config

Change-Id: I248fc476349ba0a03627991b883e1a9e0354988d

commit e3db843328d13f622a77600bdce4670fe3d25464
Author: Jan-Marek Glogowski 
Date:   Tue Mar 17 15:15:48 2020 +

Fixup

Change-Id: Ib3f16476efd9898c0404f8821c26e8e61946b7bc

commit 349a2286736600678b9f3dbb02469453eaf023d5
Author: Jan-Marek Glogowski 
Date:   Sat Mar 7 09:18:06 2020 +0100

Add some more hidden visibiity flags

Change-Id: I0af0619c2730c0ca6e91fb59b4387372c6ff77a3

commit 3e0e3e995f768754968c99c0e1b7fe82cbffddb4
Author: Jan-Marek Glogowski 
Date:   Sat Mar 7 09:07:18 2020 +0100

fix orcus

Change-Id: I7f9266f6ba6730f318792749c3a04b93fee7e6b0

commit c07b4d1674ca92303849f3871326d34835f034ce
Author: Jan-Marek Glogowski 
Date:   Sat Mar 7 09:03:44 2020 +0100

fixup kf

Change-Id: Ia4d14c39e01502d8f03cf30985cf3065bdc70973

commit f6d17e15ee8d440922b9723ff2ad851849d0cd2f
Author: Jan-Marek Glogowski 
Date:   Sat Mar 7 09:03:33 2020 +0100

fixup qt

Change-Id: Ia864aa9a3c6920d583ab37ce6fb963c7de9a87b3

commit 919823140627ab4c585825792d167a56230d4d9c
Author: Jan-Marek Glogowski 
Date:   Sun Feb 23 00:04:26 2020 +

Build gen / x11 VCL backend without skia

Change-Id: Ia2bc07cca816bbb03b636660405d375af0ac0d35

commit 0fd942f26dd869391466c3c1476b0ea0be8cdf50
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 23:22:38 2020 +

Use Ubuntu focal LO Java build dependencies

This is the Java version installed by:
apt-get build-dep libreoffice

Also drop the duplicate cairo dependency variable.

Change-Id: Id34defc63700825f2925e6284f1ccfdad05b85bb

commit c5a314bca6ab1ec198c77f45fa11ff8ea39ff6d7
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 23:21:35 2020 +

Build needs mdds >= 0.15

Change-Id: Ib9d820d7bb4d55af3ca037e79cc6139f428e5399

commit 3fabfebab1217f3ee3b2ec12aaada302bbb4567b
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 23:18:38 2020 +

Build needs Orcus >= 0.15

Change-Id: I70df961a08e2db533a81cca5d214e1300a13eb2e

commit 576318bdfd1fc432f26a4dcc520290b6a196449c
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 23:10:22 2020 +

Fix missing Calc officecfg headers

Change-Id: Ief62466eeeb7b4224cf4c1958df55b3a730aa2d4

commit 1250daaf1149ee0980b34faf4da72c668c225e21
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 23:08:19 2020 +

Build kf55 VCL backend

Change-Id: Ie1ba0024258dc9cbbb941527cd4374c2e2b5b24e

commit 0f5fb6ac42699c035bfe655efef76d42660eb0b1
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 23:08:03 2020 +

Build qt5 VCL backend

Change-Id: Id29470e1c31e34b772832ce40bd390e708122c8e

commit 93e196ebe8e2dabc2f511c571a84327bd1149d6c
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 22:38:26 2020 +

Add (manual) instdir support

Change-Id: Ie9f22abf0fb6432573b7524fdebb48548f4bb04c

commit 9f16a52c7e50b66f2bed1fff5b483f3318c5a993
Author: Jan-Marek Glogowski 
Date:   Sat Feb 22 22:45:16 2020 +

Break some long lines and sort dependencies

... so it'll be easier to track changes in the future.

Change-Id: I42eda79d585b6763953d531601e37a37848c5ef8

commit 709a55c271ebff1167776455d372306581da5821
Author: Jussi Pakkanen 
Date:   Fri Mar 27 22:58:15 2020 +0200

Generate the locale registry (it is still broken, though).

Change-Id: I6e84b7a240a33f01260cb297516951b2406acb40

commit 16d8d6ae21cb58120e0aa2bf0bc838bd5fc8c9a0
Author: Jussi Pakkanen 
Date:   Wed Mar 25 01:52:08 2020 +0200

Compile some more and put proper load paths in component xml files.

Change-Id: I2565d54aa2c5258d454200acb4adbc935c0193ae

commit 

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

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

Bug 141276 Summary: Libreoffice ignore keypress when hovering outline arrow 
button
https://bugs.documentfoundation.org/show_bug.cgi?id=141276

   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 141553] Upload David CLM to the latest release

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141553

Volga  changed:

   What|Removed |Added

Summary|David to the latest release |Upload David CLM to the
   ||latest release

-- 
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 141553] New: David to the latest release

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141553

Bug ID: 141553
   Summary: David to the latest release
   Product: LibreOffice
   Version: 7.1.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shanshandehongx...@outlook.com

Description:
Currently the latest version of the Culmus fonts is 0.133, however David CLM,
one of Culmus fonts including in LibreOffice is relatively old. This can be
seen with BabelMap (https://babelstone.co.uk/Software/BabelMap.html) sfter
installing LibreOffice.

Steps to Reproduce:
1. Open BabelMap
2. Click Fonts -> Overview of All Fonts...

Actual Results:
In Overview of Fonts dialog, David CLM doesn’t updated to 0.133.

Expected Results:
David CLM should updated to 0.133.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.2.2 (x64) / LibreOffice Community
Build ID: 8a45595d069ef5570103caea1b71cc9d82b2aae4
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN

-- 
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 141526] File->Wizards->Document Converter... does nothing

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141526

Matt K  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from Matt K  ---
(In reply to Xisco Faulí from comment #1)
> > Additional Info:
> > I have "Controlled folder access" turned on in Windows OS security settings
> > and get notifications about blocked folder access for soffice.bin.
> 
> Is the dialog displayed if you disable it ?

Yes it works if I disable it.  I would expect to get an error message though
when it is enabled.

-- 
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 141277] blank menus and other UI issues, recent master builds nVidia GPU

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141277

--- Comment #24 from Matt K  ---
(In reply to Luboš Luňák from comment #23)
> (In reply to Matt K from comment #22)
> > The first change where the bug disappears is:
> > 
> > commit e8d93ae128f7947e64eb8c849b4af9c54c9dd7a5 (HEAD)
> 
> Can you reliably reproduce the problem when going to the commit
> before this one and not reproduce it when going to this commit?

Yes, I cannot reproduce the problem for this commit, but I can reproduce it
every time for the commit before that which is:

a2b1ee5b1229a5efdc90b9495cf4b6f56e3207b1

It still does not reproduce on latest master anymore.

-- 
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_contract57d' - configure.ac

2021-04-07 Thread Thorsten Behrens (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c624a278955fb5d4ab39f69e0955769215712b73
Author: Thorsten Behrens 
AuthorDate: Thu Apr 8 01:55:59 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Apr 8 01:55:59 2021 +0200

Release 6.3.6.10

Change-Id: I87e5277dab2c6375ff8d6c1f0487be130a922f39

diff --git a/configure.ac b/configure.ac
index 98b1a1cd26ab..8657c7d30f5c 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.3.6.9],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.3.6.10],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/cib_contract57d' - external/xmlsec

2021-04-07 Thread Michael Stahl (via logerrit)
 
external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 |   68 ++
 external/xmlsec/UnpackedTarball_xmlsec.mk  
   |1 
 2 files changed, 69 insertions(+)

New commits:
commit 166639226a9a8383a0cd58c0030982399c5d90e0
Author: Michael Stahl 
AuthorDate: Wed Apr 7 17:00:43 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Apr 8 01:51:53 2021 +0200

xmlsec: fix signing documents on WNT

Duplicate ds:X509Certificate elements cause:

warn:xmlsecurity.comp:9604:3820:xmlsecurity/source/helper/xmlsignaturehelper.cxx:658:
 X509Data do not form a chain: certificate in cycle:

(regression from 5af5ea893bcb8a8eb472ac11133da10e5a604e66)

Change-Id: I3d319a2f74dbec17b73f1c7bb8f4efe4e335f0ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113746
Tested-by: Mike Kaganski 
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit ae08aa8a095832ae2a88eac14f9680ac8d3a13b6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113752
Reviewed-by: Thorsten Behrens 

diff --git 
a/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 
b/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
new file mode 100644
index ..51607ca6ee73
--- /dev/null
+++ 
b/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
@@ -0,0 +1,68 @@
+From a39b110cb2c25680259a38b2f397b350151bc6e7 Mon Sep 17 00:00:00 2001
+From: Michael Stahl 
+Date: Wed, 7 Apr 2021 16:43:48 +0200
+Subject: [PATCH] xmlSecX509DataGetNodeContent(): don't return 0 for non-empty
+ elements
+
+LibreOffice wants to write the content of KeyInfo itself and thus writes
+X509Certificate element with content.
+
+But then xmlSecMSCngKeyDataX509XmlWrite() writes a duplicate
+X509Certificate element, which then makes a new additional consistency
+check in LO unhappy.
+
+The duplicate is written because xmlSecX509DataGetNodeContent() returns
+0 because it only checks for empty nodes; if there are only non-empty
+nodes a fallback to XMLSEC_X509DATA_DEFAULT occurs in all backends.
+
+Change the return value to be non-0 without changing the signature of
+the function, as it is apparently public.
+
+This doesn't happen in LO in the NSS backend due to another accident,
+where the private key flag isn't set when the X509Certificate is read,
+but otherwise the code is the same.
+---
+ src/x509.c | 11 +++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/src/x509.c b/src/x509.c
+index ed8788ae..dac8bd2b 100644
+--- a/src/x509.c
 b/src/x509.c
+@@ -60,22 +60,33 @@ xmlSecX509DataGetNodeContent (xmlNodePtr node, 
xmlSecKeyInfoCtxPtr keyInfoCtx) {
+ if(xmlSecCheckNodeName(cur, xmlSecNodeX509Certificate, xmlSecDSigNs)) 
{
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_CERTIFICATE_NODE;
++} else {
++/* ensure return value isn't 0 if there are non-empty 
elements */
++content |= (XMLSEC_X509DATA_CERTIFICATE_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SubjectName, 
xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_SUBJECTNAME_NODE;
++} else {
++content |= (XMLSEC_X509DATA_SUBJECTNAME_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509IssuerSerial, 
xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_ISSUERSERIAL_NODE;
++} else {
++content |= (XMLSEC_X509DATA_ISSUERSERIAL_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SKI, xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_SKI_NODE;
++} else {
++content |= (XMLSEC_X509DATA_SKI_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509CRL, xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_CRL_NODE;
++} else {
++content |= (XMLSEC_X509DATA_CRL_NODE << 16);
+ }
+ } else {
+ /* todo: fail on unknown child node? */
+-- 
+2.30.2
+
diff --git a/external/xmlsec/UnpackedTarball_xmlsec.mk 
b/external/xmlsec/UnpackedTarball_xmlsec.mk
index e4d092bef019..76293fe31e42 100644
--- a/external/xmlsec/UnpackedTarball_xmlsec.mk
+++ b/external/xmlsec/UnpackedTarball_xmlsec.mk
@@ -8,6 +8,7 @@
 #
 
 xmlsec_patches :=
+xmlsec_patches += 
0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,xmlsec))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-commits] core.git: Branch 'feature/cib_contract57d' - 14 commits - include/svl include/xmloff shell/source svl/source sw/inc sw/qa sw/source xmloff/source xmlsecurity/inc xmlsecurity/sour

2021-04-07 Thread Michael Stahl (via logerrit)
 dev/null  |binary
 include/svl/sigstruct.hxx |   39 
 include/xmloff/xmlimp.hxx |6 
 include/xmloff/xmlnmspe.hxx   |   10 
 include/xmloff/xmltoken.hxx   |   13 
 shell/source/win32/SysShExec.cxx  |   65 
 svl/source/crypto/cryptosign.cxx  |   16 
 sw/inc/IDocumentContentOperations.hxx |2 
 sw/inc/undobj.hxx |   16 
 sw/qa/extras/ooxmlimport/ooxmlimport2.cxx |   29 
 sw/qa/extras/uiwriter/uiwriter.cxx|4 
 sw/qa/uitest/writer_tests6/tdf107975.py   |   39 
 sw/source/core/doc/DocumentContentOperationsManager.cxx   |  258 -
 sw/source/core/doc/DocumentLayoutManager.cxx  |2 
 sw/source/core/doc/doccomp.cxx|6 
 sw/source/core/doc/docdesc.cxx|4 
 sw/source/core/doc/docedt.cxx |   99 
 sw/source/core/doc/docfmt.cxx |2 
 sw/source/core/doc/docglbl.cxx|2 
 sw/source/core/doc/docglos.cxx|2 
 sw/source/core/doc/doclay.cxx |2 
 sw/source/core/doc/docnew.cxx |2 
 sw/source/core/doc/docnum.cxx |2 
 sw/source/core/doc/docredln.cxx   |6 
 sw/source/core/doc/tblcpy.cxx |2 
 sw/source/core/doc/tblrwcl.cxx|2 
 sw/source/core/docnode/section.cxx|4 
 sw/source/core/edit/acorrect.cxx  |2 
 sw/source/core/edit/eddel.cxx |2 
 sw/source/core/edit/edfcol.cxx|3 
 sw/source/core/edit/edglss.cxx|6 
 sw/source/core/frmedt/fecopy.cxx  |4 
 sw/source/core/inc/DocumentContentOperationsManager.hxx   |   13 
 sw/source/core/inc/frmtool.hxx|6 
 sw/source/core/inc/mvsave.hxx |   18 
 sw/source/core/layout/frmtool.cxx |  105 
 sw/source/core/layout/wsfrm.cxx   |   13 
 sw/source/core/txtnode/atrftn.cxx |2 
 sw/source/core/undo/undobj.cxx|   59 
 sw/source/core/undo/untblk.cxx|  141 
 sw/source/core/unocore/unotext.cxx|2 
 sw/source/filter/basflt/shellio.cxx   |   24 
 sw/source/filter/docx/swdocxreader.cxx|2 
 sw/source/filter/ww8/ww8glsy.cxx  |2 
 sw/source/filter/xml/xmltbli.cxx  |2 
 sw/source/uibase/uno/unoatxt.cxx  |2 
 xmloff/source/core/xmlimp.cxx |   26 
 xmloff/source/core/xmltoken.cxx   |   13 
 xmloff/source/token/tokens.txt|   10 
 xmlsecurity/inc/biginteger.hxx|3 
 xmlsecurity/inc/xmlsignaturehelper.hxx|   12 
 xmlsecurity/inc/xsecctl.hxx   |   20 
 xmlsecurity/source/component/documentdigitalsignatures.cxx|   51 
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx|   15 
 xmlsecurity/source/helper/documentsignaturehelper.cxx |   63 
 xmlsecurity/source/helper/documentsignaturemanager.cxx|   12 
 xmlsecurity/source/helper/ooxmlsecexporter.cxx|  212 -
 xmlsecurity/source/helper/ooxmlsecparser.cxx  | 1459 
+++-
 xmlsecurity/source/helper/ooxmlsecparser.hxx  |   74 
 xmlsecurity/source/helper/pdfsignaturehelper.cxx  |8 
 xmlsecurity/source/helper/xmlsignaturehelper.cxx  |  162 
 xmlsecurity/source/helper/xsecctl.cxx |  194 -
 xmlsecurity/source/helper/xsecparser.cxx  | 1756 

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

2021-04-07 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/docvw/OutlineContentVisibilityWin.cxx |   61 -
 sw/source/uibase/inc/OutlineContentVisibilityWin.hxx   |1 
 2 files changed, 15 insertions(+), 47 deletions(-)

New commits:
commit 7d6e12c01e6c1dd050818a2ea76faa6bf89e41f1
Author: Jim Raykowski 
AuthorDate: Thu Apr 1 17:28:03 2021 -0800
Commit: Jim Raykowski 
CommitDate: Thu Apr 8 01:33:28 2021 +0200

tdf#141276 Don't grab focus to the fold buttons

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

diff --git a/sw/source/uibase/docvw/OutlineContentVisibilityWin.cxx 
b/sw/source/uibase/docvw/OutlineContentVisibilityWin.cxx
index e866ac0549be..263009c13683 100644
--- a/sw/source/uibase/docvw/OutlineContentVisibilityWin.cxx
+++ b/sw/source/uibase/docvw/OutlineContentVisibilityWin.cxx
@@ -49,9 +49,6 @@ 
SwOutlineContentVisibilityWin::SwOutlineContentVisibilityWin(SwEditWin* pEditWin
 m_xShowBtn->connect_mouse_press(LINK(this, SwOutlineContentVisibilityWin, 
MousePressHdl));
 m_xHideBtn->connect_mouse_press(LINK(this, SwOutlineContentVisibilityWin, 
MousePressHdl));
 
-m_xShowBtn->connect_key_press(LINK(this, SwOutlineContentVisibilityWin, 
KeyInputHdl));
-m_xHideBtn->connect_key_press(LINK(this, SwOutlineContentVisibilityWin, 
KeyInputHdl));
-
 m_aDelayTimer.SetTimeout(25);
 m_aDelayTimer.SetInvokeHandler(LINK(this, SwOutlineContentVisibilityWin, 
DelayAppearHandler));
 }
@@ -87,8 +84,6 @@ void SwOutlineContentVisibilityWin::SetSymbol(ButtonSymbol 
eStyle)
 bool bShow = eStyle == ButtonSymbol::SHOW;
 bool bHide = eStyle == ButtonSymbol::HIDE;
 
-bool bControlHasFocus = ControlHasFocus();
-
 // disable mouse move for the hidden button so we don't get mouse
 // leave events we don't care about when we swap buttons
 m_xShowBtn->connect_mouse_move(Link());
@@ -104,11 +99,7 @@ void SwOutlineContentVisibilityWin::SetSymbol(ButtonSymbol 
eStyle)
 pButton = m_xHideBtn.get();
 InitControlBase(pButton);
 if (pButton)
-{
 pButton->connect_mouse_move(LINK(this, SwOutlineContentVisibilityWin, 
MouseMoveHdl));
-if (bControlHasFocus)
-pButton->grab_focus();
-}
 }
 
 void SwOutlineContentVisibilityWin::Set()
@@ -194,9 +185,6 @@ void 
SwOutlineContentVisibilityWin::ToggleOutlineContentVisibility(const bool bS
 if (GetEditWin()->GetView().IsDrawMode())
 GetEditWin()->GetView().LeaveDrawCreate();
 rSh.EnterStdMode();
-// set cursor position here so Navigator tracks outline
-// when doc changed broadcast message is sent in toggle function
-rSh.GotoOutline(m_nOutlinePos);
 if (rSh.GetViewOptions()->IsTreatSubOutlineLevelsAsContent())
 rSh.ToggleOutlineContentVisibility(m_nOutlinePos);
 else if (bSubs)
@@ -216,40 +204,16 @@ void 
SwOutlineContentVisibilityWin::ToggleOutlineContentVisibility(const bool bS
 }
 else
 rSh.ToggleOutlineContentVisibility(m_nOutlinePos);
-if (!m_bDestroyed)
-{
-SetSymbol(rSh.IsOutlineContentVisible(m_nOutlinePos) ? 
ButtonSymbol::HIDE
- : 
ButtonSymbol::SHOW);
-}
+// set cursor position to the toggled outline node
+rSh.GotoOutline(m_nOutlinePos);
 rSh.LockView(false);
 }
 
-IMPL_LINK(SwOutlineContentVisibilityWin, KeyInputHdl, const KeyEvent&, rKEvt, 
bool)
-{
-bool bConsumed = false;
-
-vcl::KeyCode aKeyCode = rKEvt.GetKeyCode();
-if (!aKeyCode.GetModifier()
-&& (aKeyCode.GetCode() == KEY_RETURN || aKeyCode.GetCode() == 
KEY_SPACE))
-{
-ToggleOutlineContentVisibility(aKeyCode.GetCode() == KEY_RETURN);
-bConsumed = true;
-}
-else if (aKeyCode.GetCode() == KEY_ESCAPE)
-{
-Hide();
-GrabFocusToDocument();
-bConsumed = true;
-}
-
-return bConsumed;
-}
-
 IMPL_LINK(SwOutlineContentVisibilityWin, MouseMoveHdl, const MouseEvent&, 
rMEvt, bool)
 {
 if (rMEvt.IsLeaveWindow())
 {
-if (GetSymbol() != ButtonSymbol::SHOW)
+if (GetSymbol() == ButtonSymbol::HIDE)
 {
 // MouseMove event may not be seen by the edit window for example 
when move is to
 // a show button or when move is outside of the edit window.
@@ -261,7 +225,6 @@ IMPL_LINK(SwOutlineContentVisibilityWin, MouseMoveHdl, 
const MouseEvent&, rMEvt,
 || nY >= GetEditWin()->GetSizePixel().Height())
 Hide();
 }
-GrabFocusToDocument();
 }
 else if (rMEvt.IsEnterWindow())
 {
@@ -269,16 +232,25 @@ IMPL_LINK(SwOutlineContentVisibilityWin, MouseMoveHdl, 
const MouseEvent&, rMEvt,
 m_aDelayTimer.Stop();
 // bring button to top and grab focus
 SetZOrder(this, ZOrderFlags::First);
-if (!ControlHasFocus())
-GrabFocus();
 }
-

[Libreoffice-bugs] [Bug 138883] Improve template renaming in Template Manager, with better feedback and/or prevent forbidden actions (see comment 19)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138883

--- Comment #22 from sdc.bla...@youmail.dk ---
(In reply to VertD from comment #21)
Thanks for your interest in this problem.

> It shows a message error if you enter an invalid name 
What makes a name invalid?

> Preliminary message is "Template: $1 cannot be renamed.\nChoose another
> name."
Is there only "one" way for a name to be invalid?  If so, then it would be
good/useful for the error message to explain. For example (where I am guessing
about the invalid reason).

Template $1 already exists in this category. \nChoose another name."

-- 
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 141552] Omri

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141552

Omri  changed:

   What|Removed |Added

 Status|UNCONFIRMED |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 141552] New: Omri

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141552

Bug ID: 141552
   Summary: Omri
   Product: Impress Remote
   Version: 1.0.0
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gole...@gmail.com

Description:
Check

Actual Results:
Check

Expected Results:
Check


Reproducible: Always


User Profile Reset: No



Additional Info:
Check

-- 
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 141514] Fileopen of RT XLSX with autofilter crashes 64-bit LO from 7.2+ (only some Windows computers)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141514

--- Comment #15 from Peter S Anderson  ---
No crash for me this morning on 7.2 build
ea4fb1559f7b99a0bfaf18f26cb3b6972c9cde1c 
Windows 10.0 Build 19042

-- 
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/co-2021' - sw/source

2021-04-07 Thread Jan Holesovsky (via logerrit)
 sw/source/core/doc/docredln.cxx |   16 
 1 file changed, 12 insertions(+), 4 deletions(-)

New commits:
commit dc401a7b0ae419a8f8bb433850046281c61bca74
Author: Jan Holesovsky 
AuthorDate: Tue Nov 24 15:34:55 2020 +0100
Commit: Andras Timar 
CommitDate: Thu Apr 8 00:04:02 2021 +0200

lok: Don't even iterate through the redlines when they are disabled.

It is not necessary, when we are not issuing any output anyway.

Change-Id: Id952549befb1bef04a2dd9237d286922939eaae2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106509
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 
(cherry picked from commit 8f44a939ad09d0365607ae8960e2abfe77e3fe72)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106517
Tested-by: Jenkins
Reviewed-by: Jan Holesovsky 

diff --git a/sw/source/core/doc/docredln.cxx b/sw/source/core/doc/docredln.cxx
index a41348027471..354aa058d9ed 100644
--- a/sw/source/core/doc/docredln.cxx
+++ b/sw/source/core/doc/docredln.cxx
@@ -341,14 +341,22 @@ void lcl_LOKInvalidateStartEndFrames(SwShellCursor& 
rCursor)
 FRM_CNTNT, ());
 }
 
+bool lcl_LOKRedlineNotificationEnabled()
+{
+static bool bDisableRedlineComments = getenv("DISABLE_REDLINE") != nullptr;
+if (comphelper::LibreOfficeKit::isActive() && !bDisableRedlineComments)
+return true;
+
+return false;
+}
+
 } // anonymous namespace
 
 /// Emits LOK notification about one addition / removal of a redline item.
 void SwRedlineTable::LOKRedlineNotification(RedlineNotification nType, 
SwRangeRedline* pRedline)
 {
 // Disable since usability is very low beyond some small number of changes.
-static bool bDisableRedlineComments = getenv("DISABLE_REDLINE") != nullptr;
-if (!comphelper::LibreOfficeKit::isActive() || bDisableRedlineComments)
+if (!lcl_LOKRedlineNotificationEnabled())
 return;
 
 boost::property_tree::ptree aRedline;
@@ -1038,7 +1046,7 @@ SwRangeRedline::~SwRangeRedline()
 
 void MaybeNotifyRedlineModification(SwRangeRedline& rRedline, SwDoc& rDoc)
 {
-if (!comphelper::LibreOfficeKit::isActive())
+if (!lcl_LOKRedlineNotificationEnabled())
 return;
 
 const SwRedlineTable& rRedTable = 
rDoc.getIDocumentRedlineAccess().GetRedlineTable();
@@ -1054,7 +1062,7 @@ void MaybeNotifyRedlineModification(SwRangeRedline& 
rRedline, SwDoc& rDoc)
 
 void SwRangeRedline::MaybeNotifyRedlinePositionModification(tools::Long nTop)
 {
-if (!comphelper::LibreOfficeKit::isActive())
+if (!lcl_LOKRedlineNotificationEnabled())
 return;
 
 if(!m_oLOKLastNodeTop || *m_oLOKLastNodeTop != nTop)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - 2 commits - sd/qa vcl/source

2021-04-07 Thread Gülşah Köse (via logerrit)
 sd/qa/unit/data/pptx/tdf128213-shaperot.pptx |binary
 sd/qa/unit/export-tests-ooxml2.cxx   |   17 +
 vcl/source/window/seleng.cxx |2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit 96399f08cbc82cae4449d6b3a0616d9262159656
Author: Gülşah Köse 
AuthorDate: Wed Feb 17 09:54:18 2021 +0300
Commit: Andras Timar 
CommitDate: Wed Apr 7 23:36:38 2021 +0200

tdf#128213 Add unit test for text camera z rotation.

Change-Id: I50dab62ba1013d4ae17684edde620f9c94c5ec47
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111028
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 

diff --git a/sd/qa/unit/data/pptx/tdf128213-shaperot.pptx 
b/sd/qa/unit/data/pptx/tdf128213-shaperot.pptx
new file mode 100644
index ..4e834bb7c563
Binary files /dev/null and b/sd/qa/unit/data/pptx/tdf128213-shaperot.pptx differ
diff --git a/sd/qa/unit/export-tests-ooxml2.cxx 
b/sd/qa/unit/export-tests-ooxml2.cxx
index 4c7dc3d0eb42..10a2b5371e26 100644
--- a/sd/qa/unit/export-tests-ooxml2.cxx
+++ b/sd/qa/unit/export-tests-ooxml2.cxx
@@ -205,6 +205,7 @@ public:
 void testShapeSoftEdgeEffect();
 void testShapeShadowBlurEffect();
 void testTdf119223();
+void testTdf128213ShapeRot();
 
 CPPUNIT_TEST_SUITE(SdOOXMLExportTest2);
 
@@ -325,6 +326,7 @@ public:
 CPPUNIT_TEST(testShapeSoftEdgeEffect);
 CPPUNIT_TEST(testShapeShadowBlurEffect);
 CPPUNIT_TEST(testTdf119223);
+CPPUNIT_TEST(testTdf128213ShapeRot);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -3043,6 +3045,21 @@ void SdOOXMLExportTest2::testTdf119223()
 "//p:cNvPr[@name='SomeGroup']");
 }
 
+void SdOOXMLExportTest2::testTdf128213ShapeRot()
+{
+auto xDocShRef
+= 
loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/pptx/tdf128213-shaperot.pptx"),
 PPTX);
+utl::TempFile tempFile;
+xDocShRef = saveAndReload(xDocShRef.get(), PPTX, );
+xDocShRef->DoClose();
+
+xmlDocUniquePtr pXmlDocRels = parseExport(tempFile, 
"ppt/slides/slide1.xml");
+
+assertXPath(pXmlDocRels, 
"/p:sld/p:cSld/p:spTree/p:sp/p:txBody/a:bodyPr/a:scene3d");
+assertXPath(pXmlDocRels, 
"/p:sld/p:cSld/p:spTree/p:sp/p:txBody/a:bodyPr/a:scene3d/a:camera/a:rot", 
"rev", "540");
+}
+
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SdOOXMLExportTest2);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
commit f5536c0671e96983976569d3d3109c9c05b080b9
Author: Caolán McNamara 
AuthorDate: Tue Feb 9 16:50:22 2021 +
Commit: Andras Timar 
CommitDate: Wed Apr 7 23:35:23 2021 +0200

Revert "on SelMouseButtonDown check if window pointer is not null"

because there is no pWin for the cases where an EditEngine is
hosted in a native widget, e.g. comment in a sidebar in writer
or format header/footer in calc's format page, header/footer, edit...
and with change applied clicking doesn't move the cursor

This reverts commit 0a2fa32f8756b3c99975df6d98736a8e9abb625a.

Change-Id: Ie1da24d22b6d298f0c074f7bf187c5d891b78368
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110648
Reviewed-by: Pranam Lashkari 
Tested-by: Jenkins
(cherry picked from commit 2d154d55db925dfa20358faa0302d4d942496aee)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110677
Tested-by: Jenkins CollaboraOffice 

diff --git a/vcl/source/window/seleng.cxx b/vcl/source/window/seleng.cxx
index 4e311785090c..390c6d00c57d 100644
--- a/vcl/source/window/seleng.cxx
+++ b/vcl/source/window/seleng.cxx
@@ -115,7 +115,7 @@ void SelectionEngine::CursorPosChanging( bool bShift, bool 
bMod1 )
 bool SelectionEngine::SelMouseButtonDown( const MouseEvent& rMEvt )
 {
 nFlags &= ~SelectionEngineFlags::CMDEVT;
-if ( !pFunctionSet || rMEvt.GetClicks() > 1 || !pWin )
+if ( !pFunctionSet || rMEvt.GetClicks() > 1 )
 return false;
 
 sal_uInt16 nModifier = rMEvt.GetModifier() | nLockedMods;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - external/xmlsec

2021-04-07 Thread Michael Stahl (via logerrit)
 
external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 |   68 ++
 external/xmlsec/UnpackedTarball_xmlsec.mk  
   |1 
 2 files changed, 69 insertions(+)

New commits:
commit 0ab3a264ba8d732cffa42a069c9aa50dab44e99f
Author: Michael Stahl 
AuthorDate: Wed Apr 7 17:00:43 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Apr 7 23:42:33 2021 +0200

xmlsec: fix signing documents on WNT

Duplicate ds:X509Certificate elements cause:

warn:xmlsecurity.comp:9604:3820:xmlsecurity/source/helper/xmlsignaturehelper.cxx:658:
 X509Data do not form a chain: certificate in cycle:

(regression from 5af5ea893bcb8a8eb472ac11133da10e5a604e66)

Change-Id: I3d319a2f74dbec17b73f1c7bb8f4efe4e335f0ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113746
Tested-by: Mike Kaganski 
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit ae08aa8a095832ae2a88eac14f9680ac8d3a13b6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113752
Reviewed-by: Thorsten Behrens 

diff --git 
a/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 
b/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
new file mode 100644
index ..51607ca6ee73
--- /dev/null
+++ 
b/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
@@ -0,0 +1,68 @@
+From a39b110cb2c25680259a38b2f397b350151bc6e7 Mon Sep 17 00:00:00 2001
+From: Michael Stahl 
+Date: Wed, 7 Apr 2021 16:43:48 +0200
+Subject: [PATCH] xmlSecX509DataGetNodeContent(): don't return 0 for non-empty
+ elements
+
+LibreOffice wants to write the content of KeyInfo itself and thus writes
+X509Certificate element with content.
+
+But then xmlSecMSCngKeyDataX509XmlWrite() writes a duplicate
+X509Certificate element, which then makes a new additional consistency
+check in LO unhappy.
+
+The duplicate is written because xmlSecX509DataGetNodeContent() returns
+0 because it only checks for empty nodes; if there are only non-empty
+nodes a fallback to XMLSEC_X509DATA_DEFAULT occurs in all backends.
+
+Change the return value to be non-0 without changing the signature of
+the function, as it is apparently public.
+
+This doesn't happen in LO in the NSS backend due to another accident,
+where the private key flag isn't set when the X509Certificate is read,
+but otherwise the code is the same.
+---
+ src/x509.c | 11 +++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/src/x509.c b/src/x509.c
+index ed8788ae..dac8bd2b 100644
+--- a/src/x509.c
 b/src/x509.c
+@@ -60,22 +60,33 @@ xmlSecX509DataGetNodeContent (xmlNodePtr node, 
xmlSecKeyInfoCtxPtr keyInfoCtx) {
+ if(xmlSecCheckNodeName(cur, xmlSecNodeX509Certificate, xmlSecDSigNs)) 
{
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_CERTIFICATE_NODE;
++} else {
++/* ensure return value isn't 0 if there are non-empty 
elements */
++content |= (XMLSEC_X509DATA_CERTIFICATE_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SubjectName, 
xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_SUBJECTNAME_NODE;
++} else {
++content |= (XMLSEC_X509DATA_SUBJECTNAME_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509IssuerSerial, 
xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_ISSUERSERIAL_NODE;
++} else {
++content |= (XMLSEC_X509DATA_ISSUERSERIAL_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SKI, xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_SKI_NODE;
++} else {
++content |= (XMLSEC_X509DATA_SKI_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509CRL, xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_CRL_NODE;
++} else {
++content |= (XMLSEC_X509DATA_CRL_NODE << 16);
+ }
+ } else {
+ /* todo: fail on unknown child node? */
+-- 
+2.30.2
+
diff --git a/external/xmlsec/UnpackedTarball_xmlsec.mk 
b/external/xmlsec/UnpackedTarball_xmlsec.mk
index e4d092bef019..76293fe31e42 100644
--- a/external/xmlsec/UnpackedTarball_xmlsec.mk
+++ b/external/xmlsec/UnpackedTarball_xmlsec.mk
@@ -8,6 +8,7 @@
 #
 
 xmlsec_patches :=
+xmlsec_patches += 
0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,xmlsec))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - external/xmlsec

2021-04-07 Thread Michael Stahl (via logerrit)
 
external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 |   68 ++
 external/xmlsec/UnpackedTarball_xmlsec.mk  
   |1 
 2 files changed, 69 insertions(+)

New commits:
commit be18f39fd3a9ec70310e90e286af92821a0c48c0
Author: Michael Stahl 
AuthorDate: Wed Apr 7 17:00:43 2021 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Apr 7 23:42:11 2021 +0200

xmlsec: fix signing documents on WNT

Duplicate ds:X509Certificate elements cause:

warn:xmlsecurity.comp:9604:3820:xmlsecurity/source/helper/xmlsignaturehelper.cxx:658:
 X509Data do not form a chain: certificate in cycle:

(regression from 5af5ea893bcb8a8eb472ac11133da10e5a604e66)

Change-Id: I3d319a2f74dbec17b73f1c7bb8f4efe4e335f0ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113746
Tested-by: Mike Kaganski 
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
(cherry picked from commit ae08aa8a095832ae2a88eac14f9680ac8d3a13b6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113748
Reviewed-by: Mike Kaganski 
Reviewed-by: Thorsten Behrens 

diff --git 
a/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 
b/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
new file mode 100644
index ..51607ca6ee73
--- /dev/null
+++ 
b/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
@@ -0,0 +1,68 @@
+From a39b110cb2c25680259a38b2f397b350151bc6e7 Mon Sep 17 00:00:00 2001
+From: Michael Stahl 
+Date: Wed, 7 Apr 2021 16:43:48 +0200
+Subject: [PATCH] xmlSecX509DataGetNodeContent(): don't return 0 for non-empty
+ elements
+
+LibreOffice wants to write the content of KeyInfo itself and thus writes
+X509Certificate element with content.
+
+But then xmlSecMSCngKeyDataX509XmlWrite() writes a duplicate
+X509Certificate element, which then makes a new additional consistency
+check in LO unhappy.
+
+The duplicate is written because xmlSecX509DataGetNodeContent() returns
+0 because it only checks for empty nodes; if there are only non-empty
+nodes a fallback to XMLSEC_X509DATA_DEFAULT occurs in all backends.
+
+Change the return value to be non-0 without changing the signature of
+the function, as it is apparently public.
+
+This doesn't happen in LO in the NSS backend due to another accident,
+where the private key flag isn't set when the X509Certificate is read,
+but otherwise the code is the same.
+---
+ src/x509.c | 11 +++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/src/x509.c b/src/x509.c
+index ed8788ae..dac8bd2b 100644
+--- a/src/x509.c
 b/src/x509.c
+@@ -60,22 +60,33 @@ xmlSecX509DataGetNodeContent (xmlNodePtr node, 
xmlSecKeyInfoCtxPtr keyInfoCtx) {
+ if(xmlSecCheckNodeName(cur, xmlSecNodeX509Certificate, xmlSecDSigNs)) 
{
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_CERTIFICATE_NODE;
++} else {
++/* ensure return value isn't 0 if there are non-empty 
elements */
++content |= (XMLSEC_X509DATA_CERTIFICATE_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SubjectName, 
xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_SUBJECTNAME_NODE;
++} else {
++content |= (XMLSEC_X509DATA_SUBJECTNAME_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509IssuerSerial, 
xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_ISSUERSERIAL_NODE;
++} else {
++content |= (XMLSEC_X509DATA_ISSUERSERIAL_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SKI, xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_SKI_NODE;
++} else {
++content |= (XMLSEC_X509DATA_SKI_NODE << 16);
+ }
+ } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509CRL, xmlSecDSigNs)) {
+ if(xmlSecIsEmptyNode(cur) == 1) {
+ content |= XMLSEC_X509DATA_CRL_NODE;
++} else {
++content |= (XMLSEC_X509DATA_CRL_NODE << 16);
+ }
+ } else {
+ /* todo: fail on unknown child node? */
+-- 
+2.30.2
+
diff --git a/external/xmlsec/UnpackedTarball_xmlsec.mk 
b/external/xmlsec/UnpackedTarball_xmlsec.mk
index 3ad978cdb829..c0591ddcea0d 100644
--- a/external/xmlsec/UnpackedTarball_xmlsec.mk
+++ b/external/xmlsec/UnpackedTarball_xmlsec.mk
@@ -8,6 +8,7 @@
 #
 
 xmlsec_patches :=
+xmlsec_patches += 
0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1
 
 $(eval $(call gb_UnpackedTarball_UnpackedTarball,xmlsec))
 
___
Libreoffice-commits mailing list

[Libreoffice-bugs] [Bug 141437] EDITING: transposed form objects (like circle or line) have wrong dimensions

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141437

Regina Henschel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||rb.hensc...@t-online.de
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||9083
 Ever confirmed|0   |1

--- Comment #3 from Regina Henschel  ---
It happens too, if the shape object is anchored to cell and it happens even if
the shape is size protected. There is a similar bug 139083 for copy to a
cell of different size. Here the cells have the same size. Therefore I do not
set it to duplicate.

-- 
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 139083] Cell anchored shape is always resized if copy to a different sized range

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139083

Regina Henschel  changed:

   What|Removed |Added

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

-- 
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/co-2021' - sc/source sc/uiconfig

2021-04-07 Thread Julien Nabet (via logerrit)
 sc/source/ui/dbgui/pvfundlg.cxx|2 +-
 sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 75cbd4955628a76511513a1f78dd63b3bf415245
Author: Julien Nabet 
AuthorDate: Tue Jan 12 20:09:40 2021 +0100
Commit: Andras Timar 
CommitDate: Wed Apr 7 23:23:48 2021 +0200

Revert "pivot table: make options cancel button working" + fix crash again

In the dialog, you have 3 buttons "Help", "Cancel" and "OK"
Using "Cancel" will call "close" which doesn't revert back changes.
To test this:
- Launch Calc
- Create an array with 2 cols (qtX and qtY) and put 2 rows of values
- Create a pivot dialog
- Put qtX in "Filters" part
- Double click on qtX (=> "Data Field" dialog appears)
- Click "Options..." (=> "Data Field Options" dialog appears)
- Enable any checkbox (eg: Empty line after each time) + click "OK" (=> 
dialog "Data Field Options" closes)
- Click "Options..." again (the checkbox is still enabled as expected)
- Disable the checkbox + click "Cancel" (=> dialog "Data Field Options" 
closes)
- Click "Options..." again (the checkbox is still enabled as NOT expected)

So revert the below quoted commit and fix this by using "cancel" in:
- action-widget response
- id for the GtkButton
- the use of the id to initialize m_xBtnCancel with m_xBuilder->weld_button

This reverts commit c2a349bc1482482d3e5ec06232c166d77fe9b602.

Change-Id: I555a90706de635e90b0ee397dfd958df55b5c40a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109193
Tested-by: Jenkins
Reviewed-by: Szymon Kłos 

diff --git a/sc/source/ui/dbgui/pvfundlg.cxx b/sc/source/ui/dbgui/pvfundlg.cxx
index 2d165c04ee68..45c831e998cd 100644
--- a/sc/source/ui/dbgui/pvfundlg.cxx
+++ b/sc/source/ui/dbgui/pvfundlg.cxx
@@ -654,7 +654,7 @@ ScDPSubtotalOptDlg::ScDPSubtotalOptDlg(weld::Window* 
pParent, ScDPObject& rDPObj
 , m_xFtHierarchy(m_xBuilder->weld_label("hierarchyft"))
 , m_xLbHierarchy(m_xBuilder->weld_combo_box("hierarchy"))
 , m_xBtnOk(m_xBuilder->weld_button("ok"))
-, m_xBtnCancel(m_xBuilder->weld_button("close"))
+, m_xBtnCancel(m_xBuilder->weld_button("cancel"))
 , mrDPObj(rDPObj)
 , maLabelData(rLabelData)
 {
diff --git a/sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui 
b/sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui
index c51c0406d53e..f94a3042bec5 100644
--- a/sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui
+++ b/sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui
@@ -58,7 +58,7 @@
   
 
 
-  
+  
 gtk-cancel
 True
 True
@@ -651,7 +651,7 @@
 
 
   ok
-  close
+  cancel
   help
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - include/svx sw/sdi sw/source

2021-04-07 Thread gokaysatir (via logerrit)
 include/svx/svxids.hrc|8 ++--
 sw/sdi/swriter.sdi|2 +-
 sw/source/uibase/wrtsh/wrtsh1.cxx |   13 +
 3 files changed, 20 insertions(+), 3 deletions(-)

New commits:
commit 02229783378c2f7ba495f7062620b5726872fcb7
Author: gokaysatir 
AuthorDate: Thu Sep 10 15:23:26 2020 +0300
Commit: Andras Timar 
CommitDate: Wed Apr 7 23:21:58 2021 +0200

leaflet: User may continue writing a comment after it loses focus/core part.

This path enables Online users to continue writing their comment after they 
click somewhere else in the document.
Online side will remember original position of comment and it will send the 
cursor position when needed.
When there is no cursor position, default behaviour will work.

Change-Id: Ided951481af6e0ec6c930e125bec7fdf687614d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102377
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Henry Castro 
Reviewed-by: Andras Timar 

diff --git a/include/svx/svxids.hrc b/include/svx/svxids.hrc
index c057e16d81d7..fbb961c9c4cd 100644
--- a/include/svx/svxids.hrc
+++ b/include/svx/svxids.hrc
@@ -207,7 +207,6 @@ class SvxSetItem;
 #define SID_ATTR_POSTIT_DATE
TypedWhichId( SID_SVX_START + 45 )
 #define SID_ATTR_POSTIT_TEXT
TypedWhichId( SID_SVX_START + 46 )
 #define SID_ATTR_POSTIT_ID  
TypedWhichId( SID_SVX_START + 47 )
-// free
 
 // CAUTION! Range <48 .. 49> used by EditEngine (!)
 
@@ -251,7 +250,7 @@ class SvxSetItem;
 #define SID_ATTR_TRANSFORM_ROT_Y
TypedWhichId( SID_SVX_START + 94 )
 #define SID_ATTR_TRANSFORM_ANGLE
TypedWhichId( SID_SVX_START + 95 )
 #define SID_ATTR_TRANSFORM_DELTA_ANGLE  
TypedWhichId( SID_SVX_START + 96 )
-// CAUTION! Range <96..100> used by SFX2 (!)
+// CAUTION! Range <96..100> used by SFX2 (!) // 96 is used above?
 #define SID_SIZE_ALL( SID_SVX_START + 101 )
 #define SID_DRAW_LINE   ( SID_SVX_START + 102 )
 #define SID_DRAW_XLINE  ( SID_SVX_START + 103 )
@@ -437,6 +436,11 @@ class SvxSetItem;
 
 //#define SID_SIDEBAR   ( SID_SVX_START + 336 
)   -> sfxsids.hrc
 
+#define SID_ATTR_POSTIT_X   
TypedWhichId( SID_SVX_START + 337 )
+#define SID_ATTR_POSTIT_Y 
TypedWhichId( SID_SVX_START + 338 )
+
+// free?
+
 #define SID_SB_CONNECTIONPOOLING( SID_SVX_START + 348 )
 #define SID_SB_DBREGISTEROPTIONS( SID_SVX_START + 349 )
 #define SID_BMPMASK ( SID_SVX_START + 350 )
diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi
index f8445e8eba6d..a049ae6b96ef 100644
--- a/sw/sdi/swriter.sdi
+++ b/sw/sdi/swriter.sdi
@@ -2500,7 +2500,7 @@ SfxVoidItem IndexMarkToIndex FN_IDX_MARK_TO_IDX
 ]
 
 SfxVoidItem InsertAnnotation FN_POSTIT
-(SvxPostItTextItem Text SID_ATTR_POSTIT_TEXT,SvxPostItAuthorItem Author 
SID_ATTR_POSTIT_AUTHOR,SvxPostItDateItem Date SID_ATTR_POSTIT_DATE)
+(SvxPostItTextItem Text SID_ATTR_POSTIT_TEXT,SvxPostItAuthorItem Author 
SID_ATTR_POSTIT_AUTHOR,SvxPostItDateItem Date 
SID_ATTR_POSTIT_DATE,SvxPostItTextItem pointX SID_ATTR_POSTIT_X, 
SvxPostItTextItem pointY SID_ATTR_POSTIT_Y)
 [
 AutoUpdate = FALSE,
 FastCall = FALSE,
diff --git a/sw/source/uibase/wrtsh/wrtsh1.cxx 
b/sw/source/uibase/wrtsh/wrtsh1.cxx
index 8251a9978142..08849e28a3f6 100644
--- a/sw/source/uibase/wrtsh/wrtsh1.cxx
+++ b/sw/source/uibase/wrtsh/wrtsh1.cxx
@@ -1916,6 +1916,19 @@ void SwWrtShell::InsertPostIt(SwFieldMgr& rFieldMgr, 
const SfxRequest& rReq)
 sText = GetView().GetPostItMgr()->GetAnswerText();
 GetView().GetPostItMgr()->RegisterAnswerText(OUString());
 }
+else
+{
+const SvxPostItTextItem* pXItem = 
rReq.GetArg(SID_ATTR_POSTIT_X);
+const SvxPostItTextItem* pYItem = 
rReq.GetArg(SID_ATTR_POSTIT_Y);
+// We allow Online users to begin a comment, click somewhere else 
and save comment. When comment is saved, its initial position is sent.
+if (pXItem && pYItem)
+{
+sal_Int32 pointX = (*pXItem).GetValue().toInt32();
+sal_Int32 pointY = (*pYItem).GetValue().toInt32();
+Point point(pointX, pointY);
+SwCursorShell::SetCursor(point);
+}
+}
 
 if ( HasSelection() && !IsTableMode() )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 141551] New: crash report after I restart calc

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141551

Bug ID: 141551
   Summary: crash report after I restart calc
   Product: LibreOffice
   Version: 7.1.1.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wm...@web.de

Description:
After I restart calc I receive a cash report even I could finish calc without
any errors. I used Version: 7.0.4.2 (x86) and no problem. Then I installed
LibreOffice 7.1.1 Portable MultilingualAll an this crash happens all the times.
In write and draw I did not realise this problem. I returned to Version:
7.0.4.2 (x86) and no problem.

Steps to Reproduce:
1. Exit Calc
2. Restart calc
3. Crash report appears and tries to recover the file

Actual Results:
Just leave calc and restart it

Expected Results:
no crash report


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.1.1.2 (x86) / LibreOffice Community
Build ID: fe0b08f4af1bacafe4c7ecc87ce55bb426164676
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); 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 141539] First Line Inden doesn't work for paragraphs within a list item

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141539

Regina Henschel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||rb.hensc...@t-online.de
 Ever confirmed|0   |1

--- Comment #2 from Regina Henschel  ---
I can confirm it.

Remark: The example document uses the legacy kind of lists. Therefore it is not
duplicate to bug 114287.

-- 
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 138246] Disable 'Edit' and 'Rename' context menu items for built-in templates

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138246

VertD  changed:

   What|Removed |Added

   Assignee|devoptm...@gmx.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-commits] core.git: cui/source

2021-04-07 Thread Henry Castro (via logerrit)
 cui/source/dialogs/scriptdlg.cxx |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

New commits:
commit 55ad47b89282ec7c9cd1d3506cad3df0681d61a6
Author: Henry Castro 
AuthorDate: Tue Mar 2 19:58:08 2021 -0400
Commit: Henry Castro 
CommitDate: Wed Apr 7 23:02:38 2021 +0200

lok: async exception dialog messages for VBA macros

Change-Id: Ia713343541f8102de85f7ac57202780afba3da00
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111855
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113686
Tested-by: Jenkins
Reviewed-by: Henry Castro 

diff --git a/cui/source/dialogs/scriptdlg.cxx b/cui/source/dialogs/scriptdlg.cxx
index 824aaa0c81d8..1258ee54d432 100644
--- a/cui/source/dialogs/scriptdlg.cxx
+++ b/cui/source/dialogs/scriptdlg.cxx
@@ -46,6 +46,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -1319,10 +1320,17 @@ IMPL_STATIC_LINK( SvxScriptErrorDialog, ShowDialog, 
void*, p, void )
 if ( message.isEmpty() )
 message = CuiResId( RID_SVXSTR_ERROR_TITLE );
 
-std::unique_ptr 
xBox(Application::CreateMessageDialog(xData->pParent,
-  VclMessageType::Warning, 
VclButtonsType::Ok, message));
+std::shared_ptr xBox;
+xBox.reset(Application::CreateMessageDialog(
+xData->pParent,
+VclMessageType::Warning,
+VclButtonsType::Ok,
+message,
+comphelper::LibreOfficeKit::isActive()));
+
 xBox->set_title(CuiResId(RID_SVXSTR_ERROR_TITLE));
-xBox->run();
+
+xBox->runAsync(xBox, [](sal_Int32 /*nResult*/) {});
 }
 
 /* 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 141401] Allow hiding applied styles

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141401

--- Comment #13 from Mike Kaganski  ---
(In reply to Heiko Tietze from comment #7)
> Another use case might be to prevent accidental changes to a style.

Hide *applied* styles in the list to prevent editing them is absolutely
useless. You always can select a text with the style and right-click it to edit
its styles. "Accidental" editing when you need to open a window, right-click
there, then do something in dialog and confirm is hardly "accidental". IMO
purely invented scenario.

I suppose that this is just another case where having N recent used styles
grouped at the top of the list would solve the problem.

-- 
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 141401] Allow hiding applied styles

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141401

--- Comment #13 from Mike Kaganski  ---
(In reply to Heiko Tietze from comment #7)
> Another use case might be to prevent accidental changes to a style.

Hide *applied* styles in the list to prevent editing them is absolutely
useless. You always can select a text with the style and right-click it to edit
its styles. "Accidental" editing when you need to open a window, right-click
there, then do something in dialog and confirm is hardly "accidental". IMO
purely invented scenario.

I suppose that this is just another case where having N recent used styles
grouped at the top of the list would solve the problem.

-- 
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 'distro/collabora/co-2021' - 2 commits - desktop/source include/LibreOfficeKit include/vcl sc/source sd/source sw/source vcl/source

2021-04-07 Thread Gökay Şatır (via logerrit)
 desktop/source/lib/init.cxx  |1 +
 include/LibreOfficeKit/LibreOfficeKitEnums.h |2 +-
 include/vcl/unohelp2.hxx |3 ++-
 sc/source/ui/view/editsh.cxx |8 +---
 sc/source/ui/view/gridwin.cxx|1 +
 sd/source/ui/view/drviews2.cxx   |   12 +---
 sw/source/uibase/shells/textsh1.cxx  |8 +---
 vcl/source/app/unohelp2.cxx  |6 +++---
 8 files changed, 11 insertions(+), 30 deletions(-)

New commits:
commit 4f8c5f241d21348b1cd0e427fb7acd67c095630f
Author: Gökay Şatır 
AuthorDate: Sun Mar 14 12:36:30 2021 +0300
Commit: Andras Timar 
CommitDate: Wed Apr 7 22:42:51 2021 +0200

Calc: Update selected cell range before calculating the selection area.

Change-Id: I7a814be03acb246e1eb9d68425418ee1357510fd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112472
Tested-by: Jenkins
Reviewed-by: Dennis Francis 
Reviewed-by: Gökay ŞATIR 

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index b0365e89ed50..55d5f00ae874 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -1441,6 +1441,7 @@ void CallbackFlushHandler::queue(const int type, const 
char* data)
 case LOK_CALLBACK_CELL_VIEW_CURSOR:
 case LOK_CALLBACK_CELL_FORMULA:
 case LOK_CALLBACK_CELL_ADDRESS:
+case LOK_CALLBACK_CELL_SELECTION_AREA:
 case LOK_CALLBACK_CURSOR_VISIBLE:
 case LOK_CALLBACK_VIEW_CURSOR_VISIBLE:
 case LOK_CALLBACK_SET_PART:
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index f075ab8c78cf..dc9cc1c68946 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -5920,6 +5920,7 @@ void ScGridWindow::UpdateKitSelection(const 
std::vector& rRect
 }
 
 ScTabViewShell* pViewShell = mrViewData.GetViewShell();
+pViewShell->UpdateInputHandler();
 OString sBoundingBoxString = "EMPTY";
 if (!aBoundingBox.IsEmpty())
 sBoundingBoxString = aBoundingBox.toString();
commit a9da7089befaf3b2cf1a3af60ccbdb0298a495cc
Author: gokaysatir 
AuthorDate: Wed Oct 7 12:57:13 2020 +0300
Commit: Andras Timar 
CommitDate: Wed Apr 7 22:41:55 2021 +0200

Online: "Copy hyperlink location" feature improvement.

Lambda functions are replaced with class pointers.

Change-Id: I48628d3105533aad2463bd8ade1f65cf5b154b0f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104058
Tested-by: Jenkins
Reviewed-by: Jan Holesovsky 

diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 9a0eb01ca840..ae8eacd9151f 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -646,7 +646,7 @@ typedef enum
  *
  * Payload is optional. When payload is empty, Online gets string from 
selected text.
  * Payload format is JSON.
- * Example: { "mimeType": "string", "content": "some content" }
+ * Example: { "mimeType": "text/plain", "content": "some content" }
  */
 LOK_CALLBACK_CLIPBOARD_CHANGED = 38,
 
diff --git a/include/vcl/unohelp2.hxx b/include/vcl/unohelp2.hxx
index 91c4ce6ce0e2..a0e03a04e2a1 100644
--- a/include/vcl/unohelp2.hxx
+++ b/include/vcl/unohelp2.hxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 
 namespace com::sun::star::datatransfer::clipboard {
 class XClipboard;
@@ -60,7 +61,7 @@ namespace vcl::unohelper {
 static  voidCopyStringTo(
 const OUString& rContent,
 const css::uno::Reference< 
css::datatransfer::clipboard::XClipboard >& rxClipboard,
-std::function *callback = nullptr
+const vcl::ILibreOfficeKitNotifier* pNotifier = nullptr
 );
 };
 
diff --git a/sc/source/ui/view/editsh.cxx b/sc/source/ui/view/editsh.cxx
index e12c5460c09d..619001a27d8c 100644
--- a/sc/source/ui/view/editsh.cxx
+++ b/sc/source/ui/view/editsh.cxx
@@ -642,13 +642,7 @@ void ScEditShell::Execute( SfxRequest& rReq )
 {
 uno::Reference 
xClipboard = GetSystemClipboard();
 
-if (comphelper::LibreOfficeKit::isActive())
-{
-std::function callback = [&] 
(int callbackType, const char* text) { 
rViewData.GetViewShell()->libreOfficeKitViewCallback(callbackType, text); } ;
-
vcl::unohelper::TextDataObject::CopyStringTo(pURLField->GetURL(), xClipboard, 
);
-}
-else
-
vcl::unohelper::TextDataObject::CopyStringTo(pURLField->GetURL(), xClipboard, 
nullptr);
+
vcl::unohelper::TextDataObject::CopyStringTo(pURLField->GetURL(), xClipboard, 
SfxViewShell::Current());
 }
 }
 break;
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index 

[Libreoffice-bugs] [Bug 141424] UNO Object Inspector: left side disappears resizing the toolbar (gen)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141424

Olivier Hallot  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 138883] Improve template renaming in Template Manager, with better feedback and/or prevent forbidden actions (see comment 19)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138883

--- Comment #21 from VertD  ---
Here is my proposal https://gerrit.libreoffice.org/c/core/+/113719 It shows a
message error if you enter an invalid name and returns to the naming dialog.
Nothing happens when you enter an empty name or the same name. Preliminary
message is "Template: $1 cannot be renamed.\nChoose another name."

-- 
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 138368] Convert Brazilian spelling dictionary files to UTF-8 Unicode with standard line terminators

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138368

Olivier Hallot  changed:

   What|Removed |Added

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

-- 
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 141537] UNO Object Inspector: Crash while inspecting file

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141537

Julien Nabet  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #3 from Julien Nabet  ---
I gave a try with https://gerrit.libreoffice.org/c/core/+/113777

-- 
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: sfx2/source

2021-04-07 Thread Henry Castro (via logerrit)
 sfx2/source/appl/app.cxx |   21 +
 1 file changed, 21 insertions(+)

New commits:
commit bb91e70bfb25d678560184ddcc294ff9fbb377af
Author: Henry Castro 
AuthorDate: Tue Mar 2 19:35:01 2021 -0400
Commit: Henry Castro 
CommitDate: Wed Apr 7 22:18:33 2021 +0200

lok: show error message dialog for VBA macros

It creates and exclusive message dialog to show
the VBA errors to client side.

Otherwise the IDE window to show the source code
and the error message is not supported yet.

Change-Id: Ie74f911b109cb13aebd39de2cb8e899d779c1cf1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111854
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113689
Tested-by: Jenkins
Reviewed-by: Henry Castro 

diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index 78358b32fe22..bad0e60b41b4 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -405,6 +406,26 @@ IMPL_STATIC_LINK( SfxApplication, 
GlobalBasicErrorHdl_Impl, StarBASIC*, pStarBas
 return false;
 #else
 
+if (comphelper::LibreOfficeKit::isActive())
+{
+OUString aError;
+std::unique_ptr pErrorInfo = 
ErrorInfo::GetErrorInfo(StarBASIC::GetErrorCode());
+if (ErrorStringFactory::CreateString(pErrorInfo.get(), aError))
+{
+const SfxViewFrame* pViewFrame = SfxViewFrame::Current();
+std::shared_ptr xBox;
+xBox.reset(Application::CreateMessageDialog(
+   pViewFrame->GetWindow().GetFrameWeld(),
+   VclMessageType::Error,
+   VclButtonsType::Ok,
+   aError,
+   true));
+
+xBox->runAsync(xBox, [](sal_Int32 /*nResult*/) {});
+}
+return true;
+}
+
 #ifndef DISABLE_DYNLOADING
 basicide_handle_basic_error pSymbol = 
reinterpret_cast(sfx2::getBasctlFunction("basicide_handle_basic_error"));
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117985] Cell comment created in row 66054 (or lower) appears at row 198160

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117985

Andreas Heinisch  changed:

   What|Removed |Added

 CC||andreas.heini...@yahoo.de

--- Comment #14 from Andreas Heinisch  ---
Reproducible in:
Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU-Threads: 6; BS: Windows 10.0 Build 19042; UI-Render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

but not reproducible in:
Version: 7.1.0.3 (x64) / LibreOffice Community
Build ID: f6099ecf3d29644b5008cc8f48f42f4a40986e4c
CPU threads: 6; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

nor in 

Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: bcdd9145d487d5b162a360f3adb1eaf7250c18c9
CPU threads: 6; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-US
Calc: CL

-- 
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 138089] Crash when type any char in standard filter in the attached xlsx file (filter was set in MSO using wildcard autofilter match)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138089

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

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

tdf#138089: sc: Add UItest

It will be available in 7.2.0.

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

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

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


[Libreoffice-bugs] [Bug 138089] Crash when type any char in standard filter in the attached xlsx file (filter was set in MSO using wildcard autofilter match)

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138089

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.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: sc/qa

2021-04-07 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests4/tdf138089.py |   48 ++
 sc/qa/uitest/data/tdf138089.xlsx  |binary
 2 files changed, 48 insertions(+)

New commits:
commit ae4512f5e7cfb1b309cc9c48bbe798546c0a3f2a
Author: Xisco Fauli 
AuthorDate: Wed Apr 7 20:19:43 2021 +0200
Commit: Xisco Fauli 
CommitDate: Wed Apr 7 22:07:02 2021 +0200

tdf#138089: sc: Add UItest

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

diff --git a/sc/qa/uitest/calc_tests4/tdf138089.py 
b/sc/qa/uitest/calc_tests4/tdf138089.py
new file mode 100644
index ..54e3015b3175
--- /dev/null
+++ b/sc/qa/uitest/calc_tests4/tdf138089.py
@@ -0,0 +1,48 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from libreoffice.calc.document import is_row_hidden
+
+class tdf138089(UITestCase):
+
+def test_tdf138089(self):
+
+calc_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf138089.xlsx"))
+xCalcDoc = self.xUITest.getTopFocusWindow()
+gridwin = xCalcDoc.getChild("grid_window")
+gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
+
+self.assertFalse(is_row_hidden(calc_doc, 0))
+self.assertTrue(is_row_hidden(calc_doc, 1))
+self.assertTrue(is_row_hidden(calc_doc, 2))
+self.assertTrue(is_row_hidden(calc_doc, 3))
+self.assertFalse(is_row_hidden(calc_doc, 4))
+self.assertFalse(is_row_hidden(calc_doc, 5))
+self.assertFalse(is_row_hidden(calc_doc, 6))
+
+# Without the fix in place, this test would have crashed here
+
self.ui_test.execute_modeless_dialog_through_command(".uno:DataFilterStandardFilter")
+xDialog = self.xUITest.getTopFocusWindow()
+self.assertEqual("2017-12-01", 
get_state_as_dict(xDialog.getChild("val1"))['Text'])
+self.assertEqual("过帐日期", 
get_state_as_dict(xDialog.getChild("field1"))["DisplayText"])
+
+xOKBtn = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOKBtn)
+
+self.assertFalse(is_row_hidden(calc_doc, 0))
+self.assertTrue(is_row_hidden(calc_doc, 1))
+self.assertTrue(is_row_hidden(calc_doc, 2))
+self.assertTrue(is_row_hidden(calc_doc, 3))
+self.assertFalse(is_row_hidden(calc_doc, 4))
+self.assertFalse(is_row_hidden(calc_doc, 5))
+self.assertTrue(is_row_hidden(calc_doc, 6))
+
+self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sc/qa/uitest/data/tdf138089.xlsx b/sc/qa/uitest/data/tdf138089.xlsx
new file mode 100644
index ..e24fe7516c4c
Binary files /dev/null and b/sc/qa/uitest/data/tdf138089.xlsx differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 108772] FILEOPEN: DOC - Last paragraph not shown/hardly accessible in Word 2013+ after roundtrip

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108772

--- Comment #14 from Aron Budea  ---
(In reply to Justin L from comment #13)
> So far I've been marking this as NOTOURBUG since it works fine in Word 2003
> where DOC is still the native format. But this bug report gave some extra
I'd be inclined to argue that Word 2003 is hardly relevant now, and Writer is
expected to export DOC in a format that the recent Word versions can interpret
correctly, which I assume isn't impossible.

-- 
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 141550] FILEOPEN: Incorrect position of textbox

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141550

--- Comment #3 from Xisco Faulí  ---
Created attachment 171022
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171022=edit
another file affected

-- 
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 141550] FILEOPEN: Incorrect position of textbox

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141550

--- Comment #2 from Xisco Faulí  ---
attachment 106227 from bug 83496 is also affected by this issue. the text 'At
vero eos et accusam' is shifted to the right

-- 
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 141550] FILEOPEN: Incorrect position of textbox

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141550

Xisco Faulí  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||0828
 Status|UNCONFIRMED |NEW
   Keywords||bibisected, bisected,
   ||regression
 CC||bakos.attilakar...@nisz.hu,
   ||libreoff...@nisz.hu,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=ff321dd36554d25f0817903becf4598065e0a194

author  Attila Bakos (NISZ) 2021-03-09
16:32:27 +0100
committer   László Németh2021-03-29 11:33:52
+0200
commit  ff321dd36554d25f0817903becf4598065e0a194 (patch)
treee7d348490b7b3040abb99d69af3b6a24108e1139
parent  3d844a131d7d2d2c82d865d17ad7657c7e8a185c (diff)
tdf#140828 sw textbox: fix AS_CHAR regression

Bisected with: bibisect-linux64-7.2

Adding Cc: to Attila Bakos

-- 
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 141550] New: FILEOPEN: Incorrect position of textbox

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141550

Bug ID: 141550
   Summary: FILEOPEN: Incorrect position of textbox
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 171021
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171021=edit
Comparison MSO 2010 and LibreOffice 7.2 master

Steps to reproduce:
1. Open attachment 98963 from bug 78651

-> At the bottom of the first page there is a textbox with the number page,
it's completely aligned to the right. there should be some spacing instead. See
comparison image

Reproduced in

Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: c47ad11f8c2e917adebbd5d7b3a3ef6cc4b3e670
CPU threads: 4; OS: Linux 5.7; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

[Bug found by office-interoperability-tools]

-- 
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


Re: CppCheck Report on vm140 Not Running

2021-04-07 Thread Luke Benes
I dug a little deeper and the last error report has an "unexpected end of file" 
when I tried to decompress it.[1]   Is vm140 out of free space? 

-Luke

[1] https://dev-builds.libreoffice.org/cppcheck_reports/cppcheck_reports.tar.bz2
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 141549] FILEOPEN: DOCX: Missing images in header

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141549

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||filter:docx, regression
 Status|UNCONFIRMED |NEW
 CC||michael.st...@allotropia.de
   ||,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||3487

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=3bc8f90e9693f710f12632f69b9348c1c833c906

author  Michael Stahl  2021-03-05 21:06:28
+0100
committer   Miklos Vajna 2021-03-08 12:21:42
+0100
commit  3bc8f90e9693f710f12632f69b9348c1c833c906 (patch)
tree7835eaeddadb06b48a06bfa3bf04d3ee0e211b39
parent  9463fec243e7507c826ea21a093b5475dc29fd41 (diff)
(related: tdf#133487) sw: fix ordering of virtual SdrObjects for textboxes

Bisected with: bibisect-linux64-7.2

Adding Cc: to Michael Stahl

-- 
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 141549] New: FILEOPEN: DOCX: Missing images in header

2021-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141549

Bug ID: 141549
   Summary: FILEOPEN: DOCX: Missing images in header
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 171020
  --> https://bugs.documentfoundation.org/attachment.cgi?id=171020=edit
Comparison MSO 2010 and LibreOffice 7.2 master

Steps to reproduce:
1. Open attachment 98662 from bug 78420
2. Scroll down

-> Images in header are missing in page 3 and so on

Reproduced in

Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: c47ad11f8c2e917adebbd5d7b3a3ef6cc4b3e670
CPU threads: 4; OS: Linux 5.7; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

[Bug found by office-interoperability-tools]

-- 
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   4   5   >