[Libreoffice-bugs] [Bug 107683] FILESAVE: DOCX - Heading styles incorrectly exported with numbering properties tag

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107683

--- Comment #4 from Justin L  ---
See bug 76817 and https://gerrit.libreoffice.org/47828. Not exactly what this
bug report is requesting, but similar. It prevents printing numId/iLvl for
Outlines in document.xml, while this report is about styles.xml.

Heading X might not be the best style to use for testing, since it is handled
as a special case in .docx import. It uses the special, built-in Outline list
style (aka Chapter Numbering). So, actually, in the ODT, Heading 1 IS turning
on numbering - it just happens to be using display character NONE, but
numbering itself is enabled.  (Heading 1 properties - Numbering Style = Outline
Numbering). So there SHOULD be a numId and ilvl associated with Heading 1.

Roundtripping with Word 2003, I still see numPr with ilvl and numId. OutlineLvl
doesn't contain any connection to the numId, and documentation doesn't make any
link between ilvl and OutlineLvl.

As far as I can see, LO is handling the styles.xml part OK.

-- 
You are receiving this mail because:
You 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: emfio/source include/tools svx/source tools/inc tools/source

2018-01-12 Thread Noel Grandin
 emfio/source/reader/emfreader.cxx |2 
 emfio/source/reader/wmfreader.cxx |2 
 include/tools/poly.hxx|6 
 svx/source/dialog/contwnd.cxx |2 
 tools/inc/poly.h  |   38 ++--
 tools/source/generic/poly2.cxx|  311 +++---
 6 files changed, 90 insertions(+), 271 deletions(-)

New commits:
commit d7d9edb27e0e512fac6b5618bfd369cafc6edc1e
Author: Noel Grandin 
Date:   Thu Jan 11 16:01:44 2018 +0200

loplugin:useuniqueptr in PolyPolygon

Also
- convert to o3tl::cow_wrapper
- drop the second param to the constructor and just
  let vector use it's own resize logic
- bump MAX_POLYGONS from 0x3FF0 to 0x so that the
  ios2met filter can load it's files properly.

Change-Id: I9db19e4f7b4f946e801ea07c31d2d0ded7837a0e
Reviewed-on: https://gerrit.libreoffice.org/47789
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/emfio/source/reader/emfreader.cxx 
b/emfio/source/reader/emfreader.cxx
index ea557ea88663..8e9b6b5d12f1 100644
--- a/emfio/source/reader/emfreader.cxx
+++ b/emfio/source/reader/emfreader.cxx
@@ -595,7 +595,7 @@ namespace emfio
 if ( mpInputStream->good() && ( nGesPoints * (sizeof(T)+sizeof(T)) ) 
<= ( nEndPos - mpInputStream->Tell() ) )
 {
 // Get polygon points
-tools::PolyPolygon aPolyPoly(nPoly, nPoly);
+tools::PolyPolygon aPolyPoly(nPoly);
 for (sal_uInt32 i = 0; i < nPoly && mpInputStream->good(); ++i)
 {
 const sal_uInt16 nPointCount(aPoints[i]);
diff --git a/emfio/source/reader/wmfreader.cxx 
b/emfio/source/reader/wmfreader.cxx
index e20576c0e9af..21f0bd21bc95 100644
--- a/emfio/source/reader/wmfreader.cxx
+++ b/emfio/source/reader/wmfreader.cxx
@@ -393,7 +393,7 @@ namespace emfio
 // Number of points of each polygon. Determine total 
number of points
 std::unique_ptr xPolygonPointCounts(new 
sal_uInt16[nPolyCount]);
 sal_uInt16* pnPoints = xPolygonPointCounts.get();
-tools::PolyPolygon aPolyPoly(nPolyCount, nPolyCount);
+tools::PolyPolygon aPolyPoly(nPolyCount);
 sal_uInt16 nPoints = 0;
 for (sal_uInt16 a = 0; a < nPolyCount && 
mpInputStream->good(); ++a)
 {
diff --git a/include/tools/poly.hxx b/include/tools/poly.hxx
index a1351aa299a2..1a0926ecfff3 100644
--- a/include/tools/poly.hxx
+++ b/include/tools/poly.hxx
@@ -60,7 +60,7 @@ enum class PolyFlags : sal_uInt8
 
 class SvStream;
 class ImplPolygon;
-class ImplPolyPolygon;
+struct ImplPolyPolygon;
 namespace tools { class PolyPolygon; }
 
 namespace basegfx
@@ -189,7 +189,7 @@ public:
 class SAL_WARN_UNUSED TOOLS_DLLPUBLIC PolyPolygon
 {
 private:
-ImplPolyPolygon*mpImplPolyPolygon;
+o3tl::cow_wrapper  mpImplPolyPolygon;
 
 enum class PolyClipOp {
 INTERSECT,
@@ -198,7 +198,7 @@ private:
 TOOLS_DLLPRIVATE void  ImplDoOperation( const tools::PolyPolygon& 
rPolyPoly, tools::PolyPolygon& rResult, PolyClipOp nOperation ) const;
 
 public:
-PolyPolygon( sal_uInt16 nInitSize = 16, sal_uInt16 
nResize = 16 );
+PolyPolygon( sal_uInt16 nInitSize = 16 );
 PolyPolygon( const tools::Polygon& rPoly );
 PolyPolygon( const tools::PolyPolygon& rPolyPoly );
 ~PolyPolygon();
diff --git a/svx/source/dialog/contwnd.cxx b/svx/source/dialog/contwnd.cxx
index 9ae5d524a1fb..bcaff23e30e0 100644
--- a/svx/source/dialog/contwnd.cxx
+++ b/svx/source/dialog/contwnd.cxx
@@ -235,7 +235,7 @@ void ContourWindow::Paint(vcl::RenderContext& 
rRenderContext, const tools::Recta
 
 if (aWorkRect.Left() != aWorkRect.Right() && aWorkRect.Top() != 
aWorkRect.Bottom())
 {
-tools::PolyPolygon _aPolyPoly(2, 2);
+tools::PolyPolygon _aPolyPoly(2);
 rTarget.Push(PushFlags::FILLCOLOR);
 _aPolyPoly.Insert(tools::Rectangle(Point(), GetGraphicSize()));
 _aPolyPoly.Insert(aWorkRect);
diff --git a/tools/inc/poly.h b/tools/inc/poly.h
index e59123f06473..88da80ca1615 100644
--- a/tools/inc/poly.h
+++ b/tools/inc/poly.h
@@ -53,27 +53,37 @@ public:
 boolImplSplit( sal_uInt16 nPos, sal_uInt16 nSpace, ImplPolygon 
const * pInitPoly = nullptr );
 };
 
-#define MAX_POLYGONS((sal_uInt16)0x3FF0)
+#define MAX_POLYGONSSAL_MAX_UINT16
 
 namespace tools {
 class Polygon;
 }
 
-class SAL_WARN_UNUSED ImplPolyPolygon
+struct ImplPolyPolygon
 {
-public:
-tools::Polygon** mpPolyAry;
-sal_uInt32  mnRefCount;
-sal_uInt16  mnCount;
-sal_uInt16  mnSize;
-sal_uInt16  mnResize;
+std::vector mvPolyAry;
+
+ImplPolyPolygon( sal_uInt16 nInitSize )

[Libreoffice-bugs] [Bug 55359] Word count gives wrong results

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55359

Cheryl  changed:

   What|Removed |Added

   Hardware|Other   |x86 (IA32)
Version|3.6.1.2 release |5.4.3.2 release
 OS|All |Windows (All)

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


[Libreoffice-bugs] [Bug 55359] Word count gives wrong results

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55359

--- Comment #13 from Cheryl  ---
I have the same problem. 9 words written and 14 counted in LO.5.4.3.2 

It seems to be counting spaces and carriage returns as words. That's the only
thing I can think of for the discrepancy on a blank page that only contains 9
words. There are no headers, footers, or footnotes or notes to count.

-- 
You are receiving this mail because:
You are the 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-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76817

Justin L  changed:

   What|Removed |Added

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

--- Comment #45 from Justin L  ---
two part fix: both export and import needed adjusting. 
-import: https://gerrit.libreoffice.org/47827
-export: https://gerrit.libreoffice.org/47828

Developed in order to round-trip the example file from comment 43. Used example
file from comment 15 to confirm. Also fixes example from duplicate bug 87052.

-- 
You are receiving this mail because:
You 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: 2 commits - ios/CustomTarget_iOS_prelink.mk ios/CustomTarget_iOS_setup.mk

2018-01-12 Thread jan Iversen
 ios/CustomTarget_iOS_prelink.mk |7 ++-
 ios/CustomTarget_iOS_setup.mk   |4 ++--
 2 files changed, 8 insertions(+), 3 deletions(-)

New commits:
commit dacb12d219fd060504553bf29e8536bdb747c930
Author: jan Iversen 
Date:   Fri Jan 12 18:26:21 2018 +0100

iOS, split .a and .dylib generation

Added new dependency/action

Change-Id: I378bc517e74e1569f81c9c7154be154021f1df3c

diff --git a/ios/CustomTarget_iOS_prelink.mk b/ios/CustomTarget_iOS_prelink.mk
index d7834cac50b3..0534264d416c 100644
--- a/ios/CustomTarget_iOS_prelink.mk
+++ b/ios/CustomTarget_iOS_prelink.mk
@@ -42,7 +42,9 @@ IOSPREBUILD: FORCE
 
 
 
-$(IOSKIT).dylib: IOSPREBUILD $(WORKDIR)/ios $(call 
gb_StaticLibrary_get_target,iOS_kitBridge) $(IOSLIBS)
+$(IOSKIT).a: IOSPREBUILD $(WORKDIR)/ios $(call 
gb_StaticLibrary_get_target,iOS_kitBridge) \
+   $(IOSLIBS)
+   $(call gb_Output_announce,iOS prelink object,$(true),LNK,2)
$(IOSLD) -r -ios_version_min $(IOS_DEPLOYMENT_VERSION) \
-syslibroot $(MACOSX_SDK_PATH) \
-arch `echo $(CPUNAME) |  tr '[:upper:]' '[:lower:]'` \
@@ -51,6 +53,9 @@ $(IOSKIT).dylib: IOSPREBUILD $(WORKDIR)/ios $(call 
gb_StaticLibrary_get_target,i
$(IOSLIBS)
$(AR) -r $(IOSKIT).a $(IOSOBJ)
 
+
+$(IOSKIT).dylib: $(IOSKIT).a
+   $(call gb_Output_announce,iOS dylib,$(true),LNK,2)
$(IOSCLANG) -dynamiclib 
-mios-simulator-version-min=$(IOS_DEPLOYMENT_VERSION) \
-arch `echo $(CPUNAME) |  tr '[:upper:]' '[:lower:]'` \
-isysroot $(MACOSX_SDK_PATH) \
commit b61791533edca81551fcc7948ea7202d9ba6e5c4
Author: jan Iversen 
Date:   Sat Jan 13 05:40:29 2018 +0100

iOS, Correct BRAND_* in rc

Wrong BRAND_BASE_DIR and BRAND_INI_DIR reference.

Change-Id: I85295a9de3807a60d0afb05c160be9acae2e4aec

diff --git a/ios/CustomTarget_iOS_setup.mk b/ios/CustomTarget_iOS_setup.mk
index e159e2433fd2..20b58c7623e5 100644
--- a/ios/CustomTarget_iOS_setup.mk
+++ b/ios/CustomTarget_iOS_setup.mk
@@ -68,8 +68,8 @@ $(IOSGEN)/native-code.h: $(WORKDIR)/ios 
$(BUILDDIR)/config_host.mk \
 
# Set up fundamentalrc, unorc, bootstraprc and versionrc.
(echo '[Bootstrap]' \
-&& echo 'BRAND_BASE_DIR=$$APP_DATA_DIR/..' \
-&& echo 'BRAND_INI_DIR=$$APP_DATA_DIR' \
+&& echo 'BRAND_BASE_DIR=file://$$APP_DATA_DIR' \
+&& echo 'BRAND_INI_DIR=file:://$$APP_DATA_DIR' \
 && echo 'BRAND_SHARE_SUBDIR=$(LIBO_SHARE_FOLDER)' \
 && echo '##BRAND_SHARE_RESOURCE_SUBDIR=$(LIBO_SHARE_RESOURCE_FOLDER)' \
 && echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/share/registry 
' \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-12 Thread Justin Luth
 writerfilter/source/dmapper/StyleSheetTable.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 60c84cd52b291f7cfa4f44366bf021f34ef230f6
Author: Justin Luth 
Date:   Wed Jan 10 17:45:45 2018 +0300

remove unused include XChapterNumberingSupplier.hpp

The code moved to NumberingManager.cxx I believe.

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

diff --git a/writerfilter/source/dmapper/StyleSheetTable.cxx 
b/writerfilter/source/dmapper/StyleSheetTable.cxx
index d09ecfffb5e5..54a85958f11e 100644
--- a/writerfilter/source/dmapper/StyleSheetTable.cxx
+++ b/writerfilter/source/dmapper/StyleSheetTable.cxx
@@ -30,7 +30,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-12 Thread Justin Luth
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 5f25cfde82013d34276ed0ac12d4c2879888db7b
Author: Justin Luth 
Date:   Thu Jan 4 17:01:59 2018 +0300

unused variable: DomainMapper_Impl::PushAnnotation() pTopContext

unused even on the day when the function was created in 2009:
CWS-TOOLING: integrate CWS os124.

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

diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 4b84edb98b66..5f514dc67709 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1858,7 +1858,6 @@ void DomainMapper_Impl::PushAnnotation()
 {
 try
 {
-PropertyMapPtr pTopContext = GetTopContext();
 m_bIsInComments = true;
 if (!GetTextFactory().is())
 return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 68864] PRINTING: Allow Printing To Multiple Sheets in a Different Orientation Than the Original Document

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68864

--- 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 85788] Language in Custom animation effects dialog

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85788

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 95936] Hotkeys after change, not update in the tooltips

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95936

--- 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 105184] Editing: Rotating a text-block containing multiple lines 90 degrees will result in one row of text

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105184

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 105125] An text animation can't be added under specific conditions

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105125

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 105186] The same slide is searched twice when searching backwards

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105186

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 105183] EDITING: The text cursor isn' t appear on the next line pressing shift-enter when the text is rotated ( 90 degrees)

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105183

--- 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 94420] Selection of adjacent columns has changed to Xcel Variant, very laborious.

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94420

--- 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 40787] FILEOPEN:Libreoffice shows text that is hidden in Word, that hides superfluous Tabs and Enters at the end of the line/ paragraph - see comment #13

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40787

--- Comment #17 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 97694] Base macros cannot be digitally signed

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97694

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 105146] Different lines of bulleted text animation are getting the same animation title in the deck

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105146

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 96544] Text inserts in wrong place when cell contains a URL

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96544

--- 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 90262] Some animated gif files do not loop infinitely when inserted in the presentation

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90262

--- Comment #10 from FM  ---
I contacted the ROOT developers. According to them, the bug is in LibreOffice,
not in their code.

Their generated GIF files loop correctly in Chrome, Firefox, Safari, Keynote
and PowerPoint... so it is working everywhere expect in LibreOffice Impress.
The standard specifies that Data Blocks (an Application Extension Block is a
Data Block) can appear in any order.

See
https://root-forum.cern.ch/t/gifs-created-by-root-do-not-replay-on-libreoffice-impress/19025/21

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


[Libreoffice-bugs] [Bug 114984] New: Problem with copy and paste on new document

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114984

Bug ID: 114984
   Summary: Problem with copy and paste on new document
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: david.pe...@hotmail.ca

Description:
There is a problem when I copy something (like an article) that I want to keep,
 from some  web page or in this last  case today  from facebook, it does  not
format properly; 

Example, it appears like this:

The lower triangle
 is the A-R-C triangle
-its points being 
AFFINITY, REALITY 
and COMMUNICATION. 
These are the three
 elements which combined
 give UNDERSTANDING.


Instead of like this as it should be:

The lower triangle is the A-R-C triangle-its points being AFFINITY, REALITY and
COMMUNICATION. These are the three elements which combined give UNDERSTANDING.



Why does it do this?

If I paste it to google docs it does not do that.

Please fix it, so it pastes and appears in proper format, that is spread
across the entire page.


I have a HP 500-118 desk top, computer with windows 10.

I mostly use firefox browser. 


An additional note:  This was an article that was first pasted to facebook,
then I copied it and pasted it to my Libre Office program.  

But this problem  has occurred  over the yrs  from various sites.

I do not know if will happen from all types of sites.






Actual Results:  
If you copy something (like an article) from certain websites and paste it on
Libre, sometimes the problem  as I explained, will occur.


I do not do all that much of this kind of stuff, so I cannot explain exactly.

But this has been happening for years now.

I think sometimes it is ok, it pastes in proper form.







Expected Results:
I do not know anything about this step.


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101
Firefox/57.0

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


[Libreoffice-commits] core.git: include/com

2018-01-12 Thread Thorsten Behrens
 include/com/sun/star/uno/Sequence.hxx |   79 ++
 1 file changed, 79 insertions(+)

New commits:
commit 37b4b3ea042ab380106f4eca001b605d79980296
Author: Thorsten Behrens 
Date:   Thu Jan 11 23:14:11 2018 +0100

provide uno::Sequence with ostream output operator

Alongside Anys and other UNO data types, you can now also stream
out Sequences, e.g. in SAL_INFO or SAL_DEBUG statements.

Example code:

uno::Sequence aBuffer...
SAL_DEBUG("my buffer: " << aBuffer);

Would yield:

debug:: my buffer: 0xb6, 0x61, 0xa8, ...

Change-Id: I03b0789372c44a4dd057625824862f43b1b8dfdc
Reviewed-on: https://gerrit.libreoffice.org/47779
Reviewed-by: Stephan Bergmann 
Tested-by: Thorsten Behrens 

diff --git a/include/com/sun/star/uno/Sequence.hxx 
b/include/com/sun/star/uno/Sequence.hxx
index 7fe9f0bda64f..64f84ffc7bc3 100644
--- a/include/com/sun/star/uno/Sequence.hxx
+++ b/include/com/sun/star/uno/Sequence.hxx
@@ -23,6 +23,10 @@
 
 #include 
 #include 
+#if defined LIBO_INTERNAL_ONLY
+# include 
+# include 
+#endif
 
 #include "osl/interlck.h"
 #include "com/sun/star/uno/Sequence.h"
@@ -200,6 +204,81 @@ inline ::com::sun::star::uno::Sequence< sal_Int8 > 
SAL_CALL toUnoSequence(
 return * reinterpret_cast< const ::com::sun::star::uno::Sequence< sal_Int8 
> * >(  );
 }
 
+#if defined LIBO_INTERNAL_ONLY
+
+/// @cond INTERNAL
+
+namespace uno_detail {
+
+template< typename value_t, typename charT, typename traits >
+void sequence_output_elems( std::basic_ostream , const 
value_t *pAry, sal_Int32 nLen, std::true_type )
+{
+// for integral types, use hex notation
+auto const flags = os.setf(std::ios_base::hex);
+for(sal_Int32 i=0; i 1 )
+os << "0x" << *pAry++;
+os.setf(flags);
+}
+
+template< typename value_t, typename charT, typename traits >
+void sequence_output_elems( std::basic_ostream , const 
value_t *pAry, sal_Int32 nLen, std::false_type )
+{
+// every other type: rely on their own ostream operator<<
+for(sal_Int32 i=0; i 1 )
+os << *pAry++;
+}
+
+template< typename value_t, typename charT, typename traits >
+void sequence_output_bytes( std::basic_ostream , const 
value_t *pAry, sal_Int32 nLen )
+{
+// special case bytes - ostream operator<< outputs those as char
+// values, but we need raw ints here
+auto const flags = os.setf(std::ios_base::hex);
+for(sal_Int32 i=0; i 1 )
+os << "0x" << (0xFF & +*pAry++);
+os.setf(flags);
+}
+
+template
+struct negation : std::integral_constant { };
+
+}
+
+/**
+   Support for Sequence in std::ostream (and thus in CPPUNIT_ASSERT or SAL_INFO
+   macros, for example).
+
+   @since LibreOffice 6.1
+*/
+template< typename value_t, typename charT, typename traits >
+inline typename std::enable_if>::value, std::basic_ostream>::type 
<<(std::basic_ostream , css::uno::Sequence < value_t 
> )
+{
+const value_t *pAry = v.getConstArray();
+sal_Int32 nLen = v.getLength();
+uno_detail::sequence_output_elems(os, pAry, nLen, 
std::is_integral());
+return os;
+}
+
+template< typename value_t, typename charT, typename traits >
+inline typename std::enable_if::value, 
std::basic_ostream>::type <<(std::basic_ostream , css::uno::Sequence < value_t > )
+{
+// specialisation for signed bytes
+const sal_Int8 *pAry = v.getConstArray();
+sal_Int32 nLen = v.getLength();
+uno_detail::sequence_output_bytes(os, pAry, nLen);
+return os;
+}
+
+/// @endcond
+
+#endif
+
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-12 Thread Miklos Vajna
 sw/inc/doc.hxx  |   11 ---
 sw/source/core/doc/docnew.cxx   |4 +---
 sw/source/core/docnode/ndtbl.cxx|   10 ++
 sw/source/core/unocore/unostyle.cxx |3 +++
 sw/source/uibase/app/docstyle.cxx   |   23 +--
 5 files changed, 35 insertions(+), 16 deletions(-)

New commits:
commit 53ef918a6839c8d587dec1bb635e6b39397c53d0
Author: Miklos Vajna 
Date:   Fri Jan 12 17:08:31 2018 +0100

sw: lazy load table autoformats for style purposes

Commit b7138e03ebc8a33258c099c5cf6015970646a40e (GSoC Writer Table
Styles; Import bugfix, 2016-07-26) changed the SwDoc ctor to always load
the table autoformats, which is expensive for simple documents. Avoid
the load in the ctor by switching to lazy-load and adding a way to count
the number of styles without loading the autoformats when there would be
none.

(mpTableStyles -> m_pTableStyles was only necessary to see if there is
access outside GetTableStyles() to this member, but there were not any.)

Times for 100 hello world inputs: 3863 -> 2753 ms is spent in XHTML-load + 
ODT
export + close (71% of original).

Change-Id: I6737e7712c775573b56c8b0566e8e7fb615edee6
Reviewed-on: https://gerrit.libreoffice.org/47820
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins 

diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index 1a680165d9e7..da91f08d4375 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -323,7 +323,7 @@ class SW_DLLPUBLIC SwDoc final
 css::uno::Reference 
m_xTemplateToProjectCache;
 
 /// Table styles (autoformats that are applied with table changes).
-std::unique_ptr mpTableStyles;
+std::unique_ptr m_pTableStyles;
 /// Cell Styles not assigned to a Table Style
 std::unique_ptr mpCellStyles;
 private:
@@ -1235,8 +1235,13 @@ public:
 bool GetTableAutoFormat( const SwSelBoxes& rBoxes, SwTableAutoFormat& rGet 
);
 
 /// Return the available table styles.
-SwTableAutoFormatTable& GetTableStyles() { return *mpTableStyles.get(); }
-const SwTableAutoFormatTable& GetTableStyles() const { return 
*mpTableStyles.get(); }
+SwTableAutoFormatTable& GetTableStyles();
+const SwTableAutoFormatTable& GetTableStyles() const
+{
+return const_cast(this)->GetTableStyles();
+}
+/// Counts table styles without triggering lazy-load of them.
+bool HasTableStyles() const { return m_pTableStyles != nullptr; }
 // Create a new table style. Tracked by Undo.
 SwTableAutoFormat* MakeTableStyle(const OUString& rName, bool bBroadcast = 
false);
 // Delete table style named rName. Tracked by undo.
diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx
index 2fae0c3597d4..ec41a235f125 100644
--- a/sw/source/core/doc/docnew.cxx
+++ b/sw/source/core/doc/docnew.cxx
@@ -257,7 +257,7 @@ SwDoc::SwDoc()
 mpStyleAccess( nullptr ),
 mpLayoutCache( nullptr ),
 mpGrammarContact(createGrammarContact()),
-mpTableStyles(new SwTableAutoFormatTable),
+m_pTableStyles(nullptr),
 mpCellStyles(new SwCellStyleTable),
 m_pXmlIdRegistry(),
 mReferenceCount(0),
@@ -373,8 +373,6 @@ SwDoc::SwDoc()
 }
 mnRsidRoot = mnRsid;
 
-mpTableStyles->Load();
-
 getIDocumentState().ResetModified();
 }
 
diff --git a/sw/source/core/docnode/ndtbl.cxx b/sw/source/core/docnode/ndtbl.cxx
index cb10bdb711f7..69dc8686084b 100644
--- a/sw/source/core/docnode/ndtbl.cxx
+++ b/sw/source/core/docnode/ndtbl.cxx
@@ -3865,6 +3865,16 @@ bool SwDoc::GetTableAutoFormat( const SwSelBoxes& 
rBoxes, SwTableAutoFormat& rGe
 return true;
 }
 
+SwTableAutoFormatTable& SwDoc::GetTableStyles()
+{
+if (!m_pTableStyles)
+{
+m_pTableStyles.reset(new SwTableAutoFormatTable);
+m_pTableStyles->Load();
+}
+return *m_pTableStyles.get();
+}
+
 OUString SwDoc::GetUniqueTableName() const
 {
 if( IsInMailMerge())
diff --git a/sw/source/core/unocore/unostyle.cxx 
b/sw/source/core/unocore/unostyle.cxx
index d7d3eb9b3fc2..b83289107d26 100644
--- a/sw/source/core/unocore/unostyle.cxx
+++ b/sw/source/core/unocore/unostyle.cxx
@@ -695,6 +695,9 @@ sal_Int32 lcl_GetCountOrName(const 
SwDoc& rDoc, OUString
 template<>
 sal_Int32 lcl_GetCountOrName(const SwDoc& rDoc, 
OUString* pString, sal_Int32 nIndex)
 {
+if (!rDoc.HasTableStyles())
+return 0;
+
 const auto pAutoFormats = ();
 const sal_Int32 nCount = pAutoFormats->size();
 if (0 <= nIndex && nIndex < nCount)
diff --git a/sw/source/uibase/app/docstyle.cxx 
b/sw/source/uibase/app/docstyle.cxx
index a43fc90265dd..dbb7f0316241 100644
--- a/sw/source/uibase/app/docstyle.cxx
+++ b/sw/source/uibase/app/docstyle.cxx
@@ -3039,18 +3039,21 @@ SfxStyleSheetBase*  SwStyleSheetIterator::First()
 nSearchFamily == SfxStyleFamily::All )
 {
 const auto& aTableTemplateMap = 

[Libreoffice-bugs] [Bug 114163] FILEOPEN XLSX stacked bar chart legend reversed after open the file in Calc

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114163

Bartosz  changed:

   What|Removed |Added

Summary|FILESAVE XLSX stacked bar   |FILEOPEN XLSX stacked bar
   |chart legend reversed after |chart legend reversed after
   |open the file in Calc   |open the file in Calc

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


[Libreoffice-bugs] [Bug 114163] FILESAVE XLSX stacked bar chart legend reversed after open the file in Calc

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114163

--- Comment #2 from Bartosz  ---
I'm not able to reproduce it with LibreOffice 5.4.

Could you please attach screenshot with comparison?

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


[Libreoffice-bugs] [Bug 114939] SHA1 code has an off by 1 bug

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114939

Michael Stahl  changed:

   What|Removed |Added

 CC||t...@libreoffice.org
   Assignee|libreoffice-b...@lists.free |mst...@redhat.com
   |desktop.org |

--- Comment #16 from Michael Stahl  ---
This affects ODF in multiple ways:
* With non-default settings ODF 1.1 or ODF "1.2 Extended (compatibility mode)",
  the ODF package encryption uses SHA1 for the start-key derivation
  of PBKDF2 and SHA1/1k for the checksums of the files.
  However, it's quite hard to actually create an affected document in practice:
  - default version is ODF 1.2 extended
  - the XML files have random comments of >= 903 uncompressed bytes added
in "makeXMLChaff()"
  - the content.xml has > 1k (uncompressed) of namespace declarations
  - passwords of 52 bytes are somewhat hard to remember
  Probably you'd have to add a really tiny image or so to hit the bug.
* In all ODF versions, ODF package encryption PBKDF2 is implemented with SHA1,
  however it is not affected because of the start-key derivation round
  that generates a 20-byte or 32-byte input for PBKDF2.
* ODF "password-to-modify" extension: this is stored in settings.xml
  so there isn't any interop to speak of currently; it uses PBKDF2 *without*
  start-key derivation so is affected.
* Various "password" attributes that are handled centrally and with 2 different
  bugs in SvPasswordHelper, which is just a train-wreck.

MS Office filters are also affected, although i haven't investigated how
exactly.

PDF export calls an affected function but apparently doesn't use the resulting
hashes, oddly enough.

There is a "master password" feature, in
Tools->Options->LibreOffice->Security->Persistently save passwords for web
connections->Master Password:
* executeMasterPasswordDialog() calls rtl_digest_PBKDF2() with a user-provided
password, so it's affected - this is stored somewhere in the user profile ...
best not to change this, there is no interop benefit

Outline of the plan to fix this nonsense:
* ODF import: try both the correct & the buggy SHA1, take first that succeeds
* ODF export, "1.2 Extended (compatibility mode)":
  switch to use SHA256/AES instead of SHA1/Blowfish - releases that only read
the latter are > 5 years old.
* ODF export, 1.1: it doesn't really matter if we continue to use the broken
SHA1 or the fixed one, since the bug is so hard to trigger
* ODF export, PBKDF (for ODF 1.1 and for password-to-modify):
  simply prevent 52 <= password <= 55 and reject this in the UI
  (but it's still possible to create such passwords via the API)
* MSO import/export: always use correct SHA1
* Deprecate rtl_digest_*SHA*
* do not fix the bug in endSHA() so that the rtl_digest_*SHA* functions can be
used to import broken documents
* TODO what to do about SvPasswordHelper::GetHashPassword

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


[Libreoffice-bugs] [Bug 114939] SHA1 code has an off by 1 bug

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114939

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

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

tdf#114939 sal: deprecate rtl_digest_*SHA* and rtl_digest_PBKDF2

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-bugs] [Bug 114939] SHA1 code has an off by 1 bug

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114939

--- Comment #13 from Commit Notification 
 ---
Michael Stahl committed a patch related to this issue.
It has been pushed to "master":

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

tdf#114939 package: change ODF 1.1 export to use real SHA1

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-bugs] [Bug 114939] SHA1 code has an off by 1 bug

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114939

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

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

tdf#114939 sfx2: notify user of non-interoperable passwords

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-bugs] [Bug 114939] SHA1 code has an off by 1 bug

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114939

--- Comment #12 from Commit Notification 
 ---
Michael Stahl committed a patch related to this issue.
It has been pushed to "master":

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

tdf#114939 package,comphelper: Try both real SHA1 and StarOffice SHA1

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: 6 commits - comphelper/source include/comphelper include/rtl include/test officecfg/registry package/inc package/source sfx2/source sw/qa uui/source

2018-01-12 Thread Michael Stahl
 comphelper/source/misc/docpasswordhelper.cxx   |2 
 comphelper/source/misc/storagehelper.cxx   |   13 ++
 include/comphelper/storagehelper.hxx   |1 
 include/rtl/digest.h   |   63 +
 include/test/testinteractionhandler.hxx|   11 ++
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   15 ---
 package/inc/EncryptionData.hxx |5 -
 package/inc/ZipPackageStream.hxx   |5 -
 package/source/zipapi/ZipFile.cxx  |   11 ++
 package/source/zipapi/sha1context.cxx  |   52 +-
 package/source/zipapi/sha1context.hxx  |   26 -
 package/source/zippackage/ZipPackage.cxx   |2 
 package/source/zippackage/ZipPackageStream.cxx |   32 --
 sfx2/source/dialog/filedlghelper.cxx   |   21 
 sfx2/source/doc/objstor.cxx|   15 ---
 sw/qa/extras/inc/swmodeltestbase.hxx   |   17 ++-
 sw/qa/extras/odfexport/data/sha1_correct.odt   |binary
 sw/qa/extras/odfexport/data/sha1_wrong.odt |binary
 sw/qa/extras/odfexport/odfexport.cxx   |   10 ++
 uui/source/iahndl-authentication.cxx   |3 
 20 files changed, 248 insertions(+), 56 deletions(-)

New commits:
commit efc06e9bb696110350ab3e14344de53db992280e
Author: Michael Stahl 
Date:   Fri Jan 12 22:44:43 2018 +0100

tdf#114939 sal: deprecate rtl_digest_*SHA* and rtl_digest_PBKDF2

Document the disaster but don't fix it so this implementation can be
used to import existing documents with bad SHA1 hashes.

Change-Id: I4f3648dd0987392ef49dc149a9213bcafcefb202

diff --git a/include/rtl/digest.h b/include/rtl/digest.h
index 7e225e18d0ea..6652038874fe 100644
--- a/include/rtl/digest.h
+++ b/include/rtl/digest.h
@@ -288,11 +288,18 @@ SAL_DLLPUBLIC rtlDigestError SAL_CALL rtl_digest_MD5 (
 FIPS PUB 180 (Superseded by FIPS PUB 180-1)
   Secure Hash Standard
 
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_create()
  */
 SAL_DLLPUBLIC rtlDigest SAL_CALL rtl_digest_createSHA (void) 
SAL_THROW_EXTERN_C();
 
 /** Destroy a SHA digest handle.
+
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_destroy()
  */
 SAL_DLLPUBLIC void SAL_CALL rtl_digest_destroySHA (
@@ -301,6 +308,10 @@ SAL_DLLPUBLIC void SAL_CALL rtl_digest_destroySHA (
 
 
 /** Update a SHA digest with given data.
+
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_update()
  */
 SAL_DLLPUBLIC rtlDigestError SAL_CALL rtl_digest_updateSHA (
@@ -309,6 +320,10 @@ SAL_DLLPUBLIC rtlDigestError SAL_CALL rtl_digest_updateSHA 
(
 ) SAL_THROW_EXTERN_C();
 
 /** Finalize a SHA digest and retrieve the digest value.
+
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_get()
  */
 SAL_DLLPUBLIC rtlDigestError SAL_CALL rtl_digest_getSHA (
@@ -321,6 +336,9 @@ SAL_DLLPUBLIC rtlDigestError SAL_CALL rtl_digest_getSHA (
 This function performs an optimized call sequence on a
 single data buffer, avoiding digest creation and destruction.
 
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_updateSHA()
 @see rtl_digest_getSHA()
 
@@ -349,11 +367,18 @@ SAL_DLLPUBLIC rtlDigestError SAL_CALL rtl_digest_SHA (
 FIPS PUB 180-1 (Supersedes FIPS PUB 180)
   Secure Hash Standard
 
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_create()
  */
 SAL_DLLPUBLIC rtlDigest SAL_CALL rtl_digest_createSHA1 (void) 
SAL_THROW_EXTERN_C();
 
 /** Destroy a SHA1 digest handle.
+
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see rtl_digest_destroy()
  */
 SAL_DLLPUBLIC void SAL_CALL rtl_digest_destroySHA1 (
@@ -361,6 +386,10 @@ SAL_DLLPUBLIC void SAL_CALL rtl_digest_destroySHA1 (
 ) SAL_THROW_EXTERN_C();
 
 /** Update a SHA1 digest with given data.
+
+@deprecated The implementation is buggy and generates incorrect results
+for 52 <= (len % 64) <= 55; use only for bug-compatibility.
+
 @see 

[Libreoffice-bugs] [Bug 114939] SHA1 code has an off by 1 bug

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114939

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

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

tdf#114939 officecfg,sfx2: always use AES/SHA256 in ODF 1.2

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-bugs] [Bug 114983] New: Unable to make any docked toolbar floating

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114983

Bug ID: 114983
   Summary: Unable to make any docked toolbar floating
   Product: LibreOffice
   Version: 5.4.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mark...@gmail.com

Description:
I use ubuntu 17.10.1 and is not able to make any docked toolbar floating by
dragging off the vertical handle of the toolbar. It works fine on Windows.

Version: 5.4.2.2
Build ID: 1:5.4.2-0ubuntu0.17.10.1
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group

Not sure if this is a regression.

Steps to Reproduce:
1. Open Writer or Impress.
2. Use mouse to drag any docked toolbar to the central area.

Actual Results:  
A dashed box appears when dragging and disappear when realising mouse button,
but the toolbar is still docked.

Expected Results:
The toolbar become a floating toolbar.


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:57.0) Gecko/20100101
Firefox/57.0

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


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

2018-01-12 Thread Zdeněk Crhonek
 sw/qa/uitest/writer_tests/tdf93068.py |   37 ++
 1 file changed, 37 insertions(+)

New commits:
commit 42e90b44ee9de1c5e0b324e492949ff6f345461b
Author: Zdeněk Crhonek 
Date:   Thu Dec 21 20:59:54 2017 +0100

uitest for tdf#93068

Change-Id: Ib76d2a2f386b1584104d97ce2f2602fdac71517c
Reviewed-on: https://gerrit.libreoffice.org/46929
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sw/qa/uitest/writer_tests/tdf93068.py 
b/sw/qa/uitest/writer_tests/tdf93068.py
new file mode 100644
index ..94a5484d46e6
--- /dev/null
+++ b/sw/qa/uitest/writer_tests/tdf93068.py
@@ -0,0 +1,37 @@
+#
+# 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/.
+#
+
+from uitest.framework import UITestCase
+import time
+from uitest.uihelper.common import get_state_as_dict, type_text
+
+class tdf93068(UITestCase):
+
+def test_tdf93068(self):
+
+self.ui_test.create_doc_in_start_center("writer")
+
+xWriterDoc = self.xUITest.getTopFocusWindow()
+xWriterEdit = xWriterDoc.getChild("writer_edit")
+
+self.ui_test.execute_dialog_through_command(".uno:FontDialog")
+xFontDlg = self.xUITest.getTopFocusWindow()
+xOKBtn = xFontDlg.getChild("ok")
+self.ui_test.close_dialog_through_button(xOKBtn)
+
+self.ui_test.execute_dialog_through_command(".uno:FontDialog")
+xFontDlg = self.xUITest.getTopFocusWindow()
+xCancBtn = xFontDlg.getChild("cancel")
+xCancBtn.executeAction("CLICK", tuple())
+
+self.ui_test.execute_dialog_through_command(".uno:FontDialog")
+xFontDlg = self.xUITest.getTopFocusWindow()
+xDiscardBtn = xFontDlg.getChild("reset")
+xDiscardBtn.executeAction("CLICK", tuple())
+xOKBtn = xFontDlg.getChild("ok")
+self.ui_test.close_dialog_through_button(xOKBtn)
+
+self.ui_test.close_doc()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 109340] Impress: The memory usage on slide scroll increased in 6.0 with a factor 3 @900 MB (compared to 5.4 @300 MB) for small PPT (1, 2 MB) that's slow to load

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109340

--- Comment #14 from Telesto  ---
Repro with:
Version: 6.1.0.0.alpha0+
Build ID: ef22c4a0a99be5d2903fb9e9d09fc852cd791173
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2018-01-12_09:16:04
Locale: nl-NL (nl_NL); Calc: CL

Noticing a slight decrease: 825MB instead of 900MB

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

2018-01-12 Thread Caolán McNamara
 sd/source/filter/ppt/pptin.cxx |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 069e727e1049eaaeb1cbbd7fdd14d8d47abc1f8b
Author: Caolán McNamara 
Date:   Fri Jan 12 20:44:25 2018 +

ofz#5274 Out-of-memory

Change-Id: I3e69f5e2be848933a43d09c620dafd946486e731

diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx
index 0b64546358d7..ef16cadef0d6 100644
--- a/sd/source/filter/ppt/pptin.cxx
+++ b/sd/source/filter/ppt/pptin.cxx
@@ -1953,15 +1953,21 @@ OUString ImplSdPPTImport::ReadSound(sal_uInt32 
nSoundRef) const
 INetURLObject aGalleryUserSound( 
aGalleryDir.getToken( nTokenCount - 1, ';' ) );
 
 aGalleryUserSound.Append( aRetval );
+const auto nRemainingSize = 
rStCtrl.remainingSize();
 sal_uInt32 nSoundDataLen = aSoundDataRecHd.nRecLen;
-std::unique_ptr pBuf( new sal_uInt8[ 
nSoundDataLen ] );
+if (nSoundDataLen > nRemainingSize)
+{
+SAL_WARN("filter.ms", "sound data len longer 
than remaining stream size");
+nSoundDataLen = nRemainingSize;
+}
+std::vector aBuf(nSoundDataLen);
 
-rStCtrl.ReadBytes(pBuf.get(), nSoundDataLen);
+rStCtrl.ReadBytes(aBuf.data(), nSoundDataLen);
 SvStream* pOStm = 
::utl::UcbStreamHelper::CreateStream( aGalleryUserSound.GetMainURL( 
INetURLObject::DecodeMechanism::NONE ), StreamMode::WRITE | StreamMode::TRUNC );
 
 if( pOStm )
 {
-pOStm->WriteBytes(pBuf.get(), nSoundDataLen);
+pOStm->WriteBytes(aBuf.data(), nSoundDataLen);
 
 if( pOStm->GetError() == ERRCODE_NONE )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-3-0' - loleaflet/src loleaflet/unocommands.js

2018-01-12 Thread Henry Castro
 loleaflet/src/control/Control.Menubar.js |   27 +--
 loleaflet/unocommands.js |3 +++
 2 files changed, 28 insertions(+), 2 deletions(-)

New commits:
commit 703861538ff2bddb157a4836c995154390df31aa
Author: Henry Castro 
Date:   Fri Jan 12 21:45:45 2018 +0100

loleaflet: add Header/Footer menu

Change-Id: Iabbb3e2a8eadadae2446b572f0e411491af9db4f
Reviewed-on: https://gerrit.libreoffice.org/47829
Reviewed-by: Henry Castro 
Tested-by: Henry Castro 

diff --git a/loleaflet/src/control/Control.Menubar.js 
b/loleaflet/src/control/Control.Menubar.js
index c863eeec..ba9b9b30 100644
--- a/loleaflet/src/control/Control.Menubar.js
+++ b/loleaflet/src/control/Control.Menubar.js
@@ -63,6 +63,9 @@ L.Control.Menubar = L.Control.extend({
{name: _UNO('.uno:InsertGraphic', 'text'), id: 
'insertgraphic', type: 'action'},
{name: _UNO('.uno:InsertAnnotation', 'text'), 
id: 'insertcomment', type: 'action'},
{type: 'separator'},
+   {name: _UNO('.uno:InsertHeaderFooterMenu', 
'text'), type: 'menu', menu: [
+   {uno: '.uno:InsertPageHeader'},
+   {uno: '.uno:InsertPageFooter'}]},
{uno: '.uno:InsertFootnote'},
{uno: '.uno:InsertEndnote'},
{type: 'separator'},
@@ -683,6 +686,27 @@ L.Control.Menubar = L.Control.extend({
}
},
 
+   _sendCommand: function (item) {
+   var unoCommand = $(item).data('uno');
+   if (unoCommand == '.uno:InsertPageHeader' || unoCommand == 
'.uno:InsertPageFooter') {
+   if (map['stateChangeHandler'].getItemValue(unoCommand) 
=== 'true') {
+   vex.dialog.confirm({
+   message: (unoCommand.endsWith('Header') 
? _('Are you sure you want to delete the header?') :
+   _('Are you sure you want to 
delete the footer?')),
+   callback: function(value) {
+   if (value) {
+   
map.sendUnoCommand(unoCommand + '?On:bool=false');
+   }
+   }
+   });
+   } else {
+   map.sendUnoCommand(unoCommand + 
'?On:bool=true');
+   }
+   } else {
+   map.sendUnoCommand(unoCommand);
+   }
+   },
+
_onDeleteSlide: function(e) {
if (e) {
map.deletePage();
@@ -693,8 +717,7 @@ L.Control.Menubar = L.Control.extend({
var self = e.data.self;
var type = $(item).data('type');
if (type === 'unocommand') {
-   var unoCommand = $(item).data('uno');
-   map.sendUnoCommand(unoCommand);
+   self._sendCommand(item);
} else if (type === 'action') {
self._executeAction(item);
}
diff --git a/loleaflet/unocommands.js b/loleaflet/unocommands.js
index fade3dc0..706c7c6a 100644
--- a/loleaflet/unocommands.js
+++ b/loleaflet/unocommands.js
@@ -89,11 +89,14 @@ var unoCommandsArray = {
InsertFootnote:{text:{menu:_('~Footnote'),},},
InsertGraphic:{global:{context:_('Insert 
Image'),menu:_('~Image...'),},},
InsertHardHyphen:{global:{menu:_('Non-br~eaking hyphen'),},},
+   InsertHeaderFooterMenu:{text:{menu:_('He~ader and Footer'),},},
InsertIndexesEntry:{text:{menu:_('~Index Entry...'),},},
InsertLRM:{global:{menu:_('~Left-to-right mark'),},},
InsertMenu:{global:{menu:_('~Insert'),},},
InsertNeutralParagraph:{text:{menu:_('Insert Unnumbered Entry'),},},
InsertNonBreakingSpace:{global:{menu:_('~Non-breaking space'),},},
+   InsertPageFooter:{text:{menu:_('Foote~r'),},},
+   InsertPageHeader:{text:{menu:_('He~ader'),},},
InsertPagebreak:{text:{menu:_('~Page Break'),},},
InsertRLM:{global:{menu:_('~Right-to-left mark'),},},
InsertRows:{presentation:{menu:_('Insert 
Row'),},spreadsheet:{menu:_('Rows ~Above'),},text:{menu:_('Insert Row'),},},
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-12 Thread Miklos Vajna
 include/sfx2/sfxsids.hrc   |3 ++-
 sfx2/qa/cppunit/misc/hello.odt |binary
 sfx2/qa/cppunit/test_misc.cxx  |   38 ++
 sfx2/sdi/sfx.sdi   |2 +-
 sfx2/source/appl/appuno.cxx|1 +
 sfx2/source/doc/objstor.cxx|   11 +++
 6 files changed, 53 insertions(+), 2 deletions(-)

New commits:
commit a746f20cae91a87b8263342fb558a12f2f0d50b2
Author: Miklos Vajna 
Date:   Fri Jan 12 14:32:21 2018 +0100

sfx2 store: add API to allow disabling thumbnails only for a single save

This is similar to the
officecfg::Office::Common::Save::Document::GenerateThumbnail config
setting, but here we allow configuring this at a per-save basis, not
persistently.

Change-Id: Ieb5bd57f1d8fc9e211011f2647276d985cf53131
Reviewed-on: https://gerrit.libreoffice.org/47812
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins 

diff --git a/include/sfx2/sfxsids.hrc b/include/sfx2/sfxsids.hrc
index 81d4d45cbe9d..6fbdaa4f281e 100644
--- a/include/sfx2/sfxsids.hrc
+++ b/include/sfx2/sfxsids.hrc
@@ -244,8 +244,9 @@
 #define SID_TEMPLATE_MANAGER(SID_SFX_START + 1727)
 #define SID_TOOLBAR_MODE(SID_SFX_START + 1728)
 #define SID_NO_FILE_SYNC(SID_SFX_START + 1729)
+#define SID_NO_THUMBNAIL(SID_SFX_START + 1730)
 
-//  SID_SFX_free_START  (SID_SFX_START + 1730)
+//  SID_SFX_free_START  (SID_SFX_START + 1731)
 //  SID_SFX_free_END(SID_SFX_START + 3999)
 
 #define SID_OPEN_NEW_VIEW   (SID_SFX_START + 520)
diff --git a/sfx2/qa/cppunit/misc/hello.odt b/sfx2/qa/cppunit/misc/hello.odt
new file mode 100644
index ..23ce6a4db9af
Binary files /dev/null and b/sfx2/qa/cppunit/misc/hello.odt differ
diff --git a/sfx2/qa/cppunit/test_misc.cxx b/sfx2/qa/cppunit/test_misc.cxx
index e3cbd8d4748c..5f36b438f089 100644
--- a/sfx2/qa/cppunit/test_misc.cxx
+++ b/sfx2/qa/cppunit/test_misc.cxx
@@ -20,11 +20,17 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
 #include 
+#include 
 
 #include 
+#include 
+#include 
+#include 
 
 
 using namespace ::com::sun::star;
@@ -34,10 +40,13 @@ namespace {
 
 class MiscTest
 : public test::BootstrapFixture
+, public unotest::MacrosTest
 , public XmlTestTools
 {
 public:
+virtual void setUp() override;
 void testODFCustomMetadata();
+void testNoThumbnail();
 
 virtual void registerNamespaces(xmlXPathContextPtr& pXmlXpathCtx) override
 {
@@ -52,11 +61,19 @@ public:
 
 CPPUNIT_TEST_SUITE(MiscTest);
 CPPUNIT_TEST(testODFCustomMetadata);
+CPPUNIT_TEST(testNoThumbnail);
 CPPUNIT_TEST_SUITE_END();
 
 private:
 };
 
+void MiscTest::setUp()
+{
+m_xContext = comphelper::getProcessComponentContext();
+mxDesktop.set(frame::Desktop::create(m_xContext));
+SfxApplication::GetOrCreate();
+}
+
 void MiscTest::testODFCustomMetadata()
 {
 uno::Reference const xProps(
@@ -86,6 +103,27 @@ void MiscTest::testODFCustomMetadata()
 aTempFile.EnableKillingFile();
 }
 
+void MiscTest::testNoThumbnail()
+{
+// Load a document.
+const OUString 
aURL(m_directories.getURLFromSrc("/sfx2/qa/cppunit/misc/hello.odt"));
+uno::Reference xComponent
+= loadFromDesktop(aURL, "com.sun.star.text.TextDocument");
+CPPUNIT_ASSERT(xComponent.is());
+
+// Save it with the NoThumbnail option and assert that it has no thumbnail.
+uno::Reference xStorable(xComponent, uno::UNO_QUERY);
+CPPUNIT_ASSERT(xStorable.is());
+utl::TempFile aTempFile;
+uno::Sequence aProperties(
+comphelper::InitPropertySequence({ { "NoThumbnail", uno::makeAny(true) 
} }));
+xStorable->storeToURL(aTempFile.GetURL(), aProperties);
+uno::Reference xZipFile
+= packages::zip::ZipFileAccess::createWithURL(m_xContext, 
aTempFile.GetURL());
+CPPUNIT_ASSERT(!xZipFile->hasByName("Thumbnails/thumbnail.png"));
+
+xComponent->dispose();
+}
 
 CPPUNIT_TEST_SUITE_REGISTRATION(MiscTest);
 
diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi
index a366a271edb5..0ddf3653c3c0 100644
--- a/sfx2/sdi/sfx.sdi
+++ b/sfx2/sdi/sfx.sdi
@@ -3557,7 +3557,7 @@ SfxVoidItem SaveAll SID_SAVEDOCS
 
 
 SfxStringItem SaveAs SID_SAVEASDOC
-(SfxStringItem URL SID_FILE_NAME,SfxStringItem FilterName 
SID_FILTER_NAME,SfxStringItem Password SID_PASSWORD,SfxBoolItem 
PasswordInteraction SID_PASSWORDINTERACTION,SfxStringItem FilterOptions 
SID_FILE_FILTEROPTIONS,SfxStringItem VersionComment 
SID_DOCINFO_COMMENTS,SfxStringItem VersionAuthor SID_DOCINFO_AUTHOR,SfxBoolItem 
Overwrite SID_OVERWRITE,SfxBoolItem Unpacked SID_UNPACK,SfxBoolItem SaveTo 
SID_SAVETO,SfxBoolItem NoFileSync SID_NO_FILE_SYNC)
+(SfxStringItem URL SID_FILE_NAME,SfxStringItem FilterName 
SID_FILTER_NAME,SfxStringItem Password SID_PASSWORD,SfxBoolItem 
PasswordInteraction 

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

2018-01-12 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f75d60501ba887b5ad4a7924be70264b27eecec7
Author: Andras Timar 
Date:   Fri Jan 12 20:39:55 2018 +0100

Updated core
Project: translations  5c8037b1eea42c23f7b20d203ace7c0317c55d7e

Translation of backported features (from libreoffice-6-0)

Change-Id: I1ef20c918746008f5dee1ea2d24f9f56637b8143

diff --git a/translations b/translations
index 26e56860d3b6..5c8037b1eea4 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 26e56860d3b6e3f61823efdb7e0e4ec667f37c24
+Subproject commit 5c8037b1eea42c23f7b20d203ace7c0317c55d7e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: compilerplugins/clang solenv/CompilerTest_compilerplugins_clang.mk

2018-01-12 Thread Stephan Bergmann
 compilerplugins/clang/cstylecast.cxx |  440 ++-
 compilerplugins/clang/test/cstylecast.cxx|   63 +++
 compilerplugins/clang/unnecessaryparen.cxx   |  104 ++
 solenv/CompilerTest_compilerplugins_clang.mk |1 
 4 files changed, 595 insertions(+), 13 deletions(-)

New commits:
commit cab0427cadddb3aaf1349c66f2fa13a4234ba4b2
Author: Stephan Bergmann 
Date:   Wed Jan 10 15:55:22 2018 +0100

Enable loplugin:cstylecast for some more cases

...mostly of C-style casts among arithmetic types, and automatically rewrite
those into either static_cast or a functional cast (which should have 
identical
semantics, but where the latter probably looks better for simple cases like
casting a literal to a specific type, as in "sal_Int32(0)" vs.
"static_cast(0)").

The main benefit of reducing the amount of C-style casts across the code 
base
further is so that other plugins (that have not been taught about the 
complex
semantics of C-style cast) can pick those up (cf. the various recent
"loplugin:redundantcast" commits, which address those findings after this
improved loplugin:cstylecast has been run).  Also, I found some places where
a C-style cast has probably been applied only to the first part of a larger
expression in error (because it's easy to forget parentheses in cases like
"(sal_uInt16)VOPT_CLIPMARKS+1"); I'll follow up on those individually.

The improved loplugin:cstylecast is careful to output either "(performs:
static_cast)" or "(performs: functional cast)", so that
compilerplugins/clang/test/cstylecast.cxx can check that the plugin would
automatically rewrite to one or the other form.

To allow fully-automatic rewriting, this also required 
loplugin:unnecessaryparen
to become a rewriting plugin, at least for the parens-around-cast case 
(where
"((foo)bar)" first gets rewritten to "(static_cast(bar))", then to
"static_cast(bar)".  Rewriting could probably be added to other cases 
of
loplugin:unnecessaryparen in the future, too.

(The final version of this patch would even have been able to cope with
361dd2576a09fbda83f3ce9a26ecb590c38f74e3 "Replace some C-style casts in ugly
macros with static_cast", so that manual change would not have been 
necessary
after all.)

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

diff --git a/compilerplugins/clang/cstylecast.cxx 
b/compilerplugins/clang/cstylecast.cxx
index bf8e2fb00809..f09ce81a2987 100644
--- a/compilerplugins/clang/cstylecast.cxx
+++ b/compilerplugins/clang/cstylecast.cxx
@@ -7,8 +7,10 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include 
 #include 
 #include 
+#include 
 #include 
 #include "plugin.hxx"
 
@@ -82,11 +84,89 @@ QualType resolvePointers(QualType type) {
 return type;
 }
 
+bool isLiteralLike(Expr const * expr) {
+expr = expr->IgnoreParenImpCasts();
+if (isa(expr) || isa(expr) || 
isa(expr)
+|| isa(expr) || isa(expr)
+|| isa(expr) || isa(expr))
+{
+return true;
+}
+if (auto const e = dyn_cast(expr)) {
+auto const d = e->getDecl();
+if (isa(d)) {
+return true;
+}
+if (auto const v = dyn_cast(d)) {
+if (d->getType().isConstQualified()) {
+if (auto const init = v->getAnyInitializer()) {
+return isLiteralLike(init);
+}
+}
+}
+return false;
+}
+if (auto const e = dyn_cast(expr)) {
+auto const k = e->getKind();
+return k == UETT_SizeOf || k == UETT_AlignOf;
+}
+if (auto const e = dyn_cast(expr)) {
+auto const k = e->getOpcode();
+if (k == UO_Plus || k == UO_Minus || k == UO_Not || k == UO_LNot) {
+return isLiteralLike(e->getSubExpr());
+}
+return false;
+}
+if (auto const e = dyn_cast(expr)) {
+auto const k = e->getOpcode();
+if (k == BO_Mul || k == BO_Div || k == BO_Rem || k == BO_Add || k == 
BO_Sub || k == BO_Shl
+|| k == BO_Shr || k == BO_And || k == BO_Xor || k == BO_Or)
+{
+return isLiteralLike(e->getLHS()) && isLiteralLike(e->getRHS());
+}
+return false;
+}
+if (auto const e = dyn_cast(expr)) {
+auto const t = e->getTypeAsWritten();
+return (t->isArithmeticType() || t->isEnumeralType())
+&& isLiteralLike(e->getSubExprAsWritten());
+}
+return false;
+}
+
+bool canBeUsedForFunctionalCast(TypeSourceInfo const * info) {
+// Must be  or , lets 
approximate that here:
+assert(info != nullptr);
+auto const type = info->getType();
+if (type.hasLocalQualifiers()) {
+return false;

[Libreoffice-bugs] [Bug 114970] Autofill keep cell format mode is needed

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114970

--- Comment #2 from Alexander Ilyin  ---
I did not find 6.1 however I have installed and tried out the dev nightly
build:
libo-60-64_2018-01-12_01.38.12_LibreOfficeDev_6.0.1.0.0_Win_x64

The autofill is still screw up my formatting and no good way to deal with it.
The only workaround with paste special described in the mentioned forum. But
paste is working well in 5.x and I believe in the earlier versions.

It helps but not too much because it is annoying to do autofill, see the
screwed up cell formats, undo, select the cells, copy, do autofill and then
select it again and do special paste with format only.

Instead it would be very useful to do autofill without cell format changes.
Just values and formulas. E.g. when user holds Alt.

According to the mentioned forum post the Excel can do that if you drag handle
using right-click. That is good way do as well.

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


[Libreoffice-bugs] [Bug 108387] EDITING: changing symbol size in graph leaves some symbols unchanged

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108387

--- Comment #5 from blou...@gmail.com ---
Dear Xisco Faulí,

Sorry for such a delay to answer.
Please find attached a sample document.
In between, the version installed on my professional computer has been updated
to 5.3.4.2. However, the graphical problem is still there.

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 108387] EDITING: changing symbol size in graph leaves some symbols unchanged

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108387

--- Comment #4 from blou...@gmail.com ---
Created attachment 139071
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139071=edit
uneven size of markers on an XY plot

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


[Libreoffice-bugs] [Bug 114959] Can't run 6.0.0.1rc

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114959

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #3 from Aron Budea  ---
Do you have package libdbus-glib-1-2 installed?

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


[Libreoffice-bugs] [Bug 93975] Toolbar table borders control cause spacing to content issues

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93975

Gerry  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99027] [FORMATTING] Default table border width is useless

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99027

Gerry  changed:

   What|Removed |Added

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

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

2018-01-12 Thread Caolán McNamara
 sc/source/core/tool/interpr7.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 3271e8b90f5d522fdfe1de46b77e7f67cdaa75af
Author: Caolán McNamara 
Date:   Wed Jan 10 14:27:35 2018 +

limit WEBSERVICE to http[s] protocols

and like excel...

'For protocols that aren’t supported, such as ftp:// or file://, WEBSERVICE
returns the #VALUE! error value.'

Change-Id: I0e9c6fd3426fad56a199eafac48de9b0f23914b3
Reviewed-on: https://gerrit.libreoffice.org/47775
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/core/tool/interpr7.cxx b/sc/source/core/tool/interpr7.cxx
index b92bf8cccf22..863664cc5309 100644
--- a/sc/source/core/tool/interpr7.cxx
+++ b/sc/source/core/tool/interpr7.cxx
@@ -14,6 +14,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -247,6 +248,14 @@ void ScInterpreter::ScWebservice()
 return;
 }
 
+INetURLObject aObj(aURI, INetProtocol::File);
+INetProtocol eProtocol = aObj.GetProtocol();
+if (eProtocol != INetProtocol::Http && eProtocol != 
INetProtocol::Https)
+{
+PushError( FormulaError::NoValue );
+return;
+}
+
 uno::Reference< ucb::XSimpleFileAccess3 > xFileAccess( 
ucb::SimpleFileAccess::create( comphelper::getProcessComponentContext() ), 
uno::UNO_QUERY );
 if(!xFileAccess.is())
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - sc/source

2018-01-12 Thread Caolán McNamara
 sc/source/ui/docshell/arealink.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 06a2ffe863501e8bef88cd0201bd5e8d73e92242
Author: Caolán McNamara 
Date:   Fri Jan 12 10:48:59 2018 +

VclPtr, missing dispose

Change-Id: I790cd8be0d461d4c82c9b1c64e334bd37115dcaf
Reviewed-on: https://gerrit.libreoffice.org/47803
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/ui/docshell/arealink.cxx 
b/sc/source/ui/docshell/arealink.cxx
index 2b01cddb41c7..5c0bd1ecdda6 100644
--- a/sc/source/ui/docshell/arealink.cxx
+++ b/sc/source/ui/docshell/arealink.cxx
@@ -88,7 +88,7 @@ void ScAreaLink::Edit(vcl::Window* pParent, const 
Link& /* rEn
 ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
 OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
 
-VclPtr pDlg = 
pFact->CreateScLinkedAreaDlg(pParent);
+ScopedVclPtr 
pDlg(pFact->CreateScLinkedAreaDlg(pParent));
 OSL_ENSURE(pDlg, "Dialog create fail!");
 pDlg->InitFromOldLink( aFileName, aFilterName, aOptions, aSourceArea, 
GetRefreshDelay() );
 pImpl->m_pDialog = pDlg;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sc/source

2018-01-12 Thread Caolán McNamara
 sc/source/ui/docshell/arealink.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dc2a2bd172762e95ebc66d58ba04b2071d00d0b1
Author: Caolán McNamara 
Date:   Fri Jan 12 10:48:59 2018 +

VclPtr, missing dispose

Change-Id: I790cd8be0d461d4c82c9b1c64e334bd37115dcaf
Reviewed-on: https://gerrit.libreoffice.org/47802
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/ui/docshell/arealink.cxx 
b/sc/source/ui/docshell/arealink.cxx
index 95fc79d8ed01..ce6ba04c5e8d 100644
--- a/sc/source/ui/docshell/arealink.cxx
+++ b/sc/source/ui/docshell/arealink.cxx
@@ -88,7 +88,7 @@ void ScAreaLink::Edit(vcl::Window* pParent, const 
Link& /* rEn
 ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
 OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
 
-VclPtr pDlg = 
pFact->CreateScLinkedAreaDlg(pParent);
+ScopedVclPtr 
pDlg(pFact->CreateScLinkedAreaDlg(pParent));
 OSL_ENSURE(pDlg, "Dialog create fail!");
 pDlg->InitFromOldLink( aFileName, aFilterName, aOptions, aSourceArea, 
GetRefreshDelay() );
 pImpl->m_pDialog = pDlg;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105618] Weaknesses in creating Bézier curve

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105618

Regina Henschel  changed:

   What|Removed |Added

 Depends on||94699


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94699
[Bug 94699] Freehand tool: turning off smoothing activity
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 105618] Weaknesses in creating Bézier curve

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105618

Regina Henschel  changed:

   What|Removed |Added

 Depends on||94699


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94699
[Bug 94699] Freehand tool: turning off smoothing activity
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 94699] Freehand tool: turning off smoothing activity

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94699

Regina Henschel  changed:

   What|Removed |Added

 Blocks||105618

--- Comment #11 from Regina Henschel  ---
Corel Draw has a "Reduce Nodes" slider and spin-field in the property bar,
which is mainly designed for freehand curves. In Corel Draw you can set the
tool before you start drawing or use it with the finished drawing. Corel Draw
has in newer versions an additional local "Smooth" tool with automatic, which
is designed to be used to correct the result of the Power Trace tool, which
converts bitmap to vector graphic.

Inkscape has a spin field to set the amount of smoothing before drawing, if you
select the freehand tool. It has a menu item to reduce nodes in automatic mode
on the finished drawing.

My suggestion: If a node reduction tool is introduced in LibreOffice, then it
should be in the "Edit points" toolbar. That would require, that the toolbar
will be already opened, when you choose a line tool. Currently it opens only in
edit point mode of a finished drawing.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105618
[Bug 105618] Weaknesses in creating Bézier curve
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114982] AdminConsole: control logging ...

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114982

Michael Meeks  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp,
   ||skillJavaScript,
   ||topicCleanup
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 114982] New: AdminConsole: control logging ...

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114982

Bug ID: 114982
   Summary: AdminConsole: control logging ...
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michael.me...@collabora.com

It would be extremely useful to be able to turn up and down the log-level on
the admin-console (and to browse the logs but that's something else ;-)
dynamically at run time.

This belongs in the 'Settings' page - checkout:

loleaflet/dist/admin/adminSettings.html
loleaflet/src/admin/AdminSocketSettings.js

To add the log level setting and then:

wsd/Admin.cpp-else if (tokens[0] == "settings")

wsd/protocol.txt: needs updating too.

And of course we need to set the log level with:

Log::logger().setLevel(LogLevel);

For bonus points we should really propagate this to all the WSD children too
including the forkit - but that is a fair bit of protocol work & tweaking =)

Thanks !

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


[Libreoffice-bugs] [Bug 104033] Feature Request: To add MS Excel Camera option to Calc' s Edit menu

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104033

--- Comment #5 from Gauthier  ---
That's fair enough if no dev are into this.

But not sure it's because MS has no idea about use case that's it's not there
by default. It might simply be because use case are quite specific?

If it is possible to achieve same result with existing functions, I (and
others) would love to know how? It is a pretty useful tool for layout and
printing spreadsheets. For example how could you print two different sheets
(with different column width etc.) on one page in calc (and maybe also having
the two sheets on different scaling factor)?

At least I couldn't do it and when I looked it up on the camera tool came up
and everyone said it is not possible to do in LO.

http://www.imaccanici.org/en.libreofficeforum.org/node/13468.html
https://forum.openoffice.org/en/forum/viewtopic.php?f=9=1511

Seems like a few people would like this...

https://bugs.documentfoundation.org/show_bug.cgi?id=89980

https://ask.libreoffice.org/en/question/64422/tool-camera-in-ms-excell/

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

2018-01-12 Thread Caolán McNamara
 sc/source/core/tool/interpr7.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit a916fc0c0e0e8b10cb4158fa0fa173fe205d434a
Author: Caolán McNamara 
Date:   Wed Jan 10 14:27:35 2018 +

limit WEBSERVICE to http[s] protocols

and like excel...

'For protocols that aren’t supported, such as ftp:// or file://, WEBSERVICE
returns the #VALUE! error value.'

Change-Id: I0e9c6fd3426fad56a199eafac48de9b0f23914b3
Reviewed-on: https://gerrit.libreoffice.org/47776
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/source/core/tool/interpr7.cxx b/sc/source/core/tool/interpr7.cxx
index 738447ea16dd..025b1ba0a3d0 100644
--- a/sc/source/core/tool/interpr7.cxx
+++ b/sc/source/core/tool/interpr7.cxx
@@ -14,6 +14,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -247,6 +248,14 @@ void ScInterpreter::ScWebservice()
 return;
 }
 
+INetURLObject aObj(aURI, INetProtocol::File);
+INetProtocol eProtocol = aObj.GetProtocol();
+if (eProtocol != INetProtocol::Http && eProtocol != 
INetProtocol::Https)
+{
+PushError( FormulaError::NoValue );
+return;
+}
+
 uno::Reference< ucb::XSimpleFileAccess3 > xFileAccess( 
ucb::SimpleFileAccess::create( comphelper::getProcessComponentContext() ), 
uno::UNO_QUERY );
 if(!xFileAccess.is())
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: ios/CustomTarget_iOS_setup.mk

2018-01-12 Thread jan Iversen
 ios/CustomTarget_iOS_setup.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a5eea680720dd8f3c78143ac635dafdf09b5dd14
Author: jan Iversen 
Date:   Fri Jan 12 17:05:59 2018 +0100

iOS, add .py dependency to native-code.h

Change-Id: I165d59228c2b273d758d1222dce8e653bdca0039

diff --git a/ios/CustomTarget_iOS_setup.mk b/ios/CustomTarget_iOS_setup.mk
index 9b7986cfda46..e159e2433fd2 100644
--- a/ios/CustomTarget_iOS_setup.mk
+++ b/ios/CustomTarget_iOS_setup.mk
@@ -36,7 +36,8 @@ $(WORKDIR)/ios:
 
 #- Generate dynamic files  ---
 $(IOSGEN)/native-code.h: $(WORKDIR)/ios $(BUILDDIR)/config_host.mk \
- $(SRCDIR)/ios/CustomTarget_iOS_setup.mk
+ $(SRCDIR)/ios/CustomTarget_iOS_setup.mk \
+$(SRCDIR)/solenv/bin/native-code.py
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ENV,2)
 
# generate file with call declarations
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-12 Thread Caolán McNamara
 cui/source/dialogs/linkdlg.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 69fac8ac09a5777d8d74eb72822410a5a02536c2
Author: Caolán McNamara 
Date:   Fri Jan 12 10:23:31 2018 +

show something for the link name if there is no link body

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

diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx
index 6d61767457a5..b9edcfbf5518 100644
--- a/cui/source/dialogs/linkdlg.cxx
+++ b/cui/source/dialogs/linkdlg.cxx
@@ -628,7 +628,7 @@ void SvBaseLinksDlg::InsertEntry( const SvBaseLink& rLink, 
sal_uLong nPos, bool
 
 if( aFileName.getLength() > aTxt.getLength() )
 aTxt = aFileName;
-else if( aTxt.indexOf( aFileName, aTxt.getLength() - aFileName.getLength() 
) == -1 )
+else if (!aFileName.isEmpty() && aTxt.indexOf(aFileName, aTxt.getLength() 
- aFileName.getLength()) == -1)
 // filename not in string
 aTxt = aFileName;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: wsd/DocumentBroker.cpp

2018-01-12 Thread Michael Meeks
 wsd/DocumentBroker.cpp |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 9335f6ff128b56876f5e7ef37b7983baa4d5b152
Author: Michael Meeks 
Date:   Fri Jan 12 16:16:56 2018 +

Warn if we exit with a modified document around.

Change-Id: Ie38ab49c66358f674e14820a6ffa993c25aa9e92

diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp
index d2d627a3..97ef771f 100644
--- a/wsd/DocumentBroker.cpp
+++ b/wsd/DocumentBroker.cpp
@@ -298,6 +298,13 @@ void DocumentBroker::pollThread()
 _poll->continuePolling() << ", ShutdownRequestFlag: " << 
ShutdownRequestFlag <<
 ", TerminationFlag: " << TerminationFlag << ", closeReason: " << 
_closeReason << ". Flushing socket.");
 
+if (_isModified)
+{
+std::stringstream state;
+dumpState(state);
+LOG_ERR("DocumentBroker stopping although modified " << state.str());
+}
+
 // Flush socket data first.
 const int flushTimeoutMs = POLL_TIMEOUT_MS * 2; // ~1000ms
 const auto flushStartTime = std::chrono::steady_clock::now();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114954] Incorrect calculation or failure to recalculate - EDITING

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114954

--- Comment #5 from m.a.riosv  ---
If I'm not wrong control key in Mac is Command ⌘
It should be ⌘ + shift + fn + F9
Maybe you can see the key combinations in Menu/Tools/Customize/Keyboard

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


[Libreoffice-bugs] [Bug 81757] Calculations order do not follow cell dependencies

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81757

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #15 from m.a.riosv  ---
A hard-recalc [Ctrl+Shift+F9] gives the correct result on bendAllowance.ods,
the same than the bendAllowance-old.ods

-- 
You are receiving this mail because:
You are the 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-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76817

Justin L  changed:

   What|Removed |Added

 CC||dwhee...@dwheeler.com

--- Comment #44 from Justin L  ---
*** Bug 87052 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 87052] EDITING: DOCX: Heading numbers incorrectly computed

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87052

Justin L  changed:

   What|Removed |Added

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

--- Comment #10 from Justin L  ---


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

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


[Libreoffice-bugs] [Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369
Bug 103369 depends on bug 87052, which changed state.

Bug 87052 Summary: EDITING: DOCX: Heading numbers incorrectly computed
https://bugs.documentfoundation.org/show_bug.cgi?id=87052

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 95377] Numbered paragraphs in DOCX (specific document?) do not show numbering in LibreOffice any more

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95377

Justin L  changed:

   What|Removed |Added

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

--- Comment #9 from Justin L  ---
not a duplicate

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


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

2018-01-12 Thread Stephan Bergmann
 cppuhelper/source/shlib.cxx |8 
 1 file changed, 8 deletions(-)

New commits:
commit 7f063b77da6db00806d9e6c60239a59d75ae3cee
Author: Stephan Bergmann 
Date:   Fri Jan 12 10:23:49 2018 +0100

Revert "Print the important failure messages on iOS even in a non-debug 
build"

This reverts commit ab07f81d0b5ffc4297d5f15d2458c5cc9217800f.

> Jan 12 10:21:35  tml_, is ab07f81d0b5ffc4297d5f15d2458c5cc9217800f
>  still relevant? (one could imagine that if one wants such debug output 
during
> development in a non-debug build, one could build with --enable-sal-log?)
> Jan 12 10:22:01  I have no idea what's relevant on iOS any longer
> Jan 12 10:22:26  ... but my gut feeling would be no, can be removed
> Jan 12 10:23:14  the rationale in the commit message sounds a bit 
thin
> Jan 12 10:24:02  surely one should test an ap well enough before
>  submitting, to verify that it isn't possible to get it to try to invoke a
>  constructor that isn't included

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

diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index e78071bb4774..52d8af821474 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -266,10 +266,6 @@ void cppuhelper::detail::loadSharedLibComponentFactory(
 }
 if (fp == 0) {
 SAL_WARN("cppuhelper", "unknown factory name \"" << name << "\"");
-#if defined IOS && !defined SAL_LOG_WARN
-// If the above SAL_WARN expanded to nothing, print to stderr...
-fprintf(stderr, "Unknown factory name %s\n", 
OUStringToOString(name, RTL_TEXTENCODING_UTF8).getStr());
-#endif
 throw css::loader::CannotActivateFactoryException(
 "unknown factory name \"" + name + "\"",
 css::uno::Reference());
@@ -290,10 +286,6 @@ void cppuhelper::detail::loadSharedLibComponentFactory(
 }
 }
 SAL_WARN("cppuhelper", "unknown constructor name \"" << constructor << 
"\"");
-#if defined IOS && !defined SAL_LOG_WARN
-// If the above SAL_WARN expanded to nothing, print to stderr...
-fprintf(stderr, "Unknown constructor name %s\n", 
OUStringToOString(constructor, RTL_TEXTENCODING_UTF8).getStr());
-#endif
 throw css::loader::CannotActivateFactoryException(
 "unknown constructor name \"" + constructor + "\"",
 css::uno::Reference());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114981] New: A fax printer set under Tools / Options / LibreOffice Writer / Print is not saved permanently.

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114981

Bug ID: 114981
   Summary: A fax printer set under Tools / Options / LibreOffice
Writer / Print is not saved permanently.
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: franklin.schif...@gmx.de

Description:
A fax printer set under Tools / Options / LibreOffice Writer / Print is not
saved permanently. As a result, the "Send standard fax" button does not really
work as expected.

Actual Results:  
Enter a fax printer under Tools / Options / LibreOffice Writer / Print Fax
Printer. Restart LibO after a certain time.


Expected Results:
The fax printer should be saved.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 5.4.4.2 (x64)
Build-ID: 2524958677847fb3bb44820e40380acbe820f960
CPU-Threads: 8; BS: Windows 6.19; UI-Render: Standard; 
Gebietsschema: de-DE (de_DE); Calc: group


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101
Firefox/57.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


Re: is _lo_get_constructor_map and _lo_get_factory_map processor dependent ?

2018-01-12 Thread jan iversen
> Definitions for those functions are generated by bin/native-code.py.  I
> do see uses of that (and of the generated native-code.h) in module ios
> (but have no further insight into that module).


Thanks that helps, I have seen native_code.h being generated when I do
fresh build, so it seems to be
a missing dependency or native-code.py have been changed.

Will take a look at that.
rgds
jan i

>
> --
Sent from My iPad, sorry for any misspellings.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 114952] filep is still used in soltools/mkdepend/parse.c

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114952

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 114970] Autofill keep cell format mode is needed

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114970

--- Comment #1 from Xavier Van Wijmeersch  ---
In newer versions from 5.3 => 6.1 alpha there is a something like paste only
text, number or formula. In 6.1 there is even more options.
Try to install a still or fresh LO and you will have what you want

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-commits] core.git: sfx2/uiconfig

2018-01-12 Thread Caolán McNamara
 sfx2/uiconfig/ui/linkeditdialog.ui |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 5f0b043e075b47fac7a42f2b5b39fc4f888be11a
Author: Caolán McNamara 
Date:   Fri Jan 12 09:58:20 2018 +

no button has default focus

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

diff --git a/sfx2/uiconfig/ui/linkeditdialog.ui 
b/sfx2/uiconfig/ui/linkeditdialog.ui
index 22fbce8eec58..d8bd427aa176 100644
--- a/sfx2/uiconfig/ui/linkeditdialog.ui
+++ b/sfx2/uiconfig/ui/linkeditdialog.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -21,6 +21,8 @@
 False
 True
 True
+True
+True
 True
 True
   
@@ -197,5 +199,8 @@
   ok
   cancel
 
+
+  
+
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2018-01-12 Thread Caolán McNamara
 sc/Library_sc.mk  |1 
 sc/inc/document.hxx   |2 
 sc/inc/documentlinkmgr.hxx|6 -
 sc/source/core/data/formulacell.cxx   |4 -
 sc/source/core/inc/webservicelink.hxx |   49 +
 sc/source/core/tool/interpr7.cxx  |  105 -
 sc/source/core/tool/webservicelink.cxx|  106 ++
 sc/source/ui/docshell/docsh4.cxx  |2 
 sc/source/ui/docshell/documentlinkmgr.cxx |   20 -
 sc/source/ui/view/tabvwsh4.cxx|2 
 10 files changed, 252 insertions(+), 45 deletions(-)

New commits:
commit 93ea7cb6b5ab3c9b964b2b38e8f4a3bde71dbadf
Author: Caolán McNamara 
Date:   Thu Jan 11 20:43:28 2018 +

handle ocWebservice similarly to ocDde

might have too much in here seeing as we don't need to worry about
ocWebservice calling into itself

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

diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk
index 890cafe689c2..9e1432c0a8c3 100644
--- a/sc/Library_sc.mk
+++ b/sc/Library_sc.mk
@@ -277,6 +277,7 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
 sc/source/core/tool/unitconv \
 sc/source/core/tool/userlist \
 sc/source/core/tool/viewopti \
+sc/source/core/tool/webservicelink \
 sc/source/core/tool/zforauto \
 sc/source/filter/xml/datastreamimport \
 sc/source/filter/xml/XMLCalculationSettingsContext \
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 28d815a748aa..b83aadc30a60 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -500,7 +500,7 @@ private:
 // for detective update, is set for each change of a formula
 boolbDetectiveDirty;
 
-boolbLinkFormulaNeedingCheck; // valid only after loading, 
for ocDde
+boolbLinkFormulaNeedingCheck; // valid only after loading, 
for ocDde and ocWebservice
 
 CharCompressTypenAsianCompression;
 sal_uInt8   nAsianKerning;
diff --git a/sc/inc/documentlinkmgr.hxx b/sc/inc/documentlinkmgr.hxx
index d5d801a4aeb2..86dba66f2d3d 100644
--- a/sc/inc/documentlinkmgr.hxx
+++ b/sc/inc/documentlinkmgr.hxx
@@ -55,9 +55,9 @@ public:
 bool idleCheckLinks();
 
 bool hasDdeLinks() const;
-bool hasDdeOrOleLinks() const;
+bool hasDdeOrOleOrWebServiceLinks() const;
 
-bool updateDdeOrOleLinks(vcl::Window* pWin);
+bool updateDdeOrOleOrWebServiceLinks(vcl::Window* pWin);
 
 void updateDdeLink( const OUString& rAppl, const OUString& rTopic, const 
OUString& rItem );
 
@@ -65,7 +65,7 @@ public:
 
 void disconnectDdeLinks();
 private:
-bool hasDdeOrOleLinks(bool bDde, bool bOle) const;
+bool hasDdeOrOleOrWebServiceLinks(bool bDde, bool bOle, bool bWebService) 
const;
 };
 
 }
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index 813f74f29655..7c52d3ff9c29 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -1358,9 +1358,9 @@ void ScFormulaCell::CompileXML( 
sc::CompileFormulaContext& rCxt, ScProgress& rPr
 bChanged = true;
 }
 
-//  After loading, it must be known if ocDde is in any formula
+//  After loading, it must be known if ocDde/ocWebservice is in any formula
 //  (for external links warning, CompileXML is called at the end of 
loading XML file)
-if (!pDocument->HasLinkFormulaNeedingCheck() && pCode->HasOpCodeRPN(ocDde))
+if (!pDocument->HasLinkFormulaNeedingCheck() && 
(pCode->HasOpCodeRPN(ocDde) || pCode->HasOpCodeRPN(ocWebservice)))
 pDocument->SetLinkFormulaNeedingCheck(true);
 
 //volatile cells must be added here for import
diff --git a/sc/source/core/inc/webservicelink.hxx 
b/sc/source/core/inc/webservicelink.hxx
new file mode 100644
index ..e61ebfdb4347
--- /dev/null
+++ b/sc/source/core/inc/webservicelink.hxx
@@ -0,0 +1,49 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; 
fill-column: 100 -*- */
+/*
+ * 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/.
+ */
+
+#ifndef INCLUDED_SC_SOURCE_CORE_INC_WEBSERVICE_HXX
+#define INCLUDED_SC_SOURCE_CORE_INC_WEBSERVICE_HXX
+
+#include 
+#include 
+#include 
+#include 
+
+class ScDocument;
+
+class ScWebServiceLink : public ::sfx2::SvBaseLink, public SvtBroadcaster
+{
+private:
+ScDocument* pDoc;
+OUString aURL; // connection/ link data
+bool bHasResult; // is set aResult is useful
+OUString aResult;
+
+public:
+

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

2018-01-12 Thread Caolán McNamara
 sc/inc/document.hxx |5 +
 sc/qa/unit/ucalc.cxx|1 +
 sc/source/core/data/documen2.cxx|1 +
 sc/source/core/data/formulacell.cxx |5 +
 sc/source/core/tool/interpr2.cxx|8 +++-
 sc/source/ui/docshell/docsh4.cxx|2 ++
 sc/source/ui/view/tabvwsh4.cxx  |2 +-
 7 files changed, 22 insertions(+), 2 deletions(-)

New commits:
commit dabcc069de794f38a04625cbc1cb5f70dcd3dff9
Author: Caolán McNamara 
Date:   Thu Jan 11 16:59:50 2018 +

Better handle ScDde formulas with missing dde-link entries

typically each ScDde formula has a matching table:dde-link which
results in a ScDdeLink getting inserted during the load. If that dde-link
is missing then no ScDdeLink exists and ScDde() will create a new one 
without
cached content. So detect that ScDde is used in the freshing loaded ods
and defer fetching new content until the right time.

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

diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 3d13fd4d649f..28d815a748aa 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -500,6 +500,8 @@ private:
 // for detective update, is set for each change of a formula
 boolbDetectiveDirty;
 
+boolbLinkFormulaNeedingCheck; // valid only after loading, 
for ocDde
+
 CharCompressTypenAsianCompression;
 sal_uInt8   nAsianKerning;
 
@@ -1988,6 +1990,9 @@ public:
 boolIsDetectiveDirty() const { return bDetectiveDirty; }
 voidSetDetectiveDirty(bool bSet) { bDetectiveDirty = bSet; }
 
+boolHasLinkFormulaNeedingCheck() const  { return 
bLinkFormulaNeedingCheck; }
+voidSetLinkFormulaNeedingCheck(bool bSet)   { 
bLinkFormulaNeedingCheck = bSet; }
+
 voidSetRangeOverflowType(ErrCode nType)  { nRangeOverflowType 
= nType; }
 boolHasRangeOverflow() const { return 
nRangeOverflowType != ERRCODE_NONE; }
 SC_DLLPUBLIC const ErrCode& GetRangeOverflowType() const{ return 
nRangeOverflowType; }
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 36572e564cb5..175564916e20 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -6548,6 +6548,7 @@ void Test::testEmptyCalcDocDefaults()
 CPPUNIT_ASSERT_EQUAL( false, m_pDoc->IdleCalcTextWidth() );
 CPPUNIT_ASSERT_EQUAL( true, m_pDoc->IsIdleEnabled() );
 CPPUNIT_ASSERT_EQUAL( false, m_pDoc->IsDetectiveDirty() );
+CPPUNIT_ASSERT_EQUAL( false, m_pDoc->HasLinkFormulaNeedingCheck() );
 CPPUNIT_ASSERT_EQUAL( false, 
m_pDoc->IsChartListenerCollectionNeedsUpdate() );
 
 CPPUNIT_ASSERT_EQUAL( false, m_pDoc->HasRangeOverflow() );
diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index bd0f72e76658..4e8e83614d5d 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -203,6 +203,7 @@ ScDocument::ScDocument( ScDocumentMode eMode, 
SfxObjectShell* pDocShell ) :
 bInDtorClear( false ),
 bExpandRefs( false ),
 bDetectiveDirty( false ),
+bLinkFormulaNeedingCheck( false ),
 nAsianCompression(CharCompressType::Invalid),
 nAsianKerning(SC_ASIANKERNING_INVALID),
 bPastingDrawFromOtherDoc( false ),
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index efab5fa09cf3..813f74f29655 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -1358,6 +1358,11 @@ void ScFormulaCell::CompileXML( 
sc::CompileFormulaContext& rCxt, ScProgress& rPr
 bChanged = true;
 }
 
+//  After loading, it must be known if ocDde is in any formula
+//  (for external links warning, CompileXML is called at the end of 
loading XML file)
+if (!pDocument->HasLinkFormulaNeedingCheck() && pCode->HasOpCodeRPN(ocDde))
+pDocument->SetLinkFormulaNeedingCheck(true);
+
 //volatile cells must be added here for import
 if( pCode->IsRecalcModeAlways() || pCode->IsRecalcModeForced() ||
 pCode->IsRecalcModeOnLoad() || pCode->IsRecalcModeOnLoadOnce() )
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 5464d9b6c778..ab07afe355e0 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -2780,8 +2780,14 @@ void ScInterpreter::ScDde()
 pBindings->Invalidate( SID_LINKS ); // 
Link-Manager enabled
 }
 
+//if the document was just loaded, but the ScDdeLink entry was 
missing, then
+//don't update this link until the links are updated in response 
to the users
+ 

[Libreoffice-bugs] [Bug 114980] IMPRESS - sidebar-masterslides are the thumbnails no longer shown at a distance.

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114980

Harald Berger  changed:

   What|Removed |Added

URL||https://www.dropbox.com/sh/
   ||fl240wr1fay6ty5/AADQoiFG8w2
   ||y1TBpdkHy0vD0a?dl=0
 CC||LO.Harald.Berger@t-online.d
   ||e

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


[Libreoffice-bugs] [Bug 114980] New: IMPRESS - sidebar-masterslides are the thumbnails no longer shown at a distance.

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114980

Bug ID: 114980
   Summary: IMPRESS - sidebar-masterslides are the thumbnails no
longer shown at a distance.
   Product: LibreOffice
   Version: 6.0.0.1 rc
  Hardware: PowerPC
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo.harald.ber...@t-online.de

Description:
In LibreOffice version: 6.0.0.1 (x64)
Build-ID: d2bec56d7865f05a1003dc88449f2b0fdd85309a
CPU-Threads: 8; BS: Windows 10.0; UI-Render: Standard; 
Gebietsschema: de-DE (de_DE); Calc: group
there in IMPRESS - sidebar-masterslides are the thumbnails
no longer shown at a distance. Two screenshots of the sidebars V5 and V6.0.0.1
(x64) for comparison, can be found here be considered:
https://www.dropbox.com/sh/fl240wr1fay6ty5/AADQoiFG8w2y1TBpdkHy0vD0a?dl=0

Actual Results:  
Open the sidebar-masterslides

Expected Results:
In the sidebar-masterslides are the thumbnails
no longer shown at a distance.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101
Firefox/57.0

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-0' - sc/source

2018-01-12 Thread Stephan Bergmann
 sc/source/ui/navipi/navipi.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit efb5faa2255d0b18705e908a46d403cbe26d25d0
Author: Stephan Bergmann 
Date:   Thu Jan 11 17:20:02 2018 +0100

Add back initialization of ScNavigatorSettings::maExpandedVec

...lost with 2ea92be9973e6892727eae37ae958863702b3658 "convert SC_CONVERT
constants to scoped enum".  And indeed, e.g., opening the document from
 through 
steps 1
and 2 in a UBSan build reports a use of an uninitialized (bad-valued) bool 
in
ScNavigatorSettings::IsExpanded.

Change-Id: If0dfadc6bd8033e61e334f59b3028ab005a892cd
Reviewed-on: https://gerrit.libreoffice.org/47767
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 
(cherry picked from commit fbec01b7af438fc7409c875e59be7483772b53a2)
Reviewed-on: https://gerrit.libreoffice.org/47785
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sc/source/ui/navipi/navipi.cxx b/sc/source/ui/navipi/navipi.cxx
index b980f8354ebe..e84c61e056dc 100644
--- a/sc/source/ui/navipi/navipi.cxx
+++ b/sc/source/ui/navipi/navipi.cxx
@@ -435,6 +435,7 @@ ScNavigatorSettings::ScNavigatorSettings()
 : mnRootSelected(ScContentId::ROOT)
 , mnChildSelected(SC_CONTENT_NOCHILD)
 {
+maExpandedVec.fill(false);
 }
 
 SFX_IMPL_CHILDWINDOWCONTEXT( ScNavigatorDialogWrapper, SID_NAVIGATOR )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114979] New: CSV "Save cell contents as shown"? Show a preview

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114979

Bug ID: 114979
   Summary: CSV "Save cell contents as shown"? Show a preview
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: documentfoundat...@londonlight.org

When I try to save that as CSV, I get:
https://i.imgur.com/llEQzZb.png
What on earth is "Save cell contents as shown"? No tooltip, nothing on Google
except for a bug report which says that it should be disabled by default (it's
still enabled by default).

The CSV "Export Text File" window should show a preview of what the saved data
will look like.

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


[Libreoffice-bugs] [Bug 114968] LibreOffice CPU usage at ~100% after opening specific file [ docx]

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114968

--- Comment #3 from Telesto  ---
No repro with
Version: 5.2.5.0.0+
Build ID: a4d4fbeb623013f6377b30711ceedb38ea4b49f8
CPU Threads: 4; OS Version: Windows 6.2; UI Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:libreoffice-5-2, Time:
2016-12-24_14:43:55
Locale: nl-NL (nl_NL); 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 114968] LibreOffice CPU usage at ~100% after opening specific file [ docx]

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114968

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|UNCONFIRMED |NEW
 CC||tele...@surfxs.nl
 Ever confirmed|0   |1

--- Comment #2 from Telesto  ---
Repro with
Version: 6.1.0.0.alpha0+
Build ID: a9b202a6b7000e7af34f2a639ca207122a3968bf
CPU threads: 4; OS: Windows 6.3; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-12-26_23:10:23
Locale: nl-NL (nl_NL); Calc: CL

but not with
Versie: 4.4.7.2 
Build ID: f3153a8b245191196a4b6b9abd1d0da16eead600
Locale: nl_NL

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


[Libreoffice-bugs] [Bug 114978] New: Save As window does not remember last-used folder

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114978

Bug ID: 114978
   Summary: Save As window does not remember last-used folder
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: documentfoundat...@londonlight.org

The Save As window does not remember last-used folder in the same session.
Every subsequent time I Ctrl+S the same document, it should open in the folder
I last saved to.

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


[Libreoffice-bugs] [Bug 114844] Font substitution in attached PDF changed between 5.2 and 5.3

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114844

--- Comment #10 from Aron Budea  ---
(In reply to Adolfo Jayme from comment #9)
> That would be my guess as well; Ubuntu includes URW Palladio L as a Palatino
> substitute, but that is a Type 1 font, which would explain its disappearance
> from newer LibreOffice versions.
Ah, I didn't know there were clones of this font. Not only that, there are
actually new FOSS versions as well, FPL Neu and TeX Gyre Pagella.
Eg. in Ubuntu TeX Gyre Pagella can be installed separately through the
'tex-gyre' package, which fixes font substitution in the attached PDF.

A general question about font substitution, could the handling of metrics be
improved when the font is missing, to avoid badly looking output as it is in
attachment 138932? I don't know what kind of information can be collected from
the PDF.

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


FOSDEM Wiki Page

2018-01-12 Thread Italo Vignoli
I have created a wiki page with FOSDEM related information, which is
very important especially for the social dinner on Saturday (as we have
a maximum capacity of 100 people). You are kindly requested to register
ASAP, as this year we will not accept last minute reservations (we are
sourcing the food, so we have to plan it carefully).

https://wiki.documentfoundation.org/Events/2018/FOSDEM

Please forward the wiki page address to the relevant people, if they are
not subscribed to this list.

Thanks, Italo

-- 
Italo Vignoli - it...@italovignoli.com
mobile/signal +39.348.5653829 - skype italovignoli
hangout/jabber italo.vign...@gmail.com
GPG Key ID - 0xAAB8D5C0
DB75 1534 3FD0 EA5F 56B5 FDA6 DE82 934C AAB8 D5C0
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 94437] Editing: entries from a deleted alphabetic index reappear when a new index is inserted

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94437

--- Comment #15 from Bernard Moreton  ---
The problem still exists in LO 5.4.4.2 on Ubuntu 16.04 LTS, at least when using
the test documents suppplied.  

As before, the first attempt to insert the index inserted it on p.18, not at
the end, on p.21, though the cursor had been at the end of the document
already.

I still have not seen any "small grey squares" in the Writer document; perhaps
they're in the XML?  Anyway, I still seem to be stuck with the original index
entries, even though they were generated from that earlier concordance file
format.

I'd really like to get shot of them!

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


[Libreoffice-bugs] [Bug 114965] LibreOffice v5.3.7 and v5.4.4 unusable after installation and security check on macOS High Sierra

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114965

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Alex Thurgood  ---
@Fabien:

1) what are your Gatekeeper settings ?

2) Can you try running the following command from the Terminal and then attempt
to start LibreOffice :


xattr -d com.apple.quarantine /Applications/LibreOffice.app


Please report back your findings here.

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


[Libreoffice-bugs] [Bug 113751] Borders for Merged Cells are Partially Shown

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113751

Armin Le Grand (CIB)  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |armin.le.gr...@me.com
   |desktop.org |

--- Comment #15 from Armin Le Grand (CIB)  ---
Could reproduce with much smaller cells. Problem seems to have to do with
scrolling in merged cells when top-left is not visible in that in-between
state. Then merged cells seem not to handle their merged borders correctly -
they assume that it's handled from the start cells (leftmost, topmost). If that
one is not shown in that in-between state, there may be a problem.

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


[Libreoffice-bugs] [Bug 114929] Make =-3^2 unambiguous by automatically adding brackets

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114929

--- Comment #3 from Karel Hruska  ---
(In reply to Mike Kaganski from comment #2)
> (In reply to Regina Henschel from comment #0)
> > ... as in common school mathematic ...
> 
> "Common school" mathematics doesn't say anything about priority of minus as
> a negative number sign. It deals with priorities of operations, and minus in
> mathematical notation of a number (e.g, -10) is not an operation, but a part
> of the number, like "1" and "0" are part of 10, and no need to define those
> "0" and "1" priorities wrt other parts of expression - they substitute an
> atomic entity. The equivalency of "-10" to "0-10" is computational, it does
> not translate to equivalency of behavior of expression parts.

Okay, let's not talk about numbers, but about expressions.

Let's cell A1 be number "3" and the content of cell B1 be "=-A1^2". Common
school math say, that in the first order the number 3 should be powered by 2,
then the minus sign should be added. This is something that LO does not do.

Similar example:

Common school math says, that relation

z = -i_M^2/(3*u) + u + i_DELTA^2/8

is equivalent to 

z = u + i_DELTA^2/8 - i_M^2/(3*u)

If you try to implement the first expression in LO Calc, you MUST add brackets
like following

z = -(i_M^2)/(3*u) + u + i_DELTA^2/8

otherwise the previously mentioned rule is broken.

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


[Libreoffice-bugs] [Bug 114962] LibreOffice changes position of table alot [docx]

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114962

Telesto  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 114975] Fileopen: Shapes from 2007 docx don' t look correct although better if saved as 2013 docx

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114975

--- Comment #1 from Timur  ---
Created attachment 139067
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139067=edit
shape 2013.docx

Looks better if saved in MSO as 2013 docx. 
An arrow missing.

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


[Libreoffice-bugs] [Bug 114970] New: Autofill keep cell format mode is needed

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114970

Bug ID: 114970
   Summary: Autofill keep cell format mode is needed
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: engil...@gmail.com

Could you please add the Autofill mode without format changing. E.g. when user
is dragging the cell bottom right handle with Alt key do not copy the source
cell format.

When you are dragging the bottom right cell handle the Autofill is copying the
format cell as well. Often it is needed to autofill formulas or values only and
keep the cell format (background, color etc).

Also you can add toolbar button to switch Autofill modes.

Here is discussion with workaround:
https://forum.openoffice.org/en/forum/viewtopic.php?f=9=31609

-- 
You are receiving this mail because:
You 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-01-12 Thread Jochen Nitschke
 sc/inc/token.hxx  |3 ++-
 sc/source/core/tool/token.cxx |2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 6267b56f2dfcbcf5a6b30698e3ead68ce1b724e7
Author: Jochen Nitschke 
Date:   Wed Jan 10 22:11:08 2018 +0100

move implementation of ScMatrixCellResultToken copy-constructor

from header to source file.

Revert "no matching function for call to 'intrusive_ptr_add_ref'"

This reverts commit a49be6bd585ac4610cbf04ca3525f2d90a770367.

Also reverts small part of
commit fd3fc84e590fc84f62ce3bace668fe40a25f54b5

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

diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx
index 065fb2affccd..5658dd0889ce 100644
--- a/sc/inc/token.hxx
+++ b/sc/inc/token.hxx
@@ -28,7 +28,6 @@
 #include "refdata.hxx"
 #include 
 #include "scdllapi.h"
-#include "scmatrix.hxx"
 #include 
 #include 
 #include "calcmacros.hxx"
@@ -44,6 +43,7 @@ struct RangeMatrix;
 }
 
 class ScJumpMatrix;
+class ScMatrix;
 
 typedef ::std::vector< ScComplexRefData > ScRefList;
 
@@ -299,6 +299,7 @@ protected:
 formula::FormulaConstTokenRef xUpperLeft;
 public:
 ScMatrixCellResultToken( const ScConstMatrixRef& pMat, const 
formula::FormulaToken* pUL );
+ScMatrixCellResultToken( const ScMatrixCellResultToken& );
 virtual ~ScMatrixCellResultToken() override;
 virtual double  GetDouble() const override;
 virtual svl::SharedString GetString() const override;
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 9921df0517f2..6028ac2e1ab0 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1010,6 +1010,8 @@ bool ScEmptyCellToken::operator==( const FormulaToken& r 
) const
 ScMatrixCellResultToken::ScMatrixCellResultToken( const ScConstMatrixRef& 
pMat, const formula::FormulaToken* pUL ) :
 FormulaToken(formula::svMatrixCell), xMatrix(pMat), xUpperLeft(pUL) {}
 
+ScMatrixCellResultToken::ScMatrixCellResultToken( const 
ScMatrixCellResultToken& ) = default;
+
 double  ScMatrixCellResultToken::GetDouble() const  { return 
xUpperLeft->GetDouble(); }
 
 ScMatrixCellResultToken::~ScMatrixCellResultToken() {}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 105762] Implement WIA based scanner support for LO Windows builds, 64 bit TWAIN drivers are not viable

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105762

--- Comment #9 from Mike Kaganski  ---
A pointer to a one-function-does-it-all for potential implementers:

https://msdn.microsoft.com/en-us/library/windows/desktop/aa359932

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


[Libreoffice-bugs] [Bug 108246] 100% cpu usage with no open document

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108246

--- Comment #15 from Francisco Pina Martins  ---
I just wanted to add here, for anyone bumping into this like me, that
glib-2.54.3 makes this issue return.

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


[Libreoffice-bugs] [Bug 114928] Language Valencian

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114928

--- Comment #2 from Adolfo Jayme  ---
Em sembla que seria molt més positiu per a aquest projecte que, en lloc de
debatre fins al cansament si el valencià és una llengua distinta del català (la
qual cosa no ens correspon decidir, i com el Xisco apunta, la majoria dels
filòlegs prestigiosos han decidit que en són la mateixa), es contribuïra a la
traducció de la varietat valenciana; ens fan falta voluntaris.

https://translations.documentfoundation.org/ca-valencia
http://www.softvalencia.org/collaboreu/

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


[Libreoffice-bugs] [Bug 114966] https://mirror.kumi.systems sends wrong mime type for updates

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114966

--- Comment #2 from Florian Effenberger  ---
I'm not involved in infra too deply anymore. :-)
Best is to write to hostmas...@documentfoundation.org to reach the infra team

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

2018-01-12 Thread Caolán McNamara
 lotuswordpro/inc/lwpfrib.hxx|4 
 lotuswordpro/source/filter/lwpchangemgr.cxx |2 ++
 lotuswordpro/source/filter/lwpfrib.cxx  |   18 +-
 3 files changed, 23 insertions(+), 1 deletion(-)

New commits:
commit b39f962e0be52f0d8380e1662f88a2f627fbfb89
Author: Caolán McNamara 
Date:   Fri Jan 12 09:43:41 2018 +

ofz#5254 Bad-cast

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

diff --git a/lotuswordpro/inc/lwpfrib.hxx b/lotuswordpro/inc/lwpfrib.hxx
index 4e824c0002f4..6ff3cad39a98 100644
--- a/lotuswordpro/inc/lwpfrib.hxx
+++ b/lotuswordpro/inc/lwpfrib.hxx
@@ -97,6 +97,7 @@ public:
 OUString GetEditor();
 XFColor GetHighlightColor();
 protected:
+std::map* m_pFribMap;
 LwpPara* m_pPara;
 LwpFrib* m_pNext;
 sal_uInt8 m_nFribType;
@@ -119,6 +120,9 @@ public:
 REV_INSERT =0,
 REV_DELETE = 1,
 };
+
+void Register(std::map* pFribMap);
+void Deregister();
 private:
 static void ReadModifiers(LwpObjectStream* pObjStrm,ModifierInfo* 
pModInfo);
 protected:
diff --git a/lotuswordpro/source/filter/lwpchangemgr.cxx 
b/lotuswordpro/source/filter/lwpchangemgr.cxx
index e08ee979869d..c04241aaccb4 100644
--- a/lotuswordpro/source/filter/lwpchangemgr.cxx
+++ b/lotuswordpro/source/filter/lwpchangemgr.cxx
@@ -89,6 +89,7 @@ LwpChangeMgr::LwpChangeMgr()
 m_pFribMap = _DocFribMap;
 m_ChangeList.clear();
 }
+
 LwpChangeMgr::~LwpChangeMgr()
 {
 m_pFribMap=nullptr;
@@ -102,6 +103,7 @@ void LwpChangeMgr::AddChangeFrib(LwpFrib* pFrib)
 m_nCounter++;
 OUString sID = "ct"+ OUString::number(m_nCounter);
 m_pFribMap->insert(std::pair(pFrib,sID));
+pFrib->Register(m_pFribMap);
 }
 
 OUString LwpChangeMgr::GetChangeID(LwpFrib* pFrib)
diff --git a/lotuswordpro/source/filter/lwpfrib.cxx 
b/lotuswordpro/source/filter/lwpfrib.cxx
index f9b3ad759d3c..919b257be043 100644
--- a/lotuswordpro/source/filter/lwpfrib.cxx
+++ b/lotuswordpro/source/filter/lwpfrib.cxx
@@ -87,7 +87,8 @@
 
 
 LwpFrib::LwpFrib(LwpPara* pPara)
-: m_pPara(pPara)
+: m_pFribMap(nullptr)
+, m_pPara(pPara)
 , m_pNext(nullptr)
 , m_nFribType(0)
 , m_pModifiers(nullptr)
@@ -100,6 +101,7 @@ LwpFrib::LwpFrib(LwpPara* pPara)
 
 LwpFrib::~LwpFrib()
 {
+Deregister();
 }
 
 LwpFrib* LwpFrib::CreateFrib(LwpPara* pPara, LwpObjectStream* pObjStrm, 
sal_uInt8 fribtag,sal_uInt8 editID)
@@ -447,4 +449,18 @@ XFColor LwpFrib::GetHighlightColor()
 return pGlobal->GetHighlightColor(m_nEditor);
 }
 
+void LwpFrib::Register(std::map* pFribMap)
+{
+m_pFribMap = pFribMap;
+}
+
+void LwpFrib::Deregister()
+{
+if (m_pFribMap)
+{
+m_pFribMap->erase(this);
+m_pFribMap = nullptr;
+}
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 104468] [META] DOCX (OOXML) image-related issues

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104468
Bug 104468 depends on bug 49260, which changed state.

Bug 49260 Summary: Misplaced images and some other graphics in docx files
https://bugs.documentfoundation.org/show_bug.cgi?id=49260

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 49260] Misplaced images and some other graphics in docx files

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49260

Timur  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #17 from Timur  ---
This is one of those older "document based" bugs that's not properly triaged in
order to have "issue based" bugs. 
Bugzilla is "issue based", so a single issue must be pointed at, after a search
for not being a duplicate. 
Bugzilla is not "document based", like "this document doesn't display nice". 
And those bugs may stay open for a long time, unlikely that anyone will look at
them.

As for attachment 60745, looks nice except last shape (it's not image). That
one looks worse as original 2007 docx and better if saved as 2013 docx. Should
be reported separately. I'm not an optimist due to a number of open shapes
bugs.

Attachment 69995 is unrelated, it's about images order and handling and LO
freezes. 9 images on 3 pages. I'll report separately, although there are many
bugs for images handling. This is a good example to test it. 

So I'll close this one as Invalid.

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


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

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103152
Bug 103152 depends on bug 49260, which changed state.

Bug 49260 Summary: Misplaced images and some other graphics in docx files
https://bugs.documentfoundation.org/show_bug.cgi?id=49260

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 114783] Display size of document on a HDMI attached Monitor is more than twice the expected size

2018-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114783

--- Comment #4 from Uwe Altmann  ---
Opening the Help-System, left side of the window (Navigation with dropdown list
and tabs for Content, Index, Search..) all is normal size. 
Only the help content itself (right side of the window) is displayed oversized.

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