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

2020-04-14 Thread andreas kainz (via logerrit)
 svx/uiconfig/ui/sidebargallery.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c46d30d0f7c6363c0c43efa5d527769bbf3163f4
Author: andreas kainz 
AuthorDate: Wed Apr 15 00:14:51 2020 +0200
Commit: andreas_kainz 
CommitDate: Wed Apr 15 07:44:55 2020 +0200

Gallery sidebar: shape section get more vertical space

Change-Id: I37409b991d3f111d257a69721c8cdf443126e75d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92233
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/svx/uiconfig/ui/sidebargallery.ui 
b/svx/uiconfig/ui/sidebargallery.ui
index 12e319dfe38a..1409f410e63f 100644
--- a/svx/uiconfig/ui/sidebargallery.ui
+++ b/svx/uiconfig/ui/sidebargallery.ui
@@ -130,7 +130,7 @@
 
   
   
-True
+False
 True
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132083] FORMATTING - Wrong date substraction in cell's operation

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132083

Mike Kaganski  changed:

   What|Removed |Added

 CC||er...@redhat.com

--- Comment #16 from Mike Kaganski  ---
Eike: I give up. While I suppose I made my point in Bug 127334 comment 8, some
people seem to believe that if they say the same in multiple times, they will
not create irritation in those who might actually fix it.

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


[Libreoffice-commits] core.git: Branch 'feature/drawinglayercore' - 17 commits - drawinglayer/CppunitTest_drawinglayer_border.mk drawinglayer/inc drawinglayer/Library_drawinglayercore.mk drawinglayer/

2020-04-14 Thread Tomaž Vajngerl (via logerrit)
Rebased ref, commits from common ancestor:
commit 0d16c1b2f76ac5d6424cb0bfb66ecb3b15521213
Author: Tomaž Vajngerl 
AuthorDate: Tue Apr 14 20:48:56 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 15 07:21:36 2020 +0200

use pragma once

Change-Id: Ia78cc4ee565a5f39835499764b1f2d0a2a72c5ba

diff --git a/include/vcl/GraphicNativeMetadata.hxx 
b/include/vcl/GraphicNativeMetadata.hxx
index b6b162556e76..118efa480df8 100644
--- a/include/vcl/GraphicNativeMetadata.hxx
+++ b/include/vcl/GraphicNativeMetadata.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_VCL_GRAPHICNATIVEMETADATA_HXX
-#define INCLUDED_VCL_GRAPHICNATIVEMETADATA_HXX
+#pragma once
 
 #include 
 
@@ -34,6 +33,4 @@ public:
 sal_uInt16 getRotation() const { return mRotation;}
 };
 
-#endif // INCLUDED_VCL_GRAPHICNATIVEMETADATA_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/GraphicNativeTransform.hxx 
b/include/vcl/GraphicNativeTransform.hxx
index c8203377dc55..318327bf5b66 100644
--- a/include/vcl/GraphicNativeTransform.hxx
+++ b/include/vcl/GraphicNativeTransform.hxx
@@ -17,12 +17,12 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_VCL_GRAPHICNATIVETRANSFORM_HXX
-#define INCLUDED_VCL_GRAPHICNATIVETRANSFORM_HXX
+#pragma once
 
 #include 
 #include 
 #include 
+
 class Graphic;
 
 class VCL_DLLPUBLIC GraphicNativeTransform final
@@ -40,6 +40,4 @@ public:
 void rotate(sal_uInt16 aRotation);
 };
 
-#endif // INCLUDED_VCL_GRAPHICNATIVETRANSFORM_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/filter/jpeg/Exif.hxx b/vcl/source/filter/jpeg/Exif.hxx
index 47c34e427810..6052a44842da 100644
--- a/vcl/source/filter/jpeg/Exif.hxx
+++ b/vcl/source/filter/jpeg/Exif.hxx
@@ -17,12 +17,12 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX
-#define INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX
+#pragma once
 
 #include 
 
 namespace exif {
+
 enum Orientation {
 TOP_LEFT= 1,
 TOP_RIGHT   = 2,
@@ -80,6 +80,4 @@ public:
 
 };
 
-#endif // INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 43ec84a47744b41ad9499d5764fa17b752d59f62
Author: Tomaž Vajngerl 
AuthorDate: Wed Apr 1 13:00:25 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 15 07:21:36 2020 +0200

Add OutputDevice::drawPrimitive2D to OutputDevice

Change-Id: Ifc22eca62df72bddd247ba097054f34756520614

diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index e4430b2415f3..44aa8f821dae 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -49,6 +49,8 @@
 #include 
 #include 
 
+#include 
+
 #include 
 #include 
 
@@ -1955,6 +1957,9 @@ public:
 ///@}
 
 
+bool drawPrimitive2D(drawinglayer::primitive2d::Primitive2DContainer & 
rPrimitive2D);
+
+
 /** @name Native Widget Rendering functions
 
 These all just call through to the private mpGraphics functions of the 
same name.
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index 50bdf3b3ca72..3be86dd6c72b 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -80,6 +80,7 @@ $(eval $(call gb_Library_use_libraries,vcl,\
 basegfx \
 comphelper \
 cppuhelper \
+drawinglayercore \
 i18nlangtag \
 i18nutil \
 $(if $(filter OPENCL,$(BUILD_TYPE)),opencl) \
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index 0dcdd84a5d0a..52f31234caa3 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -713,4 +713,9 @@ bool OutputDevice::DrawEPS( const Point& rPoint, const 
Size& rSize,
 return bDrawn;
 }
 
+bool 
OutputDevice::drawPrimitive2D(drawinglayer::primitive2d::Primitive2DContainer & 
rPrimitive2D)
+{
+return false;
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 945d20aca842c5571755162aa259b163797dd683
Author: Tomaž Vajngerl 
AuthorDate: Sat Mar 7 14:33:43 2020 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 15 07:21:36 2020 +0200

Separate core drawinglayer func. into drawinglayercore library

This separates the drawinglayer core functionallity into a
separate library, to keep a strict separation what is backend
dependent and what is not. More strict separation can be done
at a later date.

This will make it possible to push part of drawinglayer
(part of processor2d) directly into VCL.

Change-Id: Ibc26580067e50bf20d7cdd37fa0e44eb10200878

diff --git a/Repository.mk b/Repository.mk
index 83e8ffa6d885..52b4db88e46e 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -351,6 +351,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
$(call gb_Helper_optional,SCRIPTING,dlgprov) \
$(if $(filter WNT,$(OS)),directx9canvas) \
$(if 

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

2020-04-14 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx |   79 
 drawinglayer/source/processor2d/vclpixelprocessor2d.hxx |2 
 2 files changed, 44 insertions(+), 37 deletions(-)

New commits:
commit eae4bd69727bcdb15b9951061fd997f48ddf0ea4
Author: Tomaž Vajngerl 
AuthorDate: Sun Apr 12 13:30:56 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 15 07:21:04 2020 +0200

move GlowPrimitive processing in VclPixelProcessor to own method

The new method is processGlowPrimitive.

Change-Id: I3e7eb9fc5ac45095dd0f6c3bff7d036e05864d89
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92224
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
index 9102230f4305..e94637a9a7fe 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
@@ -40,6 +40,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -356,43 +357,7 @@ namespace drawinglayer::processor2d
 }
 case PRIMITIVE2D_ID_GLOWPRIMITIVE2D:
 {
-basegfx::B2DRange 
aRange(rCandidate.getB2DRange(getViewInformation2D()));
-aRange.transform(maCurrentTransformation);
-aRange.grow(10.0);
-impBufferDevice aBufferDevice(*mpOutputDevice, aRange);
-if(aBufferDevice.isVisible())
-{
-// remember last OutDev and set to content
-OutputDevice* pLastOutputDevice = mpOutputDevice;
-mpOutputDevice = ();
-// paint content to virtual device
-mpOutputDevice->Erase();
-process(rCandidate);
-
-// obtain result as a bitmap
-auto bitmap = 
mpOutputDevice->GetBitmapEx(Point(aRange.getMinX(), aRange.getMinY()), 
Size(aRange.getWidth(), aRange.getHeight()));
-constexpr double nRadius = 5.0;
-bitmap.Scale(Size(aRange.getWidth()-nRadius, 
aRange.getHeight()-nRadius));
-// use bitmap later as mask
-auto mask = bitmap.GetBitmap();
-
-mpOutputDevice = ();
-process(rCandidate);
-bitmap = 
mpOutputDevice->GetBitmapEx(Point(aRange.getMinX(), aRange.getMinY()), 
Size(aRange.getWidth(), aRange.getHeight()));
-bitmap.Scale(Size(aRange.getWidth()-nRadius, 
aRange.getHeight()-nRadius));
-
-// calculate blurry effect
-BitmapFilterStackBlur glowFilter(nRadius);
-BitmapFilter::Filter(bitmap, glowFilter);
-// back to old OutDev
-mpOutputDevice = pLastOutputDevice;
-
mpOutputDevice->DrawBitmapEx(Point(aRange.getMinX()-nRadius/2, 
aRange.getMinY()-nRadius/2), BitmapEx(bitmap.GetBitmap(), mask));
-
-// paint result
-//aBufferDevice.paint();
-}
-else
-SAL_WARN("drawinglayer", "Temporary buffered virtual 
device is not visible");
+processGlowPrimitive2D(static_cast(rCandidate));
 break;
 }
 default :
@@ -880,6 +845,46 @@ namespace drawinglayer::processor2d
 }
 }
 
+void VclPixelProcessor2D::processGlowPrimitive2D(const 
primitive2d::GlowPrimitive2D& rCandidate)
+{
+basegfx::B2DRange 
aRange(rCandidate.getB2DRange(getViewInformation2D()));
+aRange.transform(maCurrentTransformation);
+aRange.grow(10.0);
+impBufferDevice aBufferDevice(*mpOutputDevice, aRange);
+if (aBufferDevice.isVisible())
+{
+// remember last OutDev and set to content
+OutputDevice* pLastOutputDevice = mpOutputDevice;
+mpOutputDevice = ();
+// paint content to virtual device
+mpOutputDevice->Erase();
+process(rCandidate);
+
+// obtain result as a bitmap
+auto bitmap = 
mpOutputDevice->GetBitmapEx(Point(aRange.getMinX(), aRange.getMinY()), 
Size(aRange.getWidth(), aRange.getHeight()));
+constexpr double nRadius = 5.0;
+bitmap.Scale(Size(aRange.getWidth()-nRadius, 
aRange.getHeight()-nRadius));
+// use bitmap later as mask
+auto mask = bitmap.GetBitmap();
+
+mpOutputDevice = ();
+process(rCandidate);
+bitmap = 

[Libreoffice-bugs] [Bug 132106] CELL() function "format" should include more date formats to return "D1"

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132106

--- Comment #2 from Mike Kaganski  ---
Created attachment 159569
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159569=edit
Sample with CELL("format")

This gives "G" in both cases in Excel 2016.

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


[Libreoffice-bugs] [Bug 131747] Add method to copy formula object as an image.

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131747

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 131749] When updating external references to websites within libreoffice calc, the process uses all memory, until the operating system kills it.

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131749

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 131734] libreoffice attempts to recover read-only documents

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131734

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 131683] Missing elements for fast parsing when loading file from tdf#126715

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131683

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 131740] TrueType fonts with Chinese slow down LibreOffice

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131740

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 131724] Allow for virtual XDocumentDataSource to be registered

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131724

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 131730] The icons of the toolbar(and generaly in the whole interface) are pixelated (in bad resolution) in Windows 10.

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131730

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 118260] Multi-line description in cell or on image, IME's position is bad

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118260

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

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


[Libreoffice-bugs] [Bug 127581] Adding JRE to Base isn't possible

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127581

--- Comment #3 from QA Administrators  ---
Dear wteuschel,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486
Bug 90486 depends on bug 122876, which changed state.

Bug 122876 Summary: Bubble chart looks different after reopen
https://bugs.documentfoundation.org/show_bug.cgi?id=122876

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 118260] Multi-line description in cell or on image, IME's position is bad

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118260

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 127581] Adding JRE to Base isn't possible

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127581

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

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


[Libreoffice-bugs] [Bug 122876] Bubble chart looks different after reopen

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122876

--- Comment #7 from QA Administrators  ---
Dear York Richter,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 122876] Bubble chart looks different after reopen

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122876

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 128202] Last used position in dialog Tools > Options not remembered

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128202

--- Comment #3 from QA Administrators  ---
Dear Cor Nouws,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 127895] DROP DOWN MENU cannot display FORMAT CELL selection, it is below my task bar.

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127895

--- Comment #2 from QA Administrators  ---
Dear pixi...@gmail.com,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 128210] EDITING: Crash in: SfxItemSet::Get(unsigned short, bool)

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128210

--- Comment #2 from QA Administrators  ---
Dear trawa92,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 128168] Dans Writer, le clonage du formatage ne fonctionne pas de temps en temps

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128168

--- Comment #3 from QA Administrators  ---
Dear serge.bouc...@univ-tln.fr,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 132110] New: Wizard service broken

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132110

Bug ID: 132110
   Summary: Wizard service broken
   Product: LibreOffice
   Version: 6.4.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: prrv...@gmail.com

Hi,

I just tested last version 6.4.2.2...
And now I have two extensions with wizards that no longer open...

https://github.com/prrvchr/OAuth2OOo/blob/master/OAuth2OOo.oxt
https://github.com/prrvchr/smtpMailerOOo/blob/master/smtpMailerOOo.oxt

Can we know what has been changed in the Wizard service...

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 125701] iOS: Nextcloud Create From Template White Page

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125701

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #4 from Aron Budea  ---
Let's close, then. Nicolas, thanks for retesting!

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


[Libreoffice-bugs] [Bug 126939] iOS app fails to save DOCXs

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126939

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #8 from Aron Budea  ---
Let's close, then. Thanks for retesting, Andreas!

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


[Libreoffice-bugs] [Bug 132108] Add skia/vulkan info to the crash reporter metadata

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132108

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

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


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

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


[Libreoffice-bugs] [Bug 132109] Add skia/vulkan info to the crash reporter metadata

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132109

--- Comment #1 from V Stuart Foote  ---
*** Bug 132108 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-ux-advise] [Bug 131787] Gallery: Update Diagrams gallery

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131787

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

https://git.libreoffice.org/core/commit/0208021a66c26e781321b1f49f91d1d6b48dd523

tdf#131787 Update diagrams gallery with real shapes

It will be available in 7.0.0.

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

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

-- 
You are receiving this mail because:
You are 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 131787] Gallery: Update Diagrams gallery

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131787

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

https://git.libreoffice.org/core/commit/0208021a66c26e781321b1f49f91d1d6b48dd523

tdf#131787 Update diagrams gallery with real shapes

It will be available in 7.0.0.

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

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

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


[Libreoffice-commits] core.git: extras/Package_gallmytheme.mk extras/source

2020-04-14 Thread andreas kainz (via logerrit)
 extras/Package_gallmytheme.mk  |3 +++
 extras/source/gallery/gallery_mytheme/diagrams.sdg |binary
 extras/source/gallery/gallery_mytheme/diagrams.sdv |binary
 extras/source/gallery/gallery_mytheme/diagrams.thm |binary
 4 files changed, 3 insertions(+)

New commits:
commit 0208021a66c26e781321b1f49f91d1d6b48dd523
Author: andreas kainz 
AuthorDate: Wed Apr 15 00:21:40 2020 +0200
Commit: andreas_kainz 
CommitDate: Wed Apr 15 01:09:16 2020 +0200

tdf#131787 Update diagrams gallery with real shapes

Change-Id: I9c9f3323be624ef56a917ca54975f66f020e8e51
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92234
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/extras/Package_gallmytheme.mk b/extras/Package_gallmytheme.mk
index b19f4e170189..c4e8744ddf44 100644
--- a/extras/Package_gallmytheme.mk
+++ b/extras/Package_gallmytheme.mk
@@ -30,4 +30,7 @@ $(eval $(call 
gb_Package_add_files,extras_gallmytheme,$(LIBO_SHARE_PRESETS_FOLDE
network.sdg \
network.sdv \
network.thm \
+   diagrams.sdg \
+   diagrams.sdv \
+   diagrams.thm \
 ))
diff --git a/extras/source/gallery/gallery_mytheme/diagrams.sdg 
b/extras/source/gallery/gallery_mytheme/diagrams.sdg
new file mode 100644
index ..882b0b7d23c6
Binary files /dev/null and b/extras/source/gallery/gallery_mytheme/diagrams.sdg 
differ
diff --git a/extras/source/gallery/gallery_mytheme/diagrams.sdv 
b/extras/source/gallery/gallery_mytheme/diagrams.sdv
new file mode 100644
index ..72635ae8ad14
Binary files /dev/null and b/extras/source/gallery/gallery_mytheme/diagrams.sdv 
differ
diff --git a/extras/source/gallery/gallery_mytheme/diagrams.thm 
b/extras/source/gallery/gallery_mytheme/diagrams.thm
new file mode 100644
index ..412bb6632c3d
Binary files /dev/null and b/extras/source/gallery/gallery_mytheme/diagrams.thm 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 131920] Full text highlight + shading support

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131920

--- Comment #8 from Bart  ---
Created attachment 159568
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159568=edit
Word2002BordersAndShading.png

In Word 2002, "Shaded" text is located under "Format -> Borders and Shading ->
Shading".

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


[Libreoffice-bugs] [Bug 131920] Full text highlight + shading support

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131920

--- Comment #7 from Bart  ---
(In reply to Heiko Tietze from comment #6)
> Which won't happen again. Your proposal looks like a tremendous amount of
> work to fix the issues of Microsoft. Do you think it's needed given the
> Theme Shading is not that hard to find in MSO?
Heiko, you are right. I see that this is a Microsoft issue. When I look into it
deeper, Microsoft is confusing me more than once. 

But for LibreOffice, maybe that's also a nice opportunity to do better, and to
persuade some users over? ;-)

My hope as a user now, is that the LibreOffice help text can explain what I
need to do for a specific result. I'm not here to cause a lot of work for
others. If that's welcome and needed, I'll be happy to make a draft. I don't
know what the help texts contains now, because I can't see them. I'm super
sorry for writing this, but please check Bug 131988. If I made a mistake there,
I'll be happy to hear. (PS: I wish I had not used "crystal clear" there. It's
too strong.)

   I wonder if the next part is useful information for
   a long-term solution and maybe for help texts as well:

I rebooted my computer and ran Windows.

I first tried Word 2002.

In Word 2002 shading is found under "Format -> Borders and Shading -> Shading".
(I added screen copy "Word2002BordersAndShading.png") For me, "Borders and
Shading" is typical for tables and cells and I didn't have any of those in my
document. That's why I initially ignored "Borders and Shading". That again is
why I couldn't find "Shading" for regular text. (That's confusing nr. I, not
just for me, but for other users of Word 2002 as well. Am I right that  users
now have to pay monthly or yearly for Office 365? That's why I expect many
users to stick to the version that they have, OR to move to LibreOffice.)

Then I started Word 2010.

In Word 2010 "Highlight" is found in the "Font" group. But to my surprise,
"Shading" is found in the "Paragraph" group. (Confusing nr. II) (Heiko, you
already showed this, thanks.)

The balloon text calls it "Shading", but just above the color palette I see
"Theme Colors". They're using different terminology for the same thing? (That's
confusing nr. III)

Further down in the box I see "Standard" colors. Is that different terminology
for something that's found elsewhere, or is that something new? Or do "Shaded"
colors fall apart into "Theme" colors and "Standard" colors? (Confusing nr. IV)

I also found that "Shading" colors (= "Theme Colors" ?) are updated in Word
when switching to a different theme, while "Highlighting" colors are not
updated when switching to another theme. Maybe this is why "Highlight" is found
in the "Font" group, while "Shading" is found in the "Paragraph" group?

(All these questions are rhetorical, feel free to ignore them. ;-) )

Apply shading to words or paragraphs :
https://support.office.com/en-us/article/Apply-shading-to-words-or-paragraphs-2020D0E0-F99E-4D53-A895-009077CBCFDA

I should also have MS Office 97, Office 2000, Office 2003, Office 2006, Office
2007 and Office 2013. I'm perfectly willing to check those too, but only if we
need to know how these versions work. Installing several versions side-by-side
doesn't always work.

I would like to start to make a summary of all the terminology that I just
found, and describe what each term means. That is, if that hasn't been done
yet.

Most of all I hope that this last part is useful information for a longer-term
solution. ;-)

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


[Libreoffice-bugs] [Bug 127474] 'Break Links' to external files doesn't work

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127474

--- Comment #6 from Gerhard Weydt  ---
I tested the macro again, exactly in 6.3.4.2, and got no error. Did you well
use the macro as given in the attachment?
If you did: Maybe your presentation contains a shape of a type not contained in
my test documents. Is it possible to send me a copy of your document by direct
mail? You will see my mail address when pointing at my name in the header.

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


[Libreoffice-bugs] [Bug 94322] Unable to properly resize or hide the sidebar in chart edit mode

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94322

Aron Budea  changed:

   What|Removed |Added

 CC||thorsten.wagne...@gmail.com

--- Comment #6 from Aron Budea  ---
*** Bug 130047 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 130047] Chart sidebar is corrupted after closing or resizing

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130047

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||ba...@caesar.elte.hu
 Status|NEW |RESOLVED

--- Comment #6 from Aron Budea  ---
There are a couple of related bug reports: bug 94322, bug 115147 and bug
103109. Let's close this as duplicate.

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

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


[Libreoffice-bugs] [Bug 125618] JavaDriverClassPath doesn't modify JVM ClassPath

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125618

prrv...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|1   |0
 OS|All |Linux (All)
Version|unspecified |6.4.2.2 release
 Status|NEEDINFO|UNCONFIRMED

--- Comment #2 from prrv...@gmail.com ---
Hi,

I confirm that I can reproduce the bug with version 6.4.2.2 under Linux.
Apparently it doesn't happen on Windows.

I install LibreOffice under Ubuntu using the PPA:
http://ppa.launchpad.net/libreoffice/ppa/ubuntu
in order to access the latest versions.

the workaround is to not install or uninstall the following packages:
- libreoffice-sdbc-hsqldb
- libhsqldb1.8.0-java

It is possible to reproduce the malfunction by installing these two extensions:

- https://github.com/prrvchr/OAuth2OOo/blob/master/OAuth2OOo.oxt
- https://github.com/prrvchr/gContactOOo/blob/master/gContactOOo.oxt

Although the jar archive of Hsqldb 2.5.0 is present in the gContactOOo
extension, it cannot be used if the integrated hsqldb driver is 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 132109] New: Add skia/vulkan info to the crash reporter metadata

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132109

Bug ID: 132109
   Summary: Add skia/vulkan info to the crash reporter metadata
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Add skia/vulkan info to the crash reporter metadata similar to OpenGL. Or has
this already been done

Example
https://crashreport.libreoffice.org/stats/crash_details/5209840d-e15c-4887-ad86-62390f497c23

Steps to Reproduce:
-

Actual Results:
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:
-

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


[Libreoffice-bugs] [Bug 132108] New: Add skia/vulkan info to the crash reporter metadata

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132108

Bug ID: 132108
   Summary: Add skia/vulkan info to the crash reporter metadata
   Product: LibreOffice
   Version: 7.0.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Add skia/vulkan info to the crash reporter metadata similar to OpenGL. Or has
this already been done

Example
https://crashreport.libreoffice.org/stats/crash_details/5209840d-e15c-4887-ad86-62390f497c23

Steps to Reproduce:
-

Actual Results:
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:
-

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


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

2020-04-14 Thread andreas kainz (via logerrit)
 extras/source/palettes/standard.sob |binary
 include/svx/strings.hrc |   14 +
 svx/inc/strings.hxx |   14 +
 svx/source/unodraw/unoprov.cxx  |   38 ++--
 4 files changed, 64 insertions(+), 2 deletions(-)

New commits:
commit d0e65ec5d48a1d1febfe6a2a25df2e6916e2a843
Author: andreas kainz 
AuthorDate: Tue Apr 14 23:57:19 2020 +0200
Commit: andreas_kainz 
CommitDate: Wed Apr 15 00:38:37 2020 +0200

Add Area fill bitmap presets

Change-Id: I3093f03d4d43008563fa038c1e49c33009eba289
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92232
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/extras/source/palettes/standard.sob 
b/extras/source/palettes/standard.sob
index 9fb99079d7a7..1acb3fec453f 100644
Binary files a/extras/source/palettes/standard.sob and 
b/extras/source/palettes/standard.sob differ
diff --git a/include/svx/strings.hrc b/include/svx/strings.hrc
index 09d0f5b8d4d3..ee7a4031ade0 100644
--- a/include/svx/strings.hrc
+++ b/include/svx/strings.hrc
@@ -826,6 +826,20 @@
 #define RID_SVXSTR_BMP19
NC_("RID_SVXSTR_BMP19", "Night Sky")
 #define RID_SVXSTR_BMP20
NC_("RID_SVXSTR_BMP20", "Pool")
 #define RID_SVXSTR_BMP21
NC_("RID_SVXSTR_BMP21", "Bitmap")
+#define RID_SVXSTR_BMP79
NC_("RID_SVXSTR_BMP79", "Invoiced Paper")
+#define RID_SVXSTR_BMP80
NC_("RID_SVXSTR_BMP80", "Concrete")
+#define RID_SVXSTR_BMP81
NC_("RID_SVXSTR_BMP81", "Brick Wall")
+#define RID_SVXSTR_BMP82
NC_("RID_SVXSTR_BMP82", "Stone Wall")
+#define RID_SVXSTR_BMP83
NC_("RID_SVXSTR_BMP83", "Floral")
+#define RID_SVXSTR_BMP84
NC_("RID_SVXSTR_BMP84", "Space")
+#define RID_SVXSTR_BMP85
NC_("RID_SVXSTR_BMP85", "Ice light")
+#define RID_SVXSTR_BMP86
NC_("RID_SVXSTR_BMP86", "Marble")
+#define RID_SVXSTR_BMP87
NC_("RID_SVXSTR_BMP87", "Sand light")
+#define RID_SVXSTR_BMP88
NC_("RID_SVXSTR_BMP88", "Stone")
+#define RID_SVXSTR_BMP89
NC_("RID_SVXSTR_BMP89", "White Diffusion")
+#define RID_SVXSTR_BMP90
NC_("RID_SVXSTR_BMP90", "Surface")
+#define RID_SVXSTR_BMP91
NC_("RID_SVXSTR_BMP91", "Cardboard")
+#define RID_SVXSTR_BMP92
NC_("RID_SVXSTR_BMP92", "Studio")
 #define RID_SVXSTR_BMP22
NC_("RID_SVXSTR_BMP22", "5 Percent")
 #define RID_SVXSTR_BMP23
NC_("RID_SVXSTR_BMP23", "10 Percent")
 #define RID_SVXSTR_BMP24
NC_("RID_SVXSTR_BMP24", "20 Percent")
diff --git a/svx/inc/strings.hxx b/svx/inc/strings.hxx
index 517040ea3701..7c7e5a40ae4c 100644
--- a/svx/inc/strings.hxx
+++ b/svx/inc/strings.hxx
@@ -238,6 +238,20 @@
 #define RID_SVXSTR_BMP19_DEF"Night Sky"
 #define RID_SVXSTR_BMP20_DEF"Pool"
 #define RID_SVXSTR_BMP21_DEF"Bitmap"
+#define RID_SVXSTR_BMP79_DEF"Invoiced Paper"
+#define RID_SVXSTR_BMP80_DEF"Concrete"
+#define RID_SVXSTR_BMP81_DEF"Brick Wall"
+#define RID_SVXSTR_BMP82_DEF"Stone Wall"
+#define RID_SVXSTR_BMP83_DEF"Floral"
+#define RID_SVXSTR_BMP84_DEF"Space"
+#define RID_SVXSTR_BMP85_DEF"Ice light"
+#define RID_SVXSTR_BMP86_DEF"Marble"
+#define RID_SVXSTR_BMP87_DEF"Sand light"
+#define RID_SVXSTR_BMP88_DEF"Stone"
+#define RID_SVXSTR_BMP89_DEF"White Diffusion"
+#define RID_SVXSTR_BMP90_DEF"Surface"
+#define RID_SVXSTR_BMP91_DEF"Cardboard"
+#define RID_SVXSTR_BMP92_DEF"Studio"
 // Reference strings for patterns - they are a variation of bitmaps
 #define RID_SVXSTR_BMP22_DEF"5 Percent"
 #define RID_SVXSTR_BMP23_DEF"10 Percent"
diff --git a/svx/source/unodraw/unoprov.cxx b/svx/source/unodraw/unoprov.cxx
index 60db1d865e5f..3630ec2d65b2 100644
--- a/svx/source/unodraw/unoprov.cxx
+++ b/svx/source/unodraw/unoprov.cxx
@@ -1094,7 +1094,24 @@ static const char* RID_SVXSTR_BMP_DEF[] =
 RID_SVXSTR_BMP72_DEF,
 RID_SVXSTR_BMP73_DEF,
 RID_SVXSTR_BMP74_DEF,
-RID_SVXSTR_BMP75_DEF
+RID_SVXSTR_BMP75_DEF,
+RID_SVXSTR_BMP76_DEF,
+RID_SVXSTR_BMP77_DEF,
+

[Libreoffice-bugs] [Bug 127474] 'Break Links' to external files doesn't work

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127474

Andrew Wittenberg  changed:

   What|Removed |Added

 CC||atwittenb...@gmail.com

--- Comment #5 from Andrew Wittenberg  ---
May I request that this bug be assigned higher priority?

The ability to break links is crucial -- especially since images used to be
inserted as links by default.  Without the ability to remove external links,
one can no longer move presentations or send them to others without the images
disappearing.  This bug is a blocker for me.

The temporary workaround (the ImagesEmbedder macro) is also not working for me
in LibreOffice version 6.3.4.2.  When attempting to run it, I get a popup that
says "BASIC runtime error. Object variable not set", highlighting line 141
(shape.Graphic.linked = TRUE).

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


[Libreoffice-bugs] [Bug 132016] Pivot Chart Select Data Range Selection

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132016

flywire  changed:

   What|Removed |Added

  Component|Calc|Chart

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


[Libreoffice-bugs] [Bug 131787] Gallery: Update Diagrams gallery

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131787

andreas_k  changed:

   What|Removed |Added

Summary|Gallery: Remove Diagrams|Gallery: Update Diagrams
   |gallery |gallery

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


[Libreoffice-bugs] [Bug 132107] File is saved under wrong name

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132107

murliwu...@cock.li changed:

   What|Removed |Added

 CC||murliwu...@cock.li

--- Comment #1 from murliwu...@cock.li ---
Created attachment 159567
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159567=edit
Reproduction in pics

-- 
You are receiving this mail because:
You 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 131787] Gallery: Update Diagrams gallery

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131787

andreas_k  changed:

   What|Removed |Added

Summary|Gallery: Remove Diagrams|Gallery: Update Diagrams
   |gallery |gallery

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

2020-04-14 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/uiwriter/data3/tdf131684.docx |binary
 sw/qa/extras/uiwriter/uiwriter3.cxx|   31 +
 2 files changed, 31 insertions(+)

New commits:
commit 3ee27693301b50cdebd6a47e35b6621f0ac50cfe
Author: Xisco Fauli 
AuthorDate: Tue Apr 14 20:45:49 2020 +0200
Commit: Xisco Faulí 
CommitDate: Wed Apr 15 00:21:54 2020 +0200

tdf#131684: Add unittest

Change-Id: Ic59d922700b4046a1ec94be5365b46dc8a021a00
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92226
Tested-by: Jenkins
Reviewed-by: Xisco Faulí 

diff --git a/sw/qa/extras/uiwriter/data3/tdf131684.docx 
b/sw/qa/extras/uiwriter/data3/tdf131684.docx
new file mode 100644
index ..7d3397dfba60
Binary files /dev/null and b/sw/qa/extras/uiwriter/data3/tdf131684.docx differ
diff --git a/sw/qa/extras/uiwriter/uiwriter3.cxx 
b/sw/qa/extras/uiwriter/uiwriter3.cxx
index 2bafcd233e8f..2dc50a068445 100644
--- a/sw/qa/extras/uiwriter/uiwriter3.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter3.cxx
@@ -374,6 +374,37 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf130680)
 //CPPUNIT_ASSERT_EQUAL(sal_Int32(23), xIndexAccess->getCount());
 }
 
+CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf131684)
+{
+load(DATA_DIRECTORY, "tdf131684.docx");
+
+SwXTextDocument* pTextDoc = 
dynamic_cast(mxComponent.get());
+CPPUNIT_ASSERT(pTextDoc);
+
+uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xIndexAccess(xTextTablesSupplier->getTextTables(),
+ uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
+
+//Use selectAll 3 times in a row
+dispatchCommand(mxComponent, ".uno:SelectAll", {});
+dispatchCommand(mxComponent, ".uno:SelectAll", {});
+dispatchCommand(mxComponent, ".uno:SelectAll", {});
+
+dispatchCommand(mxComponent, ".uno:Cut", {});
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), xIndexAccess->getCount());
+
+dispatchCommand(mxComponent, ".uno:Undo", {});
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
+
+dispatchCommand(mxComponent, ".uno:Paste", {});
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
+
+// without the fix, it crashes
+dispatchCommand(mxComponent, ".uno:Undo", {});
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
+}
+
 CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf80663)
 {
 mxComponent = loadFromDesktop("private:factory/swriter", 
"com.sun.star.text.TextDocument");
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 132107] New: File is saved under wrong name

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132107

Bug ID: 132107
   Summary: File is saved under wrong name
   Product: LibreOffice
   Version: 6.4.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: murliwu...@cock.li

Description:
When saving in LibreOffice with "Save As" other files can be overwritten.

This issue should be categorized as serious!

Steps to Reproduce:
1. Work hard for months on a dissertation for the next academic level.
2. On the last day make a review and edit many things.
3. Store file on an USB-Stick for professional printing.
4. Edit your CV and store it on the stick.
4a. Because you are happy and tired, click on "Yes".
5. Wonder why the printing shop only printed the CV.


Actual Results:
The wrong document is overwritten.

Expected Results:
The document should be saved under its name.


Reproducible: Always


User Profile Reset: No



Additional Info:
LibreOffice version is the same as in bug 131863

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


[Libreoffice-bugs] [Bug 113381] text:anchor-type from style is not used

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113381

--- Comment #5 from jd  ---
With 6.4.4.2, I set style:graphic-properties text:anchor-type="as-char" in the
styles.xml file. When I paste an image, the real anchor-type affected by
LibreOffice to the image is "char"... 

It's work fine with 6.3.5.2

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


[Libreoffice-bugs] [Bug 132075] Crash OutlinerParaObject::OutlinerParaObject

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132075

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest,
   ||possibleRegression

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


[Libreoffice-bugs] [Bug 132083] FORMATTING - Wrong date substraction in cell's operation

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132083

Albrecht Müller  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

--- Comment #15 from Albrecht Müller  ---
@Mike Kaganski:
If you look at the description of the bug the problem boils down that you
subtract 8 minutes from 18 minutes. A fourth grader should be able to tell you
that this gives 10 minutes. But Calcs actual result is 9. This is clearly
wrong. That is why I think this is a bug.

Especially as it is that simple I would classified this as a major bug.
Therefore I went to great lengths to analyse what went wrong, detected a can of
worms and tried to describe some of them in form of bug reports. The following
is just a summary of my findings:

LibreOffices provides a very simple mechanism for date and time calculations.
You can consider it as just a fancy representation of floating point numbers
which is good enough for many common date or time calculations. It fails as
soon as you have to deal with concepts such as daylight saving times.

Programs that are around for decades show that it is possible to use the
internal representation of date and time values in a way that the average user
will never notice the fact that the representation in general cannot represent
time values exactly. LibreOffice was one of those programs. Bug 127334 comment
8 seems to indicate that you understand how this can be achieved. The basic
idea: Use some basic unit of time such as a second or something that is an
integral fraction of a second, e.g. a millisecond. Round any values to the
nearest integral multiples of this basic unit. The rest of the calculations
uses integer multiples of the basic unit only. As these calculation are based
on integer values they are exact and consistent – no additional round off
errors will be introduced. With the right choice of this basic unit the round
off errors of the floating point calculations will almost never accumulate to a
degree that rounding will select the wrong time unit. Therefore a user will
almost never see effects caused by round off errors. I think this is how this
established industry standard works but I never saw a formal specification of
it. No fancy stuff like infinite precision or the like is required, just
careful rounding and integer arithmetic.

I think I could trace the source of the problems to a BrokenDateTimeSpec.
That’s why I gave bug 127334 this alias which recently has been removed. Why?

The problem is that this spec does not specify the essential features of the
LibreOffice time calculation mechanism. I did not find any specification that
states what a concept of "wall clock time" or "duration" means. Given the crude
approximation of date and time calculations does it make sense to use the full
power of double floating point precision? If you really want to do this you
have to be specific about the meaning of the number 1: At this level of
precision it matters if you define it as one revolution of the earth or as 24 *
60 * 60 seconds of an atomic clock. What about daylight saving times, time
zones, calendars defined by astronomical observations or depending on future
events you don’t know yet, leap seconds etc.? That is where things start to
become really complicated.

Instead the specification defines some algorithms for the MINUTE, SECOND etc.
functions that are contradictory (e.g. the SECOND function is supposed to
return integer values between 0 and 59, but also to round to the nearest
second. What shall this function return for 59.6 seconds?, see
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#__RefHeading__1018202_715980110
), use inconsistent rounding (the SECONDS function rounds to the next second,
the MINUTE function does not, see
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#__RefHeading__1018194_715980110
) and thus deviate from this established industry standard. I fear the authors
of this specification were not aware of the implications of their work.
Unfortunately I don’t know how to write a bug report against the specification
and I was not able to find someone to fix these problems.

The help information leaves out a lot of essential information. So I simply
don’t know what to expect if I use features like the [HH]:MM or HH:MM format
constructs (see
https://help.libreoffice.org/6.4/en-US/text/shared/01/05020301.html?=CALC=WIN#hd_id3155870,
where is a reference to the special treatment of wall clock times or
durations?) or the various date and time functions.

These deficiencies leave a lot of room for different interpretations. In the
case at hand LibreOffice contains a pseudo random generator that essentially
uses the round off errors of floating point calculations to decide if it will
return a correct or a wrong value. 

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

2020-04-14 Thread Mert Tumer (via logerrit)
 vcl/source/uitest/uiobject.cxx |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 7a5b499dd25d7d1e077974053b52b72ee7f44ebc
Author: Mert Tumer 
AuthorDate: Fri Apr 3 15:34:37 2020 +0300
Commit: Andras Timar 
CommitDate: Tue Apr 14 23:28:49 2020 +0200

mobile: cannot change linestyle on impress

Change-Id: I6e63c951f7a7d4fc70eed424cc2f7da60dbad9b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91632
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
(cherry picked from commit e4f28d0642e4663d558a55e99ec1cc2ea9ad27ed)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92172
Tested-by: Jenkins

diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index 206b6a32e3b3..737979b29a82 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -22,6 +22,7 @@
 #include 
 
 #include 
+#include 
 
 #include 
 #include 
@@ -995,7 +996,11 @@ ListBoxUIObject::~ListBoxUIObject()
 void ListBoxUIObject::execute(const OUString& rAction,
 const StringMap& rParameters)
 {
-if (!mxListBox->IsEnabled() || !mxListBox->IsReallyVisible())
+if (!mxListBox->IsEnabled())
+return;
+
+bool isTiledRendering = comphelper::LibreOfficeKit::isActive();
+if (!isTiledRendering && !mxListBox->IsReallyVisible())
 return;
 
 if (rAction == "SELECT")
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 43157] Clean up OSL_ASSERT, DBG_ASSERT, etc.

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43157

--- Comment #117 from Commit Notification 
 ---
Tomaž Vajngerl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/38c5cfa1da8f0a615e479a68f3bcb238395109a8

fdo#43157: VclPixelProcessor2D replace OSL_ENSURE with SAL_WARN_IF

It will be available in 7.0.0.

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

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

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


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

2020-04-14 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/processor2d/vclpixelprocessor2d.hxx |   19 
 1 file changed, 5 insertions(+), 14 deletions(-)

New commits:
commit c32844c53a33bc41beeaea4acf7e62d0a0001aa0
Author: Tomaž Vajngerl 
AuthorDate: Sun Apr 12 13:05:17 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 14 23:23:01 2020 +0200

clean-up namespaces and pragma once for VclPixelProcessor2D

Change-Id: I34fa0dc5cadbdfff8f70171715bc7cff462f7034
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92220
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
index b1c7c47c2386..1ee765ab1e51 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
@@ -17,18 +17,14 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_DRAWINGLAYER_SOURCE_PROCESSOR2D_VCLPIXELPROCESSOR2D_HXX
-#define INCLUDED_DRAWINGLAYER_SOURCE_PROCESSOR2D_VCLPIXELPROCESSOR2D_HXX
+#pragma once
 
 #include "vclprocessor2d.hxx"
 #include 
 
 #include 
 
-
-// predefines
-
-namespace drawinglayer { namespace primitive2d {
+namespace drawinglayer::primitive2d {
 class PolyPolygonColorPrimitive2D;
 class PolygonHairlinePrimitive2D;
 class PolygonStrokePrimitive2D;
@@ -42,12 +38,10 @@ namespace drawinglayer { namespace primitive2d {
 class FillHatchPrimitive2D;
 class BackgroundColorPrimitive2D;
 class BorderLinePrimitive2D;
-}}
+}
 
-namespace drawinglayer
+namespace drawinglayer::processor2d
 {
-namespace processor2d
-{
 /** VclPixelProcessor2D class
 
 This processor derived from VclProcessor2D is the base class for 
rendering
@@ -92,10 +86,7 @@ namespace drawinglayer
 OutputDevice& rOutDev);
 virtual ~VclPixelProcessor2D() override;
 };
-} // end of namespace processor2d
-} // end of namespace drawinglayer
-
+} // end of namespace drawinglayer::processor2d
 
-#endif // INCLUDED_DRAWINGLAYER_SOURCE_PROCESSOR2D_VCLPIXELPROCESSOR2D_HXX
 
 /* 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-commits] core.git: 2 commits - drawinglayer/source solenv/clang-format

2020-04-14 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx |6 
 drawinglayer/source/processor2d/vclpixelprocessor2d.hxx |  120 
 solenv/clang-format/blacklist   |1 
 3 files changed, 69 insertions(+), 58 deletions(-)

New commits:
commit 38c5cfa1da8f0a615e479a68f3bcb238395109a8
Author: Tomaž Vajngerl 
AuthorDate: Sun Apr 12 13:22:26 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 14 23:23:50 2020 +0200

fdo#43157: VclPixelProcessor2D replace OSL_ENSURE with SAL_WARN_IF

Change-Id: I4a6c46f9054f9a32d52f1f60f5f7547e62cf7a5a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92223
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
index 972c08481040..9102230f4305 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
@@ -581,7 +581,7 @@ namespace drawinglayer::processor2d
 {
 // single transparent tools::PolyPolygon 
identified, use directly
 const 
primitive2d::PolyPolygonColorPrimitive2D* pPoPoColor = static_cast< const 
primitive2d::PolyPolygonColorPrimitive2D* >(pBasePrimitive);
-OSL_ENSURE(pPoPoColor, "OOps, PrimitiveID 
and PrimitiveType do not match (!)");
+SAL_WARN_IF(!pPoPoColor, "drawinglayer", 
"OOps, PrimitiveID and PrimitiveType do not match (!)");
 bDrawTransparentUsed = true;
 
tryDrawPolyPolygonColorPrimitive2DDirect(*pPoPoColor, 
rUniTransparenceCandidate.getTransparence());
 break;
@@ -590,7 +590,7 @@ namespace drawinglayer::processor2d
 {
 // single transparent 
PolygonHairlinePrimitive2D identified, use directly
 const 
primitive2d::PolygonHairlinePrimitive2D* pPoHair = static_cast< const 
primitive2d::PolygonHairlinePrimitive2D* >(pBasePrimitive);
-OSL_ENSURE(pPoHair, "OOps, PrimitiveID and 
PrimitiveType do not match (!)");
+SAL_WARN_IF(!pPoHair, "drawinglayer", 
"OOps, PrimitiveID and PrimitiveType do not match (!)");
 
 // do no tallow by default - problem is 
that self-overlapping parts of this geometry will
 // not be in an all-same transparency but 
will already alpha-cover themselves with blending.
@@ -604,7 +604,7 @@ namespace drawinglayer::processor2d
 {
 // single transparent 
PolygonStrokePrimitive2D identified, use directly
 const 
primitive2d::PolygonStrokePrimitive2D* pPoStroke = static_cast< const 
primitive2d::PolygonStrokePrimitive2D* >(pBasePrimitive);
-OSL_ENSURE(pPoStroke, "OOps, PrimitiveID 
and PrimitiveType do not match (!)");
+SAL_WARN_IF(!pPoStroke, "drawinglayer", 
"OOps, PrimitiveID and PrimitiveType do not match (!)");
 
 // do no tallow by default - problem is 
that self-overlapping parts of this geometry will
 // not be in an all-same transparency but 
will already alpha-cover themselves with blending.
commit b753515b0e6f24193d70dd64506df1b484e65423
Author: Tomaž Vajngerl 
AuthorDate: Sun Apr 12 13:17:28 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 14 23:23:32 2020 +0200

remove vclpixelprocessor2d.hxx from clang-format blacklist

Change-Id: I5fe33322ff0df5191f57f1364a2d32eefc889d68
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/9
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
index 1ee765ab1e51..5c834056c947 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.hxx
@@ -24,69 +24,81 @@
 
 #include 
 
-namespace drawinglayer::primitive2d {
-class PolyPolygonColorPrimitive2D;
-class PolygonHairlinePrimitive2D;
-class PolygonStrokePrimitive2D;
-class WrongSpellPrimitive2D;
-class TextSimplePortionPrimitive;
-class BitmapPrimitive2D;
-class PolyPolygonGradientPrimitive2D;
-class UnifiedTransparencePrimitive2D;
-class ControlPrimitive2D;
-class PolygonStrokePrimitive2D;
-class FillHatchPrimitive2D;
-class BackgroundColorPrimitive2D;
-class BorderLinePrimitive2D;
+namespace drawinglayer::primitive2d
+{
+class 

[Libreoffice-commits] core.git: drawinglayer/source solenv/clang-format

2020-04-14 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/processor2d/vclprocessor2d.hxx |  190 +++--
 solenv/clang-format/blacklist  |1 
 2 files changed, 101 insertions(+), 90 deletions(-)

New commits:
commit 53d7d35b6b065ced89a7533afbea710e8c5b99bc
Author: Tomaž Vajngerl 
AuthorDate: Sun Apr 12 13:09:36 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 14 23:23:17 2020 +0200

remove vclprocessor2d.hxx from clang-format blacklist

Change-Id: I4fda4b3431c63d5870f074be15cff6064dc1ff95
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92221
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/processor2d/vclprocessor2d.hxx 
b/drawinglayer/source/processor2d/vclprocessor2d.hxx
index 73cf8d5b1a8d..3b1b997a7cc4 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.hxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.hxx
@@ -27,99 +27,111 @@
 
 class OutputDevice;
 
-namespace drawinglayer::primitive2d {
-class TextSimplePortionPrimitive2D;
-class PolygonHairlinePrimitive2D;
-class BitmapPrimitive2D;
-class FillGraphicPrimitive2D;
-class PolyPolygonGradientPrimitive2D;
-class PolyPolygonGraphicPrimitive2D;
-class MetafilePrimitive2D;
-class MaskPrimitive2D;
-class UnifiedTransparencePrimitive2D;
-class TransparencePrimitive2D;
-class TransformPrimitive2D;
-class MarkerArrayPrimitive2D;
-class PointArrayPrimitive2D;
-class ModifiedColorPrimitive2D;
-class PolygonStrokePrimitive2D;
-class ControlPrimitive2D;
-class PagePreviewPrimitive2D;
-class EpsPrimitive2D;
-class ObjectInfoPrimitive2D;
-class SvgLinearAtomPrimitive2D;
-class SvgRadialAtomPrimitive2D;
+namespace drawinglayer::primitive2d
+{
+class TextSimplePortionPrimitive2D;
+class PolygonHairlinePrimitive2D;
+class BitmapPrimitive2D;
+class FillGraphicPrimitive2D;
+class PolyPolygonGradientPrimitive2D;
+class PolyPolygonGraphicPrimitive2D;
+class MetafilePrimitive2D;
+class MaskPrimitive2D;
+class UnifiedTransparencePrimitive2D;
+class TransparencePrimitive2D;
+class TransformPrimitive2D;
+class MarkerArrayPrimitive2D;
+class PointArrayPrimitive2D;
+class ModifiedColorPrimitive2D;
+class PolygonStrokePrimitive2D;
+class ControlPrimitive2D;
+class PagePreviewPrimitive2D;
+class EpsPrimitive2D;
+class ObjectInfoPrimitive2D;
+class SvgLinearAtomPrimitive2D;
+class SvgRadialAtomPrimitive2D;
 }
 
 namespace drawinglayer::processor2d
 {
-/** VclProcessor2D class
-
-This processor is the base class for VCL-Based processors. It has 
no
-processBasePrimitive2D implementation and thus is not usable 
directly.
- */
-class VclProcessor2D : public BaseProcessor2D
-{
-protected:
-// the destination OutDev
-VclPtr
mpOutputDevice;
-
-// the modifiedColorPrimitive stack
-basegfx::BColorModifierStack
maBColorModifierStack;
-
-// the current transformation. Since VCL pixel renderer transforms 
to pixels
-// and VCL MetaFile renderer to World (logic) coordinates, the 
local
-// ViewInformation2D cannot directly be used, but needs to be kept 
up to date
-basegfx::B2DHomMatrix   
maCurrentTransformation;
-
-// SvtOptionsDrawinglayer incarnation to react on diverse settings
-const SvtOptionsDrawinglayer
maDrawinglayerOpt;
-
-// stack value (increment and decrement) to count how deep we are 
in
-// PolygonStrokePrimitive2D's decompositions (normally only one)
-sal_uInt32  
mnPolygonStrokePrimitive2D;
-
-// currently used ObjectInfoPrimitive2D
-const primitive2d::ObjectInfoPrimitive2D*   
mpObjectInfoPrimitive2D;
-
-// common VCL rendering support
-void RenderTextSimpleOrDecoratedPortionPrimitive2D(const 
primitive2d::TextSimplePortionPrimitive2D& rTextCandidate);
-void RenderPolygonHairlinePrimitive2D(const 
primitive2d::PolygonHairlinePrimitive2D& rPolygonCandidate, bool bPixelBased);
-void RenderBitmapPrimitive2D(const primitive2d::BitmapPrimitive2D& 
rBitmapCandidate);
-void RenderFillGraphicPrimitive2D(const 
primitive2d::FillGraphicPrimitive2D& rFillBitmapCandidate);
-void RenderPolyPolygonGraphicPrimitive2D(const 
primitive2d::PolyPolygonGraphicPrimitive2D& rPolygonCandidate);
-void RenderMaskPrimitive2DPixel(const 
primitive2d::MaskPrimitive2D& rMaskCandidate);
-void RenderModifiedColorPrimitive2D(const 
primitive2d::ModifiedColorPrimitive2D& rModifiedCandidate);
-void RenderUnifiedTransparencePrimitive2D(const 
primitive2d::UnifiedTransparencePrimitive2D& rTransCandidate);
-

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

2020-04-14 Thread Tomaž Vajngerl (via logerrit)
 drawinglayer/source/processor2d/vclprocessor2d.hxx |   19 +--
 1 file changed, 5 insertions(+), 14 deletions(-)

New commits:
commit 5163eccc8be832fdc5eee5fd8d66549550e5f53d
Author: Tomaž Vajngerl 
AuthorDate: Sun Apr 12 13:04:55 2020 +0200
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 14 23:22:42 2020 +0200

clean-up namespaces and pragma once for VclProcessor2D

Change-Id: I9518a0bc6c30e0a544a52f1e996bfe8195e63cdf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92219
Tested-by: Tomaž Vajngerl 
Reviewed-by: Tomaž Vajngerl 

diff --git a/drawinglayer/source/processor2d/vclprocessor2d.hxx 
b/drawinglayer/source/processor2d/vclprocessor2d.hxx
index 46b9682d1383..73cf8d5b1a8d 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.hxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_DRAWINGLAYER_SOURCE_PROCESSOR2D_VCLPROCESSOR2D_HXX
-#define INCLUDED_DRAWINGLAYER_SOURCE_PROCESSOR2D_VCLPROCESSOR2D_HXX
+#pragma once
 
 #include 
 #include 
@@ -26,11 +25,9 @@
 #include 
 #include 
 
-
-// predefines
 class OutputDevice;
 
-namespace drawinglayer { namespace primitive2d {
+namespace drawinglayer::primitive2d {
 class TextSimplePortionPrimitive2D;
 class PolygonHairlinePrimitive2D;
 class BitmapPrimitive2D;
@@ -52,13 +49,10 @@ namespace drawinglayer { namespace primitive2d {
 class ObjectInfoPrimitive2D;
 class SvgLinearAtomPrimitive2D;
 class SvgRadialAtomPrimitive2D;
-}}
-
+}
 
-namespace drawinglayer
+namespace drawinglayer::processor2d
 {
-namespace processor2d
-{
 /** VclProcessor2D class
 
 This processor is the base class for VCL-Based processors. It has 
no
@@ -125,10 +119,7 @@ namespace drawinglayer
 // access to currently used ObjectInfoPrimitive2D
 const primitive2d::ObjectInfoPrimitive2D* 
getObjectInfoPrimitive2D() const { return mpObjectInfoPrimitive2D; }
 };
-} // end of namespace processor2d
-} // end of namespace drawinglayer
-
+} // end of namespace drawinglayer::processor2d
 
-#endif // INCLUDED_DRAWINGLAYER_SOURCE_PROCESSOR2D_VCLPROCESSOR2D_HXX
 
 /* 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 129062] [META] Skia library bugs

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||132084


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132084
[Bug 132084] Skia: label in vertical ruler in Draw have wrong orientation
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132084] Skia: label in vertical ruler in Draw have wrong orientation

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132084

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||129062
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||7325

--- Comment #1 from V Stuart Foote  ---
Confirmed on Windows 10 Ent 64-bit en-US with nVidia K2000
Version: 7.0.0.0.alpha0+ (x64)
Build ID: 6b6359abb073b4eaf7cf0783e7d783e034ccadee
CPU threads: 8; OS: Windows 10.0 Build 18362; UI render: Skia/Vulkan; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

RenderMethod: vulkan
Vendor: 0x10de
Device: 0xffe
API: 1.1.119
Driver: 442.296.0
DeviceType: discrete
DeviceName: Quadro K2000
Blacklisted: no

We had similar issue with bug 127325

Kind of suspect related to https://gerrit.libreoffice.org/c/core/+/91968

@Luboš?


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 127325] Rendering (stamping) of rotated text is incorrect with OpenGL rendering enabled - severe clipping of glyphs on Vertical ruler, and rotated table cell text

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127325

V Stuart Foote  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132004] Keep current chapter on top of the screen

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132004

V Stuart Foote  changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #4 from V Stuart Foote  ---
Needinfo to OP,

please test a current build of daily master that has the changes to the
Navigator.

IMHO this is already provided and would just clutter the Status Bar. And, would
really object to any type of 'masthead' client side decoration for annotation.

-- 
You are receiving this mail because:
You 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 132004] Keep current chapter on top of the screen

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132004

V Stuart Foote  changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #4 from V Stuart Foote  ---
Needinfo to OP,

please test a current build of daily master that has the changes to the
Navigator.

IMHO this is already provided and would just clutter the Status Bar. And, would
really object to any type of 'masthead' client side decoration for annotation.

-- 
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 114949] FILESAVE: Position or vertical or oblique lines lost in XML format (docx)

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114949

Gabor Kelemen  changed:

   What|Removed |Added

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

--- Comment #11 from Gabor Kelemen  ---


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

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


[Libreoffice-bugs] [Bug 114949] FILESAVE: Position or vertical or oblique lines lost in XML format (docx)

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114949

Gabor Kelemen  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #10 from Gabor Kelemen  ---
Created attachment 159566
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159566=edit
Screenshot of the original and exported document in current master

This seems to be fixed in bibisect-linux-64-6.5:

Version: 7.0.0.0.alpha0+
Build ID: 35fc5ef0a759884b24ed8b83cd05702a0fab64cc
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: hu-HU (hu_HU.UTF-8); UI-Language: en-US
Calc: threaded

This got better after:

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

author  Szabolcs Tue Mar 24 15:38:14 2020 +0100
committer   László NémethWed Apr 08 12:54:45
2020 +0200

tdf#104565 DOCX drawing object export: fix arrow positions

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


[Libreoffice-bugs] [Bug 131988] Sometimes when clicking a button or menu-option in LO, I get "No such file or directory"

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131988

--- Comment #7 from Bart  ---
LINUX (Debian 10)

Version: 7.0.0.0.alpha0+
Build ID: 35feeefef569572f1443446912124247378c3a0e
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

These steps give the popup with the error :
- Help -> Get Help Online
- Help -> Send Feedback
- Help -> Get Involved
- Help -> Donate to LibreOffice
- Help -> About LibreOffice -> Credits
- Help -> About LibreOffice -> Website

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


[Libreoffice-bugs] [Bug 132105] Certain functions fail with external references

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132105

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #3 from m.a.riosv  ---
Confirmed COUNTBLANK gives Err:504.
But MATCH returns no error.
Version: 7.0.0.0.alpha0+ (x64)
Build ID: 4475bcd83aac7e033fc5250f268eb922bd471e7b
CPU threads: 4; OS: Windows 10.0 Build 19603; UI render: Skia/Raster; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US Calc: CL

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


[Libreoffice-ux-advise] [Bug 132004] Keep current chapter on top of the screen

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132004

Simon Stuardo  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED
 Ever confirmed|0   |1

--- Comment #3 from Simon Stuardo  ---
"But reading your request again you may have a UI control in mind that always
shows the current chapter, like at the statusbar."

Yes, I was thinking of that

"We do have the Navigator for this purpose, and the latest build always
highlight the current position."

Yes, you're right, that may be a solution. But navigator has 2 problems:
- It always highlight the current position of the CURSOR, which doesn't change
when you scroll with the mouse. This is trouble when reading mainly. (At least
in my build: 6.3.4.2)
- It doesn't work on full screen

-- 
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 127664] UX: message "PDF was saved ..." when saving document as PDF

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127664

Tor Lillqvist  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132004] Keep current chapter on top of the screen

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132004

Simon Stuardo  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED
 Ever confirmed|0   |1

--- Comment #3 from Simon Stuardo  ---
"But reading your request again you may have a UI control in mind that always
shows the current chapter, like at the statusbar."

Yes, I was thinking of that

"We do have the Navigator for this purpose, and the latest build always
highlight the current position."

Yes, you're right, that may be a solution. But navigator has 2 problems:
- It always highlight the current position of the CURSOR, which doesn't change
when you scroll with the mouse. This is trouble when reading mainly. (At least
in my build: 6.3.4.2)
- It doesn't work on full screen

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


[Libreoffice-bugs] [Bug 126939] iOS app fails to save DOCXs

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126939

--- Comment #7 from Andreas Gruhler  ---
I am unable to reproduce this bug in 4.2.2, seems that this is fixed.

We can close this issue, thank you for your effort.

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


[Libreoffice-bugs] [Bug 128461] Not possible to paste a picture from the clipboard using long press at the cursor position on iOS

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128461

Tor Lillqvist  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 132066] UI: Don't translate the vulkan/raster specifier in about window

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132066

--- Comment #8 from Ming Hua  ---
I don't think this issue is as black-and-white as some of the comments portray
it.  I believe whether this information should be translated depends on the
intended audience, is it the end user, or the QA people and developers?

It's hard to argue against that end users want to read the version number.

It's also hard to deny that OS, VCL, and Calc fields are mainly for QA/devs.

-- 
You are receiving this mail because:
You 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 132066] UI: Don't translate the vulkan/raster specifier in about window

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132066

--- Comment #8 from Ming Hua  ---
I don't think this issue is as black-and-white as some of the comments portray
it.  I believe whether this information should be translated depends on the
intended audience, is it the end user, or the QA people and developers?

It's hard to argue against that end users want to read the version number.

It's also hard to deny that OS, VCL, and Calc fields are mainly for QA/devs.

-- 
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 126958] iOS Collabora Save Xlsx

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126958

Andreas Gruhler  changed:

   What|Removed |Added

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

--- Comment #7 from Andreas Gruhler  ---
I cannot reproduce this issue any longer with version 4.2.2 of the app.

The app does not crash anymore and the document can be saved.

Therefore, I close this issue. Thank you for your effort.

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


[Libreoffice-bugs] [Bug 131907] Crash: reject/clear formatting

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131907

--- Comment #9 from Xisco Faulí  ---
UItest added in
https://cgit.freedesktop.org/libreoffice/core/commit/?id=4a581f12e0d0fa105f053904300b729acb18194a

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


[Libreoffice-bugs] [Bug 132088] PDF no justifiés

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132088

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
LibreOffice is not a PDF editor, it can only filter import the PDF content.

Here, import of the text runs from PDF will not receive paragraph formatting
that matches the format of the published PDF.  Recent work on bug 118370
improves the situation with ability to consolidate selected text runs into just
one draw text box--and that can be justified.

For the 6.4 release, the uno:TextCombine command is found on the Shape ->
Consolidate Text menu; and can be customized as a keyboard shortcut for
'Consolidate Text'.

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

2020-04-14 Thread Xisco Fauli (via logerrit)
 sc/qa/uitest/calc_tests/data/tdf130960.odt |binary
 sc/qa/uitest/calc_tests4/trackedChanges.py |   30 +
 2 files changed, 30 insertions(+)

New commits:
commit 4a581f12e0d0fa105f053904300b729acb18194a
Author: Xisco Fauli 
AuthorDate: Tue Apr 14 19:57:17 2020 +0200
Commit: Xisco Faulí 
CommitDate: Tue Apr 14 22:20:13 2020 +0200

tdf#130960: Add UItest

Change-Id: I41f5bd8c8b9183138b673a5f40d8a29abe9874df
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92218
Tested-by: Jenkins
Reviewed-by: Xisco Faulí 

diff --git a/sc/qa/uitest/calc_tests/data/tdf130960.odt 
b/sc/qa/uitest/calc_tests/data/tdf130960.odt
new file mode 100644
index ..2a08fa54b7a1
Binary files /dev/null and b/sc/qa/uitest/calc_tests/data/tdf130960.odt differ
diff --git a/sc/qa/uitest/calc_tests4/trackedChanges.py 
b/sc/qa/uitest/calc_tests4/trackedChanges.py
index 13cdb1319088..ca446e66d0a2 100644
--- a/sc/qa/uitest/calc_tests4/trackedChanges.py
+++ b/sc/qa/uitest/calc_tests4/trackedChanges.py
@@ -11,10 +11,40 @@ from libreoffice.calc.document import get_cell_by_position
 from libreoffice.uno.propertyvalue import mkPropertyValues
 from uitest.uihelper.calc import enter_text_to_cell
 from uitest.uihelper.common import get_state_as_dict
+from uitest.path import get_srcdir_url
 import datetime
 
+
+def get_url_for_data_file(file_name):
+return get_srcdir_url() + "/sc/qa/uitest/calc_tests/data/" + file_name
+
 class CalcTrackedChanges(UITestCase):
 
+def test_tdf131907(self):
+calc_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf130960.odt"))
+xCalcDoc = self.xUITest.getTopFocusWindow()
+
self.ui_test.execute_modeless_dialog_through_command(".uno:AcceptChanges")
+xTrackDlg = self.xUITest.getTopFocusWindow()
+
+xChangesList = xTrackDlg.getChild("calcchanges")
+self.assertEqual(1, len(xChangesList.getChildren()))
+
+text = "Row inserted \tSheet1.1:1\t \t04/05/2020 17:01:10\t (Row 1:1 
inserted)"
+
self.assertEqual(get_state_as_dict(xChangesList.getChild('0'))["Text"], text)
+
+#it would crash here
+xRejBtn = xTrackDlg.getChild("reject")
+xRejBtn.executeAction("CLICK", tuple())
+
+self.assertEqual(2, len(xChangesList.getChildren()))
+
self.assertEqual(get_state_as_dict(xChangesList.getChild('0'))["Text"], 
"Accepted")
+
self.assertEqual(get_state_as_dict(xChangesList.getChild('1'))["Text"], 
"Rejected")
+
+xCancBtn = xTrackDlg.getChild("close")
+xCancBtn.executeAction("CLICK", tuple())
+
+self.ui_test.close_doc()
+
 def test_tdf66263_Protect_Records(self):
 calc_doc = self.ui_test.create_doc_in_start_center("calc")
 xCalcDoc = self.xUITest.getTopFocusWindow()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130960] edit / track changes / compare documents does not work

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130960

--- Comment #9 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/4a581f12e0d0fa105f053904300b729acb18194a

tdf#130960: Add UItest

It will be available in 7.0.0.

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

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

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


[Libreoffice-ux-advise] [Bug 132104] Calc lacks several fields available in Writer

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132104

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||107739
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Agree


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107739
[Bug 107739] [META] Field bugs and enhancements
-- 
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 132104] Calc lacks several fields available in Writer

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132104

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||107739
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Agree


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107739] [META] Field bugs and enhancements

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107739

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||132104


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132104
[Bug 132104] Calc lacks several fields available in Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 126703] Dialog theming/UX - Language

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126703

Andreas Gruhler  changed:

   What|Removed |Added

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

--- Comment #2 from Andreas Gruhler  ---
I can no longer reproduce this issue in 4.2.2, thus, I am going to close this
ticket.

The dialogues are translated (or at least the ones I was able to check).

Thank your for your effort!

-- 
You are receiving this mail because:
You 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 132066] UI: Don't translate the vulkan/raster specifier in about window

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132066

--- Comment #7 from Roman Kuznetsov <79045_79...@mail.ru> ---
I agree with Telesto here, don't need to translate any system info in About
dialog.

And Luboš in Comment 4 is right

-- 
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 132066] UI: Don't translate the vulkan/raster specifier in about window

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132066

--- Comment #7 from Roman Kuznetsov <79045_79...@mail.ru> ---
I agree with Telesto here, don't need to translate any system info in About
dialog.

And Luboš in Comment 4 is right

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


[Libreoffice-bugs] [Bug 131308] Gallery: update Computer gallery

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131308

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

https://git.libreoffice.org/core/commit/39f45e8a0f04fb5f8641d57fbc09c531987967e8

tdf#131308 add network gallery

It will be available in 7.0.0.

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

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

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


[Libreoffice-commits] core.git: extras/Package_gallmytheme.mk extras/source

2020-04-14 Thread andreas kainz (via logerrit)
 extras/Package_gallmytheme.mk |3 +++
 extras/source/gallery/gallery_mytheme/network.sdg |binary
 extras/source/gallery/gallery_mytheme/network.sdv |binary
 extras/source/gallery/gallery_mytheme/network.thm |binary
 4 files changed, 3 insertions(+)

New commits:
commit 39f45e8a0f04fb5f8641d57fbc09c531987967e8
Author: andreas kainz 
AuthorDate: Tue Apr 14 16:14:04 2020 +0200
Commit: andreas_kainz 
CommitDate: Tue Apr 14 22:08:12 2020 +0200

tdf#131308 add network gallery

Change-Id: I808d4e7dbc68e4962bf8c8fd1dfc045f9058ebed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92199
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/extras/Package_gallmytheme.mk b/extras/Package_gallmytheme.mk
index 7cfce91a3ad6..b19f4e170189 100644
--- a/extras/Package_gallmytheme.mk
+++ b/extras/Package_gallmytheme.mk
@@ -27,4 +27,7 @@ $(eval $(call 
gb_Package_add_files,extras_gallmytheme,$(LIBO_SHARE_PRESETS_FOLDE
shapes.sdg \
shapes.sdv \
shapes.thm \
+   network.sdg \
+   network.sdv \
+   network.thm \
 ))
diff --git a/extras/source/gallery/gallery_mytheme/network.sdg 
b/extras/source/gallery/gallery_mytheme/network.sdg
new file mode 100644
index ..78701a42e87b
Binary files /dev/null and b/extras/source/gallery/gallery_mytheme/network.sdg 
differ
diff --git a/extras/source/gallery/gallery_mytheme/network.sdv 
b/extras/source/gallery/gallery_mytheme/network.sdv
new file mode 100644
index ..b64111dcf12a
Binary files /dev/null and b/extras/source/gallery/gallery_mytheme/network.sdv 
differ
diff --git a/extras/source/gallery/gallery_mytheme/network.thm 
b/extras/source/gallery/gallery_mytheme/network.thm
new file mode 100644
index ..5387602bdc63
Binary files /dev/null and b/extras/source/gallery/gallery_mytheme/network.thm 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-04-14 Thread andreas kainz (via logerrit)
 extras/source/gallery/gallery_mytheme/icons.sdg |binary
 extras/source/gallery/gallery_mytheme/icons.sdv |binary
 extras/source/gallery/gallery_mytheme/icons.thm |binary
 3 files changed

New commits:
commit e185830c823c62926aeaee5842db6495706fe231
Author: andreas kainz 
AuthorDate: Tue Apr 14 16:14:53 2020 +0200
Commit: andreas_kainz 
CommitDate: Tue Apr 14 22:07:42 2020 +0200

add more icon gallery shapes

Change-Id: Ia5c536cff68c3da5dbcbc95928afdf8c37205ad2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92200
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/extras/source/gallery/gallery_mytheme/icons.sdg 
b/extras/source/gallery/gallery_mytheme/icons.sdg
index 4ac5fbcfbdec..f135a13d9892 100644
Binary files a/extras/source/gallery/gallery_mytheme/icons.sdg and 
b/extras/source/gallery/gallery_mytheme/icons.sdg differ
diff --git a/extras/source/gallery/gallery_mytheme/icons.sdv 
b/extras/source/gallery/gallery_mytheme/icons.sdv
index 2c320ff29618..cb6dfbb34530 100644
Binary files a/extras/source/gallery/gallery_mytheme/icons.sdv and 
b/extras/source/gallery/gallery_mytheme/icons.sdv differ
diff --git a/extras/source/gallery/gallery_mytheme/icons.thm 
b/extras/source/gallery/gallery_mytheme/icons.thm
index bd44166b44a2..b26e8ee9e219 100644
Binary files a/extras/source/gallery/gallery_mytheme/icons.thm and 
b/extras/source/gallery/gallery_mytheme/icons.thm differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 132104] Calc lacks several fields available in Writer

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132104

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

-- 
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 132104] Calc lacks several fields available in Writer

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132104

V Stuart Foote  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
   Keywords||needsUXEval

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


[Libreoffice-bugs] [Bug 125701] iOS: Nextcloud Create From Template White Page

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125701

--- Comment #3 from Nicolas Christener  ---
This issues seems fixed; tested with 4.2.4 (50).

I also checked with Andreas and he agrees to close this one.

Thanks a lot to the Collabora team and especially Tor for taking care of this.

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


[Libreoffice-bugs] [Bug 132106] CELL() function "format" should include more date formats to return "D1"

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132106

Eike Rathke  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #1 from Eike Rathke  ---
@Mike:
What does Excel return for -MM-DD and -MM-DD HH:MM:SS for example?

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


[Libreoffice-bugs] [Bug 132066] UI: Don't translate the vulkan/raster specifier in about window

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132066

--- Comment #6 from Adolfo Jayme  ---
If QA has a problem with localization, they should deal with that, not pass the
ball to users of the program, who will in turn blame localizers for not
delivering a full UI translation.

We already do not translate (or transliterate, in the case of Cyrillic-written
languages) proper names such as Vulkan or Skia. I don’t see the issue 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-ux-advise] [Bug 132066] UI: Don't translate the vulkan/raster specifier in about window

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132066

--- Comment #6 from Adolfo Jayme  ---
If QA has a problem with localization, they should deal with that, not pass the
ball to users of the program, who will in turn blame localizers for not
delivering a full UI translation.

We already do not translate (or transliterate, in the case of Cyrillic-written
languages) proper names such as Vulkan or Skia. I don’t see the issue here.

-- 
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 132099] Incorrect category for data label in a time series graph

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132099

Ming Hua  changed:

   What|Removed |Added

 CC||ming.v@qq.com

--- Comment #1 from Ming Hua  ---
Thanks for reporting the bug.  Would you please upload an example .ods file
with such time series data and graph?  It's rather hard for someone not
familiar with this Calc feature to reproduce your bug based just on your
description.

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


[Libreoffice-bugs] [Bug 128136] Not possible to open, edit and save password protected files on iOS

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128136

--- Comment #4 from Nicolas Christener  ---
It's not possible to enter the password in the password popup in 4.2.4 (50)

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


[Libreoffice-bugs] [Bug 128136] Not possible to open, edit and save password protected files on iOS

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128136

--- Comment #3 from Nicolas Christener  ---
Created attachment 159565
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159565=edit
Pass is RockyTheDog42

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


[Libreoffice-bugs] [Bug 132106] CELL() function "format" should include more date formats to return "D1"

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132106

Eike Rathke  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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


[Libreoffice-bugs] [Bug 128035] There is no easy way to update a table of contents in the iOS app

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128035

Nicolas Christener  changed:

   What|Removed |Added

 Attachment #159564|0   |1
is obsolete||

--- Comment #4 from Nicolas Christener  ---
Comment on attachment 159564
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159564
Pass is RockyTheDog42

wrong 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 132106] New: CELL() function "format" should include more date formats to return "D1"

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132106

Bug ID: 132106
   Summary: CELL() function "format" should include more date
formats to return "D1"
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: er...@redhat.com

The CELL() function for argument "format" lacks at least the ISO 8601
-MM-DD date format to return "D1" (and for other formats including day,
month and year format codes).

Probably -MM-DD HH:MM:SS and other full date+time formats should return
"D4", though there is no "and similar formats" mentioned like for D1 in the
ODFF spec.

See
https://help.libreoffice.org/6.4/en-GB/text/scalc/01/04060104.html?DbPAR=CALC#bm_id3155509
and
https://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#CELL

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


[Libreoffice-bugs] [Bug 128035] There is no easy way to update a table of contents in the iOS app

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128035

--- Comment #3 from Nicolas Christener  ---
Created attachment 159564
  --> https://bugs.documentfoundation.org/attachment.cgi?id=159564=edit
Pass is RockyTheDog42

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


[Libreoffice-bugs] [Bug 128035] There is no easy way to update a table of contents in the iOS app

2020-04-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128035

--- Comment #2 from Nicolas Christener  ---
The ToC can be updated; long press on the ToC shows a dialog which offers
"Update index" as well as "Delete index".

Tested with 4.2.4 (50).

I believe, this issue can be closed.

Thanks a lot to the Collabora team and especially Tor for taking care of this!

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


  1   2   3   4   5   >