[Libreoffice-bugs] [Bug 61039] FORMATTING: Increase/decrease font size should work on different sizes at once (see comment 8)

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

--- Comment #11 from Mike Kaganski  ---
(In reply to Claudio Nieder from comment #8)
> LEt's says you have a sentence where some words are size
> 10 some are size 12 and some are size 14 and you select the whole sentences
> and then perform the Increase size. You then end up with a sentence where
> all words have the same size. I just tried this today in LibreOffice version
> 5.4.3.2

Cannot reproduce with Version: 6.1.3.1 (x64)
Build ID: a9670562c26181ec3afbe381c9ff499ae88c98b7
CPU threads: 12; OS: Windows 10.0; UI render: GL; 
Locale: ru-RU (ru_RU); Calc: CL

Creating a sentence of 3 words, ne size 10, one 12, and one 14, selecting the
sentence, and using Ctrl+[/] changes sizes to be 12, 14, and 16 resp. after one
increase, or 8, 10, and 12 after one decrease.

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


[Libreoffice-bugs] [Bug 118166] FILEOPEN DOCX Document with Form Controls always opens in design mode

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

Justin L  changed:

   What|Removed |Added

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

--- Comment #8 from Justin L  ---
proposed fix at https://gerrit.libreoffice.org/62491

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


[Libreoffice-bugs] [Bug 120703] Bugs found by PVS-Studio static analyzer

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

--- Comment #81 from Commit Notification 
 ---
Mike Kaganski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/951a65923c088a1e19a4073f3c26a3b564a0a922%5E%21

tdf#120703 PVS: V547 Expression is always true/false

It will be available in 6.2.0.

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

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

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


[Libreoffice-commits] core.git: sc/source sfx2/source starmath/source sw/source toolkit/source vcl/source vcl/win xmloff/source

2018-10-28 Thread Libreoffice Gerrit user
 sc/source/filter/xml/XMLStylesExportHelper.cxx |   20 -
 sc/source/filter/xml/xmlwrap.cxx   |   11 -
 sc/source/ui/view/viewdata.cxx |  266 -
 sfx2/source/view/viewfrm.cxx   |   53 ++--
 sfx2/source/view/viewfrm2.cxx  |8 
 starmath/source/symbol.cxx |4 
 sw/source/core/fields/usrfld.cxx   |3 
 sw/source/filter/xml/xmlexp.cxx|   36 +--
 sw/source/uibase/shells/textsh.cxx |3 
 sw/source/uibase/sidebar/ThemePanel.cxx|   10 
 sw/source/uibase/wrtsh/wrtsh2.cxx  |   10 
 toolkit/source/controls/unocontrol.cxx |3 
 vcl/source/window/toolbox.cxx  |   96 -
 vcl/source/window/window.cxx   |8 
 vcl/source/window/winproc.cxx  |   20 -
 vcl/win/gdi/winlayout.cxx  |   19 -
 xmloff/source/core/xmlimp.cxx  |   25 --
 17 files changed, 263 insertions(+), 332 deletions(-)

New commits:
commit 951a65923c088a1e19a4073f3c26a3b564a0a922
Author: Mike Kaganski 
AuthorDate: Sun Oct 28 23:51:21 2018 +0300
Commit: Mike Kaganski 
CommitDate: Mon Oct 29 05:59:15 2018 +0100

tdf#120703 PVS: V547 Expression is always true/false

Change-Id: I0516dc68cf7d451eafc044be8e50a66d2bddf15f
Reviewed-on: https://gerrit.libreoffice.org/62484
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sc/source/filter/xml/XMLStylesExportHelper.cxx 
b/sc/source/filter/xml/XMLStylesExportHelper.cxx
index 67dea682459e..5a7902e215cc 100644
--- a/sc/source/filter/xml/XMLStylesExportHelper.cxx
+++ b/sc/source/filter/xml/XMLStylesExportHelper.cxx
@@ -550,19 +550,15 @@ void ScRowFormatRanges::AddRange(const sal_Int32 
nPrevStartCol, const sal_Int32
 bool bInserted(false);
 if (!aRowFormatRanges.empty())
 {
-ScMyRowFormatRange* pRange(());
-if (pRange)
+ScMyRowFormatRange& rRange(aRowFormatRanges.back());
+if ((nPrevStartCol == (rRange.nStartColumn + rRange.nRepeatColumns))
+&& (rRange.bIsAutoStyle == rFormatRange.bIsAutoStyle) && 
(rRange.nIndex == nIndex)
+&& (rRange.nValidationIndex == rFormatRange.nValidationIndex))
 {
-if ((nPrevStartCol == (pRange->nStartColumn + 
pRange->nRepeatColumns)) &&
-(pRange->bIsAutoStyle == rFormatRange.bIsAutoStyle) &&
-(pRange->nIndex == nIndex) &&
-(pRange->nValidationIndex == rFormatRange.nValidationIndex))
-{
-if (rFormatRange.nRepeatRows < pRange->nRepeatRows)
-pRange->nRepeatRows = rFormatRange.nRepeatRows;
-pRange->nRepeatColumns += nRepeat;
-bInserted = true;
-}
+if (rFormatRange.nRepeatRows < rRange.nRepeatRows)
+rRange.nRepeatRows = rFormatRange.nRepeatRows;
+rRange.nRepeatColumns += nRepeat;
+bInserted = true;
 }
 }
 if (!bInserted)
diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx
index 89cf3142d368..a81f7fb6475e 100644
--- a/sc/source/filter/xml/xmlwrap.cxx
+++ b/sc/source/filter/xml/xmlwrap.cxx
@@ -866,9 +866,6 @@ bool ScXMLImportWrapper::Export(bool bStylesOnly)
 SAL_INFO( "sc.filter", "meta export end" );
 }
 
-uno::Reference< document::XEmbeddedObjectResolver > xObjectResolver;
-rtl::Reference xObjectHelper;
-
 uno::Reference 
xGraphicStorageHandler;
 rtl::Reference xGraphicHelper;
 
@@ -878,11 +875,9 @@ bool ScXMLImportWrapper::Export(bool bStylesOnly)
 xGraphicStorageHandler = xGraphicHelper.get();
 }
 
-if( pObjSh )
-{
-xObjectHelper = SvXMLEmbeddedObjectHelper::Create( xStorage, 
*pObjSh, SvXMLEmbeddedObjectHelperMode::Write );
-xObjectResolver = xObjectHelper.get();
-}
+auto xObjectHelper = SvXMLEmbeddedObjectHelper::Create(
+xStorage, *pObjSh, SvXMLEmbeddedObjectHelperMode::Write);
+uno::Reference 
xObjectResolver(xObjectHelper.get());
 
 // styles export
 
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index acb270806588..c18d9289e1d5 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -500,56 +500,54 @@ void ScViewDataTable::WriteUserDataSequence(uno::Sequence 

 {
 rSettings.realloc(SC_TABLE_VIEWSETTINGS_COUNT);
 beans::PropertyValue* pSettings = rSettings.getArray();
-if (pSettings)
-{
-pSettings[SC_CURSOR_X].Name = SC_CURSORPOSITIONX;
-pSettings[SC_CURSOR_X].Value <<= sal_Int32(nCurX);
-pSettings[SC_CURSOR_Y].Name = SC_CURSORPOSITIONY;
-pSettings[SC_CURSOR_Y].Value <<= sal_Int32(nCurY);
-pSettings[SC_HORIZONTAL_SPLIT_MODE].Name = SC_HORIZONTALSPLITMODE;
-

[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

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

Bug 120888 Summary: Toggling undocked Navigator from page number field causes 
toggle off and and then back on
https://bugs.documentfoundation.org/show_bug.cgi?id=120888

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 120998] New: Reopening a text document, fails to return user to last page and position

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

Bug ID: 120998
   Summary: Reopening a text document, fails to return user to
last page and position
   Product: LibreOffice
   Version: 6.1.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: da...@davidkachel.com

Description:
I know, you guys may not see this as a bug, but as a long time database
programmer conscious of usability, this is a big drawback. The user should
always be put right back where he/she left off, when reopening a document.

Steps to Reproduce:
Open any old text document. Always occurs.

Actual Results:
N/A

Expected Results:
N/A


Reproducible: Always


User Profile Reset: No



Additional Info:
See above.

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


[Libreoffice-bugs] [Bug 112484] ODF: Pivot table has invalid "repeat-item-labels" attribute, when saved in ODF 1.2 strict.

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

--- 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 108209] Autofill overwrites data

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

--- Comment #3 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 66043] EDITING: Spellchecking tracked and shown changes - erratic underlining

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

--- 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 76096] window keybindings stolen in some contexts

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

--- 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 113483] FILESAVE DOCX Cross reference corrupted if the target is a non-ASCII bookmark

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

--- 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 74334] FILEOPEN: text body content not visible in a particular .DOC file with frame in header

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

--- 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 112545] Text can be added to a presentation chart but is not saved

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

--- 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 93951] Changing a formula calculation to include § causes truncation

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

--- 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 103024] Wrong time displayed in cells

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

--- 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 113420] Sidebar: Wrap spacing presets arent based on measurement unit setting

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

--- 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 65198] EDITING: No alphabetical autofill to add sequential letters in cells

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

--- 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 92909] UI - Table creation field data types are displayed in rounded buttons that do not fill grid cell (OSX only)

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

--- 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 38101] EDITING - image resizing; not disappearing frame

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

--- 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-bugs] [Bug 74206] large autocorrect lists: typing in 'Replace' field is slower than 'With' field

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

--- 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 113425] Convert-to goes into infinite loop if the image's "wrap test" is "square"

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

--- 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 106060] Calc - Formula drag & Autofill - The values of the filled formula cells include only first sheet values

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

--- 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 88782] EDITING spreadsheet: autofill using fill handle inserts incorrect data when used with merged cells

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

--- 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 51047] [GTK+ 2] White box around buttons in toolbars and About Dialog

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

--- 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 64918] UI EDITING Find by format doesn't show non-integer font sizes on the Find Screen

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

--- 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 67884] HTML Pasting ignore text formatting

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

--- 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 112378] Gradient added to connectors on callout when exporting to PDF

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

--- 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 89754] using autofill on dates is wrong when increment should be 0

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

--- 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-commits] core.git: sw/qa sw/source

2018-10-28 Thread Libreoffice Gerrit user
 sw/qa/extras/ooxmlexport/ooxmlexport8.cxx|2 ++
 sw/source/filter/ww8/docxattributeoutput.cxx |3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit cb7500ddb8de6c41fca84a0009ffe22240bb1845
Author: Justin Luth 
AuthorDate: Sat Oct 27 17:04:02 2018 +0300
Commit: Justin Luth 
CommitDate: Mon Oct 29 04:33:13 2018 +0100

tdf#108954 docxexport: only emit section if diff from current

For the very last paragraph, if a header or footer was defined in
the section, then a dummy section was always being added, but that
should only happen if the section is different from the current one.
If they are the same, then the pageDesc will be created anyway, so
a dummy isn't needed to prevent it from getting lost.

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

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
index 040b4e4766ff..f460e384fd53 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
@@ -586,6 +586,8 @@ DECLARE_OOXMLEXPORT_TEST(testN780843b, "n780843b.docx")
 uno::Reference 
xPageStyle(getStyles("PageStyles")->getByName(aStyleName), uno::UNO_QUERY);
 uno::Reference xFooterText = getProperty< 
uno::Reference >(xPageStyle, "FooterText");
 CPPUNIT_ASSERT_EQUAL( OUString("hidden footer"), xFooterText->getString() 
);
+
+CPPUNIT_ASSERT_EQUAL( 7, getParagraphs() );
 }
 
 DECLARE_OOXMLEXPORT_TEST(testShadow, "imgshadow.docx")
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index b5a75c2e8be4..fb94a73eaa4e 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -5843,7 +5843,8 @@ void DocxAttributeOutput::SectionBreak( sal_uInt8 nC, 
const WW8_SepInfo* pSectio
 // footer, otherwise we go with the properties of the
 // section (and not the page style), which never has
 // headers/footers.
-if (const SwPageDesc* pPageDesc = pSectionInfo->pPageDesc)
+const SwPageDesc* pPageDesc = pSectionInfo->pPageDesc;
+if ( pPageDesc && pPageDesc != 
m_rExport.m_pCurrentPageDesc )
 {
 const auto& rMaster = pPageDesc->GetMaster();
 bEmit = rMaster.GetHeader().IsActive() || 
rMaster.GetFooter().IsActive();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 119020] Icons loadFromSVG() are corrupted on Windows when scaling UI 150% and higher (comment 10, comment 14) with some OpenGL dependency

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

--- Comment #35 from V Stuart Foote  ---
(In reply to Jan-Marek Glogowski from comment #34)
> ...
> Just to be sure: can you check if the icons written at the first start are
> already corrupt, despite LO looking correct?
> ...

Yes, able to confirm that by starting the UI once, prior to adjusting the scale
factor for Windows 10 DE, and setting Icon theme to other than Colibre
(Automatic). 

Then when rescaled, on launch and change of Options -> View -> Icon theme to
Colibre (Automatic) the UI appears correct. But the cache/colibre/200/cmd
created already has corrupted PNG--both the lc_, and then the sc_ icons if
Toolbar Icon Size is set "small".

Icons in UI appear correctly, until cycling through the Icon themes and back to
Colibre (Automatic).

Also, no corruption noted doing the same steps but with Default CPU/HA
rendering.

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


[Libreoffice-bugs] [Bug 89853] When opening .PPTX impress file, and then resaving as .PPT, the shapes will all be lost

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

--- Comment #16 from Luke  ---
Created attachment 146116
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146116=edit
Advanced example showing how all shapes are lost on export to ppt

In this test, the only shape preserved is the rectangle.

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


[Libreoffice-bugs] [Bug 104527] [META] DOC (binary) format bug tracker

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

Aron Budea  changed:

   What|Removed |Added

 Depends on|104494  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104494
[Bug 104494] FILEOPEN DOC with protected areas needs password to edit
unprotected areas too
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104494] FILEOPEN DOC with protected areas needs password to edit unprotected areas too

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

Aron Budea  changed:

   What|Removed |Added

 Blocks|104527  |
 CC||ba...@caesar.elte.hu


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC (binary) format bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83511] FILEOPEN FILESAVE rounding XLSX numbers

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

--- Comment #3 from Dan Dascalescu  ---
Fudging numbers is not really acceptable for financial applications.

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

2018-10-28 Thread Libreoffice Gerrit user
 vcl/source/window/builder.cxx |   18 +++---
 1 file changed, 7 insertions(+), 11 deletions(-)

New commits:
commit 59d48c531a5cad27f02b91c9b86278d5ede211a1
Author: Caolán McNamara 
AuthorDate: Sun Oct 28 20:52:37 2018 +
Commit: Caolán McNamara 
CommitDate: Mon Oct 29 00:48:54 2018 +0100

Resolves: tdf#120988 mismatch of in/out locale formatting

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

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 360d96e2db82..9e1302041f17 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -217,18 +217,18 @@ namespace weld
 {
 OUString aStr;
 
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
+
 unsigned int nDecimalDigits = m_xSpinButton->get_digits();
 //pawn percent off to icu to decide whether percent is separated from 
its number for this locale
 if (m_eSrcUnit == FUNIT_PERCENT)
 {
 double fValue = nValue;
 fValue /= SpinButton::Power10(nDecimalDigits);
-aStr = unicode::formatPercent(fValue, 
Application::GetSettings().GetUILanguageTag());
+aStr = unicode::formatPercent(fValue, 
rLocaleData.getLanguageTag());
 }
 else
 {
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
 aStr = rLocaleData.getNum(nValue, nDecimalDigits, true, true);
 if (m_eSrcUnit != FUNIT_NONE && m_eSrcUnit != FUNIT_DEGREE)
 aStr += " ";
@@ -246,8 +246,7 @@ namespace weld
 
 IMPL_LINK(MetricSpinButton, spin_button_input, int*, result, bool)
 {
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 double fResult(0.0);
 bool bRet = MetricFormatter::TextToValue(get_text(), fResult, 0, 
m_xSpinButton->get_digits(), rLocaleData, m_eSrcUnit);
 if (bRet)
@@ -260,8 +259,7 @@ namespace weld
 int nStartPos, nEndPos;
 m_xSpinButton->get_selection_bounds(nStartPos, nEndPos);
 
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 const int nTimeArea = TimeFormatter::GetTimeArea(m_eFormat, 
m_xSpinButton->get_text(), nEndPos,
  rLocaleData);
 
@@ -295,8 +293,7 @@ namespace weld
 int nStartPos, nEndPos;
 m_xSpinButton->get_selection_bounds(nStartPos, nEndPos);
 
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 tools::Time aResult(0);
 bool bRet = TimeFormatter::TextToTime(m_xSpinButton->get_text(), 
aResult, m_eFormat, true, rLocaleData);
 if (bRet)
@@ -328,8 +325,7 @@ namespace weld
 
 OUString TimeSpinButton::format_number(int nValue) const
 {
-const SvtSysLocale aSysLocale;
-const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
+const LocaleDataWrapper& rLocaleData = 
Application::GetSettings().GetUILocaleDataWrapper();
 return TimeFormatter::FormatTime(ConvertValue(nValue), m_eFormat, 
TimeFormat::Hour24, true, rLocaleData);
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120996] When a comment pop up, the first time is ok but next the background is transparent and difficults to read

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #2 from m.a.riosv  ---
I can't reproduce on Win10.
Versión: 6.1.3.1 (x64)
Id. de compilación: a9670562c26181ec3afbe381c9ff499ae88c98b7
Subprocs. CPU: 4; SO: Windows 10.0; Repres. IU: predet.; 
Configuración regional: es-ES (es_ES); Calc: CL

Please can you test modifying OpenGL status Menu/Tools/LibreOffice/View.

If it doesn't work, can you test Menu/Help/Restart 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 120782] Crash when dragging column from datasource to spreadsheet

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

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-bugs] [Bug 120782] Crash when dragging column from datasource to spreadsheet

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

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

https://git.libreoffice.org/core/+/a73f696b9a36b85ac6549a3a342a690eefcec4fc%5E%21

tdf#120782: fix crash when dragging column...

It will be available in 6.2.0.

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

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

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


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

2018-10-28 Thread Libreoffice Gerrit user
 svx/source/form/fmvwimp.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a73f696b9a36b85ac6549a3a342a690eefcec4fc
Author: Julien Nabet 
AuthorDate: Sun Oct 28 21:37:56 2018 +0100
Commit: Julien Nabet 
CommitDate: Sun Oct 28 23:58:56 2018 +0100

tdf#120782: fix crash when dragging column...

from datasource to spreadsheet

See bt here:
https://bugs.documentfoundation.org/attachment.cgi?id=146108

See related bugtrackers.

Change-Id: I2343e1468460b4e8036ce16060471763d344630a
Reviewed-on: https://gerrit.libreoffice.org/62482
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/svx/source/form/fmvwimp.cxx b/svx/source/form/fmvwimp.cxx
index 14100c57fb1a..5994c4e46d70 100644
--- a/svx/source/form/fmvwimp.cxx
+++ b/svx/source/form/fmvwimp.cxx
@@ -1526,8 +1526,8 @@ bool FmXFormView::createControlLabelPair( OutputDevice 
const & _rOutDev, sal_Int
 _rFieldPostfix,
 SdrInventor::FmForm,
 OBJ_FM_FIXEDTEXT,
-nullptr,
-nullptr,
+getView()->GetSdrPageView()->GetPage(),
+getView()->GetSdrPageView()->GetPage(),
 
 // tdf#118963 Hand over a SdrModel to SdrObject-creation. It uses the 
local m_pView
 // and already returning false when nullptr == getView() could be 
done, but m_pView
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120941] PPTX with dashed line exported to a large size PDF

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

--- Comment #6 from Ofir  ---
I assumed the SVG and PDF are related because both are vector formats.
Please ignore the SVG for now and let's focus on the PDF.

When I open the PDF exported from Impress in Inkscape I can see many small
rectangles. The PDF exported from PowerPoint has a single element.

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


[Libreoffice-bugs] [Bug 117448] FILEOPEN Table in attached DOC(X) shows unexpected cell padding

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

--- Comment #5 from Gabor Kelemen  ---
Created attachment 146115
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146115=edit
Paragraph settings in Word 2013

These seem to match Words paragraph settings though.

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


[Libreoffice-bugs] [Bug 117448] FILEOPEN Table in attached DOC(X) shows unexpected cell padding

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

Gabor Kelemen  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #4 from Gabor Kelemen  ---
Created attachment 146114
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146114=edit
Screenshot of the paragraph settings in current-ish master

I see 0.21 cm spacing above and below the paragraphs, also 0.21 cm fixed line
spacing.

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

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

Bug 120256 Summary: FILEOPEN docx table is not displayed in Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=120256

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Libreoffice-bugs] [Bug 120512] FILEOPEN DOCX Tables in document do not appear until deleting a row in MS Word

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

Gabor Kelemen  changed:

   What|Removed |Added

 CC||fahad.alsa...@gmail.com

--- Comment #7 from Gabor Kelemen  ---
*** Bug 120256 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 120256] FILEOPEN docx table is not displayed in Writer

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

Gabor Kelemen  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #5 from Gabor Kelemen  ---
(In reply to Xisco Faulí from comment #4)
> Regression introduced in range
> https://cgit.freedesktop.org/libreoffice/core/log/
> ?id=f0deb6511b3766bfc89c72dd46d7770eb38169af=range=5d2826dacd073e3e99f66
> 8358060927751622d52..c91e07e45bc5b742d7bfe8a572fb44682c78e2ac
> bibisected with bibisect-43max

Then this is a duplicate of bug #120512 - the exact commit bisected there is
present in this range.

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

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


[Libreoffice-bugs] [Bug 116889] Table from Word 2013 is transformed into text in LibreOffice Writer 6.0.3.2

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

Gabor Kelemen  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #8 from Gabor Kelemen  ---


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

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

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

Bug 116889 Summary: Table from Word 2013 is transformed into text in 
LibreOffice Writer 6.0.3.2
https://bugs.documentfoundation.org/show_bug.cgi?id=116889

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Libreoffice-bugs] [Bug 116889] Table from Word 2013 is transformed into text in LibreOffice Writer 6.0.3.2

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

--- Comment #7 from Gabor Kelemen  ---
Created attachment 146113
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146113=edit
The problem was fixed recently

There is a  tag in the file that caused the table not to appear. This
one was recently 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


Re: Marker problems for high resolution screen

2018-10-28 Thread Regina Henschel

Hi Tomaž,

Tomaž Vajngerl schrieb am 28-Oct-18 um 09:46:

Hi Regina,

[..]

Right, I extracted the markers to single files just because of that
reason. Multiple markers in one image file makes it hard - not only
for HiDPI, but also for SVG icons, and there are practically no
benefits to have them in one file (not even for the icon designers).


Do you use the SVG files to generate the PNG files? If yes, using what tool?




For cropmarkers.png such single files are not used. Here you get the
enlarged file with size 229x94 instead of the original size 153x63 for
my 150% example and therefore really ugly handles.


Yes, I forgot the crop markers - it makes sense to extract them to its
own files too.


Why do the delivered icon-themes do not contain the single markers? That
would at least solve the problem for markers until a more general fix is
available.


Single markers icon filename is constructed at runtime and then loaded
with vcl::bitmap::loadFromName, so the markers are not included in any
resource files (svx/inc/bitmaps.hlst for example). When packing the
icon themes together we copy only the icons that are contained in the
resource file so the single markers are left out. When I have written
that code I was not aware of this yet. So the solution is to add them
to a resource file and leave the code as is (something might complain
that the resource is not used?) or in addition also change the code to
use the resource mechanism to load the bitmap too (which means that a
huge switch file will be needed or a struct with all the parameters, a
custom hash function and every combination in an unordered_map). Only
adding them to a resource file should solve the problem I think.


I have added the file names to bitmaps.hlst.
https://gerrit.libreoffice.org/#/c/62488/
Then the needed files are included in the image_xxx.zip files and the 
correct markers are generated into the cache folder. I have tested it 
with scaling 150% on Windows 10.


But I cannot finally test it, because I cannot test the behavior with 
OpenGL enabled. On my PC, LibreOffice crashes with enabled OpenGL. And I 
cannot test on Mac.


So in case including these files is desired, someone else needs to do 
further tests.


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


[Libreoffice-bugs] [Bug 119020] Icons loadFromSVG() are corrupted on Windows when scaling UI 150% and higher (comment 10, comment 14) with some OpenGL dependency

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

--- Comment #34 from Jan-Marek Glogowski  ---
After your OpenGL comment I've started reading the scaling codepath on Windows.
When OpenGL is available it is used to scale bitmaps. LO reads the PNG, then
copies the data to a texture, scales the texture, uses this texture for
painting and copies the texture's data to write the PNG.

As far as I understand the bug report, the first time the scaled icons are
correct, so I assume the error happens when copying the texture data to the
bitmap to write the scaled PNG.

Just to be sure: can you check if the icons written at the first start are
already corrupt, despite LO looking correct?

So my guess is the texture fetching code is wrong
(OpenGLSalBitmap::ReadTexture). My main problem is that I don't have Windows
with OpenGL, so I can just blindly guess a fix. I don't think that is a useable
bugfixing environment.

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


[Libreoffice-bugs] [Bug 118193] Crash when using AutoCorrect options and using the Orca screen reader

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

--- Comment #7 from Alex ARNAUD  ---
I no longer reproduce the crash on both LibreOffice 6.1.2 and 6.2 daily build.

@Arnaud: I think we could close this one.

Best regards,
Alex.

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


[Libreoffice-bugs] [Bug 120991] Insert OLE Object from file causes crash, if Experimental features are enabled

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

--- Comment #7 from MM  ---
Version: 6.2.0.0.alpha1+
Build ID: ae9f37ba753519ae4a2ae6384d052d417359602f

actually *does* crash.

But this one doesn't: Version: 6.1.0.0.alpha1+
Build ID: 47dc3115f12ff16dc326b6edd12c46e6a6ef1843
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-05-17_00:32:17
Locale: en-US (en_US.UTF-8); Calc

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


[Libreoffice-bugs] [Bug 119020] Icons loadFromSVG() are corrupted on Windows when scaling UI 150% and higher (comment 10, comment 14) with some OpenGL dependency

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

--- Comment #33 from V Stuart Foote  ---
Created attachment 146112
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146112=edit
cache 200 for Colibre and Tango with OpenGL rendering

(In reply to V Stuart Foote from comment #32)
attached are the full cache 200 for Collibre and Tango from OpenGL--numerous
scaled sc_ (at 36x36), lc_ (at 48x48) and res & framework (at 64x64) icons show
corrupted colors.

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


[Libreoffice-bugs] [Bug 119905] UI Dutch Impress "Document is opened in read-only mode" overlaps "Edit Document" on XGA display

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

--- Comment #4 from Cor Nouws  ---
Hi Dennis,

(In reply to Dennis Holierhoek from comment #0)
> The text "Document is geopend in de modus alleen-lezen" ("Document is opened
> in read-only mode" overlaps the button "Document bewerken" ("Edit Document")
I guess/expect the glitch disappears when one of the side bars is closed? It
looks as if text on the info/notification bar just doesn't scale if it is too
wide.

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


[Libreoffice-bugs] [Bug 104444] [META] DOCX (OOXML) table-related issues

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

Bug 106233 Summary: FILEOPEN: docx table cell left spacing read incorrectly
https://bugs.documentfoundation.org/show_bug.cgi?id=106233

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Libreoffice-bugs] [Bug 106233] FILEOPEN: docx table cell left spacing read incorrectly

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

Gabor Kelemen  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #5 from Gabor Kelemen  ---


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

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


[Libreoffice-bugs] [Bug 106233] FILEOPEN: docx table cell left spacing read incorrectly

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

--- Comment #4 from Gabor Kelemen  ---
Created attachment 146111
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146111=edit
The problem was fixed recently

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


[Libreoffice-bugs] [Bug 54342] My formulae were converted to "Object X" and I cannot convert them back

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

--- Comment #39 from fluepa...@grenborgen.no ---
I encountered the problem today in LibreOffice 5.1.6.2 on Kubuntu 16.04, and it
is not the first time lately.

The file was an older DOCX-file with many formulas that I saved as ODT. Now
most, but not all, formulas are replaced by an "object placeholder". This
applies both to formulas that are from the old DOCX-file and to formulas I have
written myself in LO.

I noticed one strange behaviour that is probably connected to this issue: I
tried to save and LO seemed to continuously save the file over and over and the
only way to stop it was to kill the process. Afterwards, I found thousands of
copies of the file in the backup directory, all of them containing the error.

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


[Libreoffice-bugs] [Bug 120991] Insert OLE Object from file causes crash, if Experimental features are enabled

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

MM  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
Crash report or||d7b35cee-34de-41ae-98d8-a7e
crash signature||086b0b34d

--- Comment #6 from MM  ---
Confirmed on ubuntu 16.04 x64 with Version: 6.2.0.0.alpha1+
Build ID: 96cf06c947838120e37f3fbb4d0543dd882cb20c
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-10-25_22:45:16 Locale: en-US (en_US.UTF-8); Calc: threaded

crashreport.libreoffice.org/stats/crash_details/d7b35cee-34de-41ae-98d8-a7e086b0b34d

Unconfirmed with Version: 6.2.0.0.alpha1+
Build ID: ae9f37ba753519ae4a2ae6384d052d417359602f
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-10-22_23:05:02
Locale: en-US (en_US.UTF-8); Calc: threaded

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


[Libreoffice-bugs] [Bug 120997] Crash after Ctrl+Tab to traverse points of object

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

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 120403] Save As does not default to current directory if MS Office document without extension is open

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

Buovjaga  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||todven...@suomi24.fi
Version|6.0.6.2 release |4.1.0.4 release
 Status|UNCONFIRMED |NEW
   Keywords||bibisected, regression

--- Comment #1 from Buovjaga  ---
Bibisected on Linux 41max repo, had to skip some due to launch error and these
three are the candidates:

https://gerrit.libreoffice.org/plugins/gitiles/core/+/1a3c7b84b7b22109d691a770649af42c1033d709%5E!
https://gerrit.libreoffice.org/plugins/gitiles/core/+/c9fbcaa0b97c31216f5da8febd066a029c9bdef2%5E!
https://gerrit.libreoffice.org/plugins/gitiles/core/+/96c8251448646b65f6ea0b657417bca66d9a9b6e%5E!

They are all about file format detection.

Same behaviour on Windows as well (compared 3.5.0 to newer ones).

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


[Libreoffice-bugs] [Bug 120750] Crash applying bold to textbox control

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

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

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


[Libreoffice-bugs] [Bug 120997] New: Crash after Ctrl+Tab to traverse points of object

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

Bug ID: 120997
   Summary: Crash after Ctrl+Tab to traverse points of object
   Product: LibreOffice
   Version: 6.2.0.0.alpha1+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: accessibility, regression
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 146109
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146109=edit
Simple test document

Open attached document, put your mouse away and use only the keyboard.
Press Ctrl+F6 to set focus to central pane.
Press Tab to activate first object.
Press Ctrl+Tab to activate first point of object.

Expected behavior: The first point blinks by switching between normal and large
handle. You can then use the arrow-keys to move this point and thereby resize
the object.

Seen behavior: LibreOffice crashes.

I get the crash in Version: 6.2.0.0.alpha1+ (x64)
Build ID: 5690acdb44e8017055bb88e86e19d207836bb95c
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-10-27_02:59:30
Locale: de-DE (en_US); Calc: CL
It crashes with and without OpenGL.

It is OK in Version: 6.1.0.3 (x64)
Build ID: efb621ed25068d70781dc026f7e9c5187a4decd1
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 120782] Crash when dragging column from datasource to spreadsheet

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

Julien Nabet  changed:

   What|Removed |Added

 CC||armin.le.gr...@me.com

--- Comment #5 from Julien Nabet  ---
I submitted this to review:
https://gerrit.libreoffice.org/#/c/62482/
If it's gerrit is ok, I'll push this.

I'm still not sure if it's ok but since I don't reproduce the crash with it and
I've got same behaviour than in an old version with no crash...

Of course, if someone is against it because not the right patch or anything
else, don't hesitate to revert it.

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


[Libreoffice-bugs] [Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+

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

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||119020


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119020
[Bug 119020] Icons loadFromSVG() are corrupted on Windows when scaling UI 150%
and higher (comment 10, comment 14) with some OpenGL dependency
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119020] Icons loadFromSVG() are corrupted on Windows when scaling UI 150% and higher (comment 10, comment 14) with some OpenGL dependency

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

V Stuart Foote  changed:

   What|Removed |Added

Summary|Icons loadFromSVG() are |Icons loadFromSVG() are
   |corrupted on Windows when   |corrupted on Windows when
   |scaling UI 150% and higher  |scaling UI 150% and higher
   |(comment 10, comment 14)|(comment 10, comment 14)
   ||with some OpenGL dependency
 Blocks||93529

--- Comment #32 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #31)
> (In reply to Jan-Marek Glogowski from comment #30)

So on Windows 10 Home 64-bit (1709) en-US on a MS Surface 4 with Intel Iris
Graphics 540 Driver Version 21.20.16.4627 at 2736 x 1824 px

Version: 6.2.0.0.alpha1+ (x64)
Build ID: fd855967e0474323e22c9d27152d271826a43821
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2018-10-28_02:40:36
Locale: en-US (en_US); Calc: threaded

With default rendering, no corruption cycling through the icon styles. But with
OpenGL rendering enabled, the scaled icons loaded to cache suffer the
color/alpha corruption in the 200 folders.

Not sure what to make of it, but it seems to be an OpenGL related dependency.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93529
[Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.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: sw/uiconfig

2018-10-28 Thread Libreoffice Gerrit user
 sw/uiconfig/swriter/popupmenu/draw.xml  |8 ++--
 sw/uiconfig/swriter/popupmenu/table.xml |1 +
 sw/uiconfig/swriter/popupmenu/text.xml  |4 ++--
 3 files changed, 9 insertions(+), 4 deletions(-)

New commits:
commit a50f845957fff66ca7f459da4878be4597e0bae3
Author: andreas kainz 
AuthorDate: Sun Oct 28 20:32:58 2018 +0100
Commit: andreas_kainz 
CommitDate: Sun Oct 28 21:42:51 2018 +0100

finish context menues

Change-Id: Ib3344432a3fcf47a3c9704cc9603376e4754cb8f
Reviewed-on: https://gerrit.libreoffice.org/62480
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/sw/uiconfig/swriter/popupmenu/draw.xml 
b/sw/uiconfig/swriter/popupmenu/draw.xml
index e19d91a0627f..3205e06e952f 100644
--- a/sw/uiconfig/swriter/popupmenu/draw.xml
+++ b/sw/uiconfig/swriter/popupmenu/draw.xml
@@ -14,8 +14,6 @@
   
   
   
-  
-  
   
   
   
@@ -62,6 +60,12 @@
   
 
   
+  
+
+  
+  
+
+  
   
   
   
diff --git a/sw/uiconfig/swriter/popupmenu/table.xml 
b/sw/uiconfig/swriter/popupmenu/table.xml
index 0bb8d5ddea10..03021c965c6d 100644
--- a/sw/uiconfig/swriter/popupmenu/table.xml
+++ b/sw/uiconfig/swriter/popupmenu/table.xml
@@ -137,6 +137,7 @@
   
   
   
+  
   
   
 
diff --git a/sw/uiconfig/swriter/popupmenu/text.xml 
b/sw/uiconfig/swriter/popupmenu/text.xml
index a801ed6325b7..f93e1bf17f30 100644
--- a/sw/uiconfig/swriter/popupmenu/text.xml
+++ b/sw/uiconfig/swriter/popupmenu/text.xml
@@ -88,8 +88,6 @@
 
   
   
-  
-  
   
   
   
@@ -99,4 +97,6 @@
   
   
   
+  
+  
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120988] Cannot set zoom >= 1000% in "Zoom & View Layout" dialog (gen and gtk2)

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

Caolán McNamara  changed:

   What|Removed |Added

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

--- Comment #4 from Caolán McNamara  ---
I think its a mismatch of the formatted to text and from text wrt the locale

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


[Libreoffice-bugs] [Bug 120782] Crash when dragging column from datasource to spreadsheet

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

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

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


[Libreoffice-bugs] [Bug 120782] Crash when dragging column from datasource to spreadsheet

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


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

2018-10-28 Thread Libreoffice Gerrit user
 desktop/qa/desktop_lib/test_desktop_lib.cxx |4 
 desktop/source/lib/init.cxx |   69 
 include/LibreOfficeKit/LibreOfficeKit.h |   10 ++
 include/LibreOfficeKit/LibreOfficeKit.hxx   |   19 
 include/sfx2/docfile.hxx|4 
 include/sfx2/objsh.hxx  |3 
 sfx2/source/doc/docfile.cxx |  117 
 sfx2/source/doc/objserv.cxx |   79 ++
 8 files changed, 304 insertions(+), 1 deletion(-)

New commits:
commit 23a2312344ac961ead9ee14140c0b3e879bb7a41
Author: Tomaž Vajngerl 
AuthorDate: Mon Oct 15 10:09:15 2018 +0200
Commit: Tomaž Vajngerl 
CommitDate: Sun Oct 28 21:29:19 2018 +0100

lokit: add funct. to insert, sign and verify signature

A lot of signing code paths trigger a GUI dialog (to select the
certificate for example) which aren't acceptable when triggering
through the LOKit. This code paths needed to be duplicated and
reworked to not trigger any GUI action.

Change-Id: I2f0d6038fb1bcd00adcdf86e432f9df8858cc21c
Reviewed-on: https://gerrit.libreoffice.org/61780
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 69f2b3ac2bfb..9a8d7b88b0b7 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -2299,10 +2299,12 @@ void DesktopLOKTest::testABI()
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(39), offsetof(struct 
_LibreOfficeKitDocumentClass, setViewLanguage));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(40), offsetof(struct 
_LibreOfficeKitDocumentClass, postWindowExtTextInputEvent));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(41), offsetof(struct 
_LibreOfficeKitDocumentClass, getPartInfo));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(42), offsetof(struct 
_LibreOfficeKitDocumentClass, insertCertificate));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(43), offsetof(struct 
_LibreOfficeKitDocumentClass, getSignatureState));
 
 // Extending is fine, update this, and add new assert for the offsetof the
 // new method
-CPPUNIT_ASSERT_EQUAL(documentClassOffset(42), sizeof(struct 
_LibreOfficeKitDocumentClass));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(44), sizeof(struct 
_LibreOfficeKitDocumentClass));
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(DesktopLOKTest);
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a2182e9ea2a8..2a13775dcc64 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -73,6 +73,13 @@
 #include 
 #include 
 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
 #include 
 #include 
 #include 
@@ -682,6 +689,12 @@ static void doc_postWindow(LibreOfficeKitDocument* pThis, 
unsigned nLOKWindowId,
 
 static char* doc_getPartInfo(LibreOfficeKitDocument* pThis, int nPart);
 
+static bool doc_insertCertificate(LibreOfficeKitDocument* pThis,
+  const unsigned char* pCertificateBinary,
+  const int pCertificateBinarySize);
+
+static int doc_getSignatureState(LibreOfficeKitDocument* pThis);
+
 LibLODocument_Impl::LibLODocument_Impl(const uno::Reference 
 )
 : mxComponent(xComponent)
 {
@@ -742,6 +755,9 @@ LibLODocument_Impl::LibLODocument_Impl(const uno::Reference 
getPartInfo = doc_getPartInfo;
 
+m_pDocumentClass->insertCertificate = doc_insertCertificate;
+m_pDocumentClass->getSignatureState = doc_getSignatureState;
+
 gDocumentClass = m_pDocumentClass;
 }
 pClass = m_pDocumentClass.get();
@@ -3584,6 +3600,59 @@ static void doc_postWindow(LibreOfficeKitDocument* 
/*pThis*/, unsigned nLOKWindo
 }
 }
 
+// CERTIFICATE AND DOCUMENT SIGNING
+static bool doc_insertCertificate(LibreOfficeKitDocument* /*pThis*/, const 
unsigned char* pCertificateBinary, const int nCertificateBinarySize)
+{
+if (!xContext.is())
+return false;
+
+uno::Reference xSEInitializer = 
xml::crypto::SEInitializer::create(xContext);
+uno::Reference xSecurityContext;
+xSecurityContext = xSEInitializer->createSecurityContext(OUString());
+if (!xSecurityContext.is())
+return false;
+
+uno::Reference xSecurityEnvironment;
+xSecurityEnvironment = xSecurityContext->getSecurityEnvironment();
+
+uno::Sequence aCertificateSequence(nCertificateBinarySize);
+std::copy(pCertificateBinary, pCertificateBinary + nCertificateBinarySize, 
aCertificateSequence.begin());
+
+uno::Reference xCertificate = 
xSecurityEnvironment->createCertificateFromRaw(aCertificateSequence);
+
+if (!xCertificate.is())
+return false;
+
+printf("CERTIFICATE\n\tIssuerName: %s \n\tSubjectName: %s\n\tPK %s\n\n",
+xCertificate->getIssuerName().toUtf8().getStr(),
+xCertificate->getSubjectName().toUtf8().getStr(),
+

[Libreoffice-commits] core.git: chart2/uiconfig cui/uiconfig dbaccess/uiconfig sc/uiconfig sd/uiconfig starmath/uiconfig svx/uiconfig sw/uiconfig

2018-10-28 Thread Libreoffice Gerrit user
 chart2/uiconfig/ui/titlerotationtabpage.ui |1 -
 chart2/uiconfig/ui/tp_PolarOptions.ui  |1 -
 cui/uiconfig/ui/agingdialog.ui |1 -
 cui/uiconfig/ui/optopenclpage.ui   |1 -
 cui/uiconfig/ui/posterdialog.ui|1 -
 cui/uiconfig/ui/solarizedialog.ui  |1 -
 dbaccess/uiconfig/ui/autocharsetpage.ui|1 -
 sc/uiconfig/scalc/ui/formulacalculationoptions.ui  |1 -
 sd/uiconfig/simpress/ui/slidetransitionspanel.ui   |1 -
 sd/uiconfig/simpress/ui/slidetransitionspanelhorizontal.ui |1 -
 starmath/uiconfig/smath/ui/fontdialog.ui   |1 -
 svx/uiconfig/ui/addinstancedialog.ui   |1 -
 sw/uiconfig/swriter/ui/renameobjectdialog.ui   |1 -
 13 files changed, 13 deletions(-)

New commits:
commit 12b9952a9a04341bc41b0a5838bd25cfbb835e62
Author: Caolán McNamara 
AuthorDate: Sat Oct 27 20:42:33 2018 +0100
Commit: Caolán McNamara 
CommitDate: Sun Oct 28 21:12:17 2018 +0100

drop unnecessary requires lib="LibreOffice"

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

diff --git a/chart2/uiconfig/ui/titlerotationtabpage.ui 
b/chart2/uiconfig/ui/titlerotationtabpage.ui
index 2474df05c384..d0a2c537ebbd 100644
--- a/chart2/uiconfig/ui/titlerotationtabpage.ui
+++ b/chart2/uiconfig/ui/titlerotationtabpage.ui
@@ -1,7 +1,6 @@
 
 
   
-  
   
 359
 5
diff --git a/chart2/uiconfig/ui/tp_PolarOptions.ui 
b/chart2/uiconfig/ui/tp_PolarOptions.ui
index 18c61f5aae22..85d3434813f2 100644
--- a/chart2/uiconfig/ui/tp_PolarOptions.ui
+++ b/chart2/uiconfig/ui/tp_PolarOptions.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 359
 1
diff --git a/cui/uiconfig/ui/agingdialog.ui b/cui/uiconfig/ui/agingdialog.ui
index 8ed9f0912e5f..36dcbdae9639 100644
--- a/cui/uiconfig/ui/agingdialog.ui
+++ b/cui/uiconfig/ui/agingdialog.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 1
 100
diff --git a/cui/uiconfig/ui/optopenclpage.ui b/cui/uiconfig/ui/optopenclpage.ui
index 0cd07a25f67e..da4b29ccb219 100644
--- a/cui/uiconfig/ui/optopenclpage.ui
+++ b/cui/uiconfig/ui/optopenclpage.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 True
 False
diff --git a/cui/uiconfig/ui/posterdialog.ui b/cui/uiconfig/ui/posterdialog.ui
index 69a9d9ed519e..def08c98b639 100644
--- a/cui/uiconfig/ui/posterdialog.ui
+++ b/cui/uiconfig/ui/posterdialog.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 2
 64
diff --git a/cui/uiconfig/ui/solarizedialog.ui 
b/cui/uiconfig/ui/solarizedialog.ui
index e711ddde360b..982511eb7d75 100644
--- a/cui/uiconfig/ui/solarizedialog.ui
+++ b/cui/uiconfig/ui/solarizedialog.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 100
 1
diff --git a/dbaccess/uiconfig/ui/autocharsetpage.ui 
b/dbaccess/uiconfig/ui/autocharsetpage.ui
index 114bcf72efe5..b5cbd930a8b8 100644
--- a/dbaccess/uiconfig/ui/autocharsetpage.ui
+++ b/dbaccess/uiconfig/ui/autocharsetpage.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 True
 False
diff --git a/sc/uiconfig/scalc/ui/formulacalculationoptions.ui 
b/sc/uiconfig/scalc/ui/formulacalculationoptions.ui
index 907fff5fdf59..27311c3adf8e 100644
--- a/sc/uiconfig/scalc/ui/formulacalculationoptions.ui
+++ b/sc/uiconfig/scalc/ui/formulacalculationoptions.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 False
 True
diff --git a/sd/uiconfig/simpress/ui/slidetransitionspanel.ui 
b/sd/uiconfig/simpress/ui/slidetransitionspanel.ui
index 79d05d71ace4..3d1f291d718c 100644
--- a/sd/uiconfig/simpress/ui/slidetransitionspanel.ui
+++ b/sd/uiconfig/simpress/ui/slidetransitionspanel.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 True
 False
diff --git a/sd/uiconfig/simpress/ui/slidetransitionspanelhorizontal.ui 
b/sd/uiconfig/simpress/ui/slidetransitionspanelhorizontal.ui
index 44bd44ad2092..fbf0c161fd75 100644
--- a/sd/uiconfig/simpress/ui/slidetransitionspanelhorizontal.ui
+++ b/sd/uiconfig/simpress/ui/slidetransitionspanelhorizontal.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 True
 False
diff --git a/starmath/uiconfig/smath/ui/fontdialog.ui 
b/starmath/uiconfig/smath/ui/fontdialog.ui
index 8598ed4ce34f..fed8a4808088 100644
--- a/starmath/uiconfig/smath/ui/fontdialog.ui
+++ b/starmath/uiconfig/smath/ui/fontdialog.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 
   
diff --git a/svx/uiconfig/ui/addinstancedialog.ui 
b/svx/uiconfig/ui/addinstancedialog.ui
index 018f61a59ff8..0a5151583298 100644
--- a/svx/uiconfig/ui/addinstancedialog.ui
+++ b/svx/uiconfig/ui/addinstancedialog.ui
@@ -2,7 +2,6 @@
 
 
   
-  
   
 False
 6
diff --git a/sw/uiconfig/swriter/ui/renameobjectdialog.ui 
b/sw/uiconfig/swriter/ui/renameobjectdialog.ui
index 2fc8006e66ac..11bb9c620f02 100644
--- a/sw/uiconfig/swriter/ui/renameobjectdialog.ui
+++ 

[Libreoffice-commits] core.git: chart2/uiconfig cui/uiconfig dbaccess/uiconfig desktop/uiconfig extensions/uiconfig formula/uiconfig reportdesign/uiconfig sc/uiconfig sd/uiconfig sfx2/uiconfig svx/uic

2018-10-28 Thread Libreoffice Gerrit user
 chart2/uiconfig/ui/titlerotationtabpage.ui |4 ++--
 chart2/uiconfig/ui/tp_3D_SceneAppearance.ui|2 +-
 chart2/uiconfig/ui/tp_3D_SceneIllumination.ui  |4 ++--
 chart2/uiconfig/ui/tp_AxisPositions.ui |4 ++--
 chart2/uiconfig/ui/tp_PolarOptions.ui  |2 +-
 chart2/uiconfig/ui/tp_Scale.ui |4 ++--
 chart2/uiconfig/ui/tp_SeriesToAxis.ui  |2 +-
 chart2/uiconfig/ui/tp_Trendline.ui |2 +-
 cui/uiconfig/ui/aboutconfigdialog.ui   |2 +-
 cui/uiconfig/ui/acorexceptpage.ui  |4 ++--
 cui/uiconfig/ui/acoroptionspage.ui |4 ++--
 cui/uiconfig/ui/acorreplacepage.ui |4 ++--
 cui/uiconfig/ui/applyautofmtpage.ui|4 ++--
 cui/uiconfig/ui/applylocalizedpage.ui  |4 ++--
 cui/uiconfig/ui/baselinksdialog.ui |2 +-
 cui/uiconfig/ui/certdialog.ui  |2 +-
 cui/uiconfig/ui/connpooloptions.ui |2 +-
 cui/uiconfig/ui/dbregisterpage.ui  |2 +-
 cui/uiconfig/ui/editdictionarydialog.ui|4 ++--
 cui/uiconfig/ui/eventassignpage.ui |2 +-
 cui/uiconfig/ui/macroassignpage.ui |4 ++--
 cui/uiconfig/ui/macroselectordialog.ui |4 ++--
 cui/uiconfig/ui/optchartcolorspage.ui  |4 ++--
 cui/uiconfig/ui/optemailpage.ui|2 +-
 cui/uiconfig/ui/optfltrembedpage.ui|4 ++--
 cui/uiconfig/ui/optfltrpage.ui |2 +-
 cui/uiconfig/ui/opthtmlpage.ui |2 +-
 cui/uiconfig/ui/optjsearchpage.ui  |2 +-
 cui/uiconfig/ui/optopenclpage.ui   |2 +-
 cui/uiconfig/ui/optpathspage.ui|2 +-
 cui/uiconfig/ui/picknumberingpage.ui   |2 +-
 cui/uiconfig/ui/pickoutlinepage.ui |2 +-
 cui/uiconfig/ui/querydeletecolordialog.ui  |2 +-
 cui/uiconfig/ui/scriptorganizer.ui |2 +-
 cui/uiconfig/ui/smarttagoptionspage.ui |2 +-
 cui/uiconfig/ui/tsaurldialog.ui|2 +-
 dbaccess/uiconfig/ui/authentificationpage.ui   |2 +-
 dbaccess/uiconfig/ui/namematchingpage.ui   |2 +-
 dbaccess/uiconfig/ui/rtfcopytabledialog.ui |2 +-
 dbaccess/uiconfig/ui/tablesfilterpage.ui   |4 ++--
 desktop/uiconfig/ui/dependenciesdialog.ui  |2 +-
 desktop/uiconfig/ui/licensedialog.ui   |4 ++--
 desktop/uiconfig/ui/showlicensedialog.ui   |2 +-
 desktop/uiconfig/ui/updaterequireddialog.ui|2 +-
 extensions/uiconfig/sabpilot/ui/datasourcepage.ui  |2 +-
 extensions/uiconfig/scanner/ui/griddialog.ui   |2 +-
 extensions/uiconfig/scanner/ui/sanedialog.ui   |2 +-
 extensions/uiconfig/spropctrlr/ui/fieldlinkrow.ui  |2 +-
 extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui   |2 +-
 extensions/uiconfig/spropctrlr/ui/taborder.ui  |4 ++--
 formula/uiconfig/ui/parameter.ui   |2 +-
 formula/uiconfig/ui/structpage.ui  |2 +-
 reportdesign/uiconfig/dbreport/ui/conditionwin.ui  |2 +-
 sc/uiconfig/scalc/ui/autoformattable.ui|2 +-
 sc/uiconfig/scalc/ui/conditionalformatdialog.ui|4 ++--
 sc/uiconfig/scalc/ui/consolidatedialog.ui  |2 +-
 sc/uiconfig/scalc/ui/optcompatibilitypage.ui   |2 +-
 sc/uiconfig/scalc/ui/optdlg.ui |2 +-
 sc/uiconfig/scalc/ui/pivotfielddialog.ui   |4 ++--
 sc/uiconfig/scalc/ui/statisticsinfopage.ui |2 +-
 sc/uiconfig/scalc/ui/subtotalgrppage.ui|4 ++--
 sc/uiconfig/scalc/ui/tpviewpage.ui |4 ++--
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui |2 +-
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_full.ui|2 +-
 sfx2/uiconfig/ui/cmisline.ui   |2 +-
 sfx2/uiconfig/ui/helpbookmarkpage.ui   |2 +-
 sfx2/uiconfig/ui/helpcontentpage.ui|2 +-
 sfx2/uiconfig/ui/helpindexpage.ui  |2 +-
 sfx2/uiconfig/ui/helpsearchpage.ui |2 +-
 sfx2/uiconfig/ui/securityinfopage.ui   |2 +-
 svx/uiconfig/ui/floatingcontour.ui |2 +-
 svx/uiconfig/ui/fontworkspacingdialog.ui   |2 +-
 svx/uiconfig/ui/imapdialog.ui  |2 +-
 svx/uiconfig/ui/paralinespacingcontrol.ui  |2 +-
 svx/uiconfig/ui/redlineviewpage.ui |4 ++--
 

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

2018-10-28 Thread Libreoffice Gerrit user
 sw/source/filter/ww8/ww8par.hxx  |2 -
 sw/source/filter/ww8/ww8par2.cxx |   47 ++-
 2 files changed, 38 insertions(+), 11 deletions(-)

New commits:
commit a174f52a7f6758d694d4cde5f446024e21b33d13
Author: Caolán McNamara 
AuthorDate: Sat Oct 27 19:45:34 2018 +0100
Commit: Caolán McNamara 
CommitDate: Sun Oct 28 21:11:13 2018 +0100

ofz#11125 pass param len around

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

diff --git a/sw/source/filter/ww8/ww8par.hxx b/sw/source/filter/ww8/ww8par.hxx
index 5bee19873cb1..5cffd97a179e 100644
--- a/sw/source/filter/ww8/ww8par.hxx
+++ b/sw/source/filter/ww8/ww8par.hxx
@@ -1041,7 +1041,7 @@ struct WW8TabBandDesc
 static void setcelldefaults(WW8_TCell *pCells, short nCells);
 void ReadDef(bool bVer67, const sal_uInt8* pS, short nLen);
 void ProcessDirection(const sal_uInt8* pParams);
-void ProcessSprmTSetBRC(int nBrcVer, const sal_uInt8* pParamsTSetBRC);
+void ProcessSprmTSetBRC(int nBrcVer, const sal_uInt8* pParamsTSetBRC, 
sal_uInt16 nParamsLen);
 void ProcessSprmTTableBorders(int nBrcVer, const sal_uInt8* pParams, 
sal_uInt16 nParamsLen);
 void ProcessSprmTDxaCol(const sal_uInt8* pParamsTDxaCol);
 void ProcessSprmTDelete(const sal_uInt8* pParamsTDelete);
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index f272fded5b5c..20be4b7357ec 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -1231,11 +1231,17 @@ void WW8TabBandDesc::ReadDef(bool bVer67, const 
sal_uInt8* pS, short nLen)
 }
 }
 
-void WW8TabBandDesc::ProcessSprmTSetBRC(int nBrcVer, const sal_uInt8* 
pParamsTSetBRC)
+void WW8TabBandDesc::ProcessSprmTSetBRC(int nBrcVer, const sal_uInt8* 
pParamsTSetBRC, sal_uInt16 nParamsLen)
 {
 if( !pParamsTSetBRC || !pTCs ) // set one or more cell border(s)
 return;
 
+if (nParamsLen < 3)
+{
+SAL_WARN("sw.ww8", "table border property is too short");
+return;
+}
+
 sal_uInt8 nitcFirst= pParamsTSetBRC[0];// first col to be changed
 sal_uInt8 nitcLim  = pParamsTSetBRC[1];// (last col to be changed)+1
 sal_uInt8 nFlag= *(pParamsTSetBRC+2);
@@ -1254,11 +1260,33 @@ void WW8TabBandDesc::ProcessSprmTSetBRC(int nBrcVer, 
const sal_uInt8* pParamsTSe
 WW8_TCell* pCurrentTC  = pTCs + nitcFirst;
 WW8_BRCVer9 brcVer9;
 if( nBrcVer == 6 )
+{
+if (nParamsLen < sizeof(WW8_BRCVer6) + 3)
+{
+SAL_WARN("sw.ww8", "table border property is too short");
+return;
+}
 brcVer9 = WW8_BRCVer9(WW8_BRC(*reinterpret_cast(pParamsTSetBRC+3)));
+}
 else if( nBrcVer == 8 )
+{
+static_assert(sizeof (WW8_BRC) == 4, "this has to match the msword 
size");
+if (nParamsLen < sizeof(WW8_BRC) + 3)
+{
+SAL_WARN("sw.ww8", "table border property is too short");
+return;
+}
 brcVer9 = WW8_BRCVer9(*reinterpret_cast(pParamsTSetBRC+3));
+}
 else
+{
+if (nParamsLen < sizeof(WW8_BRCVer9) + 3)
+{
+SAL_WARN("sw.ww8", "table border property is too short");
+return;
+}
 brcVer9 = *reinterpret_cast(pParamsTSetBRC+3);
+}
 
 for( int i = nitcFirst; i < nitcLim; ++i, ++pCurrentTC )
 {
@@ -1271,7 +1299,6 @@ void WW8TabBandDesc::ProcessSprmTSetBRC(int nBrcVer, 
const sal_uInt8* pParamsTSe
 if( bChangeRight )
 pCurrentTC->rgbrc[ WW8_RIGHT ] = brcVer9;
 }
-
 }
 
 void WW8TabBandDesc::ProcessSprmTTableBorders(int nBrcVer, const sal_uInt8* 
pParams, sal_uInt16 nParamsLen)
@@ -1789,7 +1816,8 @@ WW8TabDesc::WW8TabDesc(SwWW8ImplReader* pIoClass, WW8_CP 
nStartCp) :
 sal_uInt16 nTableBordersLen = 0;
 const sal_uInt8* pTableBorders90 = nullptr;
 sal_uInt16 nTableBorders90Len = 0;
-std::vector aTSetBrcs, aTSetBrc90s;
+// params, len
+std::vector> aTSetBrcs, 
aTSetBrc90s;
 WW8_TablePos *pTabPos  = nullptr;
 
 // search end of a tab row
@@ -1892,10 +1920,10 @@ WW8TabDesc::WW8TabDesc(SwWW8ImplReader* pIoClass, 
WW8_CP nStartCp) :
 }
 break;
 case sprmTSetBrc:
-aTSetBrcs.push_back(pParams); // process at end
+aTSetBrcs.emplace_back(pParams, nLen); // process at 
end
 break;
 case sprmTSetBrc90:
-aTSetBrc90s.push_back(pParams); // process at end
+aTSetBrc90s.emplace_back(pParams, nLen); // process at 
end
 break;
 case sprmTDxaCol:
 pNewBand->ProcessSprmTDxaCol(pParams);
@@ -1943,11 +1971,10 @@ 

[Libreoffice-bugs] [Bug 120721] Select object also outside of page canvas

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

--- Comment #12 from Cor Nouws  ---
(In reply to 和尚蟹 from comment #11)
> (In reply to Cor Nouws from comment #10)
> > humanize = user friendly?
> 
> Sorry

No need to say sorry. It may well be my lack of understanding and I want to
understand you :)
Can you please answer: do you mean 'user friendly', when you say 'humanize' ?

-- 
You are receiving this mail because:
You 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 120721] Select object also outside of page canvas

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

--- Comment #12 from Cor Nouws  ---
(In reply to 和尚蟹 from comment #11)
> (In reply to Cor Nouws from comment #10)
> > humanize = user friendly?
> 
> Sorry

No need to say sorry. It may well be my lack of understanding and I want to
understand you :)
Can you please answer: do you mean 'user friendly', when you say 'humanize' ?

-- 
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 120985] Toolbar: Remove oleobjectbar.xml and use frameobjectbar.xml

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

--- Comment #5 from andreas_k  ---
The graphic specific toolbar as second toolbar is needed, yes. Only the first
toolbar should be the same in ole, graphic and frame. as they are the same
exclude the chain actions.

-- 
You are receiving this mail because:
You 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 120985] Toolbar: Remove oleobjectbar.xml and use frameobjectbar.xml

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

--- Comment #5 from andreas_k  ---
The graphic specific toolbar as second toolbar is needed, yes. Only the first
toolbar should be the same in ole, graphic and frame. as they are the same
exclude the chain actions.

-- 
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 120996] When a comment pop up, the first time is ok but next the background is transparent and difficults to read

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

David  changed:

   What|Removed |Added

 Attachment #146107|The zip contains a file to  |The zip contains a file to
description|test it and a video whowing |test it and a video showing
   |the behaviour described |the behaviour described

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


[Libreoffice-bugs] [Bug 120996] When a comment pop up, the first time is ok but next the background is transparent and difficults to read

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

--- Comment #1 from David  ---
Created attachment 146107
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146107=edit
The zip contains a file to test it and a video whowing the behaviour described

I haven't saw my attached file. I attached again.

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


[Libreoffice-bugs] [Bug 106867] Videos do not get saved when saving in PPTX, and invalid file produced

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

Aron Budea  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 84427] FILESAVE: Video files not saved in DOC or DOCX

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

Aron Budea  changed:

   What|Removed |Added

   Hardware|Other   |All
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||6867

--- Comment #3 from Aron Budea  ---
Perhaps this needs a similar approach as bug 106867.

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


[Libreoffice-bugs] [Bug 120996] New: When a comment pop up, the first time is ok but next the background is transparent and difficults to read

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

Bug ID: 120996
   Summary: When a comment pop up, the first time is ok but next
the background is transparent and difficults to read
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: da...@onlinetrainer.es

It happens since 4.1.X version, also on 5.X and 6.0.X. Today I have tested it
on 6.1.2 and it happens too. I use 64bits Linux version on different computer
with the same results. Always with Linux Mint, I don't remember the version
that started to happen, I think the v14 or 15 and now I use it the 18.3 with LO
5.4, 6.0 and 6.1 installed with the same results in my main computer. And with
5.4 and 6.X in at least 3 other computers. I doubt that will be hardware or OS
problem becouse it happens in some different machines and versions.

I don't have a windows or mac machine to test it, but I have test it on a
Virtual Box Windows XP 32 bits with 5.4.7.2 and it all runs well, could be
happen only on Linux versión.

First I thought that wasn't a bug, but I haven't found anything abnormal on
configuration in all this years.

I attached a file to test it and a video showing the behaviour of this.

Thanks for your hard work!

-- 
You are receiving this mail because:
You 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 120985] Toolbar: Remove oleobjectbar.xml and use frameobjectbar.xml

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

--- Comment #4 from Maxim Monastirsky  ---
(In reply to V Stuart Foote from comment #2)
> Wait, bug 83762 didn't really want the opposite.
It is, and I'll explain why:

> Rather just to consolidate
> the two separate toolbars for Image shell with the Frame shell, and to
> present images/graphics with just the single context toolbar as is done for
> OLE?
Right. While this bug wants to continue using the generic frame toolbar for
images (which means also keeping the second image-specific toolbar, see below),
and also do the same for ole objects by *removing* the dedicated ole toolbar.
If that's not opposite, I don't know what it is.

> But as here if they all (Image/graphic, OLE, Frame) can be handled from a
> common contextual toolbar, assuming all appropriate controls remain, great! 
No they can't be handled from a common toolbar. You can't add image related
commands to the generic frame toolbar, as it shows also when selecting a frame,
so then it will be full of useless disabled items. So using the generic frame
toolbar for images necessarily means keeping the second image-specific toolbar.

-- 
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 120985] Toolbar: Remove oleobjectbar.xml and use frameobjectbar.xml

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

--- Comment #4 from Maxim Monastirsky  ---
(In reply to V Stuart Foote from comment #2)
> Wait, bug 83762 didn't really want the opposite.
It is, and I'll explain why:

> Rather just to consolidate
> the two separate toolbars for Image shell with the Frame shell, and to
> present images/graphics with just the single context toolbar as is done for
> OLE?
Right. While this bug wants to continue using the generic frame toolbar for
images (which means also keeping the second image-specific toolbar, see below),
and also do the same for ole objects by *removing* the dedicated ole toolbar.
If that's not opposite, I don't know what it is.

> But as here if they all (Image/graphic, OLE, Frame) can be handled from a
> common contextual toolbar, assuming all appropriate controls remain, great! 
No they can't be handled from a common toolbar. You can't add image related
commands to the generic frame toolbar, as it shows also when selecting a frame,
so then it will be full of useless disabled items. So using the generic frame
toolbar for images necessarily means keeping the second image-specific toolbar.

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


[Libreoffice-bugs] [Bug 120989] Free rotation in Writer creates a frame around it. Page wrap is useless that way

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

Dieter Praas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||103152
 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEW

--- Comment #2 from Dieter Praas  ---
I confirm it with

Version: 6.2.0.0.alpha1+ (x64)
Build ID: 8274c4c62df5b937b3f0bec9e1eeca85f3b219d4
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-10-22_01:47:50
Locale: en-US (de_DE); Calc: CL


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

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

Dieter Praas  changed:

   What|Removed |Added

 Depends on||120989


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120989
[Bug 120989] Free rotation in Writer creates a frame around it. Page wrap is
useless that way
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120703] Bugs found by PVS-Studio static analyzer

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

--- Comment #80 from Commit Notification 
 ---
Mike Kaganski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/de26ed225eb03ab36efed592774e460b21e695fa%5E%21

tdf#120703 PVS: V547 Fix activation of launched process' window

It will be available in 6.2.0.

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

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

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


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

2018-10-28 Thread Libreoffice Gerrit user
 shell/source/win32/SysShExec.cxx |   49 +++
 1 file changed, 35 insertions(+), 14 deletions(-)

New commits:
commit de26ed225eb03ab36efed592774e460b21e695fa
Author: Mike Kaganski 
AuthorDate: Sun Oct 28 19:14:28 2018 +0300
Commit: Mike Kaganski 
CommitDate: Sun Oct 28 20:27:52 2018 +0100

tdf#120703 PVS: V547 Fix activation of launched process' window

V547 Expression 'procHandle != nullptr' is always false.

The code was nonsensical overall. First, the launched process handle
was never returned by ShellExecuteExW, because SEE_MASK_NOCLOSEPROCESS
wasn't used, so GetProcessId couldn't succeed. Then, nullptr window
handle was passed to GetWindowThreadProcessId, thus never returning a
meaningful result.

This reimplements this to find the launched process' main window by
first waiting for process idle (up to 1-second delay is possible),
then enumerating all the top-level windows and checking their process.

Change-Id: I5fb4c04147b3f9414e27650a023f7844523c18bd
Reviewed-on: https://gerrit.libreoffice.org/62478
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/shell/source/win32/SysShExec.cxx b/shell/source/win32/SysShExec.cxx
index e9e5909991c5..11ca42005b10 100644
--- a/shell/source/win32/SysShExec.cxx
+++ b/shell/source/win32/SysShExec.cxx
@@ -240,6 +240,34 @@ CSysShExec::CSysShExec( const Reference< 
css::uno::XComponentContext >& xContext
 CoInitialize( nullptr );
 }
 
+namespace
+{
+// This callback checks if the found window is the specified process's 
top-level window,
+// and activates the first found such window.
+BOOL CALLBACK FindAndActivateProcWnd(HWND hwnd, LPARAM lParam)
+{
+if (!IsWindowVisible(hwnd))
+return TRUE; // continue enumeration
+if (GetWindow(hwnd, GW_OWNER)) // not a top-level window
+return TRUE; // continue enumeration
+const DWORD nParamProcId = static_cast(lParam);
+assert(nParamProcId != 0);
+DWORD nWndProcId = 0;
+(void)GetWindowThreadProcessId(hwnd, );
+if (nWndProcId != nParamProcId)
+return TRUE; // continue enumeration
+
+// Found it! Bring it to front
+if (IsIconic(hwnd))
+{
+ShowWindow(hwnd, SW_RESTORE);
+}
+SetForegroundWindow(hwnd);
+SetActiveWindow(hwnd);
+return FALSE; // stop enumeration
+}
+}
+
 void SAL_CALL CSysShExec::execute( const OUString& aCommand, const OUString& 
aParameter, sal_Int32 nFlags )
 {
 // parameter checking
@@ -296,9 +324,10 @@ void SAL_CALL CSysShExec::execute( const OUString& 
aCommand, const OUString& aPa
 sei.lpFile   = o3tl::toW(preprocessed_command.getStr());
 sei.lpParameters = o3tl::toW(aParameter.getStr());
 sei.nShow= SW_SHOWNORMAL;
+sei.fMask = SEE_MASK_NOCLOSEPROCESS; // we need sei.hProcess
 
 if (NO_SYSTEM_ERROR_MESSAGE & nFlags)
-sei.fMask = SEE_MASK_FLAG_NO_UI;
+sei.fMask |= SEE_MASK_FLAG_NO_UI;
 
 SetLastError( 0 );
 
@@ -322,20 +351,12 @@ void SAL_CALL CSysShExec::execute( const OUString& 
aCommand, const OUString& aPa
 else
 {
 // Get Permission make changes to the Window of the created Process
-HWND procHandle = nullptr;
-DWORD procId = GetProcessId(sei.hProcess);
-AllowSetForegroundWindow(procId);
-
-// Get the handle of the created Window
-DWORD check = 0;
-GetWindowThreadProcessId(procHandle, );
-SAL_WARN_IF(check != procId, "shell", "Could not get handle of process 
called by shell.");
-
-// Move created Window into the foreground
-if(procHandle != nullptr)
+const DWORD procId = GetProcessId(sei.hProcess);
+if (procId != 0)
 {
-SetForegroundWindow(procHandle);
-SetActiveWindow(procHandle);
+AllowSetForegroundWindow(procId);
+WaitForInputIdle(sei.hProcess, 1000); // so that main window is 
created; imperfect
+EnumWindows(FindAndActivateProcWnd, static_cast(procId));
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-10-28 Thread Libreoffice Gerrit user
 sfx2/source/sidebar/SidebarDockingWindow.cxx |   30 +++
 1 file changed, 17 insertions(+), 13 deletions(-)

New commits:
commit a21ec77601e2dd15a2281727b827db9310cece6d
Author: Jim Raykowski 
AuthorDate: Wed Oct 24 00:22:30 2018 -0800
Commit: Jim Raykowski 
CommitDate: Sun Oct 28 19:55:08 2018 +0100

Fix Sidebar docking key regression

Add back Ctrl+Shift+F10 undocking/docking handling. This regression was
introduced by me in tdf#115434 Fix key press misbehaviors in sidebar.

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

diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx 
b/sfx2/source/sidebar/SidebarDockingWindow.cxx
index 1ed62e98e5af..141097a70c0c 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.cxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx
@@ -121,22 +121,26 @@ bool SidebarDockingWindow::EventNotify(NotifyEvent& 
rEvent)
 if (MouseNotifyEvent::KEYINPUT == nType)
 {
 const vcl::KeyCode& rKeyCode = rEvent.GetKeyEvent()->GetKeyCode();
-if (!mpAccel)
+if (!(rKeyCode.GetCode() == KEY_F10 && rKeyCode.GetModifier() &&
+rKeyCode.IsShift() && rKeyCode.IsMod1()))
 {
-mpAccel = svt::AcceleratorExecute::createAcceleratorHelper();
-mpAccel->init(comphelper::getProcessComponentContext(), 
mpSidebarController->getXFrame());
-}
-const OUString 
aCommand(mpAccel->findCommand(svt::AcceleratorExecute::st_VCLKey2AWTKey(rKeyCode)));
-if (".uno:DesignerDialog" == aCommand)
-{
-std::shared_ptr xPanelDescriptor =
+if (!mpAccel)
+{
+mpAccel = svt::AcceleratorExecute::createAcceleratorHelper();
+mpAccel->init(comphelper::getProcessComponentContext(), 
mpSidebarController->getXFrame());
+}
+const OUString 
aCommand(mpAccel->findCommand(svt::AcceleratorExecute::st_VCLKey2AWTKey(rKeyCode)));
+if (".uno:DesignerDialog" == aCommand)
+{
+std::shared_ptr xPanelDescriptor =
 
mpSidebarController->GetResourceManager()->GetPanelDescriptor( "StyleListPanel" 
);
-if ( xPanelDescriptor && mpSidebarController->IsDeckVisible( 
xPanelDescriptor->msDeckId ) )
-Close();
-return true;
+if ( xPanelDescriptor && mpSidebarController->IsDeckVisible( 
xPanelDescriptor->msDeckId ) )
+Close();
+return true;
+}
+if (".uno:Sidebar" != aCommand)
+return true;
 }
-if (".uno:Sidebar" != aCommand)
-return true;
 }
 else if (MouseNotifyEvent::MOUSEBUTTONDOWN == nType)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 120991] Insert OLE Object from file causes crash, if Experimental features are enabled

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

Buovjaga  changed:

   What|Removed |Added

Summary|Insert OLE Object from file |Insert OLE Object from file
   |causes crash|causes crash, if
   ||Experimental features are
   ||enabled

--- Comment #5 from Buovjaga  ---
Found the cause: Experimental features need to be enabled

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


[Libreoffice-bugs] [Bug 104142] Hard to pick a line with an image in its background because of "grab hand" cursor

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

--- Comment #9 from Buovjaga  ---
A video example of what preselection highlighting in 3D software looks like:
https://www.youtube.com/watch?v=OmfyRi7yx1w (Blender)

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


[Libreoffice-bugs] [Bug 104787] [META] Saved PPTX files that MS Powerpoint can't open

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

Bug 120573 Summary: FILESAVE PPTX: Slides with Custom Audio Corrupted on 
Roundtrip
https://bugs.documentfoundation.org/show_bug.cgi?id=120573

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 120573] FILESAVE PPTX: Slides with Custom Audio Corrupted on Roundtrip

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

Luke  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107322] [META] Media (audio / video) bugs and enhancements

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

Buovjaga  changed:

   What|Removed |Added

 Depends on||119906


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119906
[Bug 119906] FILEOPEN DOCX Video shown as image
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120573] FILESAVE PPTX: Slides with Custom Audio Corrupted on Roundtrip

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

--- Comment #4 from Luke  ---
Inserted audio is now saved and no longer results in corrupted pptx. Verified
FIXED with Version: 6.2.0.0.alpha1+ (x64)
Build ID: c9ec7105ba173af77fb9eadcdd3f694494664865
and PowerPoint 2016

Thanks Mark!

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


[Libreoffice-bugs] [Bug 84427] FILESAVE: Video files not saved in DOC or DOCX

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

Buovjaga  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 119906] FILEOPEN DOCX Video shown as image

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

Buovjaga  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=84
   ||427
 Status|UNCONFIRMED |NEW
Version|6.1.1.2 release |Inherited From OOo
 Ever confirmed|0   |1
Summary|LibreOffice Writer doesn't  |FILEOPEN DOCX Video shown
   |support video content, but  |as image
   |Word 2016 supported |
 OS|Windows (All)   |All
   Severity|enhancement |normal
 CC||todven...@suomi24.fi
 Blocks||104520, 107322

--- Comment #5 from Buovjaga  ---
Writer does support video, but it fails to understand it in this case. I tested
various versions on Windows and they all showed it as an image.

Arch Linux 64-bit
Version: 6.2.0.0.alpha1+
Build ID: bfa6aeb379e5dfcf6f1f97b3365ab551995ab3d5
CPU threads: 8; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: fi-FI (fi_FI.UTF-8); Calc: threaded
Built on 28 October 2018


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104520
[Bug 104520] [META] DOCX (OOXML) bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=107322
[Bug 107322] [META] Media (audio / video) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104520] [META] DOCX (OOXML) bug tracker

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

Buovjaga  changed:

   What|Removed |Added

 Depends on||119906


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119906
[Bug 119906] FILEOPEN DOCX Video shown as image
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120995] New: remove sw uiconfig files

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

Bug ID: 120995
   Summary: remove sw uiconfig files
   Product: LibreOffice
   Version: 6.2.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

for each sw module (sglobal, sweb, sxform, swreport, swriter, swxform) there
are menubar, toolbar, popupmenu, statusbar, ...) files availbale.

As each module has different features and focus the toolbars, ... popupmenus
can be different per module, but sometimes they are the same and it's very
difficult to keep the different modules in sync.

so my request is to have in swriter the "master" xml and ui files and if an
module need an different xml file it will be available in the module
subfolders, but if the module use the same file than swriter than there is no
copy of this file in the module, the codebase know that the xml file come from
the swriter folder instead of the module folder.

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