[Libreoffice-bugs] [Bug 117771] New: Can't load libreoffice writer

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117771

Bug ID: 117771
   Summary: Can't load libreoffice writer
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: syamsulari...@yandex.com

Description:
Crash if I open LibreOffice Writer

Actual Results:  
Open LibreOffice writer

Expected Results:
Crash, not load


Reproducible: Always


User Profile Reset: No



Additional Info:
When i opened libreoffice- writer via terminal, i got this

(soffice:1201): dbind-WARNING **: 12:42:52.925: Error retrieving accessibility
bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus
was not provided by any .service files


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101
Firefox/52.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 84709] In template directory odt files no longer visible

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84709

Buovjaga  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|INSUFFICIENTDATA|---

--- Comment #17 from Buovjaga  ---
(In reply to Rudolf Kollien from comment #16)
> There is no possibility to make further tests.

Not true, so reverting status change.

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

2018-05-23 Thread Dennis Francis
 sc/inc/formulacell.hxx  |1 
 sc/inc/recursionhelper.hxx  |8 ++
 sc/source/core/data/formulacell.cxx |   23 ++-
 sc/source/core/tool/recursionhelper.cxx |   37 
 4 files changed, 67 insertions(+), 2 deletions(-)

New commits:
commit 25cc0ab3b5d154fffbef27fad4adcf90f36ae92e
Author: Dennis Francis 
Date:   Tue May 15 16:44:15 2018 +0530

Calc threading : Check for "self" references...

...on indirect dependencies too.

Here a self reference to any formula-group
means if there are any references in a formula
(of the formula-group itself or any of its dependencies)
that points to any element inside the formula-group.
If there are any self-references, then that formula-group
can't be computed in parallel.

For example, with this patch we can detect the following case:-
  Suppose the formula-group that we want to check is:
  "=(F2+G2-10)*10.0" spanning A2:A100. Let the formula-group
  starting at F2 be "=A1*0.1-10". The indirect dependency
  formula-group starting at F2, references back the elements of
  our original formula-group at A2. This makes the F.G at
  A2 unsafe for parallel computation.

Concretly, this patch fixes a recalc crash on tdf#63638/1

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

diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index 7656e7a3efec..cee9fec13fc2 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -66,6 +66,7 @@ public:
 SvNumFormatType mnFormatType;
 bool mbInvariant:1;
 bool mbSubTotal:1;
+bool mbSeenInPath:1; // For detecting cycle of formula groups
 
 sal_uInt8 meCalcState;
 
diff --git a/sc/inc/recursionhelper.hxx b/sc/inc/recursionhelper.hxx
index 560b66ab357e..b8ca1d087509 100644
--- a/sc/inc/recursionhelper.hxx
+++ b/sc/inc/recursionhelper.hxx
@@ -23,9 +23,11 @@
 #include "formularesult.hxx"
 
 #include 
+#include 
 #include 
 
 class ScFormulaCell;
+struct ScFormulaCellGroup;
 
 struct ScFormulaRecursionEntry
 {
@@ -44,10 +46,12 @@ typedef ::std::list< ScFormulaRecursionEntry > 
ScFormulaRecursionList;
 class ScRecursionHelper
 {
 typedef ::std::stack< ScFormulaCell* >  ScRecursionInIterationStack;
+typedef ::std::vector< ScFormulaCellGroup* > ScFGList;
 ScFormulaRecursionList  aRecursionFormulas;
 ScFormulaRecursionList::iteratoraInsertPos;
 ScFormulaRecursionList::iteratoraLastIterationStart;
 ScRecursionInIterationStack aRecursionInIterationStack;
+ScFGListaFGList;
 sal_uInt16  nRecursionCount;
 sal_uInt16  nIteration;
 boolbInRecursionReturn;
@@ -94,6 +98,10 @@ public:
 ScRecursionInIterationStack&GetRecursionInIterationStack()  { return 
aRecursionInIterationStack; }
 
 void Clear();
+
+/** Detects whether the formula-group is part of a simple cycle of 
formula-groups. */
+bool PushFormulaGroup(ScFormulaCellGroup* pGrp);
+void PopFormulaGroup();
 };
 
 #endif // INCLUDED_SC_INC_RECURSIONHELPER_HXX
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index 9731f8a6f297..daaa80e5b921 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -528,6 +528,7 @@ ScFormulaCellGroup::ScFormulaCellGroup() :
 mnFormatType(SvNumFormatType::NUMBER),
 mbInvariant(false),
 mbSubTotal(false),
+mbSeenInPath(false),
 meCalcState(sc::GroupCalcEnabled)
 {
 }
@@ -1527,6 +1528,14 @@ void ScFormulaCell::Interpret()
 else
 {
 pDocument->IncInterpretLevel();
+
+bool bCheckForFGCycle = mxGroup && 
!pDocument->mbThreadedGroupCalcInProgress &&
+mxGroup->meCalcState == sc::GroupCalcEnabled &&
+ScCalcConfig::isThreadingEnabled();
+bool bPopFormulaGroup = false;
+if (bCheckForFGCycle)
+bPopFormulaGroup = 
rRecursionHelper.PushFormulaGroup(mxGroup.get());
+
 #if DEBUG_CALCULATION
 aDC.enterGroup();
 bool bGroupInterpreted = InterpretFormulaGroup();
@@ -1537,6 +1546,10 @@ void ScFormulaCell::Interpret()
 if (!InterpretFormulaGroup())
 InterpretTail( pDocument->GetNonThreadedContext(), SCITP_NORMAL);
 #endif
+
+if (bPopFormulaGroup)
+rRecursionHelper.PopFormulaGroup();
+
 pDocument->DecInterpretLevel();
 }
 
@@ -4129,14 +4142,14 @@ struct ScDependantsCalculator
 
 SCROW nEndRow = mrPos.Row() + mnLen - 1;
 
-if (nRelRow < 0)
+if (nRelRow <= 0)
 {
 SCROW nTest = nEndRow;
 nTest += 

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

2018-05-23 Thread Muhammet Kara
 cui/source/customize/SvxMenuConfigPage.cxx|1 -
 cui/source/customize/SvxToolbarConfigPage.cxx |1 -
 2 files changed, 2 deletions(-)

New commits:
commit 1d16a2562577acdaa3624ab02216bef02863619a
Author: Muhammet Kara 
Date:   Wed May 23 17:24:13 2018 +0300

Remove unnecessary include

Change-Id: I660bc8efd441e9fc5b6f83f69dc632a26add193b
Reviewed-on: https://gerrit.libreoffice.org/54712
Tested-by: Jenkins 
Reviewed-by: Muhammet Kara 

diff --git a/cui/source/customize/SvxMenuConfigPage.cxx 
b/cui/source/customize/SvxMenuConfigPage.cxx
index dd9fb7e71fe0..9b69c64a1374 100644
--- a/cui/source/customize/SvxMenuConfigPage.cxx
+++ b/cui/source/customize/SvxMenuConfigPage.cxx
@@ -58,7 +58,6 @@
 #include 
 #include 
 #include 
-#include "eventdlg.hxx"
 #include 
 
 #include 
diff --git a/cui/source/customize/SvxToolbarConfigPage.cxx 
b/cui/source/customize/SvxToolbarConfigPage.cxx
index aaccfca3fef7..bdca809fd326 100644
--- a/cui/source/customize/SvxToolbarConfigPage.cxx
+++ b/cui/source/customize/SvxToolbarConfigPage.cxx
@@ -58,7 +58,6 @@
 #include 
 #include 
 #include 
-#include "eventdlg.hxx"
 #include 
 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117770] unable to open several sites in my windows 10

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117770

--- Comment #1 from samantha  ---
if you want to learn how to draw i would prefer you to visit this category
instead of wondering on the internet.

https://www.aedrio.com/category/draw/

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


[Libreoffice-bugs] [Bug 84709] In template directory odt files no longer visible

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84709

Rudolf Kollien  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INSUFFICIENTDATA

--- Comment #16 from Rudolf Kollien  ---
There is no possibility to make further tests.

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


[Libreoffice-bugs] [Bug 117770] unable to open several sites in my windows 10

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117770

samantha  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 117770] unable to open several sites in my windows 10

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117770

samantha  changed:

   What|Removed |Added

   Keywords||accessibility
URL||https://www.aedrio.com

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


[Libreoffice-bugs] [Bug 117770] New: unable to open several sites in my windows 10

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117770

Bug ID: 117770
   Summary: unable to open several sites in my windows 10
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer Web
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: links...@tutanota.com

Description:
well i order to open multiple branding sites my internet connection being ok
but unable to get to reach following site whereas was able to open google yahoo
and Bing

https://www.aedrio.com

Steps to Reproduce:
1.getting a yellow sign on wifi
2.
3.

Actual Results:  
not able to reach 

Expected Results:
should have opened


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36

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


[Libreoffice-bugs] [Bug 117769] Graphic Corruption on slideshow with Gradient and Animations

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117769

Luke  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #2 from Luke  ---
I bisected this to
https://cgit.freedesktop.org/libreoffice/core/commit/?id=b524de95


b524de950c6eb0bc61d05d41fe69b67ab59b16c6 is the first bad commit
commit b524de950c6eb0bc61d05d41fe69b67ab59b16c6
Author: Caolán McNamara 
Date:   Wed Apr 11 12:09:45 2018 +0100

Related: rhbz#1396729 use cairo_surface_create_similar


Caolán,

Could you please take a look at 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 117769] Graphic Corruption on slideshow with Gradient and Animations

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117769

--- Comment #1 from Luke  ---
Created attachment 142260
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142260=edit
LO 6.0 correctly renders the gradient background

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


[Libreoffice-bugs] [Bug 50774] FILEOPEN DOC/DOCX: automatic numbering in numbered lists different from Word numbering

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50774

--- Comment #28 from Justin L  ---
Created attachment 142259
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142259=edit
Bug 50774 - stripped4.doc: roundtripped by MS Word 2003

(In reply to Xisco Faulí from comment #27)
> commit7201d157a2ff2f0a8b6bb8fa57e31871187cbc81 (patch)
> tdf#76817 ooxmlimport: connect Heading to existing numbers
I reverted this patch today.

But it is worth noting that .doc format looks the same way in LO. That suggests
that this bug is an odd-ball example. Since MS and LO internally have very
different numbering implementation's, it might not be possible to emulate this
one.

So, no - I'm not really interested in spending more time in this minefield :-)

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


[Libreoffice-bugs] [Bug 117753] Cursor always blinks in all parts of LibreOffice despite Keyboard System Setting

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117753

Adolfo Jayme  changed:

   What|Removed |Added

   Priority|medium  |high
 CC||f...@libreoffice.org
   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 103370] [META] Outline/Chapter numbering bugs and enhancements

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103370
Bug 103370 depends on bug 76817, which changed state.

Bug 76817 Summary: Outline Numbering for DOCX not working when new headings 
inserted in between (to reproduce, see comment 15/17/19)
https://bugs.documentfoundation.org/show_bug.cgi?id=76817

   What|Removed |Added

 Status|VERIFIED|REOPENED
 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 76817] Outline Numbering for DOCX not working when new headings inserted in between (to reproduce, see comment 15/17/19)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76817

Justin L  changed:

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---
   Assignee|jl...@mail.com  |libreoffice-b...@lists.free
   ||desktop.org
 Whiteboard|interoperability|interoperability
   |target:5.2.0 target:5.1.2   |target:5.2.0 target:5.1.2
   |target:6.1.0|

--- Comment #51 from Justin L  ---
Reverted the commit from comment 46 and re-opened the bug, because an example
document from bug 50774 is made worse by that commit. I'm not surprised that a
regression was found - almost impossible to make changes in this area without
doing so.

Reverting does two things.
-most importantly, it allows me to walk away from this without causing harm. I
hate causing regressions, and this patch has not yet hit a released version of
LibreOffice.
-it gives a chance for the compatibility tools to find how many documents were
fixed by the patch, and now are broken again.  It is easily possible that more
are fixed than broken - and so this can be revisited in 6.2.

It is worth noting that the patch from comment 46 aligns docx with doc. Both of
them display bug 50774 the same way. And .doc does not have this bug's problem.

Microsoft's numbering implementation is very complex, and very different from
LO's internal design. So a lot of "emulation" needs to happen, which by
definition means certain features simply cannot work. It is a balancing act
between supporting the most common cases, and breaking once-working odd-ball
cases. (And my impression is that the current import implementation is a mess -
not using style name references, but directly applying the properties to the
paragraph, with lots of code scattered around handling edge cases...)

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


[Libreoffice-bugs] [Bug 108770] [META] DOCX (OOXML) bullet and numbering list-related issues

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108770
Bug 108770 depends on bug 76817, which changed state.

Bug 76817 Summary: Outline Numbering for DOCX not working when new headings 
inserted in between (to reproduce, see comment 15/17/19)
https://bugs.documentfoundation.org/show_bug.cgi?id=76817

   What|Removed |Added

 Status|VERIFIED|REOPENED
 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 88173] [META] DOCX (OOXML) format limitations

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88173
Bug 88173 depends on bug 76817, which changed state.

Bug 76817 Summary: Outline Numbering for DOCX not working when new headings 
inserted in between (to reproduce, see comment 15/17/19)
https://bugs.documentfoundation.org/show_bug.cgi?id=76817

   What|Removed |Added

 Status|VERIFIED|REOPENED
 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 117769] New: Graphic Corruption on slideshow with Gradient and Animations

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117769

Bug ID: 117769
   Summary: Graphic Corruption on slideshow with Gradient and
Animations
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 142258
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142258=edit
Page 3 in slideshow on LO 6.1

The ellipsoid gradient has rendering errors on Linux in slides with custom
animations. 


Steps to reproduce:
1. On Linux with a recent build of LO 6.1, open attachment 141900 
2. Start slideshow
3. Press space to page 3
4. Note the rendering glitches with the Ellipsoid Gradient background

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

2018-05-23 Thread Justin Luth
 sw/qa/extras/ooxmlexport/ooxmlexport.cxx  |   13 +
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |3 +--
 writerfilter/source/dmapper/NumberingManager.cxx  |1 -
 writerfilter/source/dmapper/StyleSheetTable.cxx   |2 --
 writerfilter/source/dmapper/StyleSheetTable.hxx   |1 -
 5 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 8d42de21c10bfefeaffabc5c939e7830a09f7dca
Author: Justin Luth 
Date:   Sat May 12 20:53:45 2018 +0300

revert tdf#76817 ooxmlimport: connect Heading to existing numbers

tdf#50774 has an example document which was broken by 6.1 commit
8e9e705de29a1a3d9b964c9350aa2a3a17cce6f9.

Reverting does a couple of things:
-go back to previous behaviour (right or wrong) - no regression.
-gives an opportunity to find documents broken by reverting -
i.e. it will give an indication as to which state has more broken
docs. Can be re-visited in 6.2.
-gives me an option to escape from this horrible mess without causing
a regression in a production release of LO.

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

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
index 0442456cd8c8..0dc6ebe65b20 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -348,10 +348,13 @@ DECLARE_OOXMLEXPORT_TEST(testNumberingFont, 
"numbering-font.docx")
 
 DECLARE_OOXMLEXPORT_TEST(testTdf106541_noinheritChapterNumbering, 
"tdf106541_noinheritChapterNumbering.odt")
 {
-// in LO, it appears that styles based on the Chapter Numbering style 
explicitly sets the
-// numbering style/outline level to 0 by default, and prevents inheriting 
directly from "Outline" style.
+// in LO, it appears that styles based on the Chapter Numbering style 
explicitly set the
+// numbering style/outline level to 0 by default, and that LO prevents 
inheriting directly from "Outline" style.
 // Adding this preventative unit test to ensure that any fix for tdf106541 
doesn't make incorrect assumptions.
-CPPUNIT_ASSERT_EQUAL(OUString("Outline"), 
getProperty(getParagraph(1), "NumberingStyleName"));
+
+//reverting tdf#76817 hard-codes the numbering style on the paragraph, 
preventing RT of "Outline" style
+//CPPUNIT_ASSERT_EQUAL(OUString("Outline"), 
getProperty(getParagraph(1), "NumberingStyleName"));
+
 OUString sPara3NumberingStyle = getProperty(getParagraph(3), 
"NumberingStyleName");
 CPPUNIT_ASSERT_EQUAL(sPara3NumberingStyle, 
getProperty(getParagraph(4), "NumberingStyleName"));
 
@@ -719,7 +722,9 @@ DECLARE_OOXMLEXPORT_TEST(testOOxmlOutlineNumberTypes, 
"outline-number-types.odt"
 
 DECLARE_OOXMLEXPORT_TEST(testNumParentStyle, "num-parent-style.docx")
 {
-CPPUNIT_ASSERT_EQUAL(OUString("Outline"), 
getProperty(getParagraph(4), "NumberingStyleName"));
+//reverting tdf#76817 hard-codes the numbering style on the paragraph, 
preventing RT of "Outline" style
+//I think this unit test is wrong, but I will revert to its original claim.
+CPPUNIT_ASSERT(getProperty(getParagraph(4), 
"NumberingStyleName").startsWith("WWNum"));
 }
 
 DECLARE_OOXMLEXPORT_TEST(testNumOverrideLvltext, "num-override-lvltext.docx")
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 409c7083ad7e..f84f37536f93 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1132,8 +1132,7 @@ void DomainMapper_Impl::finishParagraph( const 
PropertyMapPtr& pPropertyMap )
 sal_Int32 nListId = pEntry ? lcl_getListId(pEntry, 
GetStyleSheetTable()) : -1;
 if( pStyleSheetProperties && nListId >= 0 )
 {
-if ( !pEntry->bIsChapterNumbering )
-pParaContext->Insert( PROP_NUMBERING_STYLE_NAME, uno::makeAny( 
ListDef::GetStyleName( nListId ) ), false);
+pParaContext->Insert( PROP_NUMBERING_STYLE_NAME, uno::makeAny( 
ListDef::GetStyleName( nListId ) ), false);
 
 // Indent properties from the paragraph style have priority
 // over the ones from the numbering styles in Word
diff --git a/writerfilter/source/dmapper/NumberingManager.cxx 
b/writerfilter/source/dmapper/NumberingManager.cxx
index 8e14b3a32dbc..f3679f8eb614 100644
--- a/writerfilter/source/dmapper/NumberingManager.cxx
+++ b/writerfilter/source/dmapper/NumberingManager.cxx
@@ -625,7 +625,6 @@ void ListDef::CreateNumberingRules( DomainMapper& rDMapper,
 xOutlines->getChapterNumberingRules( );
 
 StyleSheetEntryPtr pParaStyle = pAbsLevel->GetParaStyle( );
-pParaStyle->bIsChapterNumbering = true;
 

[Libreoffice-bugs] [Bug 55793] Problem rendering multiple Asian fonts in Impress

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55793

Khaled Hosny  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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


[Libreoffice-bugs] [Bug 95530] Applying paragraph styles in tables in particular file makes LO crashing (swlo!SwFont::SetUnderColor+c)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95530

--- Comment #25 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 96635] FILEOPEN: Wrong masking importing PDF

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96635

--- 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 92981] Wrong error in bracketing from xls file

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92981

--- 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 97368] Unable to import XML Source

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97368

--- 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 107954] SQL-statement shows also columns of "OrderBY" -section in Tools > SQL

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107954

--- 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 79138] Calc crash

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79138

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 64740] PRINTING Dirty state isn' t activated when printing with changed settings

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64740

--- 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 107819] CRASH: when trying to select an imported html table

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107819

--- 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 99482] Changing mode from View menu doesn't change Display mode icon

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99482

--- 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 60134] FORMATTING: Can't change letter-spacing of fill signs in tabs

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60134

--- 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 84136] Impossible to re-navigate to search result

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84136

--- 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 84709] In template directory odt files no longer visible

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84709

--- 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 97112] Border settings reset in Draw

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97112

--- 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 50265] Bad charts showing PowerPoint presentation

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50265

--- 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 99218] Shift-drag doesn't maintain aspect ratio when resizing graph, if graph is in edit mode

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99218

--- 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 98889] Error in character selected count in statusbar when using < Shift> to change selected text

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98889

--- 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 34121] Chapter related Table of Contents not updated

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34121

--- 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 89829] Updating character style to match selection does not remove direct formatting

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89829

--- 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 97306] All LibreOffice apps blocked when a save dialog is opened (Gtk )

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97306

--- 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 99724] FILEOPEN RTF layout problem with footer

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99724

--- 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 63889] FORMATTING: Decapitalize sentence works on all sentence not on selection

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63889

--- 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 99805] Inconsistencies and issues applying formattings

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99805

--- 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 71149] SPELL: Objects inline with text ignored by spellchecks, leading to double space warnings

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71149

--- 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 83882] EDITING: image replacement drops animations and undo corrupts them

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83882

--- 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 115190] Template manager shows extension on OOXML templates

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115190

Adolfo Jayme  changed:

   What|Removed |Added

 Blocks||101435


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101435
[Bug 101435] [META] Template manager 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 101435] [META] Template manager bugs and enhancements

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101435

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||115190


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115190
[Bug 115190] Template manager shows extension on OOXML templates
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117659] Font looks ugly at chart when rotated

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117659

Adolfo Jayme  changed:

   What|Removed |Added

 Blocks||71732, 94691


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
https://bugs.documentfoundation.org/show_bug.cgi?id=94691
[Bug 94691] [META] OpenGL bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94691] [META] OpenGL bugs

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94691

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||117659


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117659
[Bug 117659] Font looks ugly at chart when rotated
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

Adolfo Jayme  changed:

   What|Removed |Added

 Depends on||117659


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117659
[Bug 117659] Font looks ugly at chart when rotated
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117659] Font looks ugly at chart when rotated

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117659

Adolfo Jayme  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 117751] fonts

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117751

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Adolfo Jayme  ---
Thanks for reporting this issue and helping to make LibreOffice better. The
issue has been reported before, so I’m marking this ticket as a duplicate.
You’ll receive notifications whenever the earlier ticket is updated.

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

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


[Libreoffice-bugs] [Bug 72042] Font names are not localized (Mac OS X)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72042

Adolfo Jayme  changed:

   What|Removed |Added

 CC||lvminkang2...@hotmail.com

--- Comment #26 from Adolfo Jayme  ---
*** Bug 117751 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 117768] New: CSV dialogue opens behind blank window when opening csv files.

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117768

Bug ID: 117768
   Summary: CSV dialogue opens behind blank window when opening
csv files.
   Product: LibreOffice
   Version: 6.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: knuss...@mac.com

Description:
The delimitor/import options dialogue box opens behind a blank spreadsheet when
double clicking on csv files to open. It gives the appearance that the program
is locked up, but all is well when moving the blank sheet out of the way.

Steps to Reproduce:
1.Double click csv file
2. Observe no open dialogue, but only a blank window appears
3. Move blank window out of the way to interact with dialogue.

Actual Results:  
Blank window appears over dialog box

Expected Results:
Expect open dialogue above the blank window


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64

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


[Libreoffice-bugs] [Bug 107840] Above paragraph spacing not affecting first text line in textbox

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107840

--- Comment #12 from Regina Henschel  ---
The error still exists in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 88051c660fc6759346a01bc559818d3e23f8f55c
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 63610] EDITING: Enhancement request: for Auto-Correction to convert typed Math language into objects and invoke Math formula editor

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63610

Regina Henschel  changed:

   What|Removed |Added

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

--- Comment #8 from Regina Henschel  ---
I think, that it is not possible to insert an OLE object by AutoCorrect.
AutoCorrect always exchanges some characters with other characters. Even if it
were possible, you would need an entry for every possible fraction.

Type
a over b
mark it and click on the formula-icon.
It generates the formula directly without opening the editor.

Another way is to write a macro, that exchanges the / with word 'over' and then
inserts the Math OLE object at cursor position.

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


[Libreoffice-bugs] [Bug 37754] In edit mode formula preview window is shifted in Draw

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37754

V Stuart Foote  changed:

   What|Removed |Added

 CC||armin.le.gr...@me.com,
   ||caol...@redhat.com

--- Comment #17 from V Stuart Foote  ---
@Armin, Caolán - seems this might not have been picked up back in the day when
comment 3 was made. Any chance the OLE handling of sm Formulas in Draw/Impress
can be tweaked to "register" the views so the formula occupies the same
position when being edited?

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


[Libreoffice-commits] core.git: Branch 'feature/cib_contract891' - 67 commits - configure.ac download.lst editeng/source external/curl external/expat external/graphite external/icu external/libpng ext

2018-05-23 Thread Michael Meeks
Rebased ref, commits from common ancestor:
commit bc7813272754f95f3705eac4f7726c63c646f985
Author: Michael Meeks 
Date:   Fri Dec 13 13:20:10 2013 +

graphite2: get visibility right for static linkage on windows.

Change-Id: I79fa15d539bcb86610dd4def08536c33bd2a10c2
(cherry picked from commit 8949d6f32acb9046cb3ddceb4f6fbe39dcc04383)

diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index abfa77578086..8126c1ec11f0 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -26,8 +26,9 @@
 #include 
 #include 
 #if ENABLE_GRAPHITE
-#include 
-#include 
+#  include 
+#  include 
+#  include 
 #endif
 #include 
 
diff --git a/vcl/inc/graphite_features.hxx b/vcl/inc/graphite_features.hxx
index da8e619fd64c..0202497ae95a 100644
--- a/vcl/inc/graphite_features.hxx
+++ b/vcl/inc/graphite_features.hxx
@@ -23,6 +23,7 @@
 // 1001=1&2002=2=0
 #include 
 #include 
+#include 
 #include 
 
 namespace grutils
diff --git a/vcl/inc/graphite_layout.hxx b/vcl/inc/graphite_layout.hxx
index d439026f1fcb..4fe78367c3fa 100644
--- a/vcl/inc/graphite_layout.hxx
+++ b/vcl/inc/graphite_layout.hxx
@@ -31,6 +31,7 @@
 #include 
 #include 
 // Libraries
+#include 
 #include 
 #include 
 // Platform
diff --git a/vcl/inc/graphite_static.hxx b/vcl/inc/graphite_static.hxx
new file mode 100644
index ..4c70cf1b95ab
--- /dev/null
+++ b/vcl/inc/graphite_static.hxx
@@ -0,0 +1,17 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifdef WNT
+#  ifndef GRAPHITE2_STATIC
+#define GRAPHITE2_STATIC 1
+#  endif
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
+
diff --git a/vcl/inc/win/salgdi.h b/vcl/inc/win/salgdi.h
index b54c8765b213..d6b1d85d2178 100644
--- a/vcl/inc/win/salgdi.h
+++ b/vcl/inc/win/salgdi.h
@@ -31,7 +31,8 @@
 
 #include 
 #if ENABLE_GRAPHITE
-#include 
+#  include 
+#  include 
 #endif
 
 class FontSelectPattern;
diff --git a/vcl/source/glyphs/graphite_layout.cxx 
b/vcl/source/glyphs/graphite_layout.cxx
index ef76f85172de..499458eb307f 100644
--- a/vcl/source/glyphs/graphite_layout.cxx
+++ b/vcl/source/glyphs/graphite_layout.cxx
@@ -53,6 +53,7 @@
 #include 
 
 // Graphite Libraries (must be after vcl headers on windows)
+#include 
 #include 
 
 #include 
commit 60a4f2b0d3f7ff87d2a3211f8139b928d7c3d139
Author: Thorsten Behrens 
Date:   Wed May 23 11:05:23 2018 +0200

build libxml2 w/o c99 nonsense

Change-Id: I8d2c36edb9d9d07edb33783db156c27a63f18ac6

diff --git a/external/libxml2/UnpackedTarball_xml2.mk 
b/external/libxml2/UnpackedTarball_xml2.mk
index 0d3f866a0ae8..17203bfb179e 100644
--- a/external/libxml2/UnpackedTarball_xml2.mk
+++ b/external/libxml2/UnpackedTarball_xml2.mk
@@ -21,6 +21,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,xml2,\

external/libxml2/0001-Increase-buffer-space-for-port-in-HTTP-redirect-supp.patch.1
 \

external/libxml2/0001-Fix-buffer-size-checks-in-xmlSnprintfElementContent.patch.1
 \

external/libxml2/0001-Fix-handling-of-parameter-entity-references.patch.1 \
+   external/libxml2/libxml2-no-c99.patch \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/libxml2/libxml2-no-c99.patch 
b/external/libxml2/libxml2-no-c99.patch
new file mode 100644
index ..05e6672e2d55
--- /dev/null
+++ b/external/libxml2/libxml2-no-c99.patch
@@ -0,0 +1,31 @@
+--- a/xml2/relaxng.c   2016-05-23 09:25:25.0 +0200
 b/xml2/relaxng.c   2018-05-22 23:28:27.192916200 +0200
+@@ -2088,6 +2088,7 @@
+  const xmlChar * arg2)
+ {
+ char msg[1000];
++xmlChar *result;
+ 
+ if (arg1 == NULL)
+ arg1 = BAD_CAST "";
+@@ -2215,7 +2216,7 @@
+ snprintf(msg, 1000, "Unknown error code %d\n", err);
+ }
+ msg[1000 - 1] = 0;
+-xmlChar *result = xmlCharStrdup(msg);
++result = xmlCharStrdup(msg);
+ return (xmlEscapeFormatString());
+ }
+ 
+--- a/xml2/xmlschemas.c2016-05-23 09:25:25.0 +0200
 b/xml2/xmlschemas.c2018-05-22 23:26:52.835511300 +0200
+@@ -3168,8 +3168,8 @@
+   "valid.");
+   }
+   if (expected) {
+-  msg = xmlStrcat(msg, BAD_CAST " Expected is '");
+   xmlChar *expectedEscaped = xmlCharStrdup(expected);
++  msg = xmlStrcat(msg, BAD_CAST " Expected is '");
+   msg = xmlStrcat(msg, xmlEscapeFormatString());
+   FREE_AND_NULL(expectedEscaped);
+   msg = xmlStrcat(msg, BAD_CAST "'.\n");
commit dd730119bb74ff5ce511bd3e42953cba523fc036
Author: Thorsten Behrens 
Date:   Wed May 23 10:58:59 2018 +0200

build nss w/o c99 

[Libreoffice-bugs] [Bug 37754] In edit mode formula preview window is shifted in Draw

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37754

Regina Henschel  changed:

   What|Removed |Added

 CC||uwesto...@web.de

--- Comment #16 from Regina Henschel  ---
*** Bug 117360 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 117360] formula appears displaced in impress

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117360

Regina Henschel  changed:

   What|Removed |Added

 Resolution|NOTABUG |DUPLICATE

--- Comment #8 from Regina Henschel  ---
No. I consider it a bug in LibreOffice. The problem does not exist in Apache
OpenOffice.

But it is duplicate to bug 37754.

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

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


[Libreoffice-bugs] [Bug 61028] Problems with OOXML custGeom and arcTo command

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61028

--- Comment #11 from Regina Henschel  ---
Resaving in pptx has still an error. PP and LO show an empty slide for the
resaved file.

Tested in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 88051c660fc6759346a01bc559818d3e23f8f55c
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 117497] [META] Missing Colibre icons

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
Bug 117497 depends on bug 117481, which changed state.

Bug 117481 Summary: no images in buttons in Database pane in main database 
window
https://bugs.documentfoundation.org/show_bug.cgi?id=117481

   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 117481] no images in buttons in Database pane in main database window

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117481

andreas_k  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 117481] no images in buttons in Database pane in main database window

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117481

--- Comment #15 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "master":

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

tdf#117481 Breeze Add dbaccess icons for base sidebar

It will be available in 6.1.0.

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

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

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


[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg

2018-05-23 Thread andreas kainz
 icon-themes/breeze/links.txt  |8 
 icon-themes/breeze_dark/links.txt |8 
 icon-themes/breeze_svg/links.txt  |8 
 3 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 6fecbff9810ae9afc2de8c4d5e9e8a8a511d1f2d
Author: andreas kainz 
Date:   Wed May 23 23:24:10 2018 +0200

tdf#117481 Breeze Add dbaccess icons for base sidebar

Change-Id: I5174261484c64a6f223c4a2e197d0e042c3581e3
Reviewed-on: https://gerrit.libreoffice.org/54737
Reviewed-by: andreas_kainz 
Tested-by: andreas_kainz 

diff --git a/icon-themes/breeze/res/forms_32.png 
b/icon-themes/breeze/dbaccess/res/forms_32.png
similarity index 100%
rename from icon-themes/breeze/res/forms_32.png
rename to icon-themes/breeze/dbaccess/res/forms_32.png
diff --git a/icon-themes/breeze/res/queries_32.png 
b/icon-themes/breeze/dbaccess/res/queries_32.png
similarity index 100%
rename from icon-themes/breeze/res/queries_32.png
rename to icon-themes/breeze/dbaccess/res/queries_32.png
diff --git a/icon-themes/breeze/res/reports_32.png 
b/icon-themes/breeze/dbaccess/res/reports_32.png
similarity index 100%
rename from icon-themes/breeze/res/reports_32.png
rename to icon-themes/breeze/dbaccess/res/reports_32.png
diff --git a/icon-themes/breeze/res/tables_32.png 
b/icon-themes/breeze/dbaccess/res/tables_32.png
similarity index 100%
rename from icon-themes/breeze/res/tables_32.png
rename to icon-themes/breeze/dbaccess/res/tables_32.png
diff --git a/icon-themes/breeze/links.txt b/icon-themes/breeze/links.txt
index 3c961e2ac9a2..cb07729aa84d 100644
--- a/icon-themes/breeze/links.txt
+++ b/icon-themes/breeze/links.txt
@@ -912,7 +912,7 @@ dbaccess/res/exinfo.png cmd/sc_helpindex.png
 
 dbaccess/res/form_16.png cmd/sc_dbformedit.png
 dbaccess/res/forms_16.png cmd/sc_dbformedit.png
-dbaccess/res/forms_32.png res/forms_32.png
+res/forms_32.png dbaccess/res/forms_32.png
 
 dbaccess/res/lc036.png cmd/lc_dbnewreport.png
 dbaccess/res/lc037.png cmd/lc_delete.png
@@ -926,11 +926,11 @@ dbaccess/res/nu08.png cmd/sc_cancel.png
 dbaccess/res/one_left.png cmd/sc_prevrecord.png
 dbaccess/res/one_right.png cmd/sc_nextrecord.png
 dbaccess/res/jo01.png dbaccess/res/pkey.png
-dbaccess/res/queries_32.png res/queries_32.png
+res/queries_32.png dbaccess/res/queries_32.png
 
 dbaccess/res/report_16.png cmd/sc_executereport.png
 dbaccess/res/reports_16.png cmd/sc_executereport.png
-dbaccess/res/reports_32.png res/reports_32.png
+res/reports_32.png dbaccess/res/reports_32.png
 
 dbaccess/res/sc036.png cmd/sc_executereport.png
 dbaccess/res/sc037.png cmd/sc_delete.png
@@ -940,7 +940,7 @@ dbaccess/res/sc040.png cmd/sc_reload.png
 
 dbaccess/res/sortdown.png cmd/sc_sortascending.png
 dbaccess/res/sortup.png cmd/sc_sortdescending.png
-dbaccess/res/tables_32.png res/tables_32.png
+res/tables_32.png dbaccess/res/tables_32.png
 
 # desktop
 # ==
diff --git a/icon-themes/breeze_dark/res/forms_32.png 
b/icon-themes/breeze_dark/dbaccess/res/forms_32.png
similarity index 100%
rename from icon-themes/breeze_dark/res/forms_32.png
rename to icon-themes/breeze_dark/dbaccess/res/forms_32.png
diff --git a/icon-themes/breeze_dark/res/queries_32.png 
b/icon-themes/breeze_dark/dbaccess/res/queries_32.png
similarity index 100%
rename from icon-themes/breeze_dark/res/queries_32.png
rename to icon-themes/breeze_dark/dbaccess/res/queries_32.png
diff --git a/icon-themes/breeze_dark/res/reports_32.png 
b/icon-themes/breeze_dark/dbaccess/res/reports_32.png
similarity index 100%
rename from icon-themes/breeze_dark/res/reports_32.png
rename to icon-themes/breeze_dark/dbaccess/res/reports_32.png
diff --git a/icon-themes/breeze_dark/res/tables_32.png 
b/icon-themes/breeze_dark/dbaccess/res/tables_32.png
similarity index 100%
rename from icon-themes/breeze_dark/res/tables_32.png
rename to icon-themes/breeze_dark/dbaccess/res/tables_32.png
diff --git a/icon-themes/breeze_dark/links.txt 
b/icon-themes/breeze_dark/links.txt
index 3c961e2ac9a2..cb07729aa84d 100644
--- a/icon-themes/breeze_dark/links.txt
+++ b/icon-themes/breeze_dark/links.txt
@@ -912,7 +912,7 @@ dbaccess/res/exinfo.png cmd/sc_helpindex.png
 
 dbaccess/res/form_16.png cmd/sc_dbformedit.png
 dbaccess/res/forms_16.png cmd/sc_dbformedit.png
-dbaccess/res/forms_32.png res/forms_32.png
+res/forms_32.png dbaccess/res/forms_32.png
 
 dbaccess/res/lc036.png cmd/lc_dbnewreport.png
 dbaccess/res/lc037.png cmd/lc_delete.png
@@ -926,11 +926,11 @@ dbaccess/res/nu08.png cmd/sc_cancel.png
 dbaccess/res/one_left.png cmd/sc_prevrecord.png
 dbaccess/res/one_right.png cmd/sc_nextrecord.png
 dbaccess/res/jo01.png dbaccess/res/pkey.png
-dbaccess/res/queries_32.png res/queries_32.png
+res/queries_32.png dbaccess/res/queries_32.png
 
 dbaccess/res/report_16.png cmd/sc_executereport.png
 dbaccess/res/reports_16.png cmd/sc_executereport.png
-dbaccess/res/reports_32.png res/reports_32.png
+res/reports_32.png 

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

2018-05-23 Thread Armin Le Grand
 svx/source/tbxctrls/fontworkgallery.cxx |   12 
 1 file changed, 12 insertions(+)

New commits:
commit d541c4548fdc1835cf4fc020dbaa7ed7c2f734d0
Author: Armin Le Grand 
Date:   Wed May 23 18:14:58 2018 +0200

tdf#117629 Fix FontWork UNO API/SdrPage settings

Change-Id: Id4da3ac2ff9f8bba382512cfafbca323d1002137
Reviewed-on: https://gerrit.libreoffice.org/54722
Tested-by: Jenkins 
Reviewed-by: Armin Le Grand 

diff --git a/svx/source/tbxctrls/fontworkgallery.cxx 
b/svx/source/tbxctrls/fontworkgallery.cxx
index 06c0da159507..29003a619d64 100644
--- a/svx/source/tbxctrls/fontworkgallery.cxx
+++ b/svx/source/tbxctrls/fontworkgallery.cxx
@@ -216,6 +216,18 @@ void FontWorkGalleryDialog::insertSelectedFontwork()
 pPage->GetObj(0)->CloneSdrObject(
 bUseSpecialCalcMode ? *mpDestModel : 
mpSdrView->getSdrModelFromSdrView()));
 
+// tdf#117629
+// Since the 'old' ::CloneSdrObject also copies the 
SdrPage* the
+// SdrObject::getUnoShape() *will* create the wrong UNO 
API object
+// early. This IS one of the reasons I do change these 
things - this
+// error does not happen with my next change I am working 
on already
+// ARGH! For now, reset the SdrPage* to nullptr.
+// What sense does it have to copy the SdrPage* of the 
original SdrObject ?!?
+// : This also *might* be the hidden reason for the 
strange code at the
+// end of SdrObject::SetPage that tries to delete the 
SvxShape under some
+// circumstances...
+pNewObject->SetPage(nullptr);
+
 tools::Rectangle aObjRect( pNewObject->GetLogicRect() );
 tools::Rectangle aVisArea = 
pOutDev->PixelToLogic(tools::Rectangle(Point(0,0), 
pOutDev->GetOutputSizePixel()));
 Point aPagePos = aVisArea.Center();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117481] no images in buttons in Database pane in main database window

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117481

--- Comment #14 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "master":

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

tdf#117481 Elementary: Add dbaccess icons for base sidebar

It will be available in 6.1.0.

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

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

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


[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/elementary_svg

2018-05-23 Thread andreas kainz
 icon-themes/elementary/dbaccess/res/forms_32.png   |binary
 icon-themes/elementary/dbaccess/res/queries_32.png |binary
 icon-themes/elementary/dbaccess/res/reports_32.png |binary
 icon-themes/elementary/dbaccess/res/tables_32.png  |binary
 icon-themes/elementary/links.txt   |8 
 icon-themes/elementary_svg/dbaccess/res/forms_32.svg   |1 +
 icon-themes/elementary_svg/dbaccess/res/queries_32.svg |1 +
 icon-themes/elementary_svg/dbaccess/res/reports_32.svg |1 +
 icon-themes/elementary_svg/dbaccess/res/tables_32.svg  |1 +
 icon-themes/elementary_svg/links.txt   |   11 +--
 10 files changed, 13 insertions(+), 10 deletions(-)

New commits:
commit 748215da08dba56125e3a671381d1e872bd1ecc7
Author: andreas kainz 
Date:   Wed May 23 23:17:27 2018 +0200

tdf#117481 Elementary: Add dbaccess icons for base sidebar

Change-Id: Ia4e2b0bb7b31671a50acf6659ea3ca83c3dfcb39
Reviewed-on: https://gerrit.libreoffice.org/54736
Reviewed-by: andreas_kainz 
Tested-by: andreas_kainz 

diff --git a/icon-themes/elementary/dbaccess/res/forms_32.png 
b/icon-themes/elementary/dbaccess/res/forms_32.png
new file mode 100644
index ..e80f64992f78
Binary files /dev/null and b/icon-themes/elementary/dbaccess/res/forms_32.png 
differ
diff --git a/icon-themes/elementary/dbaccess/res/queries_32.png 
b/icon-themes/elementary/dbaccess/res/queries_32.png
new file mode 100644
index ..0d3371a37506
Binary files /dev/null and b/icon-themes/elementary/dbaccess/res/queries_32.png 
differ
diff --git a/icon-themes/elementary/dbaccess/res/reports_32.png 
b/icon-themes/elementary/dbaccess/res/reports_32.png
new file mode 100644
index ..9013ebb4ad22
Binary files /dev/null and b/icon-themes/elementary/dbaccess/res/reports_32.png 
differ
diff --git a/icon-themes/elementary/dbaccess/res/tables_32.png 
b/icon-themes/elementary/dbaccess/res/tables_32.png
new file mode 100644
index ..6d4ac33381e1
Binary files /dev/null and b/icon-themes/elementary/dbaccess/res/tables_32.png 
differ
diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt
index e05164dfbead..b8a1c9280820 100644
--- a/icon-themes/elementary/links.txt
+++ b/icon-themes/elementary/links.txt
@@ -904,7 +904,7 @@ dbaccess/res/exinfo.png cmd/sc_helpindex.png
 
 dbaccess/res/form_16.png cmd/sc_dbformedit.png
 dbaccess/res/forms_16.png cmd/sc_dbformedit.png
-dbaccess/res/forms_32.png res/forms_32.png
+res/forms_32.png dbaccess/res/forms_32.png
 
 dbaccess/res/lc036.png cmd/lc_dbnewreport.png
 dbaccess/res/lc037.png cmd/lc_delete.png
@@ -918,11 +918,11 @@ dbaccess/res/nu08.png cmd/sc_cancel.png
 dbaccess/res/one_left.png cmd/sc_prevrecord.png
 dbaccess/res/one_right.png cmd/sc_nextrecord.png
 dbaccess/res/jo01.png dbaccess/res/pkey.png
-dbaccess/res/queries_32.png res/queries_32.png
+res/queries_32.png dbaccess/res/queries_32.png
 
 dbaccess/res/report_16.png cmd/sc_executereport.png
 dbaccess/res/reports_16.png cmd/sc_executereport.png
-dbaccess/res/reports_32.png res/reports_32.png
+res/reports_32.png dbaccess/res/reports_32.png
 
 dbaccess/res/sc036.png cmd/sc_executereport.png
 dbaccess/res/sc037.png cmd/sc_delete.png
@@ -932,7 +932,7 @@ dbaccess/res/sc040.png cmd/sc_reload.png
 
 dbaccess/res/sortdown.png cmd/sc_sortascending.png
 dbaccess/res/sortup.png cmd/sc_sortdescending.png
-dbaccess/res/tables_32.png res/tables_32.png
+res/tables_32.png dbaccess/res/tables_32.png
 
 # desktop
 # ==
diff --git a/icon-themes/elementary_svg/dbaccess/res/forms_32.svg 
b/icon-themes/elementary_svg/dbaccess/res/forms_32.svg
new file mode 100644
index ..9c804e4735a7
--- /dev/null
+++ b/icon-themes/elementary_svg/dbaccess/res/forms_32.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/dbaccess/res/queries_32.svg 
b/icon-themes/elementary_svg/dbaccess/res/queries_32.svg
new file mode 100644
index ..a791f7ce916b
--- /dev/null
+++ b/icon-themes/elementary_svg/dbaccess/res/queries_32.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/dbaccess/res/reports_32.svg 
b/icon-themes/elementary_svg/dbaccess/res/reports_32.svg
new file mode 100644
index ..5913a8d94084
--- /dev/null
+++ b/icon-themes/elementary_svg/dbaccess/res/reports_32.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/dbaccess/res/tables_32.svg 
b/icon-themes/elementary_svg/dbaccess/res/tables_32.svg
new file mode 100644
index ..8c9af4c70731
--- /dev/null
+++ b/icon-themes/elementary_svg/dbaccess/res/tables_32.svg
@@ 

[Libreoffice-bugs] [Bug 55793] Problem rendering multiple Asian fonts in Impress

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55793

--- Comment #16 from Khaled Hosny  ---
Can someone please clarify what is the exact bug here? Inputting characters
results in non-nonsensical string, or that the string is correct but the
rendering is bad?

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


[Libreoffice-bugs] [Bug 98565] FILEOPEN draw:transform="scale()" acts wrongly on line, polyline and path

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98565

--- Comment #10 from Regina Henschel  ---
The error still exists in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 88051c660fc6759346a01bc559818d3e23f8f55c
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 99469] [DE] BlockList.xml in acor_de-DE.dat has obsolete entries

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99469

--- Comment #5 from Regina Henschel  ---
The error still exists in Version: 6.0.4.2 (x64)
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 98584] FILEOPEN draw:transform="skewY()" is totally wrong

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98584

--- Comment #8 from Regina Henschel  ---
The error still exists in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 88051c660fc6759346a01bc559818d3e23f8f55c
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 98583] FILEOPEN draw:transform="skewX()" is wrongly handled

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98583

--- Comment #8 from Regina Henschel  ---
The error still exists in Version: 6.1.0.0.alpha1+ (x64)
Build ID: 88051c660fc6759346a01bc559818d3e23f8f55c
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 117732] Firebird: Migration: Time values are being changed during migration process ( data type TIME and DATETIME)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117732

--- Comment #7 from Julien Nabet  ---
Forget difference part in my previous comment, I checked again, it stays
360 until the end.

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


[Libreoffice-bugs] [Bug 99102] rendering of linejoin miter differs between edit mode and presentation mode if antialiasing is on

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99102

--- Comment #11 from Regina Henschel  ---
The error still exists in Version: 6.0.4.2 (x64)
Build ID: 9b0d9b32d5dcda91d2f1a96dc04c645c450872bf
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); Calc: CL

and

Version: 6.1.0.0.alpha1+ (x64)
Build ID: 88051c660fc6759346a01bc559818d3e23f8f55c
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); 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 117762] Header Text formatting Outline and Shadow is not saving

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117762

raal  changed:

   What|Removed |Added

   Keywords||filter:xls
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
Version|5.3.2.2 release |4.1.0.4 release
Summary|Header Text formatting is   |Header Text formatting
   |not saving  |Outline and Shadow is not
   ||saving
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from raal  ---
Confirm.Version: 6.1.0.0.alpha1+
Build ID: 137c38a1ba01c51c421f695e1558d2c1499c6627
CPU threads: 4; OS: Linux 4.4; UI render: default; VCL: gtk3; 
Locale: cs-CZ (cs_CZ.UTF-8); Calc: group
and Version 4.1.0.0.alpha0+

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sysui/desktop

2018-05-23 Thread Rene Engelhard
 sysui/desktop/apparmor/program.soffice.bin |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ed985043a18dca99acca4861ebeb1e7010bba6fe
Author: Rene Engelhard 
Date:   Wed May 23 21:12:30 2018 +0200

deb#899380 apparmor: fix gpg encryption hang trying to lock random_seed

Change-Id: Ib9fb7652922dcc8364567953d17d7cae8ad170a7
Reviewed-on: https://gerrit.libreoffice.org/54726
Reviewed-by: Rene Engelhard 
Tested-by: Rene Engelhard 
(cherry picked from commit 8615efe611abe8654e643e1ccbc0dc8f52d2e0b0)
Reviewed-on: https://gerrit.libreoffice.org/54731

diff --git a/sysui/desktop/apparmor/program.soffice.bin 
b/sysui/desktop/apparmor/program.soffice.bin
index 1f3ac9ae0971..24ff2fa854ac 100644
--- a/sysui/desktop/apparmor/program.soffice.bin
+++ b/sysui/desktop/apparmor/program.soffice.bin
@@ -190,5 +190,6 @@ profile libreoffice-soffice INSTDIR-program/soffice.bin {
/usr/bin/gpgsm rm,
 
 owner @{HOME}/.gnupg/* r,
+owner @{HOME}/.gnupg/random_seed rk,
   }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-05-23 Thread Stephan Bergmann
 xmlsecurity/source/xmlsec/nss/nssinitializer.cxx|7 ---
 xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx |8 
 2 files changed, 15 deletions(-)

New commits:
commit 7d35379465058f2a4f944ad622b628bd1ed38ee2
Author: Stephan Bergmann 
Date:   Wed May 23 17:18:34 2018 +0200

Remove leftover "#undef DEBUG"

...which might have had a purpose in the past, but look unused today.  
(DEBUG is
defined in solenv/gbuild/gbuild.mk iff dbglevel >= 2, and `make
Library_xsec_xmlsec dbglevel=2` doesn't run into any problems for me with 
the
undefs removed.)

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

diff --git a/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx 
b/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx
index 2a9aaab057bb..c402e2833604 100644
--- a/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx
+++ b/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx
@@ -17,13 +17,6 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-
-/*
- * and turn off the additional virtual methods which are part of some 
interfaces when compiled
- * with debug
- */
-#undef DEBUG
-
 #include 
 #include 
 #include 
diff --git a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx 
b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx
index 58fa45acf4b6..45b85cb97705 100644
--- a/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx
+++ b/xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl.cxx
@@ -17,14 +17,6 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-/*
- * and turn off the additional virtual methods which are part of some 
interfaces when compiled
- * with debug
- */
-#ifdef DEBUG
-#undef DEBUG
-#endif
-
 #include 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: cppunit 1.14.0 doesn't ship cppunit.m4

2018-05-23 Thread Andor Molnar
Thanks Rene, will try that.

Andor



On Wed, May 23, 2018 at 8:26 AM, Rene Engelhard  wrote:

> Hi,
>
> On Wed, May 23, 2018 at 07:00:30AM +0200, Andor Molnar wrote:
> >Is there a better way to configure libcppunit that we should migrate
> to?
>
> pkg-config.
>
> Regards,
>
> Rene
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sysui/desktop

2018-05-23 Thread Rene Engelhard
 sysui/desktop/apparmor/program.soffice.bin |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 8615efe611abe8654e643e1ccbc0dc8f52d2e0b0
Author: Rene Engelhard 
Date:   Wed May 23 21:12:30 2018 +0200

deb#899380 apparmor: fix gpg encryption hang trying to lock random_seed

Change-Id: Ib9fb7652922dcc8364567953d17d7cae8ad170a7
Reviewed-on: https://gerrit.libreoffice.org/54726
Reviewed-by: Rene Engelhard 
Tested-by: Rene Engelhard 

diff --git a/sysui/desktop/apparmor/program.soffice.bin 
b/sysui/desktop/apparmor/program.soffice.bin
index fb4c3f013d10..8ce7cbc171c1 100644
--- a/sysui/desktop/apparmor/program.soffice.bin
+++ b/sysui/desktop/apparmor/program.soffice.bin
@@ -191,6 +191,7 @@ profile libreoffice-soffice INSTDIR-program/soffice.bin {
/usr/bin/gpgsm rm,
 
 owner @{HOME}/.gnupg/* r,
+owner @{HOME}/.gnupg/random_seed rk,
   }
 
   # probably should become a subprofile like gpg above, but then it doesn't
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99584] Optimal-width columns too small to print (data appears as '#' chars)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99584

--- Comment #9 from Jim Avera  ---
The bug is still there in master 
Version: 6.1.0.0.alpha1+
Build ID: 8fae8a6cd73b7262c3739bd4acc5c72b54934ff1
CPU threads: 12; OS: Linux 4.15; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-05-22_22:32:05
Locale: en-US (en_US.UTF-8); Calc: group

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3-desktop' - download.lst

2018-05-23 Thread Andras Timar
 download.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 433d35497c921f84d88847ee17681d4a9353ae70
Author: Andras Timar 
Date:   Wed May 23 21:55:24 2018 +0200

Revert "curl: fix MD5SUM"

This reverts commit 2cbf3e5bd7bf187a65408bf9874c0eb7d749feab.

diff --git a/download.lst b/download.lst
index 624cd147ad11..e7f6114b9891 100644
--- a/download.lst
+++ b/download.lst
@@ -24,7 +24,7 @@ export COLLADA2GLTF_TARBALL := 
4b87018f7fff1d054939d19920b751a0-collada2gltf-mas
 export CPPUNIT_MD5SUM := d1c6bdd5a76c66d2c38331e2d287bc01
 export CPPUNIT_TARBALL := cppunit-1.13.2.tar.gz
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_MD5SUM := 55ddfe7044cf0f3a257edb0ddeb20fb5
+export CURL_MD5SUM := 48eb126345d3b0f0a71a486b7f5d0307
 export CURL_TARBALL := curl-7.60.0.tar.gz
 export DBGHELP_DLL := 13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll
 export EBOOK_MD5SUM := 6b48eda57914e6343efebc9381027b78
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 117546] Crash when closing Calc

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117546

Telesto  changed:

   What|Removed |Added

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

--- Comment #4 from Telesto  ---


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

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


[Libreoffice-bugs] [Bug 117545] Crash report when launching Libo

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117545

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Telesto  ---
Bisected to
author  Henry Castro 2017-08-12 19:46:27 -0400
committer   Henry Castro 2017-12-08 13:06:57
+0100
commit  1b7a8277aa3e9f73ccdf15e933a1ee3b42849a44 (patch)
tree64474c3499c36d31f0ea13d348245a6bea6abbe6
parent  630be5751029fc8ebf5a8784fb1c07894a0e1600 (diff)
sc lok: 1 view has 1 clipboard to transfer data
In tiled rendering case, each view copy and paste
the contents of the clipboard associated with the view

So dupe of bug 117228

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

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


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

2018-05-23 Thread Caolán McNamara
 vcl/unx/gtk/a11y/atkcomponent.cxx |   67 ++
 vcl/unx/gtk/a11y/atkwrapper.cxx   |2 -
 vcl/unx/gtk/a11y/atkwrapper.hxx   |1 
 vcl/unx/gtk3/gtk3gtkinst.cxx  |1 
 4 files changed, 57 insertions(+), 14 deletions(-)

New commits:
commit 30d43a7ebac16848533ecd7e834201d566388a19
Author: Caolán McNamara 
Date:   Wed May 23 13:59:43 2018 +0100

forward more a11y stuff for native drawing area widget

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

diff --git a/vcl/unx/gtk/a11y/atkcomponent.cxx 
b/vcl/unx/gtk/a11y/atkcomponent.cxx
index c062e12e2415..7d8a4bdc5bba 100644
--- a/vcl/unx/gtk/a11y/atkcomponent.cxx
+++ b/vcl/unx/gtk/a11y/atkcomponent.cxx
@@ -18,23 +18,33 @@
  */
 
 #include "atkwrapper.hxx"
-
 #include 
+#include 
 
 using namespace ::com::sun::star;
 
+AtkObjectWrapper* getObjectWrapper(AtkComponent *pComponent)
+{
+AtkObjectWrapper *pWrap = nullptr;
+if (ATK_IS_OBJECT_WRAPPER(pComponent))
+pWrap = ATK_OBJECT_WRAPPER(pComponent);
+else if (GTK_IS_DRAWING_AREA(pComponent)) //when using a GtkDrawingArea as 
a custom widget in welded gtk3
+{
+GtkWidget* pDrawingArea = GTK_WIDGET(pComponent);
+AtkObject* pAtkObject = gtk_widget_get_accessible(pDrawingArea);
+pWrap = ATK_IS_OBJECT_WRAPPER(pAtkObject) ? 
ATK_OBJECT_WRAPPER(pAtkObject) : nullptr;
+}
+return pWrap;
+}
+
 /// @throws uno::RuntimeException
 static css::uno::Reference
-getComponent( AtkComponent *pComponent )
+getComponent(AtkObjectWrapper *pWrap)
 {
-AtkObjectWrapper *pWrap = ATK_OBJECT_WRAPPER( pComponent );
-if( pWrap )
+if (pWrap)
 {
-if( !pWrap->mpComponent.is() )
-{
+if (!pWrap->mpComponent.is())
 pWrap->mpComponent.set(pWrap->mpContext, css::uno::UNO_QUERY);
-}
-
 return pWrap->mpComponent;
 }
 
@@ -60,10 +70,15 @@ extern "C" {
 static gboolean
 component_wrapper_grab_focus (AtkComponent *component)
 {
+AtkObjectWrapper* obj = getObjectWrapper(component);
+//if we're a native GtkDrawingArea with custom a11y, use the default 
toolkit a11y
+if (obj && obj->mpOrig)
+return atk_component_grab_focus(ATK_COMPONENT(obj->mpOrig));
+
 try
 {
 css::uno::Reference 
pComponent
-= getComponent( component );
+= getComponent(obj);
 if( pComponent.is() )
 {
 pComponent->grabFocus();
@@ -86,10 +101,15 @@ component_wrapper_contains (AtkComponent *component,
 gint  y,
 AtkCoordType  coord_type)
 {
+AtkObjectWrapper* obj = getObjectWrapper(component);
+//if we're a native GtkDrawingArea with custom a11y, use the default 
toolkit a11y
+if (obj && obj->mpOrig)
+return atk_component_contains(ATK_COMPONENT(obj->mpOrig), x, y, 
coord_type);
+
 try
 {
 css::uno::Reference 
pComponent
-= getComponent( component );
+= getComponent(obj);
 if( pComponent.is() )
 return pComponent->containsPoint( translatePoint( pComponent, x, 
y, coord_type ) );
 }
@@ -109,10 +129,15 @@ component_wrapper_ref_accessible_at_point (AtkComponent 
*component,
gint  y,
AtkCoordType  coord_type)
 {
+AtkObjectWrapper* obj = getObjectWrapper(component);
+//if we're a native GtkDrawingArea with custom a11y, use the default 
toolkit a11y
+if (obj && obj->mpOrig)
+return 
atk_component_ref_accessible_at_point(ATK_COMPONENT(obj->mpOrig), x, y, 
coord_type);
+
 try
 {
 css::uno::Reference 
pComponent
-= getComponent( component );
+= getComponent(obj);
 
 if( pComponent.is() )
 {
@@ -138,10 +163,18 @@ component_wrapper_get_position (AtkComponent   *component,
 gint   *y,
 AtkCoordType   coord_type)
 {
+AtkObjectWrapper* obj = getObjectWrapper(component);
+//if we're a native GtkDrawingArea with custom a11y, use the default 
toolkit a11y
+if (obj && obj->mpOrig)
+{
+atk_component_get_extents(ATK_COMPONENT(obj->mpOrig), x, y, nullptr, 
nullptr, coord_type);
+return;
+}
+
 try
 {
 css::uno::Reference 
pComponent
-= getComponent( component );
+= getComponent(obj);
 if( pComponent.is() )
 {
 awt::Point aPos;
@@ -168,10 +201,18 @@ component_wrapper_get_size (AtkComponent   *component,
 gint   *width,
 gint   *height)
 {
+

Re: *** Spam *** Re: [freedesktop/libreoffice-cppunit] Feature/cmake (#2)

2018-05-23 Thread Rene Engelhard
On Wed, May 23, 2018 at 06:32:46PM +0200, claus.klein@googlemail.com wrote:
>[...] and even much more simpler to use!

No, it isn't.

Regards,

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


[Libreoffice-bugs] [Bug 108532] EDITING: It takes a while before the document gets responsive after saving

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108532

Buovjaga  changed:

   What|Removed |Added

   Keywords|bibisectRequest |notBibisectable

--- Comment #2 from Buovjaga  ---
Sadly not bibisectable because of the crashiness. Tried repos 4.4, 5.0, 5.1,
5.2 on Windows.

Still confirming the slowness.

Version: 6.1.0.0.alpha1+ (x64)
Build ID: 8fae8a6cd73b7262c3739bd4acc5c72b54934ff1
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-05-22_22:52:50
Locale: fi-FI (fi_FI); Calc: group

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


[Libreoffice-bugs] [Bug 78929] Macros: Calc setFormula() does not appear to be working

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78929

--- Comment #14 from Gülşah Köse  ---
There is a solution here for this. But still has buggy behavior. Although my
seperator is , in my settings ; seperator works for me.

https://ask.libreoffice.org/en/question/64864/result-of-setformula-not-recognised-solved/

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


[Libreoffice-bugs] [Bug 117729] l10n: add Frisian [fy] UI translation to builds

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117729

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |cl...@documentfoundation.or
   |desktop.org |g

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3-desktop' - download.lst

2018-05-23 Thread Andras Timar
 download.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2cbf3e5bd7bf187a65408bf9874c0eb7d749feab
Author: Andras Timar 
Date:   Wed May 23 21:23:30 2018 +0200

curl: fix MD5SUM

Change-Id: Ib903769c07985b2c56d351c34ea40fc2d76c4082

diff --git a/download.lst b/download.lst
index e7f6114b9891..624cd147ad11 100644
--- a/download.lst
+++ b/download.lst
@@ -24,7 +24,7 @@ export COLLADA2GLTF_TARBALL := 
4b87018f7fff1d054939d19920b751a0-collada2gltf-mas
 export CPPUNIT_MD5SUM := d1c6bdd5a76c66d2c38331e2d287bc01
 export CPPUNIT_TARBALL := cppunit-1.13.2.tar.gz
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_MD5SUM := 48eb126345d3b0f0a71a486b7f5d0307
+export CURL_MD5SUM := 55ddfe7044cf0f3a257edb0ddeb20fb5
 export CURL_TARBALL := curl-7.60.0.tar.gz
 export DBGHELP_DLL := 13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll
 export EBOOK_MD5SUM := 6b48eda57914e6343efebc9381027b78
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90656] Metadata in Word 6 imported with wrong encoding

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90656

--- Comment #8 from Karl Ove Hufthammer  ---
I can confirm that his bug is still present in:

Versjon: 6.0.4.2
Build ID: 00m0(Build:2)
CPU-trådar:4; OS:Linux 4.16; UI-utformar:standard; VCL: gtk3; 
Lokale: nn-NO (nn_NO.UTF-8); 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 90658] FILEOPEN Date field in Word 6.0 document have wrong formatting

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90658

--- Comment #8 from Karl Ove Hufthammer  ---
I can confirm that this bug is still valid in:

Versjon: 6.0.4.2
Build ID: 00m0(Build:2)
CPU-trådar:4; OS:Linux 4.16; UI-utformar:standard; VCL: gtk3; 
Lokale: nn-NO (nn_NO.UTF-8); 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 117732] Firebird: Migration: Time values are being changed during migration process ( data type TIME and DATETIME)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117732

Julien Nabet  changed:

   What|Removed |Added

 CC||btom...@gmail.com,
   ||lio...@mamane.lu,
   ||serval2...@yahoo.fr

--- Comment #6 from Julien Nabet  ---
Lionel/Tamas: could you give a look (and provide your thoughts:-)) to my
previous comment about ms retrieved on straightforward test?

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


[Libreoffice-bugs] [Bug 117732] Firebird: Migration: Time values are being changed during migration process ( data type TIME and DATETIME)

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117732

--- Comment #5 from Julien Nabet  ---
Created attachment 142257
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142257=edit
test each hour, from 00:00 (12AM) to 24:00 (12PM) included

I created a brand new hsqldb file with 6.0.4.1 LO Debian package.
I created a first table with each hour, from 00:00 to 24:00 with AM/PM format.

Then, added trace with this patch:
diff --git a/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
b/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
index 62c37525367d..225f5b235bf5 100644
--- a/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
+++ b/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
@@ -16,7 +16,7 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-
+#include 
 #include "rowinputbinary.hxx"
 #include 
 #include 
@@ -333,6 +333,7 @@ std::vector HsqlRowInputStream::readOneRow(const
ColumnTypeVector& nColType
 {
 sal_Int64 value = 0;
 m_pStream->ReadInt64(value);
+std::cerr << "value = " << value << "\n";
 css::util::Time time((value % 1000) * 100, value / 1000,
0, 0, true);
 aData.push_back(makeAny(time));
 }

Here are the weird results:
-360
0
360
720
1080
1440
1800
2160
2520
2880
3240
3600
3960
4320
4680
5040
5400
5760
6120
6480
6840
7200
7560
7920
-360

1) it begins to -360
2) At the end, the difference isn't 360 between each line

I think we must understand these values to get right hours

I tried some values on table 2 since I created it by letting the default format
on 24H.

(still on France with French localization and UTC+2)

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


[Libreoffice-bugs] [Bug 117766] Macros Digital Signatures menu option missing in main window

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117766

--- Comment #2 from Drew Jensen  ---
I see it isn't available in 6.0 either and I didn't go backwards because I
assume it isn't there.

So, change this to a enhancement if that fits better. 

I would make the case that this feature is useful for ODB files.

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


[Libreoffice-bugs] [Bug 90340] Display spinbutton defaulting

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90340

--- Comment #8 from Thehache  ---
Hello,

Bug still present with Libo 5.4.6.2 (x64) Win 10 Pro

Best regards

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


[Libreoffice-bugs] [Bug 107810] [META] OLE/Embedded object bugs and enhancements

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107810
Bug 107810 depends on bug 51119, which changed state.

Bug 51119 Summary: EDITING: OLE objects from writer are impossible to manage
https://bugs.documentfoundation.org/show_bug.cgi?id=51119

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51119] EDITING: OLE objects from writer are impossible to manage

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51119

Buovjaga  changed:

   What|Removed |Added

   Keywords|bibisectRequest |preBibisect
 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
Version|3.5.4 release   |3.4.0 release
 Resolution|--- |WORKSFORME

--- Comment #19 from Buovjaga  ---
(In reply to Xisco Faulí from comment #18)
> Adding keyword 'bibisectRequest' to see whether this regression is already
> present in the oldest build of bibisect-43all repository or not.
> In case it's already present, change 'bibisectRequest' to 'preBibisect'.
> Otherwise, change 'bibisectRequest' to 'bibisected' and add a comment with
> the output from 'git bisect log'

Kitaets said this was already in 3.4, so changing to preBibisect

However, the problems described are gone. The thing described in point 5
already has its own report (something about making the OLE object frame look
better).

Arch Linux 64-bit
Version: 6.1.0.0.alpha1+
Build ID: 5956828c88501ef1366e60010b05053a8e1e642e
CPU threads: 8; OS: Linux 4.16; UI render: default; VCL: kde4; 
Locale: fi-FI (fi_FI.UTF-8); Calc: group
Built on May 23rd 2018

Version: 6.1.0.0.alpha1+ (x64)
Build ID: 8fae8a6cd73b7262c3739bd4acc5c72b54934ff1
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-05-22_22:52:50
Locale: fi-FI (fi_FI); Calc: group

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


[Libreoffice-bugs] [Bug 117766] Macros Digital Signatures menu option missing in main window

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117766

--- Comment #1 from Drew Jensen  ---
Created attachment 142256
  --> https://bugs.documentfoundation.org/attachment.cgi?id=142256=edit
test odb with macro library

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


[Libreoffice-bugs] [Bug 117766] New: Macros Digital Signatures menu option missing in main window

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117766

Bug ID: 117766
   Summary: Macros Digital Signatures menu option missing in main
window
   Product: LibreOffice
   Version: 6.1.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: drewjensen.in...@gmail.com

Description:
The menu item Tools - Macros - Digital Signature is missing from the main Base
window, not allowing anyway to sign an embedded macro library.

Steps to Reproduce:
1. download and open the attached odb file (includes basic library)
2. select menu item Tools - Macros


Actual Results:  
 - Digital Signature option is not available.

Expected Results:
 - Digital Signature is available, disabled if no embedded library in file,
enabled when this test file, library present, is open.


Reproducible: Always


User Profile Reset: No



Additional Info:
test system, Ubuntu 18.04 64bit, build:
Version: 6.1.0.0.alpha1+
Build ID: 6e7e4d9f02f286ccb817cb2c1f54a951dcebffad
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-05-21_01:55:12
Locale: en-US (en_US.UTF-8); Calc: group


User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Ubuntu Chromium/66.0.3359.139 Chrome/66.0.3359.139 Safari/537.36

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


[Libreoffice-bugs] [Bug 108000] FILEOPEN DOC: File is opening very slow

2018-05-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108000

Buovjaga  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||jl...@mail.com,
   ||todven...@suomi24.fi

--- Comment #7 from Buovjaga  ---
Bisected to
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0d127baed75929e744d5b6249f510012cfbc0e88

commit  0d127baed75929e744d5b6249f510012cfbc0e88 (patch)
tree428628b43ebaa4fdb40e6077aac0964ae9e195b4
parent  57997db73725583a84dbac36bcc9c1b2829948f9 (diff)
tdf#91083 - .doc: emulate table keep-with-next paragraph
connect table with the following paragraph.  Move forward to a new page
together with the following paragraph if necessary.

Most of the added code allows the table to split if
all of the kept items do not fit on one page - allowing
the emulated table to match the layout of kept tables.

The only difference with .doc occurs when the table itself is larger
than one page.  In that case it ALWAYS starts a new page.  Although
it does not match .odt, it DOES match how MSWord handles that .doc.

Change-Id: Ic6f495c0dc5cd4e9f8029a8cec9e31b4fab4b20f
Reviewed-on: https://gerrit.libreoffice.org/20233

Same commit is blamed for bug 114908

Adding Justin to CC

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