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

2021-06-03 Thread merttumer (via logerrit)
 vcl/source/window/layout.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 50b640a298604ecd10ce095a005cd8eaaf82fc14
Author: merttumer 
AuthorDate: Fri May 7 10:19:05 2021 +
Commit: Mert Tumer 
CommitDate: Fri Jun 4 07:47:31 2021 +0200

android: Fix DrawingArea inside CsvTableBox is shrinked

Change-Id: Ia722297051eb3413b9db17024173c9eb596d8e7a
Signed-off-by: merttumer 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115235
Tested-by: Jenkins CollaboraOffice 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115276
Tested-by: Jenkins

diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 2a76145e9247..3f70e767e344 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -7,6 +7,7 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
 #include 
 #include 
 #include 
@@ -272,6 +273,14 @@ void VclBox::setAllocation(const Size )
 {
 Size aRequisition = calculateRequisition();
 nExtraSpace = (getPrimaryDimension(rAllocation) - 
getPrimaryDimension(aRequisition)) / nExpandChildren;
+// In mobile, the screen size is small and extraSpace can become negative
+// Though the dialogs are rendered in javascript for LOK Android some widgets 
like weld::DrawingArea
+// is sent as bitmap but it is rendered from only the visible part
+// when it gets negative, it shrinks instead of expands and it becomes 
invisible
+#if HAVE_FEATURE_ANDROID_LOK
+if (nExtraSpace < 0)
+nExtraSpace = 0;
+#endif
 }
 
 //Split into those we pack from the start onwards, and those we pack from 
the end backwards
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: solenv/bin

2021-06-03 Thread merttumer (via logerrit)
 solenv/bin/native-code.py |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 437facda5898b476f6b4a6baaf4c3e22c5eb1e35
Author: merttumer 
AuthorDate: Thu Apr 29 06:20:19 2021 +
Commit: Mert Tumer 
CommitDate: Fri Jun 4 07:47:08 2021 +0200

Add missing FilterOptionsDialog constructor for android

Change-Id: I8bdd44e1b2f45a6d62e6b7220762da62787e04fa
Signed-off-by: merttumer 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114830
Tested-by: Jenkins CollaboraOffice 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116295

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 0cbb5cc9cc8d..4316bb233fbe 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -565,6 +565,7 @@ edit_constructor_list = [
 "Calc_XMLOasisMetaExporter_get_implementation",
 "Calc_XMLOasisSettingsExporter_get_implementation",
 "Calc_XMLOasisStylesExporter_get_implementation",
+"Calc_FilterOptionsDialog_get_implementation",
 # starmath/util/sm.component
 "Math_XMLContentExporter_get_implementation",
 "Math_XMLOasisMetaExporter_get_implementation",
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-03 Thread merttumer (via logerrit)
 desktop/source/lib/lokinteractionhandler.cxx |   23 +++
 desktop/source/lib/lokinteractionhandler.hxx |2 ++
 sfx2/source/doc/objstor.cxx  |3 ++-
 3 files changed, 27 insertions(+), 1 deletion(-)

New commits:
commit 8c26772822e2f768e48be72feb29ec06f00d9cf2
Author: merttumer 
AuthorDate: Mon Apr 26 08:12:11 2021 +0300
Commit: Mert Tumer 
CommitDate: Fri Jun 4 07:46:39 2021 +0200

lok: Interaction handler for FilterOptions

This will enable Text Import Dialog to be executed
before the document is loaded

Change-Id: I263e69f0739f4971f4c4eec032ebf22ffbdeebb7
Signed-off-by: merttumer 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114638
Tested-by: Jenkins CollaboraOffice 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116294
Tested-by: Jenkins

diff --git a/desktop/source/lib/lokinteractionhandler.cxx 
b/desktop/source/lib/lokinteractionhandler.cxx
index eb7d120a5e3e..325e5893184a 100644
--- a/desktop/source/lib/lokinteractionhandler.cxx
+++ b/desktop/source/lib/lokinteractionhandler.cxx
@@ -40,6 +40,8 @@
 #include 
 #include 
 
+#include 
+
 #include "../../inc/lib/init.hxx"
 
 #include 
@@ -350,6 +352,24 @@ bool 
LOKInteractionHandler::handleMacroConfirmationRequest(const uno::Reference<
 return false;
 }
 
+bool LOKInteractionHandler::handleFilterOptionsRequest(const 
uno::Reference& xRequest)
+{
+document::FilterOptionsRequest aFilterOptionsRequest;
+uno::Any const request(xRequest->getRequest());
+if (request >>= aFilterOptionsRequest)
+{
+uno::Reference< task::XInteractionHandler2 > xInteraction(
+task::InteractionHandler::createWithParent(
+::comphelper::getProcessComponentContext(), nullptr));
+
+if (xInteraction.is())
+xInteraction->handleInteractionRequest(xRequest);
+
+return true;
+}
+return false;
+}
+
 sal_Bool SAL_CALL LOKInteractionHandler::handleInteractionRequest(
 const uno::Reference& xRequest)
 {
@@ -365,6 +385,9 @@ sal_Bool SAL_CALL 
LOKInteractionHandler::handleInteractionRequest(
 if (handlePasswordRequest(rContinuations, request))
 return true;
 
+if (handleFilterOptionsRequest(xRequest))
+return true;
+
 if (handleMacroConfirmationRequest(xRequest))
 return true;
 
diff --git a/desktop/source/lib/lokinteractionhandler.hxx 
b/desktop/source/lib/lokinteractionhandler.hxx
index 9c15f85f4bc8..108343ec22e3 100644
--- a/desktop/source/lib/lokinteractionhandler.hxx
+++ b/desktop/source/lib/lokinteractionhandler.hxx
@@ -76,6 +76,8 @@ private:
 bool handlePasswordRequest(const 
css::uno::Sequence> 
, const css::uno::Any& rRequest);
 static bool handleMacroConfirmationRequest(const 
css::uno::Reference& xRequest);
 
+static bool handleFilterOptionsRequest(const 
::com::sun::star::uno::Reference<::com::sun::star::task::XInteractionRequest>& 
Request);
+
 public:
 void SetPassword(char const* pPassword);
 
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index 0b5080d23230..d30e52f25c03 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -853,7 +853,8 @@ ErrCode SfxObjectShell::HandleFilter( SfxMedium* pMedium, 
SfxObjectShell const *
 SfxItemSet* pSet = pMedium->GetItemSet();
 const SfxStringItem* pOptions = SfxItemSet::GetItem(pSet, 
SID_FILE_FILTEROPTIONS, false);
 const SfxUnoAnyItem* pData = SfxItemSet::GetItem(pSet, 
SID_FILTER_DATA, false);
-if ( !pData && !pOptions )
+const bool bTiledRendering = comphelper::LibreOfficeKit::isActive();
+if ( !pData && (bTiledRendering || !pOptions) )
 {
 css::uno::Reference< XMultiServiceFactory > xServiceManager = 
::comphelper::getProcessServiceFactory();
 css::uno::Reference< XNameAccess > xFilterCFG;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-03 Thread merttumer (via logerrit)
 sc/source/ui/dbgui/scuiasciiopt.cxx |7 +++
 sc/source/ui/inc/scuiasciiopt.hxx   |2 ++
 2 files changed, 9 insertions(+)

New commits:
commit 790f7deb17cede31c780b3e296672bbe7577763c
Author: merttumer 
AuthorDate: Mon Apr 26 06:52:34 2021 +0300
Commit: Mert Tumer 
CommitDate: Fri Jun 4 07:46:17 2021 +0200

lok: add global notifier to the "Text Import Dialog"

This dialog is displayed before the document is loaded
so no way to get access to the view shell notifier
when model/view/controller are not created yet.

Change-Id: Ic9259b0b1d72b2c4f29b7265742136e650c7b67b
Signed-off-by: merttumer 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114637
Tested-by: Jenkins CollaboraOffice 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116293
Tested-by: Jenkins

diff --git a/sc/source/ui/dbgui/scuiasciiopt.cxx 
b/sc/source/ui/dbgui/scuiasciiopt.cxx
index 395d2595937b..49c46330bfd9 100644
--- a/sc/source/ui/dbgui/scuiasciiopt.cxx
+++ b/sc/source/ui/dbgui/scuiasciiopt.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -527,6 +528,12 @@ ScImportAsciiDlg::ScImportAsciiDlg(weld::Window* pParent, 
const OUString& aDatNa
 mxCkbSkipEmptyCells->set_active(false);
 mxCkbSkipEmptyCells->hide();
 }
+m_xDialog->SetInstallLOKNotifierHdl(LINK(this, ScImportAsciiDlg, 
InstallLOKNotifierHdl));
+}
+
+IMPL_STATIC_LINK_NOARG(ScImportAsciiDlg, InstallLOKNotifierHdl, void*, 
vcl::ILibreOfficeKitNotifier*)
+{
+return GetpApp();
 }
 
 ScImportAsciiDlg::~ScImportAsciiDlg()
diff --git a/sc/source/ui/inc/scuiasciiopt.hxx 
b/sc/source/ui/inc/scuiasciiopt.hxx
index 5064243ae58e..140ca09122d0 100644
--- a/sc/source/ui/inc/scuiasciiopt.hxx
+++ b/sc/source/ui/inc/scuiasciiopt.hxx
@@ -114,6 +114,8 @@ private:
 DECL_LINK( LbColTypeHdl, weld::ComboBox&, void 
);
 DECL_LINK( UpdateTextHdl, ScCsvTableBox&, void 
);
 DECL_LINK( ColTypeHdl, ScCsvTableBox&, void );
+DECL_STATIC_LINK(ScImportAsciiDlg, 
InstallLOKNotifierHdl, void*, vcl::ILibreOfficeKitNotifier*);
+
 };
 
 inline bool ScImportAsciiDlg::Seek(sal_uLong nPos)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-06-03 Thread merttumer (via logerrit)
 vcl/source/window/builder.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a4b5170eeb134ae5b838f480db1ac5d64dafceac
Author: merttumer 
AuthorDate: Mon Apr 26 06:29:43 2021 +0300
Commit: Mert Tumer 
CommitDate: Fri Jun 4 07:46:03 2021 +0200

Added Text Import Dialog to JSDialogs list

Change-Id: I8da4c929ebe7b93fe9211ba432ce321e31482a8f
Signed-off-by: merttumer 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114636
Tested-by: Jenkins CollaboraOffice 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116292
Tested-by: Jenkins

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 2e8c26aef83a..7c955a76e476 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -214,7 +214,8 @@ weld::Builder* Application::CreateBuilder(weld::Widget* 
pParent, const OUString
 || rUIFile == "modules/scalc/ui/datafielddialog.ui"
 || rUIFile == "modules/scalc/ui/pivotfielddialog.ui"
 || rUIFile == "modules/scalc/ui/datafieldoptionsdialog.ui"
-|| rUIFile == "svx/ui/fontworkgallerydialog.ui")
+|| rUIFile == "svx/ui/fontworkgallerydialog.ui"
+|| rUIFile == "modules/scalc/ui/textimportcsv.ui")
 {
 bUseJSBuilder = true;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142600] Link to External Data Source dialogue should list HTML tables in order

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

--- Comment #4 from Andreas Heinisch  ---
Something like sort with a submenu including the two options alphabeitcally and
by actual order.

-- 
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 142643] New: LibreOffice Calc power regression coefficients error

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

Bug ID: 142643
   Summary: LibreOffice Calc power regression coefficients error
   Product: LibreOffice
   Version: 7.0.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: edwardson...@protonmail.ch

Description:
After selecting x and y data for power regression (y = ax^b) the results for a
and b are incorrect. Cells for "Intercept" and "LN(X1)" are erroneous. 

Steps to Reproduce:
XY

1   2.7
2   4
3   4.4
4   7.1
5   4.9
6   3.6
7   4
8   0.6
9   1
10  4.3


Actual Results:
Confidence level0.99

Coefficients
Intercept   1.57125263268399
LN(X1)  -0.310308529671727


Expected Results:
a = 4.812672931
b = -0.3103085297


Reproducible: Always


User Profile Reset: No



Additional Info:
a = 4.812672931
b = -0.3103085297

-- 
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 135237] Image on wrong page after undo rejecting track changes

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

BogdanB  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from BogdanB  ---
I confirm this bug. In the step 2 there are 2 steps: set the cursor plus insert
a chart. The chart is on page 2 after the undo.

Version: 7.1.3.2 / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 142396] Custom properties: Removing custom property leads to hidden lines after scroll bar disappears

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

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 142394] Slow drawing of semi-transparent large color object

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

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 142388] "To Character" from Right Click context causes jump of the image whereas Image dialog "to character" behaves as expected

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

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 142387] FILESAVE DOCX Roundtrip interdependant tracked changes

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

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 142385] FILEOPEN XLSX Chart Axis labels with many data points are not skipped

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

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 142376] Links from table of content in generated PDF not accessible for screen reader

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

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 142368] Hint from AutoInput in formula bar stays on top after switching to another application

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

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 137961] serial correspondence sending email

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

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 137961] serial correspondence sending email

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

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

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 137861] Libre Office only allows English USA

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

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 137861] Libre Office only allows English USA

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

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

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 137425] Spell check

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

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 137425] Spell check

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

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

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 138671] Creating and using macros does not work any more

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

--- Comment #2 from QA Administrators  ---
Dear Bernd Niessen,

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 99838] EDITING: Converting text to curve doesn't convert characters not found in font.

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

--- Comment #13 from QA Administrators  ---
Dear Shem Pasamba,

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 90931] 'Apply Style' drop down doesnt show accurate style previews

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

--- Comment #7 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 44847] Compare Document Highlights Unchanged Words as Changed (LibreOffice Writer)

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

--- Comment #8 from QA Administrators  ---
Dear Leo H,

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 41304] EDITING: Cell formula shown without colors, colored frames missing around referenced cells

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

--- Comment #16 from QA Administrators  ---
Dear stallersattel,

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 35847] [UI] Wrong page style name in status bar after page preview

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

--- Comment #13 from QA Administrators  ---
Dear Laurent BP,

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 123190] Erroneous additional space in Math formula object

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

--- Comment #7 from QA Administrators  ---
Dear Regina Henschel,

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 120138] Compare document paragraph

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

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

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 112984] Invisible shapes in doc

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

--- Comment #8 from QA Administrators  ---
Dear Andreas Säger,

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 102304] AutoLayout textbox background fill should appear even without text

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

--- Comment #5 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 142409] Created letterhead template in Libre Office Writer, client uses MS 365 for macOS and can't type in it

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

--- Comment #8 from Lisa Raymond  ---
I was wondering that also. It might be easier to take out a subs for MS Office
365 and create the letterhead for the client, and I'm not sure that can be read
across to Mac since I'm on a Windows. Theoretically, it shouldn't matter, but
I've worked with MS Office in some format since 1992 - somewhere, it tends to
matter.

-- 
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 70633] Writer EDITING: Unable to use AltGr to produce supplementary plane chars

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

--- Comment #20 from Sahamokou  ---
> (In reply to nrs from comment #16)
> > This issue was confirmed to be resolved in the following build & OS:
> > - Version 5.4.4.2 (x64) on 64-bit English Windows 7 Ultimate SP1
> > 
> > *HOWEVER*, it is still attested in the following NEWER builds & OS:
> > - Version 6.0.5.2 (x64) on 64-bit English Windows 7 Ultimate SP1
> > - Version 6.1.4.2 (x64) on 64-bit English Windows 10 Pro
> > - Version 6.2.3.2 (x64) on 64-bit English Windows 10 Pro
> 
> Let's raise the version, then.
> 
> It is possible for you to investigate this deeper:
> https://wiki.documentfoundation.org/QA/Bibisect
> https://wiki.documentfoundation.org/QA/Bibisect/Windows
> 
> It requires a bit of patience to set up.
> 
> Before bibisecting, do check with a fresh master build to confirm the issue
> is still present:
> https://dev-builds.libreoffice.org/daily/master/current.html
> Win-x86_64@tb77-TDF

I confirm this issue is still present:
AltGr; Still get 1st half of any surrogate pair or 1st codepoints of any
ligatures.
Year has passed.

-- 
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 142642] New: know-nothing autosaver saves again after manual saving

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

Bug ID: 142642
   Summary: know-nothing autosaver saves again after manual saving
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcdun...@gmail.com

often after i save manually a big libreoffice doc the know-nothing autosaver
kicks in and saves the thing again, blocking me from working for a few seconds.

why not set the clock of the autosaver back to zero after every time one saves
manually successfully? 

thanks

-- 
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 130565] EDITING: Cannot edit protected document

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

--- Comment #5 from Aron Budea  ---
Created attachment 172604
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172604=edit
Sample DOCX with empty password

-- 
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 113363] [META] DOCX (OOXML) content control-related issues

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

Aron Budea  changed:

   What|Removed |Added

 Depends on||130565


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=130565
[Bug 130565] EDITING: Cannot edit protected 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-bugs] [Bug 113363] [META] DOCX (OOXML) content control-related issues

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

Bug 130565 Summary: EDITING: Cannot edit protected document
https://bugs.documentfoundation.org/show_bug.cgi?id=130565

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|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 120763] [META] DOCX (OOXML) document protection-related issues/enhancements

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

Bug 130565 Summary: EDITING: Cannot edit protected document
https://bugs.documentfoundation.org/show_bug.cgi?id=130565

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|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 130565] EDITING: Cannot edit protected document

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

Aron Budea  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---
Version|6.3.3.2 release |Inherited From OOo
 Blocks||113363

--- Comment #4 from Aron Budea  ---
Bug 120499 is about removing the document protection using a password, while
this bug is about being able to fill in the form fields, which should be
possible.

I'm not sure what it's related to, since the document contains content
controls, I'm adding it to that meta.

It also never worked, in old version even the document protection isn't
imported.

Adding a version of the document that has empty password (it is still
protected). It was created from the original by:
- unzipping it,
- removing the tag  from settings.xml,
- rezipping it,
- readding document protection in Word that only allows filling in forms.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113363
[Bug 113363] [META] DOCX (OOXML) content control-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 142600] Link to External Data Source dialogue should list HTML tables in order

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

--- Comment #3 from stragu  ---
What would the right-click menu give as options, Andreas?

-- 
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 142641] (Editing) Character scale width is reported as 100% if more than one width is selected

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

--- Comment #1 from David F Smith  ---
Created attachment 172603
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172603=edit
Text file with different Scale widths

-- 
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 142641] New: (Editing) Character scale width is reported as 100% if more than one width is selected

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

Bug ID: 142641
   Summary: (Editing) Character scale width is reported as 100% if
more than one width is selected
   Product: LibreOffice
   Version: 7.0.5.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: davidjudysm...@gmail.com

Description:
The attached sample document (created by converting a .pdf to .docx) has
different character scale widths on each line.  Scale widths for individual
words, or a single line, can be changed to 100%, but the entire text can't be
changed at once.

Steps to Reproduce:
1. Open attached file "Scale width bug.odt".  Note that the characters on the
four lines have visibly different widths.
2. Select a word on the first line, then choose Format|Character.  Click on the
Position tab.  Note that the Scale width is 105%.  Change the Scale width to
120% and click OK.  The characters in that word become wider.
3. Select that word and an additional word on that same line, then choose
Format|Character.  Note that the reported Scale width is 100%, even though
neither of the words has that width.  Click OK.  The words do not change width.
4. Select the entire second line and display the character format.  Note that
the Scale width is 85%.  Change the scale width to 100% and click OK.  The
characters become wider.
5. Select all of the text in the document and display the character format. 
Note that the reported Scale width is 100% and that it is not possible to
change it so that it really is 100%.

Actual Results:
As described in the step-by-step.  It appears that when the selected text
includes characters of different widths, the reported Scale width will be 100%,
and there is no way to change it to 100% in a single step.  (It can be changed
to a different width and then, in a separate step, to 100%.)

Expected Results:
By analogy with other character formats (font, point size, etc.), if characters
in the selected text are of different Scale widths, I would expect the reported
Scale width to be blank, so that any new Scale width entered there would affect
the selected text.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 7.0.5.2 (x64)
Build ID: 64390860c6cd0aca4beafafcfd84613dd9dfb63a
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 142635] Copy+paste a sheet with chart results in incorrect chart's data ranges

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
Looks there are several reports that at least looks very similar
https://bugs.documentfoundation.org/buglist.cgi?quicksearch=copy%20sheet%20chart_id=1316194

-- 
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 113673] [WMF] FILEOPEN: Wrong background color of the text in Impress (comment 11)

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

--- Comment #15 from Valek Filippov  ---
Created attachment 172602
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172602=edit
Minified EMF sample

This WMF file has a bunch of Escape records with EPS data in them.
Fortunately this can be safely ignored.

However, because it's a logo, for its letters instead of setting font and
render the text, it draws the letters with polygons.
And for whatever reason* every letter that has more than one path (i.e. either
has more that one element, like "i" or has a closed shape, like "O") instead of
using polygon TWO bitmaps are used.

There is a SetStrechBltMode in front of each bitmap. For the first bitmap it
sets the mode to 1 (black on white) and  for the second to 2 (white on black).
First bitmap uses 0x8800c6 ROP2 and the second one uses 0xee0086.

It looks like renderer for slide-show mode does not implement ROPs properly.

IMHO this is not a WMF import problem. 

(* whatever system generated that file probably was not aware about
SetPolyfillMode and PolyPolygon; and/or wasn't creative enough to draw outer
shape in blue and inner shape in white on top of it.)

-- 
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 142472] Weird autocomplete for range names starting with "Ma"

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

paulo g.  changed:

   What|Removed |Added

Version|7.0.4.2 release |7.2.0.0.alpha0+

-- 
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 142472] Weird autocomplete for range names starting with "Ma"

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

paulo g.  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 142472] Weird autocomplete for range names starting with "Ma"

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

paulo g.  changed:

   What|Removed |Added

 CC||paulo...@hotmail.com

--- Comment #4 from paulo g.  ---
Created attachment 172601
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172601=edit
cell name MAPS

The bug do not exist

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


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

2021-06-03 Thread Tomaž Vajngerl (via logerrit)
 sw/CppunitTest_sw_indexingexport.mk   |   64 
++
 sw/Module_sw.mk   |1 
 sw/qa/extras/htmlexport/IndexingExport.cxx|   44 ++
 sw/qa/extras/htmlexport/data/IndexingExport_VariousParagraphs.odt |binary
 sw/source/filter/html/wrthtml.cxx |   31 
 sw/source/filter/html/wrthtml.hxx |5 
 6 files changed, 142 insertions(+), 3 deletions(-)

New commits:
commit ed984f8e68996bcbdcf590814c41479ba76907f2
Author: Tomaž Vajngerl 
AuthorDate: Mon May 31 22:55:02 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Jun 3 23:05:45 2021 +0200

indexing: start of Indexing Export impl. based on (X)HTML export

This adds a indexing output/export to HTML code, which will output
a xml document that will be used for indexing of the document. It
is based on HTML to reuse the traversal through the doc. model.

It is enabled by setting the "IndexingOutput" export parameter.

This commit only adds in the groundwork, but the output is still
more or less the same as html and the follow up commits will
add more indexing specific changes. The only change is to use
"indexing" as the top level element and the document is a valid
xml (has the xml header).

Also add basic test that the indexing output/export works and
can be parsed as an xml with "indexing" top level element.

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

diff --git a/sw/CppunitTest_sw_indexingexport.mk 
b/sw/CppunitTest_sw_indexingexport.mk
new file mode 100644
index ..814e8d849dec
--- /dev/null
+++ b/sw/CppunitTest_sw_indexingexport.mk
@@ -0,0 +1,64 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# 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/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,sw_indexingexport))
+
+$(eval $(call gb_CppunitTest_use_common_precompiled_header,sw_indexingexport))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sw_indexingexport, \
+sw/qa/extras/htmlexport/IndexingExport \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,sw_indexingexport, \
+comphelper \
+cppu \
+cppuhelper \
+i18nlangtag \
+msfilter \
+sal \
+sfx \
+sot \
+sw \
+swqahelper \
+svl \
+svt \
+test \
+tl \
+unotest \
+utl \
+vcl \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,sw_indexingexport,\
+boost_headers \
+libxml2 \
+))
+
+$(eval $(call gb_CppunitTest_set_include,sw_indexingexport,\
+-I$(SRCDIR)/sw/inc \
+-I$(SRCDIR)/sw/source/core/inc \
+-I$(SRCDIR)/sw/source/uibase/inc \
+-I$(SRCDIR)/sw/qa/inc \
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,sw_indexingexport,\
+udkapi \
+offapi \
+oovbaapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,sw_indexingexport))
+$(eval $(call gb_CppunitTest_use_vcl,sw_indexingexport))
+$(eval $(call gb_CppunitTest_use_rdb,sw_indexingexport,services))
+$(eval $(call gb_CppunitTest_use_configuration,sw_indexingexport))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index a9356124762a..d0ebbea8df45 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -70,6 +70,7 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 CppunitTest_sw_htmlexport \
 CppunitTest_sw_xhtmlexport \
 CppunitTest_sw_htmlimport \
+CppunitTest_sw_indexingexport \
 CppunitTest_sw_macros_test \
 CppunitTest_sw_ooxmlexport \
 CppunitTest_sw_ooxmlexport2 \
diff --git a/sw/qa/extras/htmlexport/IndexingExport.cxx 
b/sw/qa/extras/htmlexport/IndexingExport.cxx
new file mode 100644
index ..f10c6ec08470
--- /dev/null
+++ b/sw/qa/extras/htmlexport/IndexingExport.cxx
@@ -0,0 +1,44 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * 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/.
+ */
+
+#include 
+#include 
+
+#include 
+
+class IndexingExportTest : public SwModelTestBase
+{
+public:
+IndexingExportTest()
+: SwModelTestBase("/sw/qa/extras/htmlexport/data/", "HTML 
(StarWriter)")
+{
+}
+
+private:
+virtual std::unique_ptr preTest(const char*) 

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

2021-06-03 Thread Tomaž Vajngerl (via logerrit)
 sc/source/filter/html/htmlexp.cxx |  106 +++---
 1 file changed, 78 insertions(+), 28 deletions(-)

New commits:
commit abcfae0b64e6733b1de469414fe3c73f94f9a39a
Author: Tomaž Vajngerl 
AuthorDate: Mon May 31 21:24:34 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Jun 3 23:05:22 2021 +0200

calc: clean up HTML export - don't use chaining

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

diff --git a/sc/source/filter/html/htmlexp.cxx 
b/sc/source/filter/html/htmlexp.cxx
index 9fd6e737fab5..270312f594ce 100644
--- a/sc/source/filter/html/htmlexp.cxx
+++ b/sc/source/filter/html/htmlexp.cxx
@@ -344,11 +344,28 @@ void ScHTMLExport::WriteHeader()
 rStrm.WriteCharPtr( "<" ).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_style 
).WriteCharPtr( " " ).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_O_type 
).WriteCharPtr( "=\"text/css\">" );
 
 OUT_LF();
-rStrm.WriteCharPtr( OOO_STRING_SVTOOLS_HTML_body ).WriteCharPtr( "," 
).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_division ).WriteCharPtr( "," 
).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_table ).WriteCharPtr( "," )
-   .WriteCharPtr( OOO_STRING_SVTOOLS_HTML_thead ).WriteCharPtr( "," 
).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_tbody ).WriteCharPtr( "," 
).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_tfoot ).WriteCharPtr( "," )
-   .WriteCharPtr( OOO_STRING_SVTOOLS_HTML_tablerow ).WriteCharPtr( "," 
).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_tableheader ).WriteCharPtr( "," )
-   .WriteCharPtr( OOO_STRING_SVTOOLS_HTML_tabledata ).WriteCharPtr( "," 
).WriteCharPtr( OOO_STRING_SVTOOLS_HTML_parabreak )
-   .WriteCharPtr( " { " ).WriteCharPtr( "font-family:" );
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_body);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_division);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_table);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_thead);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_tbody);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_tfoot);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_tablerow);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_tableheader);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_tabledata);
+rStrm.WriteCharPtr(",");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_parabreak);
+rStrm.WriteCharPtr(" { ");
+rStrm.WriteCharPtr("font-family:");
+
 if (!aHTMLStyle.aFontFamilyName.isEmpty())
 {
 const OUString& rList = aHTMLStyle.aFontFamilyName;
@@ -362,43 +379,76 @@ void ScHTMLExport::WriteHeader()
 rStrm.WriteCharPtr( ", " );
 }
 }
-rStrm.WriteCharPtr( "; " ).WriteCharPtr( "font-size:" )
-   .WriteCharPtr( GetFontSizeCss( 
static_cast(aHTMLStyle.nFontHeight) ) ).WriteCharPtr( " }" );
+rStrm.WriteCharPtr("; ");
+rStrm.WriteCharPtr("font-size:");
+
rStrm.WriteCharPtr(GetFontSizeCss(static_cast(aHTMLStyle.nFontHeight)));
+rStrm.WriteCharPtr(" }");
 
 OUT_LF();
 
 // write the style for the comments to make them stand out from normal 
cell content
 // this is done through only showing the cell contents when the custom 
indicator is hovered
-rStrm.WriteCharPtr( OOO_STRING_SVTOOLS_HTML_anchor 
).WriteCharPtr(".comment-indicator:hover")
-   .WriteCharPtr(" + ").WriteCharPtr( OOO_STRING_SVTOOLS_HTML_comment2 
).WriteCharPtr(" { ")
-   .WriteCharPtr(sBackground).WriteCharPtr("#ffd").WriteCharPtr("; ")
-   .WriteCharPtr("position:").WriteCharPtr("absolute").WriteCharPtr("; ")
-   .WriteCharPtr(sDisplay).WriteCharPtr("block").WriteCharPtr("; ")
-   .WriteCharPtr(sBorder).WriteCharPtr("1px solid black").WriteCharPtr("; 
")
-   .WriteCharPtr("padding:").WriteCharPtr("0.5em").WriteCharPtr("; ")
-   .WriteCharPtr(" } ");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_anchor);
+rStrm.WriteCharPtr(".comment-indicator:hover");
+rStrm.WriteCharPtr(" + ");
+rStrm.WriteCharPtr(OOO_STRING_SVTOOLS_HTML_comment2);
+rStrm.WriteCharPtr(" { ");
+rStrm.WriteCharPtr(sBackground);
+rStrm.WriteCharPtr("#ffd");
+rStrm.WriteCharPtr("; ");
+rStrm.WriteCharPtr("position:");
+rStrm.WriteCharPtr("absolute");
+rStrm.WriteCharPtr("; ");
+rStrm.WriteCharPtr(sDisplay);
+rStrm.WriteCharPtr("block");
+rStrm.WriteCharPtr("; ");
+rStrm.WriteCharPtr(sBorder);
+rStrm.WriteCharPtr("1px solid black");
+rStrm.WriteCharPtr("; ");
+rStrm.WriteCharPtr("padding:");
+rStrm.WriteCharPtr("0.5em");
+rStrm.WriteCharPtr("; ");
+rStrm.WriteCharPtr(" } ");
 
 OUT_LF();
 
-rStrm.WriteCharPtr( OOO_STRING_SVTOOLS_HTML_anchor 

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

2021-06-03 Thread Tomaž Vajngerl (via logerrit)
 include/svtools/HtmlWriter.hxx   |5 +
 svtools/qa/unit/testHtmlWriter.cxx   |   17 +
 svtools/source/svhtml/HtmlWriter.cxx |   29 -
 3 files changed, 46 insertions(+), 5 deletions(-)

New commits:
commit 685c8db519b022f879cf575ec763d00de98906a3
Author: Tomaž Vajngerl 
AuthorDate: Mon May 31 21:14:41 2021 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Jun 3 23:05:05 2021 +0200

HtmlWriter: add end tag checking and helper for attribute writing

Added an input variable to end to enter the name of which variable
is ending. This is to check that the expected end tag is actually
written.

Added writeAttribute, which is independent from HtmlWriter and just
writes the HTML attribute format to the stream.

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

diff --git a/include/svtools/HtmlWriter.hxx b/include/svtools/HtmlWriter.hxx
index 1821336fb678..21ccad0cd96d 100644
--- a/include/svtools/HtmlWriter.hxx
+++ b/include/svtools/HtmlWriter.hxx
@@ -38,10 +38,15 @@ public:
 
 void start(const OString& aElement);
 
+bool end(const OString& aElement);
 void end();
 
 void flushStack();
 
+static void writeAttribute(SvStream& rStream, std::string_view aAttribute, 
sal_Int32 aValue);
+static void writeAttribute(SvStream& rStream, std::string_view aAttribute,
+   std::string_view aValue);
+
 void attribute(std::string_view aAttribute, const char* aValue);
 void attribute(std::string_view aAttribute, sal_Int32 aValue);
 void attribute(std::string_view aAttribute, std::string_view aValue);
diff --git a/svtools/qa/unit/testHtmlWriter.cxx 
b/svtools/qa/unit/testHtmlWriter.cxx
index 7154b770a682..7016b77257bb 100644
--- a/svtools/qa/unit/testHtmlWriter.cxx
+++ b/svtools/qa/unit/testHtmlWriter.cxx
@@ -181,6 +181,23 @@ CPPUNIT_TEST_FIXTURE(Test, testCharacters)
 CPPUNIT_ASSERT_EQUAL(OString("hello"), aString);
 }
 
+CPPUNIT_TEST_FIXTURE(Test, testExactElementEnd)
+{
+SvMemoryStream aStream;
+
+HtmlWriter aHtml(aStream);
+aHtml.prettyPrint(false);
+aHtml.start("start");
+aHtml.start("a");
+CPPUNIT_ASSERT(aHtml.end("a"));
+aHtml.start("b");
+CPPUNIT_ASSERT(!aHtml.end("c"));
+CPPUNIT_ASSERT(aHtml.end("start"));
+
+OString aString = extractFromStream(aStream);
+CPPUNIT_ASSERT_EQUAL(OString(""), aString);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svtools/source/svhtml/HtmlWriter.cxx 
b/svtools/source/svhtml/HtmlWriter.cxx
index a4d1b0e3b5ea..8cd7dc8705b4 100644
--- a/svtools/source/svhtml/HtmlWriter.cxx
+++ b/svtools/source/svhtml/HtmlWriter.cxx
@@ -10,6 +10,7 @@
 
 #include 
 #include 
+#include 
 
 HtmlWriter::HtmlWriter(SvStream& rStream, std::string_view rNamespace) :
 mrStream(rStream),
@@ -80,6 +81,14 @@ void HtmlWriter::flushStack()
 }
 }
 
+bool HtmlWriter::end(const OString& aElement)
+{
+bool bExpected = maElementStack.back() == aElement;
+SAL_WARN_IF(!bExpected, "svtools", "HtmlWriter: end element mismatch - '" 
<< aElement << "' expected '" << maElementStack.back() << "'");
+end();
+return bExpected;
+}
+
 void HtmlWriter::end()
 {
 if (mbElementOpen && !mbCharactersWritten)
@@ -108,16 +117,26 @@ void HtmlWriter::end()
 mbCharactersWritten = false;
 }
 
+void HtmlWriter::writeAttribute(SvStream& rStream, std::string_view 
aAttribute, sal_Int32 aValue)
+{
+writeAttribute(rStream, aAttribute, OString::number(aValue));
+}
+
+void HtmlWriter::writeAttribute(SvStream& rStream, std::string_view 
aAttribute, std::string_view aValue)
+{
+rStream.WriteOString(aAttribute);
+rStream.WriteChar('=');
+rStream.WriteChar('"');
+rStream.WriteOString(aValue);
+rStream.WriteChar('"');
+}
+
 void HtmlWriter::attribute(std::string_view aAttribute, std::string_view 
aValue)
 {
 if (mbElementOpen && !aAttribute.empty() && !aValue.empty())
 {
 mrStream.WriteChar(' ');
-mrStream.WriteOString(aAttribute);
-mrStream.WriteChar('=');
-mrStream.WriteChar('"');
-mrStream.WriteOString(aValue);
-mrStream.WriteChar('"');
+writeAttribute(mrStream, aAttribute, aValue);
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142264] charts lost by calc export to xlsx

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

--- Comment #8 from paulyste...@web.de ---
I test again with 

Version: 7.1.4.1 (x64) / LibreOffice Community
Build ID: f67b1ddedeb24fca1c5938e7cebfab73d708b35b
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: CL

The size of ods changed to more significant in the micro files in 7.14.1.

Same behavior and size of save in XLSX.

-- 
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 43742] EDITING: Auto-complete logic does not help editing

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

paulo g.  changed:

   What|Removed |Added

Version|3.4.2 release   |7.0.0.0.alpha0+

-- 
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 43742] EDITING: Auto-complete logic does not help editing

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

paulo g.  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #9 from paulo g.  ---
Calc choose not the most used word, but it choose the near alphabetic letter.

-- 
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 43742] EDITING: Auto-complete logic does not help editing

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

--- Comment #8 from paulo g.  ---
Created attachment 172600
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172600=edit
calc example

-- 
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 135237] Image on wrong page after undo rejecting track changes

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

Telesto  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from Telesto  ---
Still repro
related to step 2: -> Place cursor at the end/bottom of the document (toggle
formatting marks on to see where)

Version: 7.2.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 3b57ebb445df8a2bc3d916ea79f8af45e20e4e62
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

-- 
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 141764] Wrong image showing Weblate in Firefox.

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

lach...@gmail.com 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


Tobias Schulz license statement

2021-06-03 Thread Tobias Schulz
All of my past & future contributions to LibreOffice may be licensed under the 
MPLv2/LGPLv3+ dual license.

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - xmloff/source

2021-06-03 Thread Noel Grandin (via logerrit)
 xmloff/source/core/XMLEmbeddedObjectImportContext.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 5f70c1f1ebd67db3f98ec132baf40e629de7a1c1
Author: Noel Grandin 
AuthorDate: Thu Jun 3 14:15:13 2021 +0200
Commit: Xisco Fauli 
CommitDate: Thu Jun 3 21:54:27 2021 +0200

tdf#142546 broken formulas in .FODT files

regression from
commit 81fe31d2c8977791f9b90ab1da4fbb1a778f87fb
Date:   Tue Nov 3 18:25:10 2020 +0200
use fastparser in XMLEmbeddedObjectImportContext

Change-Id: Ib5bae81001ae97c574c078c979484f016c7d4323
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116664
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
(cherry picked from commit 06a983b213b8fb71fdac1004868d7b4fdd6a9833)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116470
Reviewed-by: Xisco Fauli 

diff --git a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx 
b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
index 5f6073d171bc..e468384122dd 100644
--- a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
+++ b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
@@ -135,6 +135,11 @@ void XMLEmbeddedObjectImportContext::SetComponent( 
Reference< XComponent > const
 xImporter->setTargetDocument( rComp );
 
 xComp = rComp;  // keep ref to component only if there is a handler
+
+// #i34042: copy namepspace declarations
+// We created a new instance of XMLImport, so we need to propogate the 
namespace
+// declarations to it.
+pFastHandler->GetNamespaceMap() = GetImport().GetNamespaceMap();
 }
 
 XMLEmbeddedObjectImportContext::XMLEmbeddedObjectImportContext(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142546] FILEOPEN LO 7.1.3 breaks formulas in .FODT files

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

--- Comment #7 from Commit Notification 
 ---
Noel Grandin committed a patch related to this issue.
It has been pushed to "libreoffice-7-1":

https://git.libreoffice.org/core/commit/5f70c1f1ebd67db3f98ec132baf40e629de7a1c1

tdf#142546 broken formulas in .FODT files

It will be available in 7.1.5.

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 142546] FILEOPEN LO 7.1.3 breaks formulas in .FODT files

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.2.0|target:7.2.0 target:7.1.5

-- 
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 142638] CRASH: leaving embedded object (GTK3)

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
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 142638] CRASH: leaving embedded object (GTK3)

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Created attachment 172599
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172599=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this.

-- 
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: vcl/inc vcl/Library_vclplug_gtk4.mk vcl/unx

2021-06-03 Thread Caolán McNamara (via logerrit)
 vcl/Library_vclplug_gtk4.mk  |1 
 vcl/inc/unx/gtk/gtkdata.hxx  |2 
 vcl/unx/gtk3/gtkdata.cxx |   57 ++
 vcl/unx/gtk3/gtkinst.cxx |  892 ---
 vcl/unx/gtk4/convert3to4.cxx |  889 ++
 vcl/unx/gtk4/gtkinst.cxx |2 
 6 files changed, 957 insertions(+), 886 deletions(-)

New commits:
commit 774be6d793203183fe1856ffb8b720f00b48c2bb
Author: Caolán McNamara 
AuthorDate: Thu Jun 3 17:07:33 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jun 3 21:10:27 2021 +0200

split .ui conversion code into its own file

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

diff --git a/vcl/Library_vclplug_gtk4.mk b/vcl/Library_vclplug_gtk4.mk
index 3f1c3ebe88a7..e3cc415be738 100644
--- a/vcl/Library_vclplug_gtk4.mk
+++ b/vcl/Library_vclplug_gtk4.mk
@@ -84,6 +84,7 @@ $(eval $(call gb_Library_add_exception_objects,vclplug_gtk4,\
 vcl/unx/gtk4/fpicker/SalGtkFilePicker \
 vcl/unx/gtk4/fpicker/SalGtkFolderPicker \
 vcl/unx/gtk4/fpicker/SalGtkPicker \
+vcl/unx/gtk4/convert3to4 \
 vcl/unx/gtk4/gtkdata \
 vcl/unx/gtk4/gtkinst \
 vcl/unx/gtk4/gtksys \
diff --git a/vcl/inc/unx/gtk/gtkdata.hxx b/vcl/inc/unx/gtk/gtkdata.hxx
index cc37cd12a19b..ef257c7d83b9 100644
--- a/vcl/inc/unx/gtk/gtkdata.hxx
+++ b/vcl/inc/unx/gtk/gtkdata.hxx
@@ -195,6 +195,8 @@ inline GdkGLContext* surface_create_gl_context(GdkSurface* 
pSurface)
 typedef GtkClipboard GdkClipboard;
 #endif
 
+int getButtonPriority(const OString );
+
 class GtkSalTimer final : public SalTimer
 {
 struct SalGtkTimeoutSource *m_pTimeout;
diff --git a/vcl/unx/gtk3/gtkdata.cxx b/vcl/unx/gtk3/gtkdata.cxx
index 5bd818e83491..14877985919c 100644
--- a/vcl/unx/gtk3/gtkdata.cxx
+++ b/vcl/unx/gtk3/gtkdata.cxx
@@ -843,4 +843,61 @@ void GtkSalDisplay::deregisterFrame( SalFrame* pFrame )
 SalGenericDisplay::deregisterFrame( pFrame );
 }
 
+namespace {
+
+struct ButtonOrder
+{
+const char * m_aType;
+int m_nPriority;
+};
+
+}
+
+int getButtonPriority(const OString )
+{
+static const size_t N_TYPES = 8;
+static const ButtonOrder aDiscardCancelSave[N_TYPES] =
+{
+{ "/discard", 0 },
+{ "/cancel", 1 },
+{ "/close", 1 },
+{ "/no", 2 },
+{ "/open", 3 },
+{ "/save", 3 },
+{ "/yes", 3 },
+{ "/ok", 3 }
+};
+
+static const ButtonOrder aSaveDiscardCancel[N_TYPES] =
+{
+{ "/open", 0 },
+{ "/save", 0 },
+{ "/yes", 0 },
+{ "/ok", 0 },
+{ "/discard", 1 },
+{ "/no", 1 },
+{ "/cancel", 2 },
+{ "/close", 2 }
+};
+
+const ButtonOrder* pOrder = [0];
+
+const OUString  = Application::GetDesktopEnvironment();
+
+if (rEnv.equalsIgnoreAsciiCase("windows") ||
+rEnv.equalsIgnoreAsciiCase("tde") ||
+rEnv.startsWithIgnoreAsciiCase("kde"))
+{
+pOrder = [0];
+}
+
+for (size_t i = 0; i < N_TYPES; ++i, ++pOrder)
+{
+if (rType.endsWith(pOrder->m_aType))
+return pOrder->m_nPriority;
+}
+
+return -1;
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 3a42aace7132..90cc8603b855 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -27,9 +27,9 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -44,8 +44,6 @@
 #if !GTK_CHECK_VERSION(4, 0, 0)
 #include "a11y/atkwrapper.hxx"
 #endif
-#include 
-#include 
 #include 
 #include 
 #include 
@@ -59,14 +57,11 @@
 #include 
 #include 
 #include 
-#include 
-#include 
-#include 
 #include 
 #include 
 #include 
-#include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -148,16 +143,16 @@ extern "C"
 XInitThreads();
 #endif
 
+#if !GTK_CHECK_VERSION(4, 0, 0)
 // init gdk thread protection
 bool const sup = g_thread_supported();
 // extracted from the 'if' to avoid Clang -Wunreachable-code
 if ( !sup )
 g_thread_init( nullptr );
 
-#if !GTK_CHECK_VERSION(4, 0, 0)
 gdk_threads_set_lock_functions (GdkThreadsEnter, GdkThreadsLeave);
-#endif
 SAL_INFO("vcl.gtk", "Hooked gdk threads locks");
+#endif
 
 auto pYieldMutex = std::make_unique();
 
@@ -5173,70 +5168,6 @@ std::unique_ptr 
GtkInstanceWidget::weld_parent() const
 
 namespace {
 
-struct ButtonOrder
-{
-const char * m_aType;
-int m_nPriority;
-};
-
-int getButtonPriority(const OString )
-{
-static const size_t N_TYPES = 8;
-static const ButtonOrder aDiscardCancelSave[N_TYPES] =
-{
-{ "/discard", 0 },
-{ "/cancel", 1 },
-{ "/close", 1 },
-{ "/no", 2 },
-{ "/open", 3 },
-{ "/save", 3 },
-{ "/yes", 3 },
-  

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

2021-06-03 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtkinst.cxx |   57 +++
 1 file changed, 53 insertions(+), 4 deletions(-)

New commits:
commit 4ac6cea4be724ade2e3ab672ff7443af82174ea0
Author: Caolán McNamara 
AuthorDate: Thu Jun 3 16:20:59 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jun 3 21:09:47 2021 +0200

gtk4: transform always-show-image into a GtkBox child for the GtkButton

and append a GtkLabel child in the GtkBox and move any existing label
property into it.

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

diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 22cf2860adc3..3a42aace7132 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -21096,13 +21096,19 @@ struct ConvertResult
 bool m_bChildCanFocus;
 bool m_bHasVisible;
 bool m_bHasIconName;
+bool m_bAlwaysShowImage;
+css::uno::Reference m_xPropertyLabel;
 
 ConvertResult(bool bChildCanFocus,
   bool bHasVisible,
-  bool bHasIconName)
+  bool bHasIconName,
+  bool bAlwaysShowImage,
+  const css::uno::Reference& 
rPropertyLabel)
 : m_bChildCanFocus(bChildCanFocus)
 , m_bHasVisible(bHasVisible)
 , m_bHasIconName(bHasIconName)
+, m_bAlwaysShowImage(bAlwaysShowImage)
+, m_xPropertyLabel(rPropertyLabel)
 {
 }
 };
@@ -2,7 +21117,7 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 {
 css::uno::Reference xNodeList = 
xNode->getChildNodes();
 if (!xNodeList.is())
-return ConvertResult(false, false, false);
+return ConvertResult(false, false, false, false, nullptr);
 
 std::vector> xRemoveList;
 
@@ -21119,6 +21125,8 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 bool bChildCanFocus = false;
 bool bHasVisible = false;
 bool bHasIconName = false;
+bool bAlwaysShowImage = false;
+css::uno::Reference xPropertyLabel;
 css::uno::Reference xCantFocus;
 
 css::uno::Reference xChild = xNode->getFirstChild();
@@ -21189,6 +21197,9 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 }
 }
 
+if (sName == "label")
+xPropertyLabel = xChild;
+
 if (sName == "visible")
 bHasVisible = true;
 
@@ -21280,7 +21291,10 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 {
 if (GetParentObjectType(xChild) == "GtkButton")
 {
-// TODO add an intermediate container ?
+// we will turn always-show-image into a GtkBox child for
+// GtkButton and a GtkLabel child for the GtkBox and move
+// the label property into it.
+bAlwaysShowImage = 
toBool(xChild->getFirstChild()->getNodeValue());
 xRemoveList.push_back(xChild);
 }
 }
@@ -21526,6 +21540,8 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 
 bool bChildHasIconName = false;
 bool bChildHasVisible = false;
+bool bChildAlwaysShowImage = false;
+css::uno::Reference xChildPropertyLabel;
 if (xChild->hasChildNodes())
 {
 auto aChildRes = Convert3To4(xChild);
@@ -21539,6 +21555,8 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 {
 bChildHasVisible = aChildRes.m_bHasVisible;
 bChildHasIconName = aChildRes.m_bHasIconName;
+bChildAlwaysShowImage = aChildRes.m_bAlwaysShowImage;
+xChildPropertyLabel = aChildRes.m_xPropertyLabel;
 }
 }
 
@@ -21713,6 +21731,37 @@ ConvertResult Convert3To4(const 
Reference& xNode)
 else
 xChild->appendChild(xVisible);
 }
+
+if (bChildAlwaysShowImage)
+{
+auto xImageCandidateNode = xChild->getLastChild();
+if (xImageCandidateNode && xImageCandidateNode->getNodeName() 
!= "child")
+xImageCandidateNode.clear();
+if (xImageCandidateNode)
+xChild->removeChild(xImageCandidateNode);
+
+css::uno::Reference xNewChildNode = 
xDoc->createElement("child");
+css::uno::Reference xNewObjectNode = 
xDoc->createElement("object");
+css::uno::Reference xBoxClassName = 
xDoc->createAttribute("class");
+xBoxClassName->setValue("GtkBox");
+xNewObjectNode->setAttributeNode(xBoxClassName);
+xNewChildNode->appendChild(xNewObjectNode);
+
+xChild->appendChild(xNewChildNode);
+
+css::uno::Reference 
xNewLabelChildNode = xDoc->createElement("child");
+

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

2021-06-03 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtkinst.cxx |4 
 1 file changed, 4 insertions(+)

New commits:
commit 641bfc7a09ea3b11cd9164a597ef52917d11e3a8
Author: Caolán McNamara 
AuthorDate: Thu Jun 3 16:21:45 2021 +0100
Commit: Caolán McNamara 
CommitDate: Thu Jun 3 21:09:30 2021 +0200

gtk4: don't call gtk_widget_destroy on a GtkPopover

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

diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 566e1d0aa53e..22cf2860adc3 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -22599,7 +22599,11 @@ public:
 GtkPopover* pPopover = GTK_POPOVER(gtk_builder_get_object(m_pBuilder, 
id.getStr()));
 if (!pPopover)
 return nullptr;
+#if GTK_CHECK_VERSION(4, 0, 0)
+return std::make_unique(pPopover, this, false);
+#else
 return std::make_unique(pPopover, this, true);
+#endif
 }
 
 virtual std::unique_ptr weld_toolbar(const OString ) 
override
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136762] LibreOffice does not paste after v7

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

--- Comment #22 from b.  ---
propose 'WFM' as it's most likely just a variant of the fixed 'clipboard
blocked problem(s)',

-- 
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 142600] Link to External Data Source dialogue should list HTML tables in order

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

--- Comment #2 from Andreas Heinisch  ---
Should we just sort them by order of appearance or even add a right click
context menu? Or would that be a little bit overkill?

-- 
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 131506] [WMF/EMF] FILEOPEN: Gradient background no longer displayed

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

--- Comment #8 from Valek Filippov  ---
EMF part has a StretchDIBits record with bitmap of the background gradient.
If EMF+ records are removed, then LO uses this bitmap and shows things
correctly.

("disable EMF+" could be a sort of "workaround")

-- 
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 131506] [WMF/EMF] FILEOPEN: Gradient background no longer displayed

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

--- Comment #7 from Valek Filippov  ---
Created attachment 172598
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172598=edit
Minified EMF sample

Only EMF+ part shrunk to "Header, Object, FillRects, EOF"

-- 
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 117718] [META] Flat XML/ODF issues

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

Aron Budea  changed:

   What|Removed |Added

Summary|[META] Flat xml/odf issues  |[META] Flat XML/ODF 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 136417] [FORMATTING] Border Style always switches from 7th option to 4th after reopening spreadsheet.

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

Buovjaga  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

-- 
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 136417] [FORMATTING] Border Style always switches from 7th option to 4th after reopening spreadsheet.

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

BogdanB  changed:

   What|Removed |Added

 OS|Windows (All)   |All

-- 
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 136417] [FORMATTING] Border Style always switches from 7th option to 4th after reopening spreadsheet.

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

--- Comment #5 from BogdanB  ---
Created attachment 172597
  --> https://bugs.documentfoundation.org/attachment.cgi?id=172597=edit
video of the bug

Confirm with
Version: 7.1.3.2 / LibreOffice Community
Build ID: 47f78053abe362b9384784d31a6e56f8511eb1c1
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

See the video.

-- 
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 131506] [WMF/EMF] FILEOPEN: Gradient background no longer displayed

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

Valek Filippov  changed:

   What|Removed |Added

 Attachment #171952|image/wmf   |image/emf
  mime type||
 Attachment #171952|WMF file extracted from ppt |EMF file extracted from ppt
description||

-- 
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 142629] Importing psd image with transparent background results in "Unknown image format"

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

Julien Nabet  changed:

   What|Removed |Added

 CC|serval2...@yahoo.fr |

--- Comment #9 from Julien Nabet  ---
(argh, wrong key, the comment was sent)
So it was filter/source/graphicfilter/ipsd/ipsd.cxx before this.
When looking at git history, there's not really improvement in PSD
implementation. It's above all about logging, clean code, etc.

But when you see psd specs
https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577409_pgfId-1055726
and take a look at Gimp implementation, plug-ins/file-psd/psd-load.c it seems
LO is a bit far.

Anyway, can't help here=>uncc myself

-- 
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 142629] Importing psd image with transparent background results in "Unknown image format"

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

--- Comment #8 from Julien Nabet  ---
For those interested the code is in vcl/source/filter/ipsd/ipsd.cxx.
Before d338dc277d7dbe381d669728e30a1c2606a4814a
author  Tomaž Vajngerl  2021-02-15 09:57:51
+0900
committer   Tomaž Vajngerl2021-02-17 05:53:49
+0100
commit  d338dc277d7dbe381d669728e30a1c2606a4814a (patch)
tree8efb88cafbf827e38a55ab42e247b3c378ecb2fb
parent  509814d936461cb7690862eac8d6c88e9f412362 (diff)
Move PSD reader from filter module into VCL
it wa

-- 
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 79069] DOCX: cannot delete table with Tracking changes (before: could be deleted but made a comeback after RT)

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

László Németh  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Assignee|nem...@numbertext.org   |libreoffice-b...@lists.free
   ||desktop.org
 Status|ASSIGNED|RESOLVED

--- Comment #16 from László Németh  ---
tdf#79069 DOCX: support tracked table (row) deletion

Only DOCX round-trip was supported for tracked table and
table row deletions. Now change tracking of newly
deleted tables and table rows is exported in DOCX.

Also the DOCX import is handled by Manage Changes now:
accepting the deleted ranges of a deleted row removes
also the table row, not only its text content.

Follow-up to commit 05366b8e6683363688de8708a3d88cf144c7a2bf
"tdf#60382 sw offapi: add change tracking of table/row deletion".

-- 
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 104444] [META] DOCX (OOXML) table-related issues

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

Bug 79069 Summary: DOCX: cannot delete table with Tracking changes (before: 
could be deleted but made a comeback after RT)
https://bugs.documentfoundation.org/show_bug.cgi?id=79069

   What|Removed |Added

 Status|ASSIGNED|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 115709] [META] DOCX (OOXML) Tracking changes-related issues

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

Bug 79069 Summary: DOCX: cannot delete table with Tracking changes (before: 
could be deleted but made a comeback after RT)
https://bugs.documentfoundation.org/show_bug.cgi?id=79069

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


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

2021-06-03 Thread László Németh (via logerrit)
 sw/qa/extras/uiwriter/uiwriter2.cxx  |   59 +++
 sw/source/core/unocore/unocrsrhelper.cxx |   16 ++-
 sw/source/filter/ww8/docxattributeoutput.cxx |   59 ++-
 3 files changed, 132 insertions(+), 2 deletions(-)

New commits:
commit 896c2199d9f0a28bd405dd2d1068f5e2973cdf06
Author: László Németh 
AuthorDate: Thu Jun 3 12:13:49 2021 +0200
Commit: László Németh 
CommitDate: Thu Jun 3 19:10:59 2021 +0200

tdf#79069 DOCX: support tracked table (row) deletion

Only DOCX round-trip was supported for tracked table and
table row deletions. Now change tracking of newly
deleted tables and table rows is exported in DOCX.

Also the DOCX import is handled by Manage Changes now:
accepting the deleted ranges of a deleted row removes
also the table row, not only its text content.

Follow-up to commit 05366b8e6683363688de8708a3d88cf144c7a2bf
"tdf#60382 sw offapi: add change tracking of table/row deletion".

Change-Id: Ic02e0adbda11032acb9616c262c2fce134f6b07c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116652
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/uiwriter/uiwriter2.cxx 
b/sw/qa/extras/uiwriter/uiwriter2.cxx
index d91c89848495..de0c06f5d6bb 100644
--- a/sw/qa/extras/uiwriter/uiwriter2.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter2.cxx
@@ -3822,6 +3822,65 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, 
testRedlineTableRowDeletionWithExport)
 assertXPath(pXmlDoc, "//page[1]//body/tab", 0);
 }
 
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, 
testRedlineTableRowDeletionWithDOCXExport)
+{
+// load a 1-row table, and delete the row with enabled change tracking:
+// now the row is not deleted silently, but keeps the deleted cell 
contents,
+// and only accepting all of them will result the deletion of the table 
row.
+SwDoc* pDoc = createDoc("tdf118311.fodt");
+
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+CPPUNIT_ASSERT(pTextDoc);
+
+// turn on red-lining and show changes
+pDoc->getIDocumentRedlineAccess().SetRedlineFlags(RedlineFlags::On | 
RedlineFlags::ShowDelete
+  | 
RedlineFlags::ShowInsert);
+CPPUNIT_ASSERT_MESSAGE("redlining should be on",
+   pDoc->getIDocumentRedlineAccess().IsRedlineOn());
+CPPUNIT_ASSERT_MESSAGE(
+"redlines should be visible",
+
IDocumentRedlineAccess::IsShowChanges(pDoc->getIDocumentRedlineAccess().GetRedlineFlags()));
+
+// check table
+xmlDocUniquePtr pXmlDoc = parseLayoutDump();
+assertXPath(pXmlDoc, "//page[1]//body/tab");
+
+// delete table row with enabled change tracking
+// (HasTextChangesOnly property of the row will be false)
+dispatchCommand(mxComponent, ".uno:DeleteRows", {});
+
+// Deleted text content with change tracking,
+// but not table deletion
+discardDumpedLayout();
+pXmlDoc = parseLayoutDump();
+assertXPath(pXmlDoc, "//page[1]//body/tab");
+
+// Save it to a DOCX and load it back.
+// Exporting change tracking of the row wasn't supported.
+// Also Manage Changes for the import.
+reload("Office Open XML Text", "tdf79069_tracked_table_deletion.docx");
+pTextDoc = dynamic_cast(mxComponent.get());
+pDoc = pTextDoc->GetDocShell()->GetWrtShell()->GetDoc();
+
+// accept the deletion of the content of the first cell
+SwEditShell* const pEditShell(pDoc->GetEditShell());
+CPPUNIT_ASSERT_EQUAL(static_cast(2), 
pEditShell->GetRedlineCount());
+pEditShell->AcceptRedline(0);
+
+// table row was still not deleted
+pXmlDoc = parseLayoutDump();
+assertXPath(pXmlDoc, "//page[1]//body/tab");
+
+// accept last redline
+pEditShell->AcceptRedline(0);
+
+// table row (and the 1-row table) was deleted finally
+// (working export/import of HasTextChangesOnly)
+discardDumpedLayout();
+pXmlDoc = parseLayoutDump();
+assertXPath(pXmlDoc, "//page[1]//body/tab", 0);
+}
+
 CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf128335)
 {
 // Load the bugdoc, which has 3 textboxes.
diff --git a/sw/source/core/unocore/unocrsrhelper.cxx 
b/sw/source/core/unocore/unocrsrhelper.cxx
index 32b449b97403..58d5dbf6b11e 100644
--- a/sw/source/core/unocore/unocrsrhelper.cxx
+++ b/sw/source/core/unocore/unocrsrhelper.cxx
@@ -72,6 +72,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1388,7 +1389,8 @@ void makeTableRowRedline( SwTableLine& rTableLine,
 std::u16string_view rRedlineType,
 const uno::Sequence< beans::PropertyValue >& rRedlineProperties )
 {
-IDocumentRedlineAccess* pRedlineAccess = 
()->GetDoc()->getIDocumentRedlineAccess();
+SwDoc* pDoc = rTableLine.GetFrameFormat()->GetDoc();
+IDocumentRedlineAccess* pRedlineAccess = 
>getIDocumentRedlineAccess();
 
 RedlineType eType;
 if ( rRedlineType == u"TableRowInsert" )
@@ 

[Libreoffice-bugs] [Bug 142546] FILEOPEN LO 7.1.3 breaks formulas in .FODT files

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

Noel Grandin  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 117718] [META] Flat xml/odf issues

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

Bug 142546 Summary: FILEOPEN LO 7.1.3 breaks formulas in .FODT files
https://bugs.documentfoundation.org/show_bug.cgi?id=142546

   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 142546] FILEOPEN LO 7.1.3 breaks formulas in .FODT files

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

--- Comment #6 from Commit Notification 
 ---
Noel Grandin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/06a983b213b8fb71fdac1004868d7b4fdd6a9833

tdf#142546 broken formulas in .FODT files

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 142546] FILEOPEN LO 7.1.3 breaks formulas in .FODT files

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

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

2021-06-03 Thread Noel Grandin (via logerrit)
 xmloff/source/core/XMLEmbeddedObjectImportContext.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 06a983b213b8fb71fdac1004868d7b4fdd6a9833
Author: Noel Grandin 
AuthorDate: Thu Jun 3 14:15:13 2021 +0200
Commit: Noel Grandin 
CommitDate: Thu Jun 3 18:44:59 2021 +0200

tdf#142546 broken formulas in .FODT files

regression from
commit 81fe31d2c8977791f9b90ab1da4fbb1a778f87fb
Date:   Tue Nov 3 18:25:10 2020 +0200
use fastparser in XMLEmbeddedObjectImportContext

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

diff --git a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx 
b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
index 79705901cf2d..56ae47bfab05 100644
--- a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
+++ b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
@@ -135,6 +135,11 @@ void XMLEmbeddedObjectImportContext::SetComponent( 
Reference< XComponent > const
 xImporter->setTargetDocument( rComp );
 
 xComp = rComp;  // keep ref to component only if there is a handler
+
+// #i34042: copy namepspace declarations
+// We created a new instance of XMLImport, so we need to propogate the 
namespace
+// declarations to it.
+pFastHandler->GetNamespaceMap() = GetImport().GetNamespaceMap();
 }
 
 XMLEmbeddedObjectImportContext::XMLEmbeddedObjectImportContext(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 142640] New: in Writer - scrolling very slow

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

Bug ID: 142640
   Summary: in Writer - scrolling very slow
   Product: LibreOffice
   Version: 7.0.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mozi...@ajms.dk

scrolling happens very slow - especially when selecting text.

and, text displays broken, during normal scrolling

This has been happening with v6.x and now v7.0.5.

My HW:
- nVidia GT750.
- Intel i5 4460.
- SSD.
- 16GB memory.

-- 
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-06-03 Thread Mike Kaganski (via logerrit)
 sc/qa/uitest/calc_tests8/tdf126248.py |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5ff18d90fda5cda1d06176adac134e6b41f4f393
Author: Mike Kaganski 
AuthorDate: Thu Jun 3 16:39:23 2021 +0200
Commit: Mike Kaganski 
CommitDate: Thu Jun 3 18:39:04 2021 +0200

Fix UITest

Don't use "Default" entries in the test - it would break on any system
with different default locale.

Wait until the change takes place.

Change-Id: Ia3740c65f83c2cbc097a1d86572d381c9d5f8200
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116469
Reviewed-by: Xisco Fauli 
Reviewed-by: Mike Kaganski 
Tested-by: Jenkins

diff --git a/sc/qa/uitest/calc_tests8/tdf126248.py 
b/sc/qa/uitest/calc_tests8/tdf126248.py
index 146ee8a75131..406a86574657 100644
--- a/sc/qa/uitest/calc_tests8/tdf126248.py
+++ b/sc/qa/uitest/calc_tests8/tdf126248.py
@@ -45,7 +45,7 @@ class tdf126248(UITestCase):
 
 localeSetting = xDialog.getChild("localesetting")
 select_by_text(localeSetting, language)
-
+self.ui_test.wait_until_property_is_updated(localeSetting, 
'SelectEntryText', language)
 self.assertEqual(language, 
get_state_as_dict(localeSetting)['SelectEntryText'])
 
 xOKBtn = xDialog.getChild("ok")
@@ -80,7 +80,7 @@ class tdf126248(UITestCase):
 
 self.assertFontName(gridwin, eastFontName)
 
-self.changeLocalSetting("Default - English (USA)")
+self.changeLocalSetting("English (USA)")
 
 enter_text_to_cell(gridwin, "C1", "Test")
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 128913] Writer doesn't display image revisions that were done in Word (docx)

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

--- Comment #9 from László Németh  ---
(In reply to BogdanB from comment #8)
> It's ok now, the last image is marked as revised and deleted.
> 
> Verified in
> Version: 7.2.0.0.alpha1+ (x64) / LibreOffice Community
> Build ID: 3b57ebb445df8a2bc3d916ea79f8af45e20e4e62
> CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL:
> win
> Locale: ro-RO (ro_RO); UI: en-US
> Calc: threaded

@BogdanB: thanks for the verification!

-- 
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 142489] Do not display "Table" toolbar by default in Impress

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

--- Comment #4 from Rafael Lima  ---
> > We could hide the Drawing toolbar and show Table on top. Would likely also
> > result in some flicker but the canvas remains static.
> 
> No further input, so let's do this. Maxim, could this be an easyhack?

I think the proposed solution will work for both Standard Toolbar and Tabbed
Interface users.

As a user of the Tabbed Interface myself, I would only add the "Delete Table"
button to the Table tab, to make it completely compatible with the Table
Toolbar.

-- 
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 130230] Writer create .pdf files with wrong link

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

Buovjaga  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #10 from Buovjaga  ---
(In reply to Daniel from comment #6)
> Created attachment 163678 [details]
> Files .odt and .pdf with links from master to salve

With Okular PDF reader and your PDF files, the Link to titre is correctly
opening Cible.pdf on the second page. So maybe it is a problem with your PDF
reader. Which PDF reader are you using? Please test with other readers.

-- 
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 126496] Pivot Table: rename "Page Fields" to "Filter" or "Page Fields To Filter" or…

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

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

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

Related tdf#126496

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 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-ux-advise] [Bug 126496] Pivot Table: rename "Page Fields" to "Filter" or "Page Fields To Filter" or…

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.4.0|target:6.4.0 target:7.2.0

-- 
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: sc/uiconfig

2021-06-03 Thread Stanislav Horacek (via logerrit)
 sc/uiconfig/scalc/ui/pivotfielddialog.ui   |2 +-
 sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui |   10 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit bbb167de2a3d9396ee94574c63e8a5822cb0c0be
Author: Stanislav Horacek 
AuthorDate: Tue Dec 29 10:40:56 2020 +0100
Commit: Heiko Tietze 
CommitDate: Thu Jun 3 17:54:25 2021 +0200

Related tdf#126496

rename "page fields" to "filters" in pivot table extended tips

Change-Id: Ic9720377112f267ca3547e84fbe49085eb03fbee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108446
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/sc/uiconfig/scalc/ui/pivotfielddialog.ui 
b/sc/uiconfig/scalc/ui/pivotfielddialog.ui
index 5027d602f7b2..0a49eba6bec4 100644
--- a/sc/uiconfig/scalc/ui/pivotfielddialog.ui
+++ b/sc/uiconfig/scalc/ui/pivotfielddialog.ui
@@ -38,7 +38,7 @@
 True
 
   
-Opens the 
Data Field Options dialog. The Options button is visible for column, row, or 
page fields only.
+Opens the 
Data Field Options dialog. The Options button is visible for filters and column 
or row fields only.
   
 
   
diff --git a/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui 
b/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui
index b75c04fa2ba7..e77bc24f2f10 100644
--- a/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui
+++ b/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui
@@ -211,7 +211,7 @@
 
 
   
-To define the 
layout of a pivot table, drag and drop data field buttons onto the Page Fields, 
Row Fields, Column Fields, and Data Fields areas.
+To define the 
layout of a pivot table, drag and drop data field buttons onto the Filters, Row 
Fields, Column Fields and Data Fields areas.
   
 
   
@@ -292,7 +292,7 @@
 
 
   
-To define the layout 
of a pivot table, drag and drop data field buttons onto the Page Fields, Row 
Fields, Column Fields, and Data Fields areas.
+To define the layout 
of a pivot table, drag and drop data field buttons onto the Filters, Row 
Fields, Column Fields and Data Fields areas.
   
 
   
@@ -371,7 +371,7 @@
 
 
   
-To define the layout 
of a pivot table, drag and drop data field buttons onto the Page Fields, Row 
Fields, Column Fields, and Data Fields areas.
+To define the layout 
of a pivot table, drag and drop data field buttons onto the Filters, Row 
Fields, Column Fields and Data Fields areas.
   
 
   
@@ -452,7 +452,7 @@
 
 
   
-To define the layout 
of a pivot table, drag and drop data field buttons onto the Page Fields, Row 
Fields, Column Fields, and Data Fields areas.
+To define the layout 
of a pivot table, drag and drop data field buttons onto the Filters, Row 
Fields, Column Fields and Data Fields areas.
   
 
   
@@ -564,7 +564,7 @@
 
 
   
-To define the 
layout of a pivot table, drag and drop data field buttons onto the Page Fields, 
Row Fields, Column Fields, and Data Fields areas.
+To define the 
layout of a pivot table, drag and drop data field buttons onto the Filters, Row 
Fields, Column Fields and Data Fields areas.
   
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 136417] [FORMATTING] Border Style always switches from 7th option to 4th after reopening spreadsheet.

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #4 from Buovjaga  ---
I set the border style from the toolbar button. The style itself is not
changed, but the toolbar dropdown indicates that no border is set. This is some
other type of issue.

How are you setting the border styles? From the toolbar, the format cells
dialog or from the Sidebar?

Version: 7.2.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 3b57ebb445df8a2bc3d916ea79f8af45e20e4e62
CPU threads: 2; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: fi-FI (fi_FI); UI: en-US
Calc: threaded Jumbo

Arch Linux 64-bit
Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: c6595e781cf20ab2825e9a2bd8592688f26448e3
CPU threads: 8; OS: Linux 5.12; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded
Built on 3 June 2021

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


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

2021-06-03 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/htmlexport/htmlexport.cxx  |   31 +++
 sw/source/filter/html/htmlflywriter.cxx |5 +
 2 files changed, 36 insertions(+)

New commits:
commit c8a9396e5695675ffe92935a9ba40354fc76ed79
Author: Miklos Vajna 
AuthorDate: Thu Jun 3 17:10:57 2021 +0200
Commit: Miklos Vajna 
CommitDate: Thu Jun 3 17:52:52 2021 +0200

sw XHTML / reqif export: fix PNG export of shapes

image/x-vclgraphic is not something anybody else will understand.

Change-Id: I5a5b37b7f769de351bd3dfc38ccd57381bc43319
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116673
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index 3484ff938230..b97cf7968640 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -1694,6 +1694,37 @@ CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, 
testReqifEmbedPNGShapeAsOLE)
 assertXPath(pXmlDoc, "//reqif-xhtml:p/reqif-xhtml:object", "type", 
"text/rtf");
 }
 
+CPPUNIT_TEST_FIXTURE(SwHtmlDomExportTest, testReqifEmbedShapeAsPNG)
+{
+// Given a document with a shape:
+loadURL("private:factory/swriter", nullptr);
+uno::Reference xFactory(mxComponent, 
uno::UNO_QUERY);
+uno::Reference xShape(
+xFactory->createInstance("com.sun.star.drawing.RectangleShape"), 
uno::UNO_QUERY);
+xShape->setSize(awt::Size(1, 1));
+uno::Reference xDrawPageSupplier(mxComponent, 
uno::UNO_QUERY);
+xDrawPageSupplier->getDrawPage()->add(xShape);
+
+// When exporting to XHTML:
+uno::Reference xStorable(mxComponent, uno::UNO_QUERY);
+uno::Sequence aStoreProperties = {
+comphelper::makePropertyValue("FilterName", OUString("HTML 
(StarWriter)")),
+comphelper::makePropertyValue("FilterOptions", 
OUString("xhtmlns=reqif-xhtml")),
+};
+xStorable->storeToURL(maTempFile.GetURL(), aStoreProperties);
+
+// Then make sure the shape is embedded as a PNG:
+SvMemoryStream aStream;
+HtmlExportTest::wrapFragment(maTempFile, aStream);
+xmlDocUniquePtr pXmlDoc = parseXmlStream();
+CPPUNIT_ASSERT(pXmlDoc);
+// Without the accompanying fix in place, this test would have failed with:
+// - Expected: image/png
+// - Actual  : image/x-vclgraphic
+// i.e. the result was invalid ReqIF.
+assertXPath(pXmlDoc, "//reqif-xhtml:p/reqif-xhtml:object", "type", 
"image/png");
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/html/htmlflywriter.cxx 
b/sw/source/filter/html/htmlflywriter.cxx
index cd2350a75171..ed6d646594ee 100644
--- a/sw/source/filter/html/htmlflywriter.cxx
+++ b/sw/source/filter/html/htmlflywriter.cxx
@@ -1797,6 +1797,11 @@ static Writer & OutHTML_FrameFormatAsImage( Writer& 
rWrt, const SwFrameFormat& r
 {
 aGraphic = pGrafObj->GetGraphic();
 }
+else
+{
+// We only have a bitmap, write that as PNG without any fallback.
+bWritePNGFallback = false;
+}
 }
 
 Size aSz( 0, 0 );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140969] UI: All selected items in canvas should be highlighted in navigator

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

--- Comment #11 from BogdanB  ---
It's working after enabling Content Navigation View. But I had no ideea I need
to click there.

Tested in Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: f49e5902a3737c02fabf5bec23243ccb126426c4
CPU threads: 4; OS: Linux 5.8; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 134737] CONFIGURATION VIEWING Menus do not offer enough languages directly for user to set language in document

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

Buovjaga  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
   Keywords||needsUXEval

-- 
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 134737] CONFIGURATION VIEWING Menus do not offer enough languages directly for user to set language in document

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

Buovjaga  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Whiteboard| QA:needsComment|
   Keywords||needsUXEval

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


[Libreoffice-bugs] [Bug 135255] Undo doesn't restore added content with tracking changes enabled

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from Buovjaga  ---
No repro here.

Telesto: can you re-test?

Version: 7.2.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 3b57ebb445df8a2bc3d916ea79f8af45e20e4e62
CPU threads: 2; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: fi-FI (fi_FI); UI: en-US
Calc: threaded Jumbo

Arch Linux 64-bit
Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: c6595e781cf20ab2825e9a2bd8592688f26448e3
CPU threads: 8; OS: Linux 5.12; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded
Built on 3 June 2021

-- 
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 135237] Image on wrong page after undo rejecting track changes

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from Buovjaga  ---
I don't repro.

Telesto: could you re-test?

Version: 7.2.0.0.alpha1+ (x64) / LibreOffice Community
Build ID: 3b57ebb445df8a2bc3d916ea79f8af45e20e4e62
CPU threads: 2; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: fi-FI (fi_FI); UI: en-US
Calc: threaded Jumbo

Arch Linux 64-bit
Version: 7.2.0.0.alpha1+ / LibreOffice Community
Build ID: c6595e781cf20ab2825e9a2bd8592688f26448e3
CPU threads: 8; OS: Linux 5.12; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded
Built on 3 June 2021

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