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

2019-10-16 Thread Stephan Bergmann (via logerrit)
 xmlhelp/source/treeview/tvread.cxx |   10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

New commits:
commit 30d803e83390d8a4f475522dc23bcd107f7fdc12
Author: Stephan Bergmann 
AuthorDate: Wed Oct 16 22:49:10 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Oct 17 07:29:11 2019 +0200

Remove code that is dead

...ever since 8f55fe4c6c73f110b1c72903c209399ff2527ea5 "INTEGRATION: CWS 
help2"
dropped p->application and "/" from strBuff.

Change-Id: I48aa9271daac4caf23d932741a5c75cb00ad7ee9
Reviewed-on: https://gerrit.libreoffice.org/80924
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/xmlhelp/source/treeview/tvread.cxx 
b/xmlhelp/source/treeview/tvread.cxx
index f0331dea7a29..ddfba452c67d 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -123,15 +123,7 @@ namespace treeview {
 {
 if( targetURL.isEmpty() )
 {
-sal_Int32 len;
-for ( const TVDom* p = this;; p = p->parent )
-{
-len = p->application.getLength();
-if ( len != 0 )
-break;
-}
-
-OUStringBuffer strBuff( 22 + len + id.getLength() );
+OUStringBuffer strBuff( 21 + id.getLength() );
 strBuff.append(
 "vnd.sun.star.help://"
 ).append(id);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: solenv/clang-format sw/CppunitTest_sw_ooxmlexport14.mk sw/Module_sw.mk sw/qa writerfilter/source

2019-10-16 Thread Justin Luth (via logerrit)
 solenv/clang-format/blacklist   |1 
 sw/CppunitTest_sw_ooxmlexport14.mk  |   14 +++
 sw/Module_sw.mk |1 
 sw/qa/extras/ooxmlexport/data/tdf108350_noFontdefaults.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport14.cxx  |   45 
 writerfilter/source/dmapper/StyleSheetTable.cxx |8 ++
 6 files changed, 69 insertions(+)

New commits:
commit f51cd77bcecc5134e0e04c398bfb7b34eb65d68d
Author: Justin Luth 
AuthorDate: Tue Oct 15 20:49:07 2019 +0300
Commit: Justin Luth 
CommitDate: Thu Oct 17 06:23:00 2019 +0200

tdf#108350 writerfilter: restore TimesNewRoman as default font

Followup for LO 5.4 commit 6f2ad89b33d972f9642bb53eeb91f41df3b6b0e6
which set Calibri/11pt as default. That is true if there is
no style.xml file, or more specifically if there is no
DocDefaults rPrDefault node. But if that node exists, then
the age-old defaults are still valid.

Earlier in LO 4.3, the default templates changed to use
Liberation fonts by default. But in the same vein as using Calibri
(and depending on LO to fallback to Carlito), set Word's default
Times New Roman font and depend on LO to fallback to Liberation.
That will make it better for MSWord users who share the document
and who have less likelihood of knowing about Liberation/Carlito.

Note that 10pt fontsize was already added to m_pDefaultCharProps
earlier, so that part was already reset long ago.

Change-Id: I3ba8a529fe95b05fbe2889cf1ebdbabb25963e8b
Reviewed-on: https://gerrit.libreoffice.org/80854
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/solenv/clang-format/blacklist b/solenv/clang-format/blacklist
index dece08b26f0c..81d8a233b674 100644
--- a/solenv/clang-format/blacklist
+++ b/solenv/clang-format/blacklist
@@ -14852,6 +14852,7 @@ sw/qa/extras/ooxmlexport/ooxmlexport.cxx
 sw/qa/extras/ooxmlexport/ooxmlexport10.cxx
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
+sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
 sw/qa/extras/ooxmlexport/ooxmlexport2.cxx
 sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
 sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
diff --git a/sw/CppunitTest_sw_ooxmlexport14.mk 
b/sw/CppunitTest_sw_ooxmlexport14.mk
new file mode 100644
index ..b582b317c064
--- /dev/null
+++ b/sw/CppunitTest_sw_ooxmlexport14.mk
@@ -0,0 +1,14 @@
+# -*- 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 sw_ooxmlexport_test,14))
+
+# vim: set noet sw=4 ts=4:
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index f72ce87f6653..b16a4aea6e16 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -79,6 +79,7 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 CppunitTest_sw_ooxmlexport11 \
 CppunitTest_sw_ooxmlexport12 \
 CppunitTest_sw_ooxmlexport13 \
+CppunitTest_sw_ooxmlexport14 \
 CppunitTest_sw_ooxmlexport_template \
 CppunitTest_sw_ooxmlfieldexport \
 CppunitTest_sw_ooxmllinks \
diff --git a/sw/qa/extras/ooxmlexport/data/tdf108350_noFontdefaults.docx 
b/sw/qa/extras/ooxmlexport/data/tdf108350_noFontdefaults.docx
new file mode 100644
index ..ea81722799eb
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf108350_noFontdefaults.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
new file mode 100644
index ..b06b342c7071
--- /dev/null
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
@@ -0,0 +1,45 @@
+/* -*- 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 
+
+#include 
+#include 
+
+class Test : public SwModelTestBase
+{
+public:
+Test() : SwModelTestBase("/sw/qa/extras/ooxmlexport/data/", "Office Open 
XML Text") {}
+
+protected:
+/**
+ * Blacklist handling
+ */
+bool mustTestImportOf(const char* filename) const override {
+// If the testcase is stored in some other format, it's pointless to 
test.
+return OString(filename).endsWith(".docx");
+}
+};
+
+
+DECLARE_OOXMLEXPORT_TEST(testTdf108350_noFontdefaults, 
"tdf108350_noFontdefaults.docx")
+{
+uno::Reference< 

[Libreoffice-bugs] [Bug 128189] configure.ac has a couple issues (patch attached)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128189

--- Comment #1 from David L. Craig  ---
Created attachment 155047
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155047=edit
Patch against configure.ac

-- 
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 128189] New: configure.ac has a couple issues (patch attached)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128189

Bug ID: 128189
   Summary: configure.ac has a couple issues (patch attached)
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dlc@gmail.com

Description:
several test commands use '==' ops where '=' is needed, qmake-qt5 locating code
adds a blank to the $PATH string which prevents finding qmake-qt5 if its in the
last directory.  These defects are all in configure.ac, and the patch will be
attached immediately after filing.

Steps to Reproduce:
1.  Run autogen.sh
2.
3.

Actual Results:
Depends on the system, but can throw test command messages to stderr, fail to
find qmake-qt5 when it's actually in the PATH, and possibly other misbehavior.

Expected Results:
No error messages, qmake-qt5 is found if it's in the PATH.


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
Patch to configure.ac attached, works for 6.3.2.2 and 6.3.3.1.

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

[Libreoffice-bugs] [Bug 66581] XLSX embedded OLE objects do not get imported (just icons, not clickable)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66581

--- Comment #18 from HJ  ---
The object itself will produce a string of formulas 
' =EMBED("package shell object", "") ' 

fro MSO excel, then the object in calc does not have such a formula, affecting
the problem of incompatibility from excel objects

-- 
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 128114] PARAGRAPH DIALOG: If indents or paragraph spacing are mixed, settings in paragraph dialog should be blank

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128114

Nick Levinson  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Nick Levinson  ---
I'll take your word that it's been fixed in newer versions and will set FIXED
on the basis of your statement.

-- 
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 107642] [META] Paragraph dialog bugs and enhancements

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107642
Bug 107642 depends on bug 128114, which changed state.

Bug 128114 Summary: PARAGRAPH DIALOG: If indents or paragraph spacing are 
mixed, settings in paragraph dialog should be blank
https://bugs.documentfoundation.org/show_bug.cgi?id=128114

   What|Removed |Added

 Status|NEEDINFO|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 127687] Libreoffice Qt5 VCL plugin not scaling the UI for HiDPI

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127687

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 127921] Problem with Presenter View of Impress 6.3.x

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127921

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 126409] LibreOffice does not launch normally on macOS 10.15 Catalina

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126409

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

-- 
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 127919] Assign Component dialog F1/Help button behave inconsistently

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127919

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 124593] Libreoffice Calc 6.2 crash fresh install

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124593

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 124593] Libreoffice Calc 6.2 crash fresh install

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124593

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

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

[Libreoffice-bugs] [Bug 127767] Impress - Text color box switches always to dark red

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127767

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 124505] Slide show using "All displays" presents a single slide show across all displays

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124505

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

-- 
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 127895] DROP DOWN MENU cannot display FORMAT CELL selection, it is below my task bar.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127895

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 103494] [META] Textbox bugs and enhancements

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
Bug 103494 depends on bug 123928, which changed state.

Bug 123928 Summary: In Vivid template of LibreOffice Impress 6.1.5 (stable) 
horizontal alignment of the text doesn't work.
https://bugs.documentfoundation.org/show_bug.cgi?id=123928

   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 123928] In Vivid template of LibreOffice Impress 6.1.5 (stable) horizontal alignment of the text doesn't work.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123928

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

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 127323] Cannot Ungroup

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127323

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

-- 
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 123928] In Vivid template of LibreOffice Impress 6.1.5 (stable) horizontal alignment of the text doesn't work.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123928

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 128067] keeping off-slide area still in Impress

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128067

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

-- 
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 128067] keeping off-slide area still in Impress

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128067

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 124505] Slide show using "All displays" presents a single slide show across all displays

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124505

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 127323] Cannot Ungroup

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127323

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 120618] Horizontal alignment doesn't work on custom page dimensions

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120618

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

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
http://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 124833] words overlaied

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124833

--- Comment #2 from QA Administrators  ---
Dear HM Liu,

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 95852] Can't edit forms immediately after opening (WORKSAROUND: Navigate to next page by clicking on left page list)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95852

--- Comment #10 from QA Administrators  ---
Dear Valery,

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
http://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 120586] A Track-Changes editing of a number can split it into two lines

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120586

--- Comment #5 from QA Administrators  ---
Dear Eyal Rozenberg,

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
http://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 108653] The drawing toolbar is always lagging behind when opening draw document

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108653

--- Comment #12 from QA Administrators  ---
Dear Telesto,

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
http://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 119986] FILESAVE DOCX The MatchEntry property of the list box ActiveX control is incorrectly saved

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119986

--- Comment #4 from QA Administrators  ---
Dear Gabor Kelemen,

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
http://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 120117] Sidebar Disrupts Column/Row Freeze Status

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120117

--- Comment #4 from QA Administrators  ---
Dear Kevin Suo,

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
http://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 120311] Pivot table filter locked empty when zero rows returned

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120311

--- Comment #9 from QA Administrators  ---
Dear besancon4me,

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
http://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 118300] Information related to a character is not according to the displayed character in a particular case.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118300

--- Comment #9 from QA Administrators  ---
Dear ricky.tigg,

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
http://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 119982] FILEOPEN DOCX The BackColor property of ActiveX controls are incorrectly imported, when the BackStyle property: 0 – fmBackStyleTransparent

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119982

--- Comment #4 from QA Administrators  ---
Dear Gabor Kelemen,

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
http://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 119984] FILESAVE DOCX The Enabled property of ActiveX controls is incorrectly saved

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119984

--- Comment #2 from QA Administrators  ---
Dear Gabor Kelemen,

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
http://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 112558] Single line spacing of Calibri and Times New Roman no longer calculated correctly in Calc compared to Writer

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112558

--- Comment #25 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
http://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 99778] UI : Click on sheet name to activate it scroll the tabs whereas it's not necessary (specific file)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99778

--- Comment #8 from QA Administrators  ---
Dear eric.coutier,

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
http://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 45488] Impress FILEOPEN: fontart object incorrect in pptx presentation

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45488

--- Comment #11 from QA Administrators  ---
Dear sasha.libreoffice,

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
http://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 128113] file Open type menu has about 175 items, please organize

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

--- Comment #6 from Nick Levinson  ---
I'm the OP. I use Fedora 30 Linux, kept evergreen, and Gnome 3.32.2.

If a proposal is to delete some filters because All Files is an option, I
disagree. Maybe writing a filter wasn't worth the effort, but, once someone has
gone to the trouble of writing it for a rarely-used option that's not never in
demand, we should retain it for people with specialized needs that LO already
satisfies this way. I'm not a fan of removing features unless they're broken.

-- 
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 128113] file Open type menu has about 175 items, please organize

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

--- Comment #6 from Nick Levinson  ---
I'm the OP. I use Fedora 30 Linux, kept evergreen, and Gnome 3.32.2.

If a proposal is to delete some filters because All Files is an option, I
disagree. Maybe writing a filter wasn't worth the effort, but, once someone has
gone to the trouble of writing it for a rarely-used option that's not never in
demand, we should retain it for people with specialized needs that LO already
satisfies this way. I'm not a fan of removing features unless they're broken.

-- 
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 39983] [Feature Request] Support Mac OSX 10.7 (Lion) full-screen mode

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39983

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 128186] Create Native Mac OS X Full Screen Mode

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128186

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
The first round of this was for bug 39983, and there the thought was that to do
it on OSX that LibreOffice's own fullscrren mode would need to be pruned out to
replace with native Apple controls.  We didn't go that way.

-- 
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 128186] Create Native Mac OS X Full Screen Mode

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128186

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
The first round of this was for bug 39983, and there the thought was that to do
it on OSX that LibreOffice's own fullscrren mode would need to be pruned out to
replace with native Apple controls.  We didn't go that way.

-- 
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 115284] Shortcut and behaviour of fullscreen mode on macOS

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115284

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 42082] [META] Make LibreOffice shine and glow on macOS

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42082

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||128186


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128186
[Bug 128186] Create Native Mac OS X Full Screen Mode
-- 
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 128186] Create Native Mac OS X Full Screen Mode

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128186

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||42082
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||7872,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5284
 CC||ipla...@tuta.io,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||t...@iki.fi,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

--- Comment #1 from V Stuart Foote  ---
Tor concluded in bug 117872 that reverting macOS FullScreen mode work of bug
115284 because there is no way to effectively use Apple full screen with the LO
code base.

"tdf#117872: Revert "tdf#115284: Unify LibreOffice and system full-screen..."
Instead, never participate in the macOS system full-screen mode. There
is just too much complexity involved, and the way LibreOffice works
really isn't prepared for the concept of windows having the option
from a system point of view to being full-screenable or not.
..."

I don't beleive anything has changed in that regard, meaning this would have to
be refactored as native Apple controls--not trivial.

Should this native code requirement  be driven by UX?

Is it needed?  IMHO probably not and => WF


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=42082
[Bug 42082] [META] Make LibreOffice shine and glow on macOS
-- 
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 128186] Create Native Mac OS X Full Screen Mode

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128186

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||42082
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||7872,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||5284
 CC||ipla...@tuta.io,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||t...@iki.fi,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

--- Comment #1 from V Stuart Foote  ---
Tor concluded in bug 117872 that reverting macOS FullScreen mode work of bug
115284 because there is no way to effectively use Apple full screen with the LO
code base.

"tdf#117872: Revert "tdf#115284: Unify LibreOffice and system full-screen..."
Instead, never participate in the macOS system full-screen mode. There
is just too much complexity involved, and the way LibreOffice works
really isn't prepared for the concept of windows having the option
from a system point of view to being full-screenable or not.
..."

I don't beleive anything has changed in that regard, meaning this would have to
be refactored as native Apple controls--not trivial.

Should this native code requirement  be driven by UX?

Is it needed?  IMHO probably not and => WF


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=42082
[Bug 42082] [META] Make LibreOffice shine and glow on macOS
-- 
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 128169] pizza of death if desktop selected for export/save as

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128169

skyh...@shaw.ca changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #6 from skyh...@shaw.ca ---
- installed/tested 6.2.7.1 (latest stable) same behaviour
- won't defend OS 10.11.x, best HW I can afford deprecated by apple (half the
age of my previous desktop computer)
- I think I can safely drop PDF contingency; same pizza with any file to
desktop favorite selection. I was only applying an open password with
confirmation, not permission password


So, no repro on alternate 6.2.7.1 means end of curiousity, correct? I have no
idea how anything related to the file system could be application specific,
having no problems with other apps, but I save to the desktop all the time and
was surprised by this pizza. 

Is it my choice to close 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-bugs] [Bug 103164] [META] Footnote and Endnote bugs and enhancements

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||128188


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128188
[Bug 128188] Same numbering the first page when insert section
-- 
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 128188] Same numbering the first page when insert section

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128188

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||103164


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103164
[Bug 103164] [META] Footnote and Endnote bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107738] [META] Section bugs and enhancements

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107738

Pénzes Dávid  changed:

   What|Removed |Added

 Depends on||128188


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128188
[Bug 128188] Same numbering the first page when insert section
-- 
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 128188] Same numbering the first page when insert section

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128188

Pénzes Dávid  changed:

   What|Removed |Added

 Blocks||107738


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107738
[Bug 107738] [META] Section bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128188] Same numbering the first page when insert section

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128188

--- Comment #1 from Pénzes Dávid  ---
Created attachment 155046
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155046=edit
This file is containing the bad footnotes

-- 
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 128188] New: Same numbering the first page when insert section

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128188

Bug ID: 128188
   Summary: Same numbering the first page when insert section
   Product: LibreOffice
   Version: 6.2.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: penzes_da...@yahoo.com

Description:
The footnotes numbering is not growth at the first page when we insert a
section.

Steps to Reproduce:
1. Make a new document, with Headings 2 or 3.
2. Insert sections between two Headings.
3. Insert Footnotes with Restart numbering options

Actual Results:
As you see at the first page the numbering of footnotes are same.

E.g.

Bad result (LibreOffice  6.3.1.2 (x64)):
1. Footnote
1. Footnote
1. Footnote

Good result (LibreOffice 6.0.6.2):
1. Footnote
2. Footnote
3. Footnote

Expected Results:
x


Reproducible: Always


User Profile Reset: No



Additional Info:

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

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

2019-10-16 Thread Szymon Kłos (via logerrit)
 sfx2/source/view/ipclient.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit f0340d58cc0f2808ce8003099ff2a0495360f267
Author: Szymon Kłos 
AuthorDate: Fri May 31 19:21:19 2019 +0200
Commit: Michael Meeks 
CommitDate: Thu Oct 17 01:31:56 2019 +0200

Don't send false 'INPLACE' messages

Change-Id: I8eb9a77c7e6b9242f18ac5f0634091c88bf40ec0
Reviewed-on: https://gerrit.libreoffice.org/80695
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/sfx2/source/view/ipclient.cxx b/sfx2/source/view/ipclient.cxx
index 00063e7b1ed6..d810bd44374e 100644
--- a/sfx2/source/view/ipclient.cxx
+++ b/sfx2/source/view/ipclient.cxx
@@ -336,6 +336,13 @@ void SAL_CALL SfxInPlaceClient_Impl::activatingInplace()
 {
 if ( !m_pClient || !m_pClient->GetViewShell() )
 throw uno::RuntimeException();
+
+if ( comphelper::LibreOfficeKit::isActive() )
+{
+if ( SfxViewShell* pViewShell = m_pClient->GetViewShell() )
+pViewShell->libreOfficeKitViewCallback( 
LOK_CALLBACK_GRAPHIC_SELECTION, "INPLACE" );
+}
+
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125275] change default grid size to 25x25 mm = 1x1 zoll

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125275

--- Comment #8 from andreas_k  ---
Created attachment 155045
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155045=edit
Default Grid setting

I work on shapes for the gallery sidebar. All shapes follow an 1 x 1 cm Grid
Resolution with 4 Subdivisions.

This is part of the gallery guideline so that it's possible to mix the
different Themes from the gallery. As writer already has an 0,5 cm grid, the
gallery items will work not only in Draw/Impress.

-- 
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 128160] Printing module can't print beyond a section break. The same happens with PDF printing engine.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128160

Marcos_Pant  changed:

   What|Removed |Added

 Resolution|FIXED   |NOTABUG

-- 
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 128160] Printing module can't print beyond a section break. The same happens with PDF printing engine.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128160

--- Comment #3 from Marcos_Pant  ---
Dear Oliver, 

thank you for your reply. I tried to replicate the bug with a new document, and
was not able to. 
I think that the problem (for me) was: the document I have was imported from
Word 365, last update. In MS-Word, the creation of a single horizontal page, in
the middle of a document is different from LO (as I "think" I learned today). 
Maybe the import process created some kind of problem with the LO odt file. 

Actually, when I create an ODT file in LO 6.3, and including random pages in
the landscape orientation, in-between vertical ones, printing is just fine. 

So, please, maybe forgive my rookie level and change this thread to null...

Kind regards, 

Marcos

-- 
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 128160] Printing module can't print beyond a section break. The same happens with PDF printing engine.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128160

Marcos_Pant  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 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 128074] SPELLCHECK: Writer freezes when trying to "Ignore All" in Spell Check when the flagged word is the next flagged word too.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128074

--- Comment #13 from Xisco Faulí  ---
Happy to hear.
Mike, Dieter, thanks for doublechecking!!

-- 
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 126767] Autofill doesn't overwrite data in continuously filled cells

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126767

Eike Rathke  changed:

   What|Removed |Added

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

-- 
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 128183] Crash: Unhide / show hidden sheet

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128183

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #8 from m.a.riosv  ---
Can't repro.
Version: 6.2.8.1 (x64)
Build ID: 815fe723fb0e60e4a39ff860f907cc63980a0232
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US Calc:

-- 
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 124016] [VIEWING] On LibreOffice Online, read only files should allow browsing and clicking links

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124016

--- Comment #3 from Jean-Noel Rouchon  ---
I confirm inactive links when read-only file on writer

LOOLWSD
4.0.7 (git hash: 59283de)
LOKit
Collabora Office 6.0-29 (git hash: f873d84)

>From nextcloud.

Example at :
https://cloud1.zourit.net/index.php/s/oyyKRWeB3ZxE25F

-- 
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 128067] keeping off-slide area still in Impress

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128067

--- Comment #4 from mirko.piero...@studenti.polito.it ---
Created attachment 155044
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155044=edit
LO Impress screenshot 3

But this doesn't really make sense to me (and is in general not allowed in
other presentation software)

-- 
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 128067] keeping off-slide area still in Impress

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128067

--- Comment #3 from mirko.piero...@studenti.polito.it ---
Created attachment 155043
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155043=edit
LO Impress screenshot 2

Here it's ok to be able to navigate the slide with sidebars.

-- 
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 66581] XLSX embedded OLE objects do not get imported (just icons, not clickable)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66581

m.a.riosv  changed:

   What|Removed |Added

 CC||dr...@livemail.tw

--- Comment #17 from m.a.riosv  ---
*** Bug 128162 has been marked as a duplicate of this bug. ***

-- 
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 128162] Objects inserted function problems

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128162

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---


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

-- 
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 128067] keeping off-slide area still in Impress

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128067

--- Comment #2 from mirko.piero...@studenti.polito.it ---
Created attachment 155042
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155042=edit
LO Impress screenshot 1

The view should stay like this (unless you zoom in, see LO impress screenshot
2)

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

[Libreoffice-bugs] [Bug 117180] Dashed lines of the hard page break separator in Writer appears only, if you scroll or zoom in/out

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117180

Dieter Praas  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #24 from Dieter Praas  ---
(In reply to Aron Budea from comment #21)
> Indeed, thanks for retesting.
> Reverse bibisecting points to the following fixing commit:
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=00dfa6dc890dbbc8140fe613599becb5e4c55486
> authorMiklos Vajna 2019-06-07 
> 11:12:31 +0200
> committer Miklos Vajna 2019-06-07 14:17:10 
> +0200
> 
> tdf#117347 sw form controls: fix disappearing FixedText when editing
> TextField

=> VERIFIED 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 127576] Writer (Linux Mint 19 & Win 7/32 in a VM) - NO copy format with paintbrush-symbol for a paragraph (formatting of characters works)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127576

wolfgang-in-ber...@web.de changed:

   What|Removed |Added

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

--- Comment #8 from wolfgang-in-ber...@web.de ---
I read the "how-to" and found no errors on my site.

Contrary to your own requirements, you do not seem to be willing to specify the
passage in the wiki exactly where exact instructions can be found. I had to
work through the whole text first.

I met all requirements:
- I described the error IN DETAIL
- I described the expectations
- I pointed to the different (newest) versions of "Writer" on which I performed
the tests.

Closing the bug as invalid does not help the buggy program and the bug at all.

One of two referenced bugs was from Calc. Where should this ticket help me? I
have also no problem with the PowerPoint counterpart and do not need a ticket
number of this program, but with Writer I have a seemingly ancient problem that
no one edited.
Maybe you're more concerned with the problem, read my detailed description, and
less concerned with the defense. Then the problem would probably not be so old,
but already solved!

-- 
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 127903] CUSTOMIZE DIALOG: why is KEY_EQUAL not available for assignment to keyboard shortcuts

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127903

Dieter Praas  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #4 from Dieter Praas  ---
Verified with

Version: 6.4.0.0.alpha0+ (x64)
Build ID: 758516295e5f69393bd78bb4af6e7214d48ece0b
CPU threads: 4; OS: Windows 10.0 Build 18362; UI render: GL; VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: threaded

Heiko, thanks for fixing it.

-- 
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 125914] Validation with cells referencing themselves always gives error

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125914

--- Comment #9 from m.a.riosv  ---
Sorry, I can't agree this is a bug, but if it is for you, don't worry, mark it
as 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 90286] New OpenDocument Text from desktop (Windows Explorer) defaults to language other than system language

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90286

Dominik Lenné  changed:

   What|Removed |Added

Summary|New OpenDocument Text from  |New OpenDocument Text from
   |desktop (Windows Explorer)  |desktop (Windows Explorer)
   |defaults to language none   |defaults to language other
   ||than system language

--- Comment #9 from Dominik Lenné  ---
The behaviour seems to have changed now. 
OS:w10
actual LO version: 6.3.2.2
system language:   german

action:
create file via - explorer - context menu - new - opendocument text.
open file via double click

expected result: 
language is set to system language ("standard")

actual result:
language is set to "english(usa)"

reproducible: always.

-- 
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 124181] german opening quotation marks use wrong character under certain conditions

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124181

--- Comment #6 from Dominik Lenné  ---
I found bug 90286 which is very similar and added behaviour description there.
So any further work is with 90286.

-- 
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 128074] SPELLCHECK: Writer freezes when trying to "Ignore All" in Spell Check when the flagged word is the next flagged word too.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128074

--- Comment #12 from Mike Kaganski  ---
Confirm normal operation in Version: 6.3.3.1 (x64)
Build ID: f41f4c7f9507aeca13cb9df51f34d80e8ba30a99
CPU threads: 12; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 128074] SPELLCHECK: Writer freezes when trying to "Ignore All" in Spell Check when the flagged word is the next flagged word too.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128074

--- Comment #11 from Dieter Praas  ---
(In reply to Xisco Faulí from comment #10)
> it would be good if other could also verify it on their side. You can
> download 6.3.1.2 from https://www.libreoffice.org/download/pre-releases/.
> Closing as RESOLVED WORKSFORME

I also can't reproduce in

Version: 6.3.3.1 (x64)
Build-ID: f41f4c7f9507aeca13cb9df51f34d80e8ba30a99
CPU-Threads: 4; BS: Windows 10.0; UI-Render: Standard; VCL: win; 
Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
Calc: threaded

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

[Libreoffice-bugs] [Bug 128187] New: Offer to open AppleWorks documents (.cwk / application/x-appleworks-document)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128187

Bug ID: 128187
   Summary: Offer to open AppleWorks documents (.cwk /
application/x-appleworks-document)
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: n...@kde.org

Description:
LibreOffice Writer is capable of opening and accurately displaying AppleWorks
documents, but does not indicate as such until you do it manually.

I just added support in shared-mime-info for an "Appleworks document" MIME type
(https://gitlab.freedesktop.org/xdg/shared-mime-info/commit/5c9e37f85de684f7fac707531e2950e68061a64d)
so it should be possible to make LibreOffice indicate itself as an app that can
open documents with the new application/x-appleworks-document MIME type.

Steps to Reproduce:
1. Double-click on a .cwk document


Actual Results:
The OS dialog for "choose an app to open this document" appears, because
nothing is registered as a handler for AppleWorks documents

Expected Results:
LibreOffice writer opens and displays the document


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:

-- 
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 126764] REGEX() function with an integer as 'Occurence' returns the complete 'Text' if the respective match doesn't exist. It should return #N/A.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126764

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
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 126764] REGEX() function with an integer as 'Occurence' returns the complete 'Text' if the respective match doesn't exist. It should return #N/A.

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126764

Eike Rathke  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |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-commits] online.git: loleaflet/src

2019-10-16 Thread Tamás Zolnai (via logerrit)
 loleaflet/src/control/Control.Menubar.js |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 566df1281e85fb32660b830d1deaaa4f7a47c91f
Author: Tamás Zolnai 
AuthorDate: Wed Oct 16 20:02:02 2019 +0200
Commit: Tamás Zolnai 
CommitDate: Wed Oct 16 20:02:02 2019 +0200

mobile-menu: Disable unintentionally enabled menu items.

Change-Id: I9191ccd16d8487cc97b909f52063d55f309a7f67

diff --git a/loleaflet/src/control/Control.Menubar.js 
b/loleaflet/src/control/Control.Menubar.js
index f6ff65ea0..c4baf137d 100644
--- a/loleaflet/src/control/Control.Menubar.js
+++ b/loleaflet/src/control/Control.Menubar.js
@@ -74,10 +74,10 @@ L.Control.Menubar = L.Control.extend({
{name: _('Local Image...'), id: 
'insertgraphic', type: 'action'},
{name: _UNO('.uno:InsertGraphic', 'text'), id: 
'insertgraphicremote', type: 'action'},
{name: _UNO('.uno:InsertAnnotation', 'text'), 
id: 'insertcomment', type: 'action'},
-   {uno: '.uno:InsertObjectChart'},
+   {uno: '.uno:InsertObjectChart', mobile: false},
{id: 'inserttable', type: 'action', name: 
_('Insert table'), desktop: false, tablet: false},
{type: 'separator'},
-   {uno: '.uno:InsertSection', id: 
'insertsection'},
+   {uno: '.uno:InsertSection', id: 
'insertsection', mobile: false},
{name: _UNO('.uno:InsertField', 'text'), type: 
'menu', menu: [
{uno: '.uno:InsertPageNumberField'},
{uno: '.uno:InsertPageCountField'},
@@ -101,7 +101,7 @@ L.Control.Menubar = L.Control.extend({
{type: 'separator'},
{name: _UNO('.uno:HyperlinkDialog'), id: 
'inserthyperlink', type: 'action'},
{name: _('Insert Shape'), id: 'insertshape', 
desktop: false, type: 'action' },
-   {uno: '.uno:InsertSymbol'},
+   {uno: '.uno:InsertSymbol', mobile: false},
{name: _UNO('.uno:FormattingMarkMenu', 'text'), 
type: 'menu', menu: [
{uno: '.uno:InsertNonBreakingSpace'},
{uno: '.uno:InsertHardHyphen'},
@@ -283,14 +283,14 @@ L.Control.Menubar = L.Control.extend({
{name: _('Local Image...'), id: 
'insertgraphic', type: 'action'},
{name: _UNO('.uno:InsertGraphic', 
'presentation'), id: 'insertgraphicremote', type: 'action'},
{name: _UNO('.uno:InsertAnnotation', 
'presentation'), id: 'insertcomment', type: 'action'},
-   {uno: '.uno:InsertObjectChart'},
+   {uno: '.uno:InsertObjectChart', mobile: false},
{type: 'separator'},
{name: _UNO('.uno:HyperlinkDialog'), id: 
'inserthyperlink', type: 'action'},
{type: 'separator'},
-   {uno: '.uno:InsertSymbol'},
+   {uno: '.uno:InsertSymbol', mobile: false},
{type: 'separator'},
{name: _('Insert Shape'), id: 'insertshape', 
desktop: false, type: 'action' },
-   {uno: '.uno:HeaderAndFooter'}]
+   {uno: '.uno:HeaderAndFooter', mobile: false}]
},
{name: _UNO('.uno:FormatMenu', 'presentation'), id: 
'format', type: 'menu', menu: [
{uno: '.uno:FontDialog'},
@@ -376,8 +376,8 @@ L.Control.Menubar = L.Control.extend({
{type: 'separator'},
{name: _UNO('.uno:HyperlinkDialog'), id: 
'inserthyperlink', type: 'action'},
{name: _('Insert Shape'), id: 'insertshape', 
desktop: false, type: 'action' },
-   {uno: '.uno:InsertSymbol'},
-   {uno: '.uno:EditHeaderAndFooter'}
+   {uno: '.uno:InsertSymbol', mobile: false},
+   {uno: '.uno:EditHeaderAndFooter', mobile: false}
]},
{name: _UNO('.uno:FormatMenu', 'spreadsheet'), id: 
'format', type: 'menu', menu: [
{uno: '.uno:ResetAttributes'},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126773] Date formatting issue when viewing Calc created .xlsx spreadsheet on iPad/iPhone

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126773

Eike Rathke  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 128186] New: Create Native Mac OS X Full Screen Mode

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128186

Bug ID: 128186
   Summary: Create Native Mac OS X Full Screen Mode
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dimitrios.magia...@gmail.com

I appreciate Libre Office and would use it as a primary office program if there
was a native full screen mode with the Mac OS X.  I love using full screen mode
with my internet browser, mail program, etc. and would love to do three finger
swipes to move between programs, including Libre Office.  Currently, it can
take up most of the screen, but covers the desktop and doesn't leave it
available for view unless the whole window is moved.  In the past, you had a
full screen mode, but it was buggy, partly because it wasn't really worked on
as a feature and because of the bugginess, it was removed.  I think this
feature would be really nifty and probably lots of people would be happy.

Here's one example of a bunch of people who like full screen mode:
https://www.reddit.com/r/osx/comments/3mw9va/do_people_actually_use_full_screen_apps_in_os_x/

Please do make it so!

Thanks,

Dimitri

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

2019-10-16 Thread Andras Timar (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 15a18fa56c40136d992c08f5c1dee17287557934
Author: Andras Timar 
AuthorDate: Wed Oct 16 21:38:17 2019 +0200
Commit: Gerrit Code Review 
CommitDate: Wed Oct 16 21:38:34 2019 +0200

Update git submodules

* Update translations from branch 'master'
  - Updated Slovenian translation

Change-Id: I7a5c6bd9fc6ac769251aca007b01ad24e11dfd61

diff --git a/translations b/translations
index 708eb82135fc..4960b59e9c3b 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 708eb82135fceb43509b37a4276ab2c029005906
+Subproject commit 4960b59e9c3b897c61e24548ef13a8883cc8b781
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] translations.git: source/sl

2019-10-16 Thread Andras Timar (via logerrit)
 source/sl/basctl/messages.po   |   78 
 source/sl/chart2/messages.po   |  126 
 source/sl/cui/messages.po  | 4013 ++---
 source/sl/dbaccess/messages.po |  925 -
 source/sl/desktop/messages.po  |   58 
 source/sl/editeng/messages.po  |  231 
 source/sl/extensions/messages.po   |  842 -
 source/sl/filter/messages.po   |   73 
 source/sl/filter/source/config/fragments/filters.po|   46 
 source/sl/filter/source/config/fragments/types.po  |   46 
 source/sl/formula/messages.po  |  871 -
 source/sl/fpicker/messages.po  |   48 
 source/sl/helpcontent2/source/auxiliary.po |  170 
 source/sl/helpcontent2/source/text/sbasic/guide.po |   58 
 source/sl/helpcontent2/source/text/sbasic/python.po| 1538 +-
 source/sl/helpcontent2/source/text/sbasic/shared.po|  654 
 source/sl/helpcontent2/source/text/sbasic/shared/03.po |   12 
 source/sl/helpcontent2/source/text/scalc/00.po |   14 
 source/sl/helpcontent2/source/text/scalc/01.po | 2724 +--
 source/sl/helpcontent2/source/text/scalc/04.po |   30 
 source/sl/helpcontent2/source/text/scalc/05.po |  236 
 source/sl/helpcontent2/source/text/scalc/guide.po  |  103 
 source/sl/helpcontent2/source/text/schart/00.po|8 
 source/sl/helpcontent2/source/text/schart/01.po|   26 
 source/sl/helpcontent2/source/text/sdraw.po|  870 -
 source/sl/helpcontent2/source/text/sdraw/00.po |  131 
 source/sl/helpcontent2/source/text/sdraw/01.po |  427 
 source/sl/helpcontent2/source/text/sdraw/guide.po  |  486 
 source/sl/helpcontent2/source/text/shared.po   |   10 
 source/sl/helpcontent2/source/text/shared/00.po| 6844 
+-
 source/sl/helpcontent2/source/text/shared/01.po| 1077 +
 source/sl/helpcontent2/source/text/shared/02.po|  786 -
 source/sl/helpcontent2/source/text/shared/05.po|   42 
 source/sl/helpcontent2/source/text/shared/autopi.po|   10 
 source/sl/helpcontent2/source/text/shared/explorer/database.po |  202 
 source/sl/helpcontent2/source/text/shared/guide.po | 2414 +++
 source/sl/helpcontent2/source/text/shared/help.po  |  128 
 source/sl/helpcontent2/source/text/shared/menu.po  |  124 
 source/sl/helpcontent2/source/text/shared/optionen.po  |  268 
 source/sl/helpcontent2/source/text/simpress.po |  530 
 source/sl/helpcontent2/source/text/simpress/00.po  |   24 
 source/sl/helpcontent2/source/text/simpress/01.po  |  474 
 source/sl/helpcontent2/source/text/simpress/02.po  |   14 
 source/sl/helpcontent2/source/text/simpress/guide.po   |  678 
 source/sl/helpcontent2/source/text/smath/01.po |  896 -
 source/sl/helpcontent2/source/text/swriter.po  |   16 
 source/sl/helpcontent2/source/text/swriter/01.po   |   36 
 source/sl/helpcontent2/source/text/swriter/02.po   |   10 
 source/sl/helpcontent2/source/text/swriter/guide.po|   56 
 source/sl/helpcontent2/source/text/swriter/librelogo.po|   10 
 source/sl/instsetoo_native/inc_openoffice/windows/msi_languages.po |  156 
 source/sl/nlpsolver/src/locale.po  |   25 
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po  |  624 
 source/sl/oox/messages.po  |   28 
 source/sl/readlicense_oo/docs.po   |   14 
 source/sl/reportdesign/messages.po |  288 
 source/sl/sc/messages.po   | 2537 ++-
 source/sl/scp2/source/ooo.po   |   32 
 source/sl/scp2/source/winexplorerext.po|   15 
 source/sl/sd/messages.po   | 1561 +-
 source/sl/sfx2/messages.po |  694 -
 source/sl/shell/messages.po|   53 
 source/sl/starmath/messages.po |  414 
 source/sl/svtools/messages.po  |  647 
 source/sl/svx/messages.po  | 2965 ++--
 

[Libreoffice-bugs] [Bug 117595] UI hangs on Tools -> Options (or Alt-F12)

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117595

--- Comment #22 from Willy Weisz  ---
I'm now running version 6.3.2.2 of LibreOffice, and the delay I've described in
comment 19 has disappeared. The option window pops up immediately.

So the problem was corrected before the 6.4 branch has started.

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

[Libreoffice-commits] core.git: Branch 'feature/cib_contract3756' - 11 commits - framework/inc framework/source .gitreview include/oox offapi/com oox/source package/source sfx2/source vcl/source

2019-10-16 Thread Serge Krot (via logerrit)
Rebased ref, commits from common ancestor:
commit d5f63b0c5e62c3dd173751b64ea6246282c31278
Author: Serge Krot 
AuthorDate: Wed Oct 16 16:03:41 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Oct 16 21:19:56 2019 +0200

ToogleButton: add ability to set tooltip text for pop-up menu items

Change-Id: Iacd5c97438782ffddc8a9196688e1d58abce9abe
Reviewed-on: https://gerrit.libreoffice.org/80906
Reviewed-by: Serge Krot (CIB) 
Tested-by: Serge Krot (CIB) 

diff --git a/framework/inc/uielement/togglebuttontoolbarcontroller.hxx 
b/framework/inc/uielement/togglebuttontoolbarcontroller.hxx
old mode 100644
new mode 100755
index 1550e554d59f..ae532858d25b
--- a/framework/inc/uielement/togglebuttontoolbarcontroller.hxx
+++ b/framework/inc/uielement/togglebuttontoolbarcontroller.hxx
@@ -36,6 +36,13 @@ class ToggleButtonToolbarController : public 
ComplexToolbarController
 
 {
 public:
+class DropdownMenuItem
+{
+public:
+OUString mLabel;
+OUString mTipHelpText;
+};
+
 enum class Style
 {
 DropDownButton,
@@ -64,7 +71,7 @@ class ToggleButtonToolbarController : public 
ComplexToolbarController
 DECL_LINK( MenuSelectHdl, Menu *, bool);
 
 OUStringm_aCurrentSelection;
-std::vector< OUString > m_aDropdownMenuList;
+std::vector< DropdownMenuItem > m_aDropdownMenuList;
 };
 
 }
diff --git a/framework/source/uielement/togglebuttontoolbarcontroller.cxx 
b/framework/source/uielement/togglebuttontoolbarcontroller.cxx
index 92818083c1f7..f884bb23e8cc 100755
--- a/framework/source/uielement/togglebuttontoolbarcontroller.cxx
+++ b/framework/source/uielement/togglebuttontoolbarcontroller.cxx
@@ -97,12 +97,15 @@ uno::Reference< awt::XWindow > SAL_CALL 
ToggleButtonToolbarController::createPop
 const sal_uInt32 nCount = m_aDropdownMenuList.size();
 for ( sal_uInt32 i = 0; i < nCount; i++ )
 {
-OUString aLabel( m_aDropdownMenuList[i] );
-aPopup->InsertItem( sal_uInt16( i+1 ), aLabel );
-if ( aLabel == m_aCurrentSelection )
+const OUString & rLabel = m_aDropdownMenuList[i].mLabel;
+aPopup->InsertItem( sal_uInt16( i+1 ), rLabel );
+if ( rLabel == m_aCurrentSelection )
 aPopup->CheckItem( sal_uInt16( i+1 ) );
 else
 aPopup->CheckItem( sal_uInt16( i+1 ), false );
+
+if ( !m_aDropdownMenuList[i].mTipHelpText.isEmpty() )
+aPopup->SetTipHelpText( sal_uInt16( i+1 ), 
m_aDropdownMenuList[i].mTipHelpText );
 }
 
 m_pToolbar->SetItemDown( m_nID, true );
@@ -125,10 +128,14 @@ void 
ToggleButtonToolbarController::executeControlCommand( const css::frame::Con
 {
 Sequence< OUString > aList;
 m_aDropdownMenuList.clear();
+m_aCurrentSelection.clear();
 
 rControlCommand.Arguments[i].Value >>= aList;
 for ( sal_Int32 j = 0; j < aList.getLength(); j++ )
-m_aDropdownMenuList.push_back( aList[j] );
+{
+m_aDropdownMenuList.push_back( DropdownMenuItem() );
+m_aDropdownMenuList.back().mLabel = aList[j];
+}
 
 // send notification
 uno::Sequence< beans::NamedValue > aInfo { { "List", 
css::uno::makeAny(aList) } };
@@ -153,7 +160,7 @@ void ToggleButtonToolbarController::executeControlCommand( 
const css::frame::Con
  ( sal::static_int_cast< sal_uInt32 >(nPos)
< m_aDropdownMenuList.size() ) )
 {
-m_aCurrentSelection = m_aDropdownMenuList[nPos];
+m_aCurrentSelection = m_aDropdownMenuList[nPos].mLabel;
 
 // send notification
 uno::Sequence< beans::NamedValue > aInfo { { 
"ItemChecked", css::uno::makeAny(nPos) } };
@@ -168,15 +175,26 @@ void 
ToggleButtonToolbarController::executeControlCommand( const css::frame::Con
 else if ( rControlCommand.Command == "AddEntry" )
 {
 OUString   aText;
+OUString   aTipHelpText;
+
 for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
 {
 if ( rControlCommand.Arguments[i].Name == "Text" )
 {
-if ( rControlCommand.Arguments[i].Value >>= aText )
-m_aDropdownMenuList.push_back( aText );
-break;
+rControlCommand.Arguments[i].Value >>= aText;
+}
+else if ( rControlCommand.Arguments[i].Name == "TipHelpText" )
+{
+rControlCommand.Arguments[i].Value >>= aTipHelpText;
 }
 }
+
+if (!aText.isEmpty())
+{
+m_aDropdownMenuList.push_back( DropdownMenuItem() );
+m_aDropdownMenuList.back().mLabel = aText;
+

[Libreoffice-bugs] [Bug 50916] Allow more than 1024 columns in calc

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50916

--- Comment #99 from kevi...@jkanetwork.com ---
(In reply to Michael Meeks from comment #98)

> 
> > If I knew C++ as yours, I could help, but I not good at that at this level
> 
>  All people start like this, if you want to get involved - this
> particular change is a matter of replacing 'MAXCOL' with pDoc->MaxCol() at a
> very large number of places and testing the result. It is something that a
> beginner can do (in many cases) as an easy-hack. If you'd like to get
> involved - I'd be happy to help you.

Well.. I downloaded source code and prepared a folder, but.. I don't know how
to start, see, etc... For me is big project at "first see". Any help I will
appreciate it much :)

-- 
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 127295] Unable to snapshot an Impress full page diaporama

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127295

--- Comment #10 from Claude Charest  ---
Am I the only one to have this bug ???

-- 
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 127961] Auto-correction append/prepend NNBS (U+202F) to « » for correct typography of French language double quotation use

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127961

Eike Rathke  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
 Status|NEW |RESOLVED
Version|6.3.2.2 release |Inherited From OOo
 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 127961] Auto-correction append/prepend NNBS (U+202F) to « » for correct typography of French language double quotation use

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127961

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

https://git.libreoffice.org/core/commit/8d7ec203956695475c5ce2c3e47a4aa012a48d39

Resolves: tdf#127961 Add NBSP to quotation marks for all French except fr-CH

It will be available in 6.4.0.

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

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

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

[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103341
Bug 103341 depends on bug 127961, which changed state.

Bug 127961 Summary: Auto-correction append/prepend NNBS (U+202F) to « » for 
correct typography of French language double quotation use
https://bugs.documentfoundation.org/show_bug.cgi?id=127961

   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 127961] Auto-correction append/prepend NNBS (U+202F) to « » for correct typography of French language double quotation use

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127961

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.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: editeng/source

2019-10-16 Thread Eike Rathke (via logerrit)
 editeng/source/misc/svxacorr.cxx |   14 ++
 1 file changed, 2 insertions(+), 12 deletions(-)

New commits:
commit 8d7ec203956695475c5ce2c3e47a4aa012a48d39
Author: Eike Rathke 
AuthorDate: Wed Oct 16 17:13:30 2019 +0200
Commit: Eike Rathke 
CommitDate: Wed Oct 16 21:08:10 2019 +0200

Resolves: tdf#127961 Add NBSP to quotation marks for all French except fr-CH

Change-Id: I71e8377bf44c2db5ef291d2990528ec16aaf3b44
Reviewed-on: https://gerrit.libreoffice.org/80909
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 8b46f0f8e043..8d0d34648540 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1196,12 +1196,7 @@ void SvxAutoCorrect::InsertQuote( SvxAutoCorrDoc& rDoc, 
sal_Int32 nInsPos,
 
 if( '\"' == cInsChar )
 {
-if( eLang.anyOf(
-LANGUAGE_FRENCH,
-LANGUAGE_FRENCH_BELGIAN,
-LANGUAGE_FRENCH_CANADIAN,
-LANGUAGE_FRENCH_SWISS,
-LANGUAGE_FRENCH_LUXEMBOURG))
+if (primary(eLang) == primary(LANGUAGE_FRENCH) && eLang != 
LANGUAGE_FRENCH_SWISS)
 {
 OUString s( cNonBreakingSpace ); // UNICODE code for no break space
 if( rDoc.Insert( bSttQuote ? nInsPos+1 : nInsPos, s ))
@@ -1241,12 +1236,7 @@ OUString SvxAutoCorrect::GetQuote( SvxAutoCorrDoc const 
& rDoc, sal_Int32 nInsPo
 
 if( '\"' == cInsChar )
 {
-if( eLang.anyOf(
- LANGUAGE_FRENCH,
- LANGUAGE_FRENCH_BELGIAN,
- LANGUAGE_FRENCH_CANADIAN,
- LANGUAGE_FRENCH_SWISS,
- LANGUAGE_FRENCH_LUXEMBOURG))
+if (primary(eLang) == primary(LANGUAGE_FRENCH) && eLang != 
LANGUAGE_FRENCH_SWISS)
 {
 if( bSttQuote )
 sRet += " ";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124181] german opening quotation marks use wrong character under certain conditions

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124181

Dieter Praas  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG
 CC||dgp-m...@gmx.de

--- Comment #5 from Dieter Praas  ---
(In reply to Dominik Lenné from comment #4)
> So, when opening a new file via   - explorer - context menu - new -
> opendocument text   the local language setting is not beeing recognized and
> used for the first  paragraph.

As far as I understand your comment, this is another issue. So please file a
new bug report for that. If - as you mentioned - quotation marks works as
expected we can close this bug report as RESOLVED NOTABUG. Please feel free to
change it again to UNCONFIRMED with a short reasoning, if you don't agree.

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

2019-10-16 Thread Michael Weghorn (via logerrit)
 sw/inc/dbmgr.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c69fa8991a56a06df7cd0101aa8d01bffec8c85f
Author: Michael Weghorn 
AuthorDate: Wed Oct 16 12:17:23 2019 +0200
Commit: Michael Weghorn 
CommitDate: Wed Oct 16 20:58:02 2019 +0200

dbmgr.hxx: Drop "extra ';' after member function definition"

Change-Id: Ide54e4755624d515aeeacf62591dc59aea667dcf
Reviewed-on: https://gerrit.libreoffice.org/80879
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/sw/inc/dbmgr.hxx b/sw/inc/dbmgr.hxx
index 6494c54dcfcb..ec106df3c624 100644
--- a/sw/inc/dbmgr.hxx
+++ b/sw/inc/dbmgr.hxx
@@ -299,8 +299,8 @@ public:
 boolMerge( const SwMergeDescriptor& rMergeDesc );
 voidMergeCancel();
 
-bool IsMergeOk() const { return MergeStatus::Ok == 
m_aMergeStatus; };
-bool IsMergeError() const  { return MergeStatus::Error  <= 
m_aMergeStatus; };
+bool IsMergeOk() const { return MergeStatus::Ok == 
m_aMergeStatus; }
+bool IsMergeError() const  { return MergeStatus::Error  <= 
m_aMergeStatus; }
 
 static std::shared_ptr PerformMailMerge(SwView 
const * pView);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-16 Thread Mike Kaganski (via logerrit)
 external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 |   45 +---
 1 file changed, 7 insertions(+), 38 deletions(-)

New commits:
commit 28eff00120179d7988b5062ca1489d4c77054cf5
Author: Mike Kaganski 
AuthorDate: Wed Oct 16 14:15:57 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Oct 16 20:36:09 2019 +0200

Allow building lcms2 with Windows SDK 8.1

Change-Id: I81052f7634c7873d893d67deb79ed7bfa6dcbc44
Reviewed-on: https://gerrit.libreoffice.org/80888
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 
b/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1
index f616e6d38239..00d404fad6a2 100644
--- a/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1
+++ b/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1
@@ -19,28 +19,15 @@ pointing out this)
  src/cmscgats.c| 14 ++
  10 files changed, 19 insertions(+), 11 deletions(-)
 
-diff --git a/Projects/VC2017/jpegicc/jpegicc.vcxproj 
b/Projects/VC2017/jpegicc/jpegicc.vcxproj
-index ab26a53..39cfd00 100644
 a/Projects/VC2017/jpegicc/jpegicc.vcxproj
-+++ b/Projects/VC2017/jpegicc/jpegicc.vcxproj
-@@ -22,6 +22,7 @@
- {62812507-F926-4968-96A9-17678460AD90}
- jpegicc
- Win32Proj
-+10.0.17134.0
-   
-   
-   
 diff --git a/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj 
b/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj
 index 4c8aa3f..d1bf3eb 100644
 --- a/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj
 +++ b/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {8C51BE48-ADB8-4089-A9EC-F6BF993A0548}
  lcms2_DLL
  Win32Proj
 -8.1
-+10.0.17134.0



@@ -48,12 +35,11 @@ diff --git 
a/Projects/VC2017/lcms2_static/lcms2_static.vcxproj b/Projects/VC2017
 index 2a9988a..9fc05ce 100644
 --- a/Projects/VC2017/lcms2_static/lcms2_static.vcxproj
 +++ b/Projects/VC2017/lcms2_static/lcms2_static.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {71DEDE59-3F1E-486B-A899-4283000F76B5}
  lcms2_static
  Win32Proj
 -8.1
-+10.0.17134.0



@@ -61,12 +47,11 @@ diff --git a/Projects/VC2017/linkicc/linkicc.vcxproj 
b/Projects/VC2017/linkicc/l
 index 30c2b4e..51586dd 100644
 --- a/Projects/VC2017/linkicc/linkicc.vcxproj
 +++ b/Projects/VC2017/linkicc/linkicc.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {FBFBE1DC-DB84-4BA1-9552-B4780F457849}
  linkicc
  Win32Proj
 -8.1
-+10.0.17134.0



@@ -74,12 +59,11 @@ diff --git a/Projects/VC2017/psicc/psicc.vcxproj 
b/Projects/VC2017/psicc/psicc.v
 index 9dcf89a..8f26e12 100644
 --- a/Projects/VC2017/psicc/psicc.vcxproj
 +++ b/Projects/VC2017/psicc/psicc.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {EF6A8851-65FE-46F5-B9EF-14F0B671F693}
  psicc
  Win32Proj
 -8.1
-+10.0.17134.0



@@ -87,12 +71,11 @@ diff --git a/Projects/VC2017/testbed/testbed.vcxproj 
b/Projects/VC2017/testbed/t
 index 0af3762..3f6aea3 100644
 --- a/Projects/VC2017/testbed/testbed.vcxproj
 +++ b/Projects/VC2017/testbed/testbed.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {928A3A2B-46EF-4279-959C-513B3652FF0E}
  testbed
  Win32Proj
 -8.1
-+10.0.17134.0



@@ -100,12 +83,11 @@ diff --git a/Projects/VC2017/tiffdiff/tiffdiff.vcxproj 
b/Projects/VC2017/tiffdif
 index 7edfe28..3a6d837 100644
 --- a/Projects/VC2017/tiffdiff/tiffdiff.vcxproj
 +++ b/Projects/VC2017/tiffdiff/tiffdiff.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {75B91835-CCD7-48BE-A606-A9C997D5DBEE}
  tiffdiff
  Win32Proj
 -8.1
-+10.0.17134.0



@@ -113,24 +95,11 @@ diff --git a/Projects/VC2017/tifficc/tifficc.vcxproj 
b/Projects/VC2017/tifficc/t
 index cd9f04c..5ef954f 100644
 --- a/Projects/VC2017/tifficc/tifficc.vcxproj
 +++ b/Projects/VC2017/tifficc/tifficc.vcxproj
-@@ -22,7 +22,7 @@
+@@ -22,7 +22,6 @@
  {2256DE16-ED92-4A6F-9C54-F65BB61E64A2}
  tifficc
  Win32Proj
 -8.1
-+10.0.17134.0
-   
-   
-   
-diff --git a/Projects/VC2017/transicc/transicc.vcxproj 
b/Projects/VC2017/transicc/transicc.vcxproj
-index d9b77c6..b3173d8 100644
 a/Projects/VC2017/transicc/transicc.vcxproj
-+++ b/Projects/VC2017/transicc/transicc.vcxproj
-@@ -22,6 +22,7 @@
- {9EE22D66-C849-474C-9ED5-C3E141DAB160}
- transicc
- Win32Proj
-+10.0.17134.0



___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128183] Crash: Unhide / show hidden sheet

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128183

Julien Nabet  changed:

   What|Removed |Added

   Keywords||wantBacktrace

--- Comment #7 from Julien Nabet  ---
With master build, I also tested with nl-NL just to be sure it's not related to
localization, no repro too.

Would it be possible you attach backtrace? (see
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_a_backtrace)

-- 
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 128183] Crash: Unhide / show hidden sheet

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128183

--- Comment #6 from Julien Nabet  ---
On pc Debian x86-64 + gtk3 with master sources updated today (which I build
with enable-dbgutil) or with LO Debian package 6.3.2, I don't 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-bugs] [Bug 124729] Impress reliably crashes on THIS PowerPoint document in Linux

2019-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124729

--- Comment #39 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/8efdbd9a55a753b7c3b7588da234d8eac1b0e3cf

Related: tdf#124729 log any gtk_gl_area_get_error messages

It will be available in 6.4.0.

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

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

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

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

2019-10-16 Thread Caolán McNamara (via logerrit)
 vcl/unx/gtk3/gtk3gtkinst.cxx |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 8efdbd9a55a753b7c3b7588da234d8eac1b0e3cf
Author: Caolán McNamara 
AuthorDate: Wed Oct 16 12:26:14 2019 +0100
Commit: Caolán McNamara 
CommitDate: Wed Oct 16 20:21:42 2019 +0200

Related: tdf#124729 log any gtk_gl_area_get_error messages

Change-Id: I5864e5d3132b309d5500c02a8493062abcb25aab
Reviewed-on: https://gerrit.libreoffice.org/80886
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 3928e498ba35..f178acd4fc5a 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -1424,6 +1424,12 @@ private:
 int allocheight = std::max(height, 1);
 
 gtk_gl_area_make_current(GTK_GL_AREA(m_pGLArea));
+if (GError *pError = gtk_gl_area_get_error(GTK_GL_AREA(m_pGLArea)))
+{
+SAL_WARN("vcl.gtk", "gtk gl area error: " << pError->message);
+return;
+}
+
 glBindRenderbuffer(GL_RENDERBUFFER, m_nRenderBuffer);
 glRenderbufferStorage(GL_RENDERBUFFER, GL_RGB8, allocwidth, 
allocheight);
 glBindRenderbuffer(GL_RENDERBUFFER, m_nDepthBuffer);
@@ -1475,9 +1481,11 @@ private:
 gtk_widget_show_all(pParent);
 
 gtk_gl_area_make_current(GTK_GL_AREA(m_pGLArea));
-
-if (gtk_gl_area_get_error(GTK_GL_AREA(m_pGLArea)))
+if (GError *pError = gtk_gl_area_get_error(GTK_GL_AREA(m_pGLArea)))
+{
+SAL_WARN("vcl.gtk", "gtk gl area error: " << pError->message);
 return false;
+}
 
 gtk_gl_area_attach_buffers(GTK_GL_AREA(m_pGLArea));
 glGenFramebuffersEXT(1, _nAreaFrameBuffer);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

  1   2   3   4   5   >