[Libreoffice-bugs] [Bug 120432] Date, Time and Formulas Can be Inserted in Read-only Spreadsheets

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120432

BogdanB  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||bogdan...@gmail.com

--- Comment #1 from BogdanB  ---
confirm on
Version: 6.1.2.1 (x64)
Build ID: 65905a128db06ba48db947242809d14d3f9a93fe
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: ro-RO (ro_RO); Calc: group threaded

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


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

2018-10-08 Thread Libreoffice Gerrit user
 vcl/qt5/Qt5AccessibleWidget.cxx |4 ++--
 vcl/qt5/Qt5Font.cxx |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit b8835ad978b1295a01105c587e601163cd9ff725
Author: Jan-Marek Glogowski 
AuthorDate: Mon Oct 8 18:03:47 2018 +
Commit: Jan-Marek Glogowski 
CommitDate: Tue Oct 9 07:32:46 2018 +0200

Qt5: fix build with Qt 5.11

And while at it annotate Qt5Font fall-throughs.

Change-Id: I31a73407f3228f303236983df17c66bc88eef6c5
Reviewed-on: https://gerrit.libreoffice.org/61557
Tested-by: Jenkins
Tested-by: Rene Engelhard 
Reviewed-by: Jan-Marek Glogowski 

diff --git a/vcl/qt5/Qt5AccessibleWidget.cxx b/vcl/qt5/Qt5AccessibleWidget.cxx
index be3480aa3f77..748dda66f625 100644
--- a/vcl/qt5/Qt5AccessibleWidget.cxx
+++ b/vcl/qt5/Qt5AccessibleWidget.cxx
@@ -116,8 +116,8 @@ void 
lcl_appendRelation(QVector xAccessible(aRelation.TargetSet[i], 
uno::UNO_QUERY);
-relations->append(QPair(
-QAccessible::queryAccessibleInterface(new 
Qt5XAccessible(xAccessible)), aQRelation));
+relations->append(
+{ QAccessible::queryAccessibleInterface(new 
Qt5XAccessible(xAccessible)), aQRelation });
 }
 }
 }
diff --git a/vcl/qt5/Qt5Font.cxx b/vcl/qt5/Qt5Font.cxx
index 60287d9a6093..de4d10fdf13b 100644
--- a/vcl/qt5/Qt5Font.cxx
+++ b/vcl/qt5/Qt5Font.cxx
@@ -35,8 +35,11 @@ static QFont::Weight GetQFontWeight(FontWeight eWeight)
 return QFont::Light;
 case FontWeight_FORCE_EQUAL_SIZE:
 assert(false && "FontWeight_FORCE_EQUAL_SIZE not implementable for 
QFont");
+SAL_FALLTHROUGH;
 case WEIGHT_SEMILIGHT:
+SAL_FALLTHROUGH;
 case WEIGHT_DONTKNOW:
+SAL_FALLTHROUGH;
 case WEIGHT_NORMAL:
 return QFont::Normal;
 case WEIGHT_MEDIUM:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120158] It's imposible to paste special in Writer from Calc in Libreoffice 6.1.1 because the dialogue caption inform that's an unknown source

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120158

--- Comment #11 from Julien Nabet  ---
Created attachment 145502
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145502=edit
bt with debug symbols from the exception throw

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


[Libreoffice-bugs] [Bug 120382] A ODP fails to save as PPT

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120382

Mike Kaganski  changed:

   What|Removed |Added

Summary|A ODP fails to save as  |A ODP fails to save as PPT
   |PPT(X)  |

--- Comment #6 from Mike Kaganski  ---
Yes, sorry for the noise about PPTX - my fault, assumed that the description on
the Ask site is accurate, and only tested PPT part.

As MM stated in comment 5, the error on opening should be treated as a
different problem. It might happen that it would be fixed by fixing this,
though, but until then, let's concentrate here on the PPT part.

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


[Libreoffice-bugs] [Bug 120225] FILEOPEN Reference field to text field in DOC is broken

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120225

--- Comment #3 from Justin L  ---
A bookmark is not created when the it comes from a FORMTEXT (type ==
BOOK_FIELD).
https://cgit.freedesktop.org/libreoffice/core/commit/?id=c535a76dcb550f6b9e98268f49cec1a7c8986156

If I did my back-tracing correctly, this is related to OOo bug
https://bz.apache.org/ooo/show_bug.cgi?id=33737 which didn't suggest any great
insights into this particular bug, but does indicate that this is a difficult
and contentious area to play around in, especially for corporate customers.

Setting the type to BOOK_NORMAL [instead of ww8par3.cxx
pB->SetStatus(bkmFindIdx, BOOK_FIELD)] allows the imported reference to work,
but exporting breaks ww8export's testBnc636128 somehow - probably because it
turns this "fake" bookmark into a real one.

All of that is probably irrelevant though, since the name of the control form
is not even used at all for creating the fieldmark - only an auto-generated
__Fieldmark__ name is assigned which obviously does not tie back to the
original bookmark name. (This has been true since inception commit
df6d312ca5374.)

The example document loads and round-trips OK with patch
https://gerrit.libreoffice.org/61565

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


[Libreoffice-bugs] [Bug 120435] New: Unable to insert em dash with spaces

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120435

Bug ID: 120435
   Summary: Unable to insert em dash with spaces
   Product: LibreOffice
   Version: 6.0.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: darth_ala...@yahoo.com

I want to insert an em-dash using "normal" keystrokes.  If I enter two hyphens
between words, this works.  E.g.,
  test--test
converts to
  testtest

But what I want is testtest, and I can't get Writer to
do this.  If if write
test--test
I get 
test--test
not (what I want)
testtest

I've tried multiple things I've seen when I googled for this, but nothing
works.  Specifically, I tried adding
-- -> 
to the Autocorrect options, and made sure that 'While Typing' was selected, but
that did nothing.

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


[Libreoffice-bugs] [Bug 108338] Numeric formatting using the _ does not work

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108338

--- Comment #3 from Paul Goyette  ---
This bug is still present as of version 6.1.1.2 (built from sources on NetBSD
8.99.22 host, x86_64 platform).

A format of ###_._0_0 gets converted to ###"  " by a save/open sequence.

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


[Libreoffice-bugs] [Bug 95575] Multiple-page view should automatically zoom out pages

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95575

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 95548] FILEOPEN - a document opens slowly

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95548

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 106441] When selecting the same image multiple times and moving it, the image will at some point spontaneously move to a new page

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106441

--- Comment #4 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 46177] EDITING: Incorrect Behaviour of Direct Cursor in Right-Aligned Paragraphs

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46177

--- Comment #9 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 79570] VIEWING: In print preview, page up & page down don't function at specific zoom levels

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79570

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 94342] PRINTING: Printing certain page layouts (brochure/multiple pages-per-sheet) should enable fields for setting page size/orientation

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94342

--- Comment #5 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 45597] FORMATTING: Wrong Paragraph Inserted with Direct Cursor in "Tab and spaces" mode

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45597

--- Comment #9 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 70676] PRINTING: Difficulties with combining smaller pages on a bigger one

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70676

--- Comment #11 from QA Administrators  ---
** Please read this message in its entirety before responding **

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-ux-advise] [Bug 95575] Multiple-page view should automatically zoom out pages

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95575

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 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 99938] Calc uses 100% CPU and leaks memory when calculating moving average of full column

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99938

--- Comment #6 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 101043] LO52rc3 OSX: the Classification toolbar has grey, not theme adjusting background

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 40105] VIEWING: Switching of view layouts causes change of viewing position of document

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40105

--- Comment #15 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 36828] Calc DIF export acts weird and saves wrong sheet

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36828

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 89897] Multi-Window editing: cursor locations between windows not isolated while editing tables spanning multiple pages, cursor incorrectly repositions to same location in both

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89897

--- Comment #12 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 70668] FILEOPEN: Display does not fit to a page format from a Calligra Words document.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70668

--- Comment #14 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 108284] FILEOPEN ODS: Opening is slower as it used to be in earlier releases

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108284

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 108338] Numeric formatting using the _ does not work

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108338

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 108289] EDITING: Toolbar is unresponsive for a few sec after pressing CTRL+A for the first time in a large document

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108289

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 101684] Character styles used in a numbering style are not listed in "used styles" tab of Styles And Formatting and can be deleted without warning

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101684

--- Comment #10 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 79738] FILEOPEN: DOC/DOCX - Number lines in footer not compatible with MSO

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79738

--- Comment #16 from QA Administrators  ---
** Please read this message in its entirety before responding **

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 120402] When inserting a table with only one cell, the right hand border is not drawn.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120402

--- Comment #4 from BogdanB  ---
(In reply to Telesto from comment #3)
> Sounds like bug 115576

It is a duplicate of that bug reported by you, but yet unsolved.

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


[Libreoffice-bugs] [Bug 105628] Creating a ToC with page numbering by chapter (see comment 4)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105628

--- Comment #12 from Lee <92ma...@gmail.com> ---
The bug, and workaround are also applicable to Alphabetic indexes

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


[Libreoffice-bugs] [Bug 105628] Creating a ToC with page numbering by chapter (see comment 4)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105628

--- Comment #11 from Lee <92ma...@gmail.com> ---
Is there any chance this will be 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 55361] RTL: Animations that work letter-by-letter or word-by-word have it appear LTR during animation

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55361

--- Comment #17 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=d9ad59da50c1172fe98f94370221c9c1b688200a

tdf#55361 fix result of showing RTL text in the animation.

It will be available in 6.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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 55361] RTL: Animations that work letter-by-letter or word-by-word have it appear LTR during animation

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55361

--- Comment #16 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=800c60524d25dfde71240fe3c1533e17f6749daa

tdf#55361 adjust leftmost position for RTL text while animation.

It will be available in 6.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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 55361] RTL: Animations that work letter-by-letter or word-by-word have it appear LTR during animation

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55361

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.2.0

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


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

2018-10-08 Thread Libreoffice Gerrit user
 cppcanvas/source/mtfrenderer/textaction.cxx |   39 +---
 1 file changed, 30 insertions(+), 9 deletions(-)

New commits:
commit 800c60524d25dfde71240fe3c1533e17f6749daa
Author: Mark Hung 
AuthorDate: Sat Oct 6 00:46:14 2018 +0800
Commit: Mark Hung 
CommitDate: Tue Oct 9 01:28:19 2018 +0200

tdf#55361 adjust leftmost position for RTL text while animation.

Set the leftmost position correctly based on logical advancement
values of XTextLayout to render the substring of a RTL text.

Change-Id: Ib65b433105274f6ebfd251e92d831f1b28516294
Reviewed-on: https://gerrit.libreoffice.org/61459
Tested-by: Jenkins
Reviewed-by: Mark Hung 

diff --git a/cppcanvas/source/mtfrenderer/textaction.cxx 
b/cppcanvas/source/mtfrenderer/textaction.cxx
index 9d9d9d76f2b0..76bccef0ba8a 100644
--- a/cppcanvas/source/mtfrenderer/textaction.cxx
+++ b/cppcanvas/source/mtfrenderer/textaction.cxx
@@ -229,6 +229,7 @@ namespace cppcanvas
  */
 void initArrayAction( rendering::RenderState&   
o_rRenderState,
   uno::Reference< rendering::XTextLayout >& 
o_rTextLayout,
+  double&   
nLayoutWidth,
   const ::basegfx::B2DPoint&
rStartPoint,
   const OUString&rText,
   sal_Int32 
nStartPos,
@@ -260,6 +261,9 @@ namespace cppcanvas
   "::cppcanvas::internal::initArrayAction(): 
Invalid font" );
 
 o_rTextLayout->applyLogicalAdvancements( rOffsets );
+
+const double* pOffsets(rOffsets.getConstArray());
+nLayoutWidth = *std::max_element(pOffsets, pOffsets + 
rOffsets.getLength());
 }
 
 double getLineWidth( ::VirtualDevice const & rVDev,
@@ -280,6 +284,7 @@ namespace cppcanvas
double& 
 o_rMinPos,
double& 
 o_rMaxPos,
const uno::Reference< 
rendering::XTextLayout >&  rOrigTextLayout,
+   double  
 nLayoutWidth,
const 
::cppcanvas::internal::Action::Subset& rSubset )
 {
 ENSURE_OR_THROW( rSubset.mnSubsetEnd > rSubset.mnSubsetBegin,
@@ -291,12 +296,6 @@ namespace cppcanvas
 ENSURE_OR_THROW( aOrigOffsets.getLength() >= 
rSubset.mnSubsetEnd,
   "::cppcanvas::internal::calcSubsetOffsets(): 
invalid subset range range" );
 
-// TODO(F3): It currently seems that for RTL text, the
-// DX offsets are nevertheless increasing in logical
-// text order (I'd expect they are decreasing,
-// mimicking the fact that the text is output
-// right-to-left). This breaks text effects for ALL
-// RTL languages.
 
 // determine leftmost position in given subset range -
 // as the DX array contains the output positions
@@ -317,6 +316,16 @@ namespace cppcanvas
   0 : 
rSubset.mnSubsetBegin-1),
   pOffsets + rSubset.mnSubsetEnd )) );
 
+// Logical advancements always increase in logical text order.
+// For RTL text, nMaxPos is the distance from the right edge to
+// the leftmost position in the subset, so we have to convert
+// it to the offset from the origin (i.e. left edge ).
+// LTR: | min --->| max --->||
+// RTL: | |<--- max |<--- min ---|
+//  |<- nOffset ->|  |
+const double nOffset = rOrigTextLayout->getMainTextDirection()
+? nLayoutWidth - nMaxPos : nMinPos;
+
 
 // adapt render state, to move text output to given offset
 
@@ -326,18 +335,18 @@ namespace cppcanvas
 // with the output offset. Neglected for now, as it
 // does not matter for drawing layer output
 
-if( rSubset.mnSubsetBegin > 0 )
+if (nOffset > 0.0)
 {
 ::basegfx::B2DHomMatrix aTranslation;
 if( 
rOrigTextLayout->getFont()->getFontRequest().FontDescription.IsVertical == 
css::util::TriState_YES )
 {
 // vertical text -> offset in y direction
-aTranslation.translate( 0.0, nMinPos );
+aTranslation.translate(0.0, 

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

2018-10-08 Thread Libreoffice Gerrit user
 canvas/source/directx/dx_textlayout.cxx|3 ++-
 canvas/source/directx/dx_textlayout_drawhelper.cxx |6 --
 canvas/source/directx/dx_textlayout_drawhelper.hxx |3 ++-
 3 files changed, 8 insertions(+), 4 deletions(-)

New commits:
commit d9ad59da50c1172fe98f94370221c9c1b688200a
Author: Mark Hung 
AuthorDate: Sat Oct 6 15:12:29 2018 +0800
Commit: Mark Hung 
CommitDate: Tue Oct 9 01:28:37 2018 +0200

tdf#55361 fix result of showing RTL text in the animation.

Call drawTextArray with SalLayoutFlags::BiDiRTL if the
text direction of a TextLayout is RTL.

Change-Id: I1a3bfaee5521eea77b44350c21c104cbf72fac97
Reviewed-on: https://gerrit.libreoffice.org/61460
Tested-by: Jenkins
Reviewed-by: Mark Hung 

diff --git a/canvas/source/directx/dx_textlayout.cxx 
b/canvas/source/directx/dx_textlayout.cxx
index 16e2dc09129e..ff62ee5e0b80 100644
--- a/canvas/source/directx/dx_textlayout.cxx
+++ b/canvas/source/directx/dx_textlayout.cxx
@@ -207,7 +207,8 @@ namespace dxcanvas
 maLogicalAdvancements,
 mpFont.get(),
 mpFont->getFontMatrix(),
-bAlphaSurface);
+bAlphaSurface,
+mnTextDirection != 0);
 
 return true;
 }
diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx 
b/canvas/source/directx/dx_textlayout_drawhelper.cxx
index 3b1246cf15c9..f4d51e9d8d73 100644
--- a/canvas/source/directx/dx_textlayout_drawhelper.cxx
+++ b/canvas/source/directx/dx_textlayout_drawhelper.cxx
@@ -68,7 +68,8 @@ namespace dxcanvas
 const css::uno::Reference<
 css::rendering::XCanvasFont >& rCanvasFont,
 const css::geometry::Matrix2D& rFontMatrix,
-bool   bAlphaSurface )
+bool   bAlphaSurface,
+bool bIsRTL)
 {
 HDC hdc = rGraphics->GetHDC();
 
@@ -209,7 +210,8 @@ namespace dxcanvas
   aText,
   pDXArray.get(),
   rText.StartPosition,
-  rText.Length );
+  rText.Length,
+  bIsRTL ? SalLayoutFlags::BiDiRtl 
: SalLayoutFlags::NONE);
 }
 else
 {
diff --git a/canvas/source/directx/dx_textlayout_drawhelper.hxx 
b/canvas/source/directx/dx_textlayout_drawhelper.hxx
index 4bb82ec7c716..897d7eb1c727 100644
--- a/canvas/source/directx/dx_textlayout_drawhelper.hxx
+++ b/canvas/source/directx/dx_textlayout_drawhelper.hxx
@@ -57,7 +57,8 @@ namespace dxcanvas
const css::uno::Reference<
css::rendering::XCanvasFont >&  rCanvasFont,
const css::geometry::Matrix2D&  rFontMatrix,
-   bool 
bAlphaSurface );
+   bool 
bAlphaSurface,
+   bool bIsRTL);
 
 css::geometry::RealRectangle2D queryTextBounds(
 const css::rendering::StringContext&   rText,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 70102] RTL: Flipped toolbar button icons dont always look suitable

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70102

Shai Berger  changed:

   What|Removed |Added

 CC||s...@platonix.com

--- Comment #16 from Shai Berger  ---
Created attachment 145501
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145501=edit
Template whose use reproduces icon mirroring issues

Hi,

I cannot reproduce the bug when opening a blank new document, but it does show
up if I use the template I am attaching here.

Version: 6.1.2.1
Build ID: 1:6.1.2-1
CPU threads: 4; OS: Linux 4.18; UI render: default; VCL: gtk3; 
Locale: en-US (en_IL.UTF-8); Calc: group threaded

(en_IL is a bit of a fabricated locale, but I've tried with en_US.UTF-8 and
he_IL.UTF-8 and it didn't make any difference)

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


[Libreoffice-bugs] [Bug 118365] Style attached to a source of Formatting cloned is ignored and interpreted as a style which is not applied to it.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118365

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |NOTABUG
 OS|Linux (All) |All
   Hardware|x86-64 (AMD64)  |All

--- Comment #2 from Aron Budea  ---
As described in [1], clone formatting copies character level formatting by
default, hold Ctrl while clicking on the target text, and the style reference
(as paragraph-level formatting) will be copied as well.

Note that because of this what you want to achieve in case 3 (where you want a
paragraph-level formatting applied to a part of a paragraph) can't be done
exactly like that.

Hopefully this explains the behavior, closing ticket as NOTABUG.

[1]
https://help.libreoffice.org/Common/Copying_Attributes_With_the_Clone_Formatting_Tool

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


[Libreoffice-bugs] [Bug 120158] It's imposible to paste special in Writer from Calc in Libreoffice 6.1.1 because the dialogue caption inform that's an unknown source

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120158

--- Comment #10 from Julien Nabet  ---
the pb isn't subtype() but quotedPValue.
It throws here:
https://opengrok.libreoffice.org/xref/core/dtrans/source/cnttype/mcnttype.cxx#298
283  while ( !m_nxtSym.isEmpty( ) )
284  {
285  if ( bAfterQuoteSign && (
286  (m_nxtSym == SPACE) ||
287  (m_nxtSym == SEMICOLON))
288 )
289  {
290  break;
291  }
292  else if ( isInRange( m_nxtSym, OUStringLiteral(TOKEN) + TSPECIALS
+ SPACE ) )
293  {
294  pvalue.append(m_nxtSym);
295  bAfterQuoteSign = m_nxtSym == "\"";
296  }
297  else
298  throw IllegalArgumentException( );  < HERE
299  getSym( );
300  }

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


[Libreoffice-bugs] [Bug 45647] FORMATTING Format Paintbrush Cannot Be Used Across Multiple Documents

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45647

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 53056] Format paintbrush cannot be used between documents

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53056

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 86805] FORMATTING: Format painter tool does not work between Calc (spreadsheet) documents ("books")

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86805

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=53
   ||056,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=45
   ||647

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


[Libreoffice-bugs] [Bug 120382] A ODP fails to save as PPT(X)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120382

--- Comment #5 from MM  ---
(In reply to BogdanB from comment #4)
> Created attachment 145466 [details]
> error
> 
> With LO Version: 6.2.0.0.alpha0+ I could opened the file, save as PPTX, but
> get an error after opening PPTX file. See the image.
> Build ID: e539a492597c7312a8d0cccb4b386341bd4ec84a
> CPU threads: 4; OS: Linux 4.15; UI render: GL; VCL: gtk2; 
> TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
> 2018-10-05_00:43:34
> Locale: ro-RO (ro_RO.UTF-8); Calc: threaded

Yes, with v6.0.7.1 i'm getting an error when trying to load the pptx file.
Which is a different problem then getting the error when saving as ppt.

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


[Libreoffice-bugs] [Bug 120158] It's imposible to paste special in Writer from Calc in Libreoffice 6.1.1 because the dialogue caption inform that's an unknown source

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120158

--- Comment #9 from Julien Nabet  ---
We got in catch of
https://opengrok.libreoffice.org/xref/core/svtools/source/misc/transfer.cxx#1205

The pb happens when typename contains other things than ascii.
Spanish (KO):
rFlavor.MimeType=application/x-openoffice-objectdescriptor-xml;windows_formatname="Star
Object Descriptor
(XML)";classname="47BBB4CB-CE4C-4E80-a591-42d9ae74950f";typename="Hoja de
cálculo de LibreOfficeDev
6.2";viewaspect="1";width="2258";height="453";posx="0";posy="0"

Italian (OK):
rFlavor.MimeType=application/x-openoffice-objectdescriptor-xml;windows_formatname="Star
Object Descriptor
(XML)";classname="47BBB4CB-CE4C-4E80-a591-42d9ae74950f";typename="LibreOfficeDev
6.2 - Foglio
elettronico";viewaspect="1";width="2259";height="452";posx="0";posy="0"

French (OK):
rFlavor.MimeType=application/x-openoffice-objectdescriptor-xml;windows_formatname="Star
Object Descriptor
(XML)";classname="47BBB4CB-CE4C-4E80-a591-42d9ae74950f";typename="Classeur
LibreOfficeDev 6.2";viewaspect="1";width="2258";height="452";posx="0";posy="0"

Some debug shows pb into 
CMimeContentType::subtype() from dtrans/source/cnttype/mcnttype.cxx

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


[Libreoffice-bugs] [Bug 42437] Enable the special MacOS X functionality for special caracter input (éñ etc.)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42437

--- Comment #14 from Marc Grober  ---
Lions and Tigers and Bears! The last time I made an irreverent comment such as
yours about ancient OSX bugs and engaged in a bit of Civil Disobedience (35361)
I was roundly scolded, rofl...

Bottom line is that apparently there are not a lot of people who want to work
on these OSX issues so they just get ignored.

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


[Libreoffice-bugs] [Bug 42437] Enable the special MacOS X functionality for special caracter input (éñ etc.)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42437

V Stuart Foote  changed:

   What|Removed |Added

   Severity|normal  |enhancement

--- Comment #13 from V Stuart Foote  ---
Sorry it is still an enhancement, as with comment 7 all the wishing in the
world will not materialize a dev to integrate support of a native NSObject
PressAndHold.app

Otherwise the LibreOffice special character dialog and the +X Unicode
toggle are what is provided.

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


[Libreoffice-bugs] [Bug 42437] Enable the special MacOS X functionality for special caracter input (éñ etc.)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42437

Fred  changed:

   What|Removed |Added

   Severity|enhancement |normal

--- Comment #12 from Fred  ---
With the arrival of MacOS 10.14 Mojave I think we can now consider this a bug
instead of a mere feature request as this has been outstanding since MacOS
10.7, or since LO v3.4.3, or maybe the observation that this bug will celebrate
its sixth anniversary in the system at the end of the month may be sufficiently
illustrative.

Is something really still a "feature request" if non-implementation actively
conflicts with usability on a platform usability?  Has anyone actually tried to
use LO's native facility which is, umm, not quite as useful?

I suspect that this request got buried under all the other fun stuff added to
LO to bring it to v6, so I'm pulling from underneath the pile, dust if off a
bit and put it back where it can be seen, faded as it has become over time..

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


[Libreoffice-bugs] [Bug 120434] New: Make it easy to edit/amend bullet style presets - or make them at least easily accessible

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120434

Bug ID: 120434
   Summary: Make it easy to edit/amend bullet style presets - or
make them at least easily accessible
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d1...@phx.li

Description:
LO Writer comes with 8 preset bullet styles.  It would be helpful if these
defaults could be easily changed by right-clicking or maybe by redefining a
bullet 1..8 style.  At the moment it is not only impossible to change the 8
styles (at least not in a manner that I have been able to unearth - tips
welcome), but adding a more useful style is also not possible.  Either make the
default 8 changeable or allow users to add their own (preferably before the
defaults so the user doesn't end up with a need to scroll).

Steps to Reproduce:
1. Enter some text
2. Select bullet style via icon menu
3. Attempt to change its style..
  a - locally: sort of works via "more bullets" selection
  b - document wide like a proper style would: not a chance.  Application of
new style is also rather haphazard as there is no clear indication (like, say,
a new icon) that indicates what will be applied where.

Actual Results:
1 - user is stuck with built-in styles which are, umm, not always the best
options
2 - user may thus end up with 8 wasted locations for their own preferences
3 - user may eventually just give up and revert to Word

Expected Results:
Tried right-clicking, nothing there.  Style menu does not have "bullet 1..8" as
a style but should have (most logical place to put it from an UI expectation
perspective).  User wastes time fighting defaults which should instead be
easily customisable.


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-bugs] [Bug 115576] EDITING: There is no right borderline when inserting an one column table

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115576

Telesto  changed:

   What|Removed |Added

 CC||rayk...@gmail.com

--- Comment #6 from Telesto  ---
@Jim
Only FYI, this bug is more apparent since:
author  Jim Raykowski2017-10-31 15:48:07 -0800
committer   Miklos Vajna   2017-12-20 09:11:47
+0100
commit  416f7578d6332b5b5a4445f26307d73925188e41 (patch)
treec84e21fe1b096f149baf03a95bce82f5b385ad2e
parent  226804c8f7d2306562380283edfd919a88863807 (diff)
tdf#107555 Apply 'Default Style' table style to newly inserted tables

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


[Libreoffice-bugs] [Bug 111529] FILESAVE DOCX Writer Corrupts Tabs In Header and Footer of Word Document

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111529

--- Comment #10 from junk_2...@live.co.uk ---
I can confirm that this bug is fixed as of 6.1.1.2 64bit on Windows 10.

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


[Libreoffice-bugs] [Bug 120187] Error message handling checkbox criterion building Query in Design View

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120187

zoom...@gmx.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from zoom...@gmx.com ---
I don't have the original database in Windows anymore.  I thought that you guys
knew what you were doing and I wouldn't have any problems so I never kept a
copy, just converted to Firebird.
I also deleted the Firebird database in Windows and switched back to a HSQLDB
engine where I have painstakingly recreated the database from printed report
copies from the Ubuntu database and other previously printed copies.
This was somewhat difficult because of the "Label" bug in the Report Writer.
However, except for Report Writer, everything is working again.

It will be a long time before I switch to Firebird again.  I am currently
considering switching to a paid DBMS.

What is this regression to version 6.0.7?  When will Report Writer be 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 120402] When inserting a table with only one cell, the right hand border is not drawn.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120402

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #3 from Telesto  ---
Sounds like bug 115576

-- 
You are receiving this mail because:
You 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/source

2018-10-08 Thread Libreoffice Gerrit user
 sw/source/uibase/utlui/navipi.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 7645bd0adf4f4e8845ecb7bcb814aa2a0537bff3
Author: Jim Raykowski 
AuthorDate: Sat Sep 22 11:25:31 2018 -0800
Commit: Jim Raykowski 
CommitDate: Mon Oct 8 23:17:37 2018 +0200

tdf#120061 Enable Navigator multiple headings selection

...on document reopening when Navigator window was previously in
Headings/Outline Content Navigation View mode

Change-Id: I169df15e81c4e9acf24c0e76d7f720af598c5b93
Reviewed-on: https://gerrit.libreoffice.org/60910
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/utlui/navipi.cxx 
b/sw/source/uibase/utlui/navipi.cxx
index 14dae916f7d2..0a59be1f9bb1 100644
--- a/sw/source/uibase/utlui/navipi.cxx
+++ b/sw/source/uibase/utlui/navipi.cxx
@@ -1241,6 +1241,13 @@ SwNavigationChild::SwNavigationChild( vcl::Window* 
pParent,
 {
 pNavi->m_aContentTree->SetRootType(nRootType);
 
pNavi->m_aContentToolBox->CheckItem(pNavi->m_aContentToolBox->GetItemId("root"));
+if (nRootType == ContentTypeId::OUTLINE)
+{
+pNavi->m_aContentTree->SetSelectionMode(SelectionMode::Multiple);
+pNavi->m_aContentTree->SetDragDropMode(DragDropMode::CTRL_MOVE |
+   DragDropMode::CTRL_COPY |
+   DragDropMode::ENABLE_TOP);
+}
 }
 pNavi->m_aContentTree->SetOutlineLevel( static_cast< sal_uInt8 >( 
pNaviConfig->GetOutlineLevel() ) );
 pNavi->SetRegionDropMode( pNaviConfig->GetRegionMode() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 118764] Broken tab key navigation in Properties and Navigator decks

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118764

--- Comment #16 from Jim Raykowski  ---
Hi Xisco, I don't have backport permission. If you would do the backport that
would be great.

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


[Libreoffice-bugs] [Bug 120210] meet issue in open some excel files with hiding everything but the working area in a worksheet

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120210

raal  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from raal  ---
I can not reproduce with Version: 6.2.0.0.alpha0+
Build ID: e9c1cbce903d325b1e19602d72765511589f5bf2
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3;

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


[Libreoffice-bugs] [Bug 120387] EDITING Copy Chart Axis Title causes LibreOffice Calc crash

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120387

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 120387] EDITING Copy Chart Axis Title causes LibreOffice Calc crash

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120387

--- Comment #6 from Xisco Faulí  ---
Created attachment 145500
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145500=edit
gdb 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


Re: problems with LayerTabBar in unit tests

2018-10-08 Thread Markus Mohrhard
Hello Regina,

On Mon, Oct 8, 2018 at 7:54 PM Regina Henschel 
wrote:

> Hi all,
>
> does no one has an idea? I have put the problem as patch to Gerrit
> https://gerrit.libreoffice.org/61545. Perhaps my problem is easier
> understandable then.
>
> Problem: If I use the "Load"-method, I get the document loaded, but only
> the center pane has the correct size. All other window sizes have
> suspicious values. Especially the LayerTabBar has width 0, and therefore
> a click on it is not possible. But that would be needed for the unit test.
>

Many of the unit tests actually don't include any parts of the UI. So, they
are usually useless for testing that anything in the UI actually works. For
some tests you can work around it by hooking into the corresponding shell
but you will need to inspect the code and the setup of the test (e.g. your
test does not link against libsdui) to check if that is possible. I think
not many people can easily help you there for impress and draw code.

Regards,
Markus

>
> How to get the correct window sizes?
>
> Kind regards
> Regina
>
>
> Regina Henschel schrieb am 04-Oct-18 um 14:42:
> > Hi all,
> >
> > I'm still working on a unit test for bug tdf#119956. My current state
> > is, that the odg test document really opens in Draw. [On master it opens
> > in Impress.] But the layer tab bar has width 0. So simulating a click on
> > the layer tab bar is not possible, which is needed in case of bug
> > tdf#119956.
> >
> > Which layers are shown in the layer tab bar is calculated in
> > DrawViewShell::ResetActualLayer() in sd/source/ui/view/drviews1.cxx and
> > the actual width is calculated in TabBar::ImplFormat() in
> > svtools/source/control/tabbar.cxx. Please correct me, if I'm wrong about
> > this.
> >
> > So my questions are:
> >
> > What makes the method SdMiscTest::Load from misc-tests.cxx in sd/qa/unit
> > different from regular opening the file from a running LibreOffice via
> > click on Open button of the start center?
> >
> > How can I open the test file in a unit test the same way as a regular
> > Open does?
> >
> > Or what do I need to add/change in the SdMiscTest::Load method to get
> > the layer tab bar in the correct width?
> >
> > Any ideas or tips?
> >
> > Kind regards
> > Regina
> > ___
> > LibreOffice mailing list
> > LibreOffice@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/libreoffice
>
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 120158] It's imposible to paste special in Writer from Calc in Libreoffice 6.1.1 because the dialogue caption inform that's an unknown source

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120158

--- Comment #8 from Julien Nabet  ---
"Unknown origin" comes from cui/source/dialogs/pastedlg.cxx#168
So start point for the investigation.

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


[Libreoffice-bugs] [Bug 120158] It's imposible to paste special in Writer from Calc in Libreoffice 6.1.1 because the dialogue caption inform that's an unknown source

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120158

--- Comment #7 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this
with Spanish and keyId UI, not with French, Italian and English US UI.

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


[Libreoffice-bugs] [Bug 120433] New: Suddenly received a notice of corrupted or infected files, after that app won't open

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120433

Bug ID: 120433
   Summary: Suddenly received a notice of corrupted or infected
files, after that app won't open
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hfo...@aol.com

Description:
I suddenly received a notice of corrupted or infected files, after that app
won't open. I uninstalled app, downloaded a fresh copy, restarted computer,
then attempted to launch OL, but no go. App refused to run.

Steps to Reproduce:
1. Deleted app
2. Reinstalled
3. Restarted
4. RelaunchedS

Actual Results:
Refused to launch

Expected Results:
App would launch


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Strange, first time ever. It happened very quickly, but it seemed like I
received a virus alert, and after that nothing would save or open. I was able
to open using safe mode, but will see if it runs in normal mode. Safe Mode for
the Computer, not OL, since I couldn't get into OL to start the app in Safe
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 120387] EDITING Copy Chart Axis Title causes LibreOffice Calc crash

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120387

--- Comment #5 from Jan-Marek Glogowski  ---
I don't know how many bugs this patch has unvailed.
This patch is not the bug, but a forced crash via std::abort().
Every developer should be able to fix it.

Someone tries to release a mutex he doesn't own, which is undefined behaviour
and might eat your data, or crash, or ... anythung else - it's undefined.
Better to panic and abort, before we really silently break something.

I'll probably have a look at the backtrace tomorrow and stick a SolarMutexGuard
somewhere in there and hope (again) it's the last one. OTOH everyone can
introduce new bugs of this kind, where the patch enforces an abort.

Should make it into 6.0.7 hopefully. Three patches to go.

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


[Libreoffice-bugs] [Bug 120371] Tabs hidden in single line in paragraph property dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120371

Caolán McNamara  changed:

   What|Removed |Added

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

--- Comment #3 from Caolán McNamara  ---
"Likely this is a new GTK/theme thing?" The change is from the old case of
using LibreOffice TabControls which are themed to look (something like) GTK
Notebooks, to the new case of using real Gtk Notebooks. And real GtkNotebooks
don't offer double-decker tabs.

"Cons: Char/Para dialog is now different in style from all the other tab
dialogs."

Reading
https://developer.gnome.org/hig-book/unstable/controls-notebooks.html.en#controls-too-many-tabs
the suggestion there is to use tabs on the left for > 6 entries and on top for
less. So my current thinking is to go with version 2 of
https://gerrit.libreoffice.org/#/c/61487/ which automates that for the native
GTK3 dialogs. So everything with > 6 tabs would have them appear on the left.

"Side note: The transparency tab is missing some tab label (labeled as Page
10)", that menu is the native GTK notebook menu. I seem to see the same
behaviour on the last tab, regardless of the number of tabs. Filed that as
https://gitlab.gnome.org/GNOME/gtk/issues/1397

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


[Libreoffice-bugs] [Bug 119810] Base Reports: Ruler-Margin Landscape Mode Wrong

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119810

--- Comment #7 from teckn...@cts.com ---
Created attachment 145499
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145499=edit
Screenshot of Report Edit

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


[Libreoffice-bugs] [Bug 120210] meet issue in open some excel files with hiding everything but the working area in a worksheet

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120210

--- Comment #2 from Wind Li  ---
Created attachment 145498
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145498=edit
hide cols

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


[Libreoffice-bugs] [Bug 120392] Unclear PDF, ePUB button name in Customize dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120392

--- Comment #6 from V Stuart Foote  ---
(In reply to Edmund Laugasson from comment #4)
> Created attachment 145489 [details]
> EPUB choices, no difference
> 
> To be precise, I made screenshots of the toolbar customization dialog -
> expecting also there to see difference, which currently does not exist.

Yes that is correct. The issue is the labeling passed for use in the
Customization dialog. The EPub and PDF labels are generic.

The commands are:

.uno:ExportToEPUB (which opens the dialog and receives the ellipsis);
.uno:ExportDirectlyToEPUB (which directly exports to EPUB with defaults).

Similar pair of UNO controls for the Export to PDF .uno:ExportToPDF and
.uno:ExportDirectToPDF

=-ref-=

https://opengrok.libreoffice.org/xref/core/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu#4977

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


[Libreoffice-bugs] [Bug 120414] LibreOffice: File -> Wizards, then select Letters or Fax or Agenda -> Application crashes Due to unexpected error

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120414

--- Comment #7 from Julien Nabet  ---
Which distrib do you use and env? (gtk 2, 3, kde, other?)

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


[Libreoffice-bugs] [Bug 120391] EDITING: Comments in Calc without background while editing.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120391

--- Comment #5 from Regina Henschel  ---
It is a regression.

It is OK in Version: 5.4.7.2 (x64)
Build ID: c838ef25c16710f8838b1faec480ebba495259d0
CPU threads: 8; OS: Windows 6.19; UI render: default; 
Locale: en-US (en_US); Calc: CL

It is broken in Version: 6.0.6.2 (x64)
Build ID: 0c292870b25a325b5ed35f6b45599d2ea4458e77
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (en_US); Calc: CL

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


[Libreoffice-bugs] [Bug 120432] New: Date, Time and Formulas Can be Inserted in Read-only Spreadsheets

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120432

Bug ID: 120432
   Summary: Date, Time and Formulas Can be Inserted in Read-only
Spreadsheets
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harald.koes...@mail.de

In order to reproduce the bug:

[1] Open new spreadsheet.
[2] Insert some text in a cell.
[3] Save but don't close spreadsheet.
[4] Change to read-only mode: Edit > Edit Mode.
[5] Insert Date: Insert > Date. A number is inserted into cell and a message is
displayed: “Document opened in read-only mode”. Expected: “Date” should be
greyed and inserting of a date should not be possible. Then a message is no
longer necessary.

If you insert the time, it happens the same. Also a formula can be inserted
similarly in a read-only spreadsheet (Insert > Object > Formula...).

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


[Libreoffice-bugs] [Bug 120431] Some docx math equations do not display

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120431

--- Comment #1 from syx...@gmail.com ---
Created attachment 145497
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145497=edit
Sample with issue.

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


[Libreoffice-bugs] [Bug 120431] New: Some docx math equations do not display

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120431

Bug ID: 120431
   Summary: Some docx math equations do not display
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: syx...@gmail.com

Description:
There are certain math equations that display as intended in Word, but when
opened in Writer it will only display a upside down question mark, or missing
object.

Steps to Reproduce:
1.Open file in Word, see that equation displays.
2.Open same file in writer.
3.See that one equation displays while the other does not.

Actual Results:
One equation displays.  Under it, a missing or malformed object (upside down
question mark)

Expected Results:
Two identical equations should display.


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-bugs] [Bug 120387] EDITING Copy Chart Axis Title causes LibreOffice Calc crash

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120387

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
   Severity|normal  |critical
   Priority|medium  |highest
Version|6.0.6.2 release |6.0.0.0.alpha0+
 CC||glo...@fbihome.de

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

author  Jan-Marek Glogowski  2017-08-15 08:05:51 +0200
committer   Jan-Marek Glogowski  2017-09-19 09:25:14
+0200
commit  3840aede596e6fc24f7ed7df9100fb028134aac6 (patch)
tree74d1d5efa3b2ad5448181fc185faf226aed192e4
parent  10b49dfb3996f99dec8dd0d2ffae2aef4022f395 (diff)
Unify SolarMutex implementations

Bisected with: bibisect-linux64-6.0

Adding Cc: to Jan-Marek Glogowski

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


[Libreoffice-bugs] [Bug 120391] EDITING: Comments in Calc without background while editing.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120391

--- Comment #4 from BogdanB  ---
If we know it's a regressiin I could bibisect

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


[Libreoffice-bugs] [Bug 120318] branch crashes in bibliography database -> Data -> autofilter

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120318

--- Comment #11 from Julien Nabet  ---
I submitted a patch to remove the entry, see
https://gerrit.libreoffice.org/#/c/61558/

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


[Libreoffice-bugs] [Bug 120391] EDITING: Comments in Calc without background while editing.

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120391

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #3 from Regina Henschel  ---
The same defect can be seen for draw captions in the other modules. The shape
is not updated, if the edit area increases.

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


[Libreoffice-bugs] [Bug 120387] EDITING Copy Chart Axis Title causes LibreOffice Calc crash

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120387

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
Reproduced in

Versión: 6.1.2.1
Id. de compilación: 65905a128db06ba48db947242809d14d3f9a93fe
Subprocs. CPU: 1; SO: Windows 6.1; Repres. IU: predet.; 
Configuración regional: es-ES (es_ES); Calc: group threaded

Interestingly, there's no crash report after the crash...

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


[Libreoffice-bugs] [Bug 120407] Font Color not set in Format Search & Replace

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120407

--- Comment #3 from Xisco Faulí  ---
Created attachment 145496
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145496=edit
screencast

@Caolán, I've recorded a screencast to make it clearer

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


[Libreoffice-bugs] [Bug 63356] EDITING: Unable to change tabs in multiple paragraphs at once when paragraphs have different tab settings or some have bullets/numbering set

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63356

Gottfried  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #12 from Gottfried  ---
I tried and it works for me now, many thanks!

Version: 6.1.2.1
Build-ID: 1:6.1.2~rc1-0ubuntu0.16.04.1
CPU-Threads: 4; BS: Linux 4.4; UI-Render: Standard; VCL: gtk2; 
Gebietsschema: de-AT (de_AT.UTF-8); Calc: group 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 107834] [META] Tab stops bugs and enhancements

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107834
Bug 107834 depends on bug 63356, which changed state.

Bug 63356 Summary: EDITING: Unable to change tabs in multiple paragraphs at 
once when paragraphs have different tab settings or some have bullets/numbering 
set
https://bugs.documentfoundation.org/show_bug.cgi?id=63356

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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


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

2018-10-08 Thread Libreoffice Gerrit user
 sc/source/core/data/markarr.cxx |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit bc9385c71e780f4dca5c54b8e817faae43c30d18
Author: Jochen Nitschke 
AuthorDate: Mon Oct 8 18:02:30 2018 +0200
Commit: Jochen Nitschke 
CommitDate: Mon Oct 8 20:45:08 2018 +0200

cppcheck: variableScope and fix index types

Change-Id: I045b4d84e0ad07a98523b91fc7203bfd422b3529
Reviewed-on: https://gerrit.libreoffice.org/61541
Reviewed-by: Noel Grandin 
Tested-by: Jenkins
Reviewed-by: Jochen Nitschke 

diff --git a/sc/source/core/data/markarr.cxx b/sc/source/core/data/markarr.cxx
index f9c5fdc3299a..7bdff0fcf989 100644
--- a/sc/source/core/data/markarr.cxx
+++ b/sc/source/core/data/markarr.cxx
@@ -63,13 +63,13 @@ bool ScMarkArray::Search( SCROW nRow, SCSIZE& nIndex ) const
 {
 if (pData)
 {
-longnHi = static_cast(nCount) - 1;
-longi   = 0;
-longnLo = 0;
+assert(nCount > 0);
+SCSIZEnHi = nCount - 1;
+SCSIZEnLo = 0;
 
 while ( nLo <= nHi )
 {
-i = (nLo + nHi) / 2;
+SCSIZE i = (nLo + nHi) / 2;
 
 if (pData[i].nRow < nRow)
 {
@@ -84,7 +84,7 @@ bool ScMarkArray::Search( SCROW nRow, SCSIZE& nIndex ) const
 else
 {
 // found
-nIndex=static_cast(i);
+nIndex=i;
 return true;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120318] branch crashes in bibliography database -> Data -> autofilter

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120318

--- Comment #10 from Hussam Al-Tayeb  ---
Has there been a decision yet on how to handle this?
For now, I've edited out the menu entry in my local 6-1 build as per comment
#4.

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


[Libreoffice-bugs] [Bug 120429] Functions “Insert Columns Left” and “Insert Rows Above” Exist Two Times in Customize Dialogue

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120429

V Stuart Foote  changed:

   What|Removed |Added

 CC||momonas...@gmail.com,
   ||tietze.he...@gmail.com,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from V Stuart Foote  ---
Confirmed.

Looking in CalcCommands.xcu a collision of uno:InsertRows and
uno:InsertRowsBefore; and uno:InsertColumns and uno:InsertColumnsBefore

Not sure if the issue for the duplicated UNO controls remains and can now be
removed, but the duplication was intentional at the time. 

=-ref-=
https://gerrit.libreoffice.org/#/c/16099/

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


[Libreoffice-bugs] [Bug 120385] Calc freezes with auto-filter and row/column freeze (Wayland only)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120385

--- Comment #6 from eomanis  ---
Comment on attachment 145493
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145493
gdb, build with --enable-debug, SIGTERM while libreoffice was frozen

>

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


[Libreoffice-bugs] [Bug 120385] Calc freezes with auto-filter and row/column freeze (Wayland only)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120385

eomanis  changed:

   What|Removed |Added

 Attachment #145493|0   |1
is obsolete||

--- Comment #5 from eomanis  ---
Created attachment 145495
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145495=edit
gdb, build with --enable-debug, SIGTERM while libreoffice was frozen

gdb, build with --enable-debug, SIGTERM while libreoffice was frozen

LibreOffice built with --enable-debug and run in gdb.
Once frozen, sent SIGTERM and then requested a backtrace.

This might point into the general area where the infinite loop is running.

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


[Libreoffice-bugs] [Bug 120430] Slide Thumbnails and Current Slide Do Not Appear on the Impress Remote Control on Android

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120430

--- Comment #3 from Laurindo  ---
Created attachment 145494
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145494=edit
Blank mini slides screen.

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


[Libreoffice-bugs] [Bug 120385] Calc freezes with auto-filter and row/column freeze (Wayland only)

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120385

--- Comment #4 from eomanis  ---
Created attachment 145493
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145493=edit
gdb, build with --enable-debug, SIGTERM while libreoffice was frozen

LibreOffice built with --enable-debug and run in gdb.
Once frozen, sent SIGTERM and then requested a backtrace.

This might point into the general area where the infinite loop is running.

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


[Libreoffice-bugs] [Bug 120430] Slide Thumbnails and Current Slide Do Not Appear on the Impress Remote Control on Android

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120430

--- Comment #2 from Laurindo  ---
Created attachment 145492
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145492=edit
Application screen connected to the notebook.

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


[Libreoffice-bugs] [Bug 120430] Slide Thumbnails and Current Slide Do Not Appear on the Impress Remote Control on Android

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120430

--- Comment #1 from Laurindo  ---
Created attachment 145491
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145491=edit
Application screen connected to the notebook.

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


[Libreoffice-bugs] [Bug 120430] New: Slide Thumbnails and Current Slide Do Not Appear on the Impress Remote Control on Android

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120430

Bug ID: 120430
   Summary: Slide Thumbnails and Current Slide Do Not Appear on
the Impress Remote Control on Android
   Product: Impress Remote
   Version: unspecified
  Hardware: Other
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android app
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: laurindol...@gmail.com

Description:
When making a slide show for the public using a notebook and the Android
Impress Remote Control application, version 2.3.0, the slide appears white on
the phone, the "laser" pointer does not appear (although clicking on the button
for the pointer ), the timer does not appear, however, the notes appear, when
alternate to the listing of all slides they appear blank. The only procedure
that is normal is the answer to move to the next and previous slide. I can
continue the presentations, however, I need to stay close to the notebook or
look at the audience monitor to see what image is on the screen.
I use a Dell Inspiron 13-5378 notebook, windows 10 Home Single Language, and
LibreOffice 6.0.6.2, everything is fine: I can make the connections on both
bluetooth and wifi with the phone and the application recognizes the notebook,
the console of the presenter of the Impress works without problem, when the
Remote Control Impress in Android exchanges the slides they are changed in the
notebook. I did not notice any problems on the notebook or on the S8 phone,
Android 8.0, with wifi routed or bluetooth on.
It seems to me that the application is not able to play thumbnail slides.
I take this opportunity to thank you for your commitment to providing us with a
great alternative. Good work, everyone!

Steps to Reproduce:
1.With the presentation open in the open Impress, connect through the wifi or
bluetooth the mobile;
2.Connected to open the Impress Remote Control application, select the notebook
the first time accept the code to enter in Impress and wait to load the slides
in the application of the mobile;
3.The slide figures do not appear, the "laser" pointer does not work, the timer
does not flash. The forward and backward slides work.

Actual Results:
The slide figures do not appear, the "laser" pointer does not work, the timer
does not flash. The forward and backward slides work.

Expected Results:
The picture of the slides should appear, the pointer and the timer work.


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-bugs] [Bug 116211] LO Send by email fails in Writer

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116211

--- Comment #13 from Bernard Moreton  ---
Hi Xisco,

I'm afraid I'm not familiar with GIT - perhaps I should be, but 24x7 care
leaves me little opportunity for doing new things.  Would you mind submitting
the revision for me?  License? - as for the existing SENDDOC, of course - or
whatever is most free.

MTIA, Bernard

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


[Libreoffice-bugs] [Bug 120392] Unclear PDF, ePUB button name in Customize dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120392

--- Comment #5 from Edmund Laugasson  ---
Created attachment 145490
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145490=edit
PDF choices, no difference

To be precise, I made screenshots of the toolbar customization dialog -
expecting also there to see difference, which currently does not exist.

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


[Libreoffice-ux-advise] [Bug 120392] Unclear PDF, ePUB button name in Customize dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120392

--- Comment #4 from Edmund Laugasson  ---
Created attachment 145489
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145489=edit
EPUB choices, no difference

To be precise, I made screenshots of the toolbar customization dialog -
expecting also there to see difference, which currently does not exist.

-- 
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 120392] Unclear PDF, ePUB button name in Customize dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120392

--- Comment #4 from Edmund Laugasson  ---
Created attachment 145489
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145489=edit
EPUB choices, no difference

To be precise, I made screenshots of the toolbar customization dialog -
expecting also there to see difference, which currently does not exist.

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


[Libreoffice-ux-advise] [Bug 120392] Unclear PDF, ePUB button name in Customize dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120392

--- Comment #3 from Edmund Laugasson  ---
Sounds nice - waiting 6.2.x...

-- 
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 120392] Unclear PDF, ePUB button name in Customize dialog

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120392

--- Comment #3 from Edmund Laugasson  ---
Sounds nice - waiting 6.2.x...

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


[Libreoffice-bugs] [Bug 120424] LibreOffice panel -> Some icons have an incorrect resolution

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120424

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Blocks||90796


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 90796] [META] HiDPI / Retina bugs

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90796

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||120424


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120424
[Bug 120424] LibreOffice panel -> Some icons have an incorrect resolution
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: problems with LayerTabBar in unit tests

2018-10-08 Thread Regina Henschel

Hi all,

does no one has an idea? I have put the problem as patch to Gerrit 
https://gerrit.libreoffice.org/61545. Perhaps my problem is easier 
understandable then.


Problem: If I use the "Load"-method, I get the document loaded, but only 
the center pane has the correct size. All other window sizes have 
suspicious values. Especially the LayerTabBar has width 0, and therefore 
a click on it is not possible. But that would be needed for the unit test.


How to get the correct window sizes?

Kind regards
Regina


Regina Henschel schrieb am 04-Oct-18 um 14:42:

Hi all,

I'm still working on a unit test for bug tdf#119956. My current state
is, that the odg test document really opens in Draw. [On master it opens
in Impress.] But the layer tab bar has width 0. So simulating a click on
the layer tab bar is not possible, which is needed in case of bug
tdf#119956.

Which layers are shown in the layer tab bar is calculated in
DrawViewShell::ResetActualLayer() in sd/source/ui/view/drviews1.cxx and
the actual width is calculated in TabBar::ImplFormat() in
svtools/source/control/tabbar.cxx. Please correct me, if I'm wrong about
this.

So my questions are:

What makes the method SdMiscTest::Load from misc-tests.cxx in sd/qa/unit
different from regular opening the file from a running LibreOffice via
click on Open button of the start center?

How can I open the test file in a unit test the same way as a regular
Open does?

Or what do I need to add/change in the SdMiscTest::Load method to get
the layer tab bar in the correct width?

Any ideas or tips?

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


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


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

2018-10-08 Thread Libreoffice Gerrit user
 scripting/source/basprov/basprov.cxx   |   22 ++---
 scripting/source/dlgprov/dlgprov.cxx   |   14 ++---
 scripting/source/stringresource/stringresource.cxx |   14 ++---
 sfx2/source/doc/objxtor.cxx|   14 +
 4 files changed, 15 insertions(+), 49 deletions(-)

New commits:
commit 9ed8a1bfffd608b31badeae5341ebf0b48501419
Author: Jochen Nitschke 
AuthorDate: Mon Oct 8 16:32:04 2018 +0200
Commit: Noel Grandin 
CommitDate: Mon Oct 8 19:51:24 2018 +0200

replace double-checked locking patterns with thread safe ...

local statics.

Change-Id: Iab4963a04d15f06e9b1a36079a36d32453e09c8f
Reviewed-on: https://gerrit.libreoffice.org/61538
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/scripting/source/basprov/basprov.cxx 
b/scripting/source/basprov/basprov.cxx
index 6180fa333627..ce71c003d75d 100644
--- a/scripting/source/basprov/basprov.cxx
+++ b/scripting/source/basprov/basprov.cxx
@@ -76,21 +76,13 @@ namespace basprov
 
 static Sequence< OUString > getSupportedServiceNames_BasicProviderImpl()
 {
-static Sequence< OUString >* pNames = nullptr;
-if ( !pNames )
-{
-::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
-if ( !pNames )
-{
-static Sequence< OUString > aNames(4);
-aNames.getArray()[0] = 
"com.sun.star.script.provider.ScriptProviderForBasic";
-aNames.getArray()[1] = 
"com.sun.star.script.provider.LanguageScriptProvider";
-aNames.getArray()[2] = 
"com.sun.star.script.provider.ScriptProvider";
-aNames.getArray()[3] = "com.sun.star.script.browse.BrowseNode";
-pNames = 
-}
-}
-return *pNames;
+static Sequence< OUString > s_Names{
+"com.sun.star.script.provider.ScriptProviderForBasic",
+"com.sun.star.script.provider.LanguageScriptProvider",
+"com.sun.star.script.provider.ScriptProvider",
+"com.sun.star.script.browse.BrowseNode"};
+
+return s_Names;
 }
 
 
diff --git a/scripting/source/dlgprov/dlgprov.cxx 
b/scripting/source/dlgprov/dlgprov.cxx
index 90a28cca56fd..4f979ee54308 100644
--- a/scripting/source/dlgprov/dlgprov.cxx
+++ b/scripting/source/dlgprov/dlgprov.cxx
@@ -177,17 +177,9 @@ namespace dlgprov
 
 ::osl::Mutex& getMutex()
 {
-static ::osl::Mutex* s_pMutex = nullptr;
-if ( !s_pMutex )
-{
-::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
-if ( !s_pMutex )
-{
-static ::osl::Mutex s_aMutex;
-s_pMutex = _aMutex;
-}
-}
-return *s_pMutex;
+static ::osl::Mutex s_aMutex;
+
+return s_aMutex;
 }
 
 
diff --git a/scripting/source/stringresource/stringresource.cxx 
b/scripting/source/stringresource/stringresource.cxx
index a17977536056..9e29229e13e0 100644
--- a/scripting/source/stringresource/stringresource.cxx
+++ b/scripting/source/stringresource/stringresource.cxx
@@ -62,17 +62,9 @@ namespace stringresource
 
 ::osl::Mutex& getMutex()
 {
-static ::osl::Mutex* s_pMutex = nullptr;
-if ( !s_pMutex )
-{
-::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
-if ( !s_pMutex )
-{
-static ::osl::Mutex s_aMutex;
-s_pMutex = _aMutex;
-}
-}
-return *s_pMutex;
+static ::osl::Mutex s_aMutex;
+
+return s_aMutex;
 }
 
 
diff --git a/sfx2/source/doc/objxtor.cxx b/sfx2/source/doc/objxtor.cxx
index 8eef03e8d5cc..a03e3b7ddd95 100644
--- a/sfx2/source/doc/objxtor.cxx
+++ b/sfx2/source/doc/objxtor.cxx
@@ -838,19 +838,9 @@ SfxObjectShell* SfxObjectShell::GetObjectShell()
 
 uno::Sequence< OUString > SfxObjectShell::GetEventNames()
 {
-static uno::Sequence< OUString >* pEventNameContainer = nullptr;
+static uno::Sequence< OUString > 
s_EventNameContainer(rtl::Reference(new 
GlobalEventConfig)->getElementNames());
 
-if ( !pEventNameContainer )
-{
-SolarMutexGuard aGuard;
-if ( !pEventNameContainer )
-{
-static uno::Sequence< OUString > aEventNameContainer = 
rtl::Reference(new GlobalEventConfig)->getElementNames();
-pEventNameContainer = 
-}
-}
-
-return *pEventNameContainer;
+return s_EventNameContainer;
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120373] Hyperlink removal functionality "hidden" by default

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120373

Oliver Brinzing  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 87459] CONTEXT MENU: Addition of 'Edit Hyperlink' entry in cell edit mode

2018-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87459

Oliver Brinzing  changed:

   What|Removed |Added

 Depends on||120373


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120373
[Bug 120373] Hyperlink removal functionality "hidden" by default
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   4   5   >