[Libreoffice-bugs] [Bug 88940] error 0xc000007b

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88940

--- Comment #30 from Geek squad  ---
Microsoft office setup is one of the biggest and best software available in the
productivity software industry. The best part is in the 21st century the
software industry has grown or even we see much software that is integrated
with software that gives a boost to the software industry.
https://gooff.org/

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


[Libreoffice-bugs] [Bug 129031] distorted lines

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129031

Jochen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #12 from Jochen  ---
Hi,
it is clear that the lines are output correctly under Linux, because it also
works in Windows in safe mode; but not under Windows 7 or 10 in normal mode and
most users still work with this operating system. Try it yourself.
The problem is now narrowed down: Everything is okay up to version 5.3.7.2 of
LibreOffice. From version 5.4 the distorted lines appear. Perhaps there is
someone among the developers / programmers of LibreOffice who can take a look
at the change in the program code for screen output between versions 5.3.7.2
and 5.4.

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


[Libreoffice-bugs] [Bug 108741] [META] Shapes bugs and enhancements

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108741

Dieter Praas  changed:

   What|Removed |Added

 Depends on||129438


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129438
[Bug 129438] Shape Styles
-- 
You are receiving this mail because:
You 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 129438] Shape Styles

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129438

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Blocks||108741
   Keywords||needsUXEval


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108741
[Bug 108741] [META] Shapes 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 129438] Shape Styles

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129438

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
 Blocks||108741
   Keywords||needsUXEval


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108741
[Bug 108741] [META] Shapes 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-commits] online.git: docker/l10n-docker-nightly.sh

2019-12-16 Thread Samuel Mehrbrodt (via logerrit)
 docker/l10n-docker-nightly.sh |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 0068d8b2d91ec1b5fc94881822621e22986316fe
Author: Samuel Mehrbrodt 
AuthorDate: Tue Dec 17 08:11:14 2019 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Tue Dec 17 08:24:32 2019 +0100

docker: Allow to build different branches in core+online

Change-Id: Ifbd705fc95ae225858ccd582ed2e0150a40f6a93
Reviewed-on: https://gerrit.libreoffice.org/85254
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/docker/l10n-docker-nightly.sh b/docker/l10n-docker-nightly.sh
index c877cbb5c..4bb588823 100755
--- a/docker/l10n-docker-nightly.sh
+++ b/docker/l10n-docker-nightly.sh
@@ -8,7 +8,8 @@
 # -- Available env vars --
 # * DOCKER_HUB_REPO - which Docker Hub repo to use
 # * DOCKER_HUB_TAG  - which Docker Hub tag to create
-# * LIBREOFFICE_BRANCH  - which branch to build (needs to exist in both core 
and online)
+# * LIBREOFFICE_BRANCH  - which branch to build in core
+# * LIBREOFFICE_ONLINE_BRANCH - which branch to build in online
 # * LIBREOFFICE_BUILD_TARGET - which make target to run (in core repo)
 # * ONLINE_EXTRA_BUILD_OPTIONS - extra build options for online
 # * NO_DOCKER_IMAGE - if set, don't build the docker image itself, just do all 
the preps
@@ -33,7 +34,12 @@ echo "Using Docker Hub Repository: '$DOCKER_HUB_REPO' with 
tag '$DOCKER_HUB_TAG'
 if [ -z "$LIBREOFFICE_BRANCH" ]; then
   LIBREOFFICE_BRANCH="master"
 fi;
-echo "Building branch '$LIBREOFFICE_BRANCH'"
+echo "Building core branch '$LIBREOFFICE_BRANCH'"
+
+if [ -z "$LIBREOFFICE_ONLINE_BRANCH" ]; then
+  LIBREOFFICE_ONLINE_BRANCH="master"
+fi;
+echo "Building online branch '$LIBREOFFICE_ONLINE_BRANCH'"
 
 if [ -z "$LIBREOFFICE_BUILD_TARGET" ]; then
   LIBREOFFICE_BUILD_TARGET=""
@@ -65,7 +71,7 @@ if test ! -d online ; then
 git clone https://git.libreoffice.org/online online || exit 1
 fi
 
-( cd online && git fetch --all && git checkout -f $LIBREOFFICE_BRANCH && git 
clean -f -d && git pull -r ) || exit 1
+( cd online && git fetch --all && git checkout -f $LIBREOFFICE_ONLINE_BRANCH 
&& git clean -f -d && git pull -r ) || exit 1
 
 # LibreOffice #
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: sd: disable pdf import tests

2019-12-16 Thread Stephan Bergmann

On 17/12/2019 01:46, Ashod Nakashian wrote:

On 12/16/19 11:59 AM, Stephan Bergmann wrote:
What's the reason for this change, and/or are there plans to enable 
the tests again?  (`git log -SIMPORT_PDF_ELEMENTS` shows this to be 
the only commit ever mentioning that identifier, so the tests are 
indeed disabled since then.) 


The tests are conditional on IMPORT_PDF_ELEMENTS because with the PDFium 
import logic, PDFs are imported as images, not individual elements 
(users can break the image into editable elements from the UI).


Since these tests rely on importing PDF elements individually, the 
PDFium importing logic breaks them.


But where does the the IMPORT_PDF_ELEMENTS macro get defined, if anywhere?

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


Re: what jdk for build?

2019-12-16 Thread Stephan Bergmann

On 16/12/2019 19:24, Terrence Enger wrote:

By completely omitting --with-jdk-home from autogen.input, I get a
successful build.  configure complains that JAVA_HOME is not set, but
the build continues.


You mean some


* WARNING : JAVA_HOME was not explicitly informed with --with-jdk-home. the 
configure script
* WARNING : attempted to find JAVA_HOME automatically, but apparently it failed
* WARNING : in case JAVA_HOME is incorrectly set, some projects will not be 
built correctly


when the determined JAVA_HOME is Java 9 or newer? 
 "Remove dated check for jre 
sub-dir in JDK" should fix that.


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


[Libreoffice-commits] online.git: Branch 'distro/cib/libreoffice-6-3' - docker/l10n-docker-nightly.sh

2019-12-16 Thread Samuel Mehrbrodt (via logerrit)
 docker/l10n-docker-nightly.sh |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit a2970c5568ad94ea933d47cb56d38a85234fd599
Author: Samuel Mehrbrodt 
AuthorDate: Tue Dec 17 08:11:14 2019 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Tue Dec 17 08:13:54 2019 +0100

docker: Allow to build different branches in core+online

Change-Id: Ifbd705fc95ae225858ccd582ed2e0150a40f6a93
Reviewed-on: https://gerrit.libreoffice.org/85256
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/docker/l10n-docker-nightly.sh b/docker/l10n-docker-nightly.sh
index 9f1f35a57..3c1e39f0c 100755
--- a/docker/l10n-docker-nightly.sh
+++ b/docker/l10n-docker-nightly.sh
@@ -8,7 +8,8 @@
 # -- Available env vars --
 # * DOCKER_HUB_REPO - which Docker Hub repo to use
 # * DOCKER_HUB_TAG  - which Docker Hub tag to create
-# * LIBREOFFICE_BRANCH  - which branch to build (needs to exist in both core 
and online)
+# * LIBREOFFICE_BRANCH  - which branch to build in core
+# * LIBREOFFICE_ONLINE_BRANCH - which branch to build in online
 # * LIBREOFFICE_BUILD_TARGET - which make target to run (in core repo)
 # * ONLINE_EXTRA_BUILD_OPTIONS - extra build options for online
 # * NO_DOCKER_IMAGE - if set, don't build the docker image itself, just do all 
the preps
@@ -33,7 +34,12 @@ echo "Using Docker Hub Repository: '$DOCKER_HUB_REPO' with 
tag '$DOCKER_HUB_TAG'
 if [ -z "$LIBREOFFICE_BRANCH" ]; then
   LIBREOFFICE_BRANCH="master"
 fi;
-echo "Building branch '$LIBREOFFICE_BRANCH'"
+echo "Building core branch '$LIBREOFFICE_BRANCH'"
+
+if [ -z "$LIBREOFFICE_ONLINE_BRANCH" ]; then
+  LIBREOFFICE_ONLINE_BRANCH="master"
+fi;
+echo "Building online branch '$LIBREOFFICE_ONLINE_BRANCH'"
 
 if [ -z "$LIBREOFFICE_BUILD_TARGET" ]; then
   LIBREOFFICE_BUILD_TARGET=""
@@ -65,7 +71,7 @@ if test ! -d online ; then
 git clone https://git.libreoffice.org/online online || exit 1
 fi
 
-( cd online && git fetch --all && git checkout -f $LIBREOFFICE_BRANCH && git 
clean -f -d && git pull -r ) || exit 1
+( cd online && git fetch --all && git checkout -f $LIBREOFFICE_ONLINE_BRANCH 
&& git clean -f -d && git pull -r ) || exit 1
 
 # LibreOffice #
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: Branch 'distro/cib/libreoffice-6-3' - 34 commits - common/Util.cpp common/Util.hpp configure.ac docker/Dockerfile docker/l10n-docker-nightly.sh docker/scripts kit/For

2019-12-16 Thread Michael Meeks (via logerrit)
 Makefile.am|3 
 common/Util.cpp|   25 +-
 common/Util.hpp|3 
 configure.ac   |   14 +
 docker/Dockerfile  |2 
 docker/l10n-docker-nightly.sh  |2 
 docker/scripts/run-lool.sh |4 
 kit/ForKit.cpp |1 
 loleaflet/Makefile.am  |7 
 loleaflet/admin/admin.html |4 
 loleaflet/admin/admin.strings.js   |1 
 loleaflet/admin/src/AdminSocketOverview.js |7 
 loleaflet/css/toolbar.css  |1 
 loleaflet/html/framed.doc.html |  114 +--
 loleaflet/images/lc_insertfootnote.svg |1 
 loleaflet/reference.html   |  155 +++
 loleaflet/src/control/Control.Menubar.js   |   80 +++-
 loleaflet/src/control/Control.Toolbar.js   |  226 +++---
 loleaflet/src/control/Ruler.js |1 
 loleaflet/src/control/Toolbar.js   |   14 +
 loleaflet/src/core/Socket.js   |6 
 loleaflet/src/layer/tile/TileLayer.js  |4 
 loleaflet/src/main.js  |4 
 loleaflet/src/map/Map.js   |   28 ++
 loleaflet/src/map/handler/Map.Keyboard.js  |9 
 loleaflet/src/map/handler/Map.WOPI.js  |  155 +++
 loolwsd.spec.in|1 
 loolwsd.xml.in |5 
 scripts/unocommands.py |2 
 wsd/Admin.cpp  |   50 -
 wsd/Admin.hpp  |   11 +
 wsd/AdminModel.cpp |  289 -
 wsd/AdminModel.hpp |   41 
 wsd/ClientSession.cpp  |   39 ++-
 wsd/ClientSession.hpp  |6 
 wsd/DocumentBroker.cpp |   29 ++
 wsd/DocumentBroker.hpp |5 
 wsd/FileServer.cpp |5 
 wsd/LOOLWSD.cpp|  102 +++---
 wsd/LOOLWSD.hpp|2 
 wsd/Storage.cpp|5 
 wsd/Storage.hpp|   11 +
 wsd/metrics.txt|  155 +++
 43 files changed, 1361 insertions(+), 268 deletions(-)

New commits:
commit 28e5004bceda40308106335f54b247a6929a2f54
Author: Michael Meeks 
AuthorDate: Mon Nov 25 12:06:07 2019 +
Commit: Samuel Mehrbrodt 
CommitDate: Mon Dec 16 17:04:05 2019 +0100

Add quick link to check monitoring.

Change-Id: I069eeaf8464661aaff52f11523d70c40cc81cc46
(cherry picked from commit 918d4ae150be391eedc70c4e193265d3b07ac23d)

diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index bdee5cb60..2cb9b4f26 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -17,6 +17,9 @@
 /* Default loleaflet UI used in the admin console URI */
 #define LOOLWSD_TEST_ADMIN_CONSOLE "/loleaflet/dist/admin/admin.html"
 
+/* Default loleaflet UI used in for monitoring URI */
+#define LOOLWSD_TEST_METRICS "/lool/getMetrics"
+
 /* Default loleaflet UI used in the start test URI */
 #define LOOLWSD_TEST_LOLEAFLET_UI "/loleaflet/" LOOLWSD_VERSION_HASH 
"/loleaflet.html"
 
@@ -628,12 +631,23 @@ namespace
 {
 
 #if ENABLE_DEBUG
-inline std::string getLaunchBase(const std::string )
+inline std::string getLaunchBase(bool asAdmin = false)
 {
 std::ostringstream oss;
 oss << "";
 oss << ((LOOLWSD::isSSLEnabled() || LOOLWSD::isSSLTermination()) ? 
"https://; : "http://;);
-oss << credentials;
+
+if (asAdmin)
+{
+auto user = 
LOOLWSD::getConfigValue("admin_console.username", "");
+auto passwd = 
LOOLWSD::getConfigValue("admin_console.password", "");
+
+if (user.empty() || passwd.empty())
+return "";
+
+oss << user << ":" << passwd << "@";
+}
+
 oss << LOOLWSD_TEST_HOST ":";
 oss << ClientPortNumber;
 
@@ -644,7 +658,7 @@ inline std::string getLaunchURI(const std::string )
 {
 std::ostringstream oss;
 
-oss << getLaunchBase("");
+oss << getLaunchBase();
 oss << LOOLWSD::ServiceRoot;
 oss << LOOLWSD_TEST_LOLEAFLET_UI;
 oss << "?file_path=file://";
@@ -654,33 +668,17 @@ inline std::string getLaunchURI(const std::string 
)
 return oss.str();
 }
 
-inline std::string getServiceURI(const std::string )
+inline std::string getServiceURI(const std::string , bool asAdmin = false)
 {
 std::ostringstream oss;
 
-oss << getLaunchBase("");
+oss << getLaunchBase(asAdmin);
 oss << LOOLWSD::ServiceRoot;
 oss << sub;
 
 return oss.str();
 }
 
-inline std::string getAdminURI(const Poco::Util::LayeredConfiguration )
-{
-std::string user = config.getString("admin_console.username", "");
-std::string passwd = config.getString("admin_console.password", "");
-
-if (user.empty() 

[Libreoffice-bugs] [Bug 125949] Presentation does not move forward in Linux (not smooth in Windows)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125949

Gülşah Köse  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 119920] Translation missing in LibreOffice Calc 6.1.1> Spanish version> User Interface with Tabs> 'Insertar' tab> 'Field' Icon.

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119920

--- Comment #6 from Albert Acer  ---
Now I can see that this has been resolved in LO Calc 6.3.4 in Spanish. Thank
you.

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


[Libreoffice-bugs] [Bug 119473] Translation missing in LibreOffice 6.1> Calc, spanish version, Notebook Bar> 'Insertar' tab> 'Field'

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119473

--- Comment #25 from Albert Acer  ---
Now I can see that this has been resolved in LO Calc 6.3.4 in Spanish. Thank
you.

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


[Libreoffice-bugs] [Bug 125949] Presentation does not move forward in Linux (not smooth in Windows)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125949

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.5.0

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


[Libreoffice-bugs] [Bug 125949] Presentation does not move forward in Linux (not smooth in Windows)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125949

--- Comment #9 from Commit Notification 
 ---
Gülşah Köse committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/8eb2d2972583b909a249f5b0f22a9b1fbf533d24

tdf#125949 Allow the slide to continue with freezing animation.

It will be available in 6.5.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: slideshow/source

2019-12-16 Thread Gülşah Köse (via logerrit)
 slideshow/source/engine/effectrewinder.cxx |   58 -
 slideshow/source/engine/effectrewinder.hxx |3 +
 2 files changed, 59 insertions(+), 2 deletions(-)

New commits:
commit 8eb2d2972583b909a249f5b0f22a9b1fbf533d24
Author: Gülşah Köse 
AuthorDate: Mon Dec 16 11:31:49 2019 +0300
Commit: Gülşah Köse 
CommitDate: Tue Dec 17 07:13:09 2019 +0100

tdf#125949 Allow the slide to continue with freezing animation.

Entrance (Zoom in, Spiral in, Sviwel, Stretchy) animations with
shapes freezes the presentation when OpenGL is enabled. As a
workaround, avoid playing these animations.

Change-Id: I054d87c4d3774339a9fe6fba42dea20bccd31bb1
Reviewed-on: https://gerrit.libreoffice.org/85201
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 

diff --git a/slideshow/source/engine/effectrewinder.cxx 
b/slideshow/source/engine/effectrewinder.cxx
index d920bdd4ad06..5db91ff9a621 100644
--- a/slideshow/source/engine/effectrewinder.cxx
+++ b/slideshow/source/engine/effectrewinder.cxx
@@ -29,7 +29,7 @@
 #include 
 #include 
 #include 
-
+#include 
 using ::com::sun::star::uno::Reference;
 using namespace ::com::sun::star;
 
@@ -291,9 +291,64 @@ bool EffectRewinder::resetEffectCount()
 return false;
 }
 
+bool EffectRewinder::hasBlockedAnimation( const 
css::uno::Reference& xNode)
+{
+bool isShapeTarget = false;;
+OUString preset_id;
+OUString preset_sub_type;
+OUString preset_property;
+
+if (xNode->getUserData().getLength())
+{
+for(int i = 0; i < xNode->getUserData().getLength(); i++)
+{
+if(xNode->getUserData()[i].Name == "preset-id")
+xNode->getUserData()[i].Value >>= preset_id;
+if(xNode->getUserData()[i].Name == "preset-sub-type")
+xNode->getUserData()[i].Value >>= preset_sub_type;
+if(xNode->getUserData()[i].Name == "preset-property")
+xNode->getUserData()[i].Value >>= preset_property;
+}
+}
+
+uno::Reference xEnumerationAccess (xNode, 
uno::UNO_QUERY);
+if (xEnumerationAccess.is())
+{
+uno::Reference xEnumeration (
+xEnumerationAccess->createEnumeration());
+if (xEnumeration.is())
+while (xEnumeration->hasMoreElements())
+{
+uno::Reference xNext 
(xEnumeration->nextElement(), uno::UNO_QUERY);
+uno::Reference xAnimate( xNext, 
uno::UNO_QUERY );
+
+if(xAnimate.is())
+{
+uno::Reference< drawing::XShape > xShape( 
xAnimate->getTarget(), uno::UNO_QUERY );
+
+if (xShape.is() || xAnimate->getTarget().getValueType() == 
cppu::UnoType::get())
+isShapeTarget=true;
+}
+}
+}
+
+if(isShapeTarget &&
+   ((preset_id == "ooo-entrance-zoom" && preset_sub_type == "in") || // 
Entrance Zoom In
+(preset_id == "ooo-entrance-swivel" ) || // 
Entrance Swivel
+(preset_id == "ooo-entrance-spiral-in")   || // 
Entrance Spiral-In
+(preset_id == "ooo-entrance-stretchy"))) // 
Entrance Stretchy
+return true;
+
+return false;
+}
 
 bool EffectRewinder::notifyAnimationStart (const AnimationNodeSharedPtr& 
rpNode)
 {
+Reference xNode (rpNode->getXAnimationNode());
+
+if(xNode.is() && hasBlockedAnimation(xNode) )
+skipSingleMainSequenceEffects();
+
 // This notification is only relevant for us when the rpNode belongs to
 // the main sequence.
 BaseNodeSharedPtr pBaseNode 
(::std::dynamic_pointer_cast(rpNode));
@@ -308,7 +363,6 @@ bool EffectRewinder::notifyAnimationStart (const 
AnimationNodeSharedPtr& rpNode)
 // triggered.
 bool bIsUserTriggered (false);
 
-Reference xNode (rpNode->getXAnimationNode());
 if (xNode.is())
 {
 animations::Event aEvent;
diff --git a/slideshow/source/engine/effectrewinder.hxx 
b/slideshow/source/engine/effectrewinder.hxx
index 0a88409498ec..f71f8425e840 100644
--- a/slideshow/source/engine/effectrewinder.hxx
+++ b/slideshow/source/engine/effectrewinder.hxx
@@ -97,6 +97,9 @@ public:
 */
 void skipAllMainSequenceEffects();
 
+//FIXME: That is an opengl issue(it doesn't allow to animate somea 
animations), remove that function when opengl fixed.
+static bool hasBlockedAnimation( const 
css::uno::Reference& xNode);
+
 private:
 EventMultiplexer& mrEventMultiplexer;
 EventQueue& mrEventQueue;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129416] SKIA. White background color for menu separators

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129416

--- Comment #3 from Mike Kaganski  ---
(In reply to V Stuart Foote from comment #1)
> but also the background field for some of the place holders for
> menu icons-not all, just some--show a white background where no icon is
> assigned.

I suppose it's unchecked checkboxes. Also some existing icons have white
"shadow" (like a rectangle was cleared, and then slightly smaller image
painted).

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


[Libreoffice-bugs] [Bug 129439] Skia: wrong colors in menu

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129439

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #1 from Mike Kaganski  ---


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

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


[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062
Bug 129062 depends on bug 129439, which changed state.

Bug 129439 Summary: Skia: wrong colors in menu
https://bugs.documentfoundation.org/show_bug.cgi?id=129439

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129416] SKIA. White background color for menu separators

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129416

Mike Kaganski  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #2 from Mike Kaganski  ---
*** Bug 129439 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 129062] [META] Skia library bugs

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129062

Mike Kaganski  changed:

   What|Removed |Added

 Depends on||129439


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 129439] Skia: wrong colors in menu

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129439

Mike Kaganski  changed:

   What|Removed |Added

 Blocks||129062


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 129439] Skia: wrong colors in menu

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129439

Mike Kaganski  changed:

   What|Removed |Added

 OS|All |Windows (All)
 CC||l.lu...@collabora.com

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


[Libreoffice-bugs] [Bug 129439] New: Skia: wrong colors in menu

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129439

Bug ID: 129439
   Summary: Skia: wrong colors in menu
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 156612
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156612=edit
Screenshot of menu in current master

With Version: 6.5.0.0.alpha0+ (x64)
Build ID: 148ed6c2739ab8af88c0ac363f30f99f10bf7c1a
CPU threads: 12; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL:
win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: CL

I see what is shown on the screenshot: wrong color of menu separators; some
icons have white "shadow"; and some places for icons are also white.

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


[Libreoffice-bugs] [Bug 128533] EDITING, FORMATTING: Accept any decimal separator

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128533

Anton Tsyganenko  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #3 from Anton Tsyganenko  ---
There are many possible ways:

1) Assume that the input does not contain thousands separator, assume both dot
and comma to be decimal separator, raise error if a number contains more then
one dot or comma.

2) If number contains one dot or comma, assume it to be a decimal separator, if
more then one, then use the current algorithm (decimal and thousands separator
based on locale settings).

3) If thousands separator in the locale is not dot or comma (for example, a
space), then assume both dot and comma to be decimal separator, otherwise use
current algorithm.

4) Allow user to choose between the current behavior and variants 1-3 in
settings.

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


[Libreoffice-bugs] [Bug 120808] Problems with page size defined as "Oficio" in the new experimental user interface with tabs in LibreOffice Writer in Spanish.

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120808

--- Comment #8 from Albert Acer  ---
This is already resolved in LO 6.3 and all its maintenance updates.
The paper size defined by you as "Folio" is the right solution and now I can
say that it is already solved. Thank you very much.

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


[Libreoffice-bugs] [Bug 129305] program gets hung up when attempting to save LibreOffice Calc spreadsheet

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129305

--- Comment #5 from Daniel Wellington  ---
There’s certainly a great deal to know about this topic. I like all the points
you’ve made.
http://thestoreguide.co.nz/

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


[Libreoffice-bugs] [Bug 119075] Slow scrolling after saving a document and switching sheets back and forth

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119075

john.k...@vfemail.net changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #16 from john.k...@vfemail.net ---
Dear Developer, 

Scrolling is almost identical to 'before saving' but CPU usage is ~2x and
changing sheets still happens with a 2-3 sec lag. Debian 9, Debian 10 while
Debian 8 is not affected. 

Appimage
Version: 6.3.4.2
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa

Best wishes, 
John

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


[Libreoffice-bugs] [Bug 113731] [META] Highlight bugs and enhancements

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113731

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||129418


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129418
[Bug 129418] Highlighting in Draw 'Text boxes' lost in Impress presentation MS
binary (PowerPoint 97-2003) filter, and roundtrip
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129418] Highlighting in Draw 'Text boxes' lost in Impress presentation MS binary (PowerPoint 97-2003) filter, and roundtrip

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129418

V Stuart Foote  changed:

   What|Removed |Added

Summary|Highlighting lost in|Highlighting in Draw 'Text
   |Impress presentation|boxes' lost in Impress
   ||presentation MS binary
   ||(PowerPoint 97-2003)
   ||filter, and roundtrip
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 Blocks||113731

--- Comment #9 from V Stuart Foote  ---
On Windows 10 Home 64-bit en-US with
Version: 6.3.4.2 (x64)
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

Confirmed there is something not quite right with export save from Impress via
PPT filter (PowerPoint 97-2003)--and also affects round trip import into LO.

Believe that as with MS binary--.DOC--and OOXML Word--.DOCX--text formats--text
shading and highlighting get different handling in MS binary--.PPT--and
OOXML--.PPTX--formats.

So the saves from Impress as .PPTX do seem to honor a highlighting setting to a
Draw text box filter saved from Impress. 

But not so sure about the MS binary .PPT format. Highlight applied to text of
'Draw text boxes' in Impress drop any highlight color value applied when filter
export to PPT. With defaults, but changing Tools -> Options -> Microsoft Office
-> 'Character Highlighting' value does not seem to have affect on either MS
filter format for a presentation.

Work on bug 64490 provided framework for paragraph/character handling--do Draw
text boxes (for Imgress and Draw) need similar handling for highlighting?

@Tamás?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113731
[Bug 113731] [META] Highlight 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 129418] Highlighting lost in Impress presentation

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129418

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 129097] HELP: Inconsistency between UI item name ("Name Box") and its naming in help ("Sheet Area box")

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129097

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 129420] Decrease performance when select many aleatory cells with Ctrl pressed.

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129420

--- Comment #3 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 129149] Shortcuts for z-index up down

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129149

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 126003] i haven't been able to open Libre Office nor read any .doc or .docx file with Libre Office 5.2 for two days

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126003

--- Comment #2 from QA Administrators  ---
Dear Pascale Chamerois,

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 129420] Decrease performance when select many aleatory cells with Ctrl pressed.

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129420

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 129418] Highlighting lost in Impress presentation

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129418

--- Comment #8 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


Re: sd: disable pdf import tests

2019-12-16 Thread Ashod Nakashian

Hi Stephan,

On 12/16/19 11:59 AM, Stephan Bergmann wrote:


What's the reason for this change, and/or are there plans to enable 
the tests again?  (`git log -SIMPORT_PDF_ELEMENTS` shows this to be 
the only commit ever mentioning that identifier, so the tests are 
indeed disabled since then.) 



The tests are conditional on IMPORT_PDF_ELEMENTS because with the PDFium 
import logic, PDFs are imported as images, not individual elements 
(users can break the image into editable elements from the UI).


Since these tests rely on importing PDF elements individually, the 
PDFium importing logic breaks them.


Hope this makes sense.

Thanks,
-Ash

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


[Libreoffice-bugs] [Bug 129420] Decrease performance when select many aleatory cells with Ctrl pressed.

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129420

--- Comment #2 from Yerinier Ferrás  ---
(In reply to Julien Nabet from comment #1)
> Could you give a try to a recent LO version?
> Last stable one is 6.3.4.

I tested the same scenario described in 'Steps to Reproduce' section, now using
LibreOffice 6.3.4, and the problem persist.

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

2019-12-16 Thread Andras Timar (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 148ed6c2739ab8af88c0ac363f30f99f10bf7c1a
Author: Andras Timar 
AuthorDate: Mon Dec 16 23:53:28 2019 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Dec 16 23:58:30 2019 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - fix 'Helpex warning: invalid po attributes extracted'

Change-Id: I00ca6735d389eedbd651c9e08d3aed2da9a0543a
Reviewed-on: https://gerrit.libreoffice.org/85248
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/helpcontent2 b/helpcontent2
index 6ee3bd0f9024..baec8e013016 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 6ee3bd0f902405f9ec033d866a51e4e1b2009599
+Subproject commit baec8e0130161e4e8328daf4d6c4e048f8025962
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2019-12-16 Thread Andras Timar (via logerrit)
 source/text/shared/01/0222.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit baec8e0130161e4e8328daf4d6c4e048f8025962
Author: Andras Timar 
AuthorDate: Mon Dec 16 23:53:28 2019 +0100
Commit: Andras Timar 
CommitDate: Mon Dec 16 23:58:30 2019 +0100

fix 'Helpex warning: invalid po attributes extracted'

Change-Id: I00ca6735d389eedbd651c9e08d3aed2da9a0543a
Reviewed-on: https://gerrit.libreoffice.org/85248
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/source/text/shared/01/0222.xhp 
b/source/text/shared/01/0222.xhp
index 587c4009e..824c2d973 100644
--- a/source/text/shared/01/0222.xhp
+++ b/source/text/shared/01/0222.xhp
@@ -200,7 +200,7 @@
   Icon Active
 
 
-   

+   
 
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - sc/uiconfig sd/uiconfig sw/uiconfig

2019-12-16 Thread andreas kainz (via logerrit)
 sc/uiconfig/scalc/ui/notebookbar_compact.ui|  183 --
 sd/uiconfig/sdraw/ui/notebookbar_compact.ui|  132 +-
 sd/uiconfig/simpress/ui/notebookbar_compact.ui |  131 +-
 sw/uiconfig/swriter/ui/notebookbar_compact.ui  |  309 -
 4 files changed, 635 insertions(+), 120 deletions(-)

New commits:
commit e2cc615430d25f2f62ea90db4474001b1c892444
Author: andreas kainz 
AuthorDate: Sun Dec 15 20:44:42 2019 +0100
Commit: andreas_kainz 
CommitDate: Mon Dec 16 23:13:31 2019 +0100

NB tabbed compact Menu File Button

Change-Id: I50b03f34e878f6bed97e1f3752485d2e9ecd5e55
Reviewed-on: https://gerrit.libreoffice.org/85179
Tested-by: Jenkins
Reviewed-by: andreas_kainz 
(cherry picked from commit 109d7f64e7244e1c949880a65a620aaa8b8cb08b)
Reviewed-on: https://gerrit.libreoffice.org/85181

diff --git a/sc/uiconfig/scalc/ui/notebookbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
index d6e3dac4688c..ce19b605413e 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
@@ -507,176 +507,299 @@
 True
 False
 
-  
+  
 True
 False
 .uno:AddDirect
   
 
 
-  
+  
+False
+False
+.uno:OpenFromCalc
+  
+
+
+  
+False
+False
+.uno:OpenRemote
+  
+
+
+  
 True
 False
 .uno:RecentFileList
   
 
 
-  
+  
 True
 False
 .uno:CloseDoc
   
 
 
-  
+  
+True
+False
+  
+
+
+  
+False
+False
+.uno:AutoPilotMenu
+  
+
+
+  
+False
+False
+.uno:OpenTemplate
+  
+
+
+  
+False
+False
+.uno:SaveAsTemplate
+  
+
+
+  
+False
+False
+.uno:NewDoc
+  
+
+
+  
+True
+False
+  
+
+
+  
+False
+False
+.uno:Reload
+  
+
+
+  
+False
+False
+.uno:VersionDialog
+  
+
+
+  
 True
 False
   
 
 
-  
+  
 True
 False
 .uno:Save
   
 
 
-  
+  
 True
 False
 .uno:SaveAs
   
 
 
-  
+  
 True
 False
 .uno:SaveAsRemote
   
 
 
-  
+  
+False
+False
+.uno:SaveACopy
+  
+
+
+  
+False
+False
+.uno:SaveAll
+  
+
+
+  
 True
 False
-.uno:NewGlobalDoc
   
 
 
-  
+  
+False
+False
+.uno:CheckOut
+  
+
+
+  
+False
+False
+.uno:CancelCheckOut
+  
+
+
+  
+False
+False
+.uno:CheckIn
+  
+
+
+  
 True
 False
   
 
 
-  
+  
 True
 False
 .uno:ExportTo
   
 
 
-  
+  
 True
 False
 .uno:ExportToPDF
   
 
 
-  
+  
 True
 False
-.uno:ExportToEPUB
   
 
 
-  
+  
 True
 False
+.uno:SendMail
   
 
 
-  
-True
+  
+False
 False
-.uno:SendMail
+.uno:SendMailDocAsOOo
+  
+
+
+  
+False
+False
+.uno:SendMailDocAsMS
   
 
 
-  
+  
 True
 False
 .uno:SendMailDocAsPDF
   
 
 
-  
+  
 True
 False
 .uno:SendViaBluetooth
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
+False
+False
+.uno:WebHtml
+  
+
+
+  
 True
 False
 .uno:PrintPreview
   
 
 
-  
+  
 True
 False
 .uno:PrintDefault
   
 
 
-  
+  
+False
+False
+.uno:Print
+  
+
+
+  
 True
 False
 .uno:PrinterSetup
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
 .uno:Signature
   
 
 
-  
+  
 True
 False
 .uno:SignPDF
   
 
 
-  
+  
 True
 False
 .uno:SetDocumentProperties
   
 
 
-  
+  
 True
 False
   
 
 
-  
+  
 True
 False
 .uno:Quit
diff --git a/sd/uiconfig/sdraw/ui/notebookbar_compact.ui 
b/sd/uiconfig/sdraw/ui/notebookbar_compact.ui
index 

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - include/vcl sd/source sfx2/source

2019-12-16 Thread Jan Holesovsky (via logerrit)
 include/vcl/ITiledRenderable.hxx |9 +
 sd/source/ui/inc/unomodel.hxx|5 +
 sfx2/source/view/lokhelper.cxx   |2 +-
 3 files changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 589147c64804adc5ceba895510559e2b6806d467
Author: Jan Holesovsky 
AuthorDate: Mon Dec 16 17:50:57 2019 +0100
Commit: Jan Holesovsky 
CommitDate: Mon Dec 16 23:06:36 2019 +0100

android: Don't crash when double-tapping a text box.

Here we were accessing the notification from a destructor; so avoid that
when the pDoc is already being destructed.

Change-Id: I686bc9acf66788bfed6cf478fc7a1646ca8fd259
Reviewed-on: https://gerrit.libreoffice.org/85235
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 

diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx
index 63646d5c5df0..a204713dd91b 100644
--- a/include/vcl/ITiledRenderable.hxx
+++ b/include/vcl/ITiledRenderable.hxx
@@ -340,6 +340,15 @@ public:
 virtual void completeFunction(int /*nIndex*/)
 {
 }
+
+/**
+ * It can happen that the underlying implementation is being disposed, but
+ * somebedy is trying to access the data...
+ */
+virtual bool isDisposed() const
+{
+return false;
+}
 };
 } // namespace vcl
 
diff --git a/sd/source/ui/inc/unomodel.hxx b/sd/source/ui/inc/unomodel.hxx
index 9282d0aeef80..7d7a9ee8005c 100644
--- a/sd/source/ui/inc/unomodel.hxx
+++ b/sd/source/ui/inc/unomodel.hxx
@@ -268,6 +268,11 @@ public:
 virtual void moveSelectedParts(int nPosition, bool bDuplicate) override;
 /// @see vcl::ITiledRenderable::getPartInfo().
 virtual OUString getPartInfo(int nPart) override;
+/// @see vcl::ITiledRenderable::isDisposed().
+virtual bool isDisposed() const override
+{
+return mbDisposed;
+}
 
 // XComponent
 
diff --git a/sfx2/source/view/lokhelper.cxx b/sfx2/source/view/lokhelper.cxx
index 58076bf0143e..f478b667f407 100644
--- a/sfx2/source/view/lokhelper.cxx
+++ b/sfx2/source/view/lokhelper.cxx
@@ -303,7 +303,7 @@ void SfxLokHelper::notifyInvalidation(SfxViewShell const* 
pThisView, const OStri
 
 void SfxLokHelper::notifyDocumentSizeChanged(SfxViewShell const* pThisView, 
const OString& rPayload, vcl::ITiledRenderable* pDoc, bool bInvalidateAll)
 {
-if (!pDoc || !comphelper::LibreOfficeKit::isActive() || 
DisableCallbacks::disabled())
+if (!pDoc || pDoc->isDisposed() || !comphelper::LibreOfficeKit::isActive() 
|| DisableCallbacks::disabled())
 return;
 
 if (bInvalidateAll)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129438] New: Shape Styles

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129438

Bug ID: 129438
   Summary: Shape Styles
   Product: LibreOffice
   Version: 6.4.0.0.beta1+
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: miscellane...@paintdrawer.co.uk

Description:
Shapes should have styles just like paragraphs, characters, frames, tables etc
do. So if I change a style, then eg all my arrows (using that style) would
change colour, line thickness etc to reflect the style change.
The style UI is already present so I think it would not be a great stretch to
implement in some basic way at first, but would be extremely useful, as I
revise my style decisions at times and have to go through large numbers of
shapes manually that are scattered throughout each document.

Version: 6.4.0.0.beta1 (x64)
Build ID: 4d7e5b0c40ed843384704eca3ce21981d4e98920
CPU threads: 2; OS: Windows 10.0 Build 18362; UI render: default; VCL: win; 
Locale: en-GB (en_GB); UI-Language: en-GB
Calc: threaded

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 129410] Corrupted spreadsheet, unable to open

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129410

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
I can open, save and open again.
Version: 6.3.4.2 (x64)
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US Calc:

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


[Libreoffice-bugs] [Bug 129436] Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

--- Comment #5 from Olivier Hallot  ---
correction, string "ce".

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


[Libreoffice-bugs] [Bug 129436] Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

--- Comment #4 from Olivier Hallot  ---
(In reply to Jim Avera from comment #2)
> While fixing this, there are a couple of other improvements which could be
> made:
> 
> * Mention whether the first position of a string is 1 or 0.

Wrong. For the same example,

 iPos = Instr(4,"Office","f",0)

the result is 0 because the search starts at position 4 and 'f' occurs at 2 and
3. IOW, it will search 'f' in string 'ice'.

> 
> * Show the result from the code example (currently it just lists the code
> without saying what the expected result is).

Agree.

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


[Libreoffice-bugs] [Bug 129436] Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

Olivier Hallot  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 129436] Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

--- Comment #3 from Olivier Hallot  ---
In the example of the Help page on InStr, if we ommit Start and define Compare,
we get an error. E.g.

iPos = Instr(sInput,"c",0)

Thus I think the word "return" is misleading and should be removed.

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


[Libreoffice-bugs] [Bug 129436] Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

--- Comment #2 from Jim Avera  ---
While fixing this, there are a couple of other improvements which could be
made:

* Mention whether the first position of a string is 1 or 0.

* Show the result from the code example (currently it just lists the code
without saying what the expected result is).

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


[Libreoffice-bugs] [Bug 129322] MacOS Calc Error on Hyperlink- File is not an absolute URL that can be passed to an external application to open it

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129322

--- Comment #5 from Stephan Bergmann  ---
(In reply to G from comment #4)
> I forgot to mention (I didn't realized) that the folder where
> Error-Hyperlink.xls file is stored, is on a Shared folder of a NAS, and not
> on my desktop/own computer.

Not sure how this should make a difference.

* So your document is indeed at
/Users/ga/Desktop/Tst-Hyperlink/Error-Hyperlink.xls (as attachment 156474
suggests)?

* What is the output of typing "mount" (without the quotes) in a Terminal
window?

* What is the output of typing "ls /Users/ga/Desktop/Tst-Hyperlink/X" (without
the quotes) in a Terminal window?

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


[Libreoffice-bugs] [Bug 129437] New: [PYUNO] "setPropertyValue" method does not accept particular Enum value

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129437

Bug ID: 129437
   Summary: [PYUNO] "setPropertyValue" method does not accept
particular Enum value
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jeanmarczam...@gmail.com

Description:
Given the following python code:

import uno
from com.sun.star.awt.PushButtonType import OK
def enum_error():
ctx = uno.getComponentContext()
button_model =
ctx.ServiceManager.createInstance("com.sun.star.awt.UnoControlButtonModel")
button_model.PushButtonType = OK
button_model.setPropertyValue("PushButtonType", OK)

The penultimate line passes, while the last one raises the following error:

: Unable to convert the
given value for the property PushButtonType.
Expected type: short
Found type: com.sun.star.awt.PushButtonType


The workaround is obvious with "setPropertyValue" method, but the convenient
and more efficient "setPropertyValues" raises the same error without as
efficient alternative, as far as I understand.



Steps to Reproduce:
1. Copy and run the small python script above from within a LibreOffice
session.


Actual Results:
Error raised at last line (see error message in above description)

Expected Results:
Last line should pass without error, as per the penultimate line.


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: fr
Module: TextDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

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


[Libreoffice-bugs] [Bug 129436] Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

--- Comment #1 from Jim Avera  ---
Typo, meant "unless the parameter is passed by reference"

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


[Libreoffice-bugs] [Bug 129436] New: Unclear documentation of InStr "Compare" parameter

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129436

Bug ID: 129436
   Summary: Unclear documentation of InStr "Compare" parameter
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jim.av...@gmail.com
CC: olivier.hal...@libreoffice.org

Description:
The documentation for Basic function "InStr" says

  "To avoid a run-time error, do not set the Compare parameter if the first
return parameter is omitted."

What does "return parameter" refer to here?   

Probably the wording should be clarified to give the parameter's name (is it
'Start' ?) and not say "return" unless the parameter is passed by value.

Note: None of the parameters are documented to return anything, although they
are passed by reference (since not declared 'ByVal').

Steps to Reproduce:
1. Search for "InStr" in the Help

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 77970] FILEOPEN: I get a macro warning on a spreadsheet with no macros

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77970

--- Comment #13 from himajin100...@gmail.com ---
Or maybe..
https://opengrok.libreoffice.org/xref/core/scripting/source/provider/URIHelper.cxx?r=f5a219c3#129

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


[Libreoffice-bugs] [Bug 129435] EDITING Insert - Field - doesn't work with UI Tabbed compact

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129435

stefan_lange...@t-online.de  changed:

   What|Removed |Added

Summary|EDITING Insert - Field -|EDITING Insert - Field -
   |doesn't work with UI Tabbed |doesn't work with UI Tabbed
   |compacr |compact

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


[Libreoffice-bugs] [Bug 129435] New: EDITING Insert - Field - doesn't work with UI Tabbed compacr

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129435

Bug ID: 129435
   Summary: EDITING Insert - Field - doesn't work with UI Tabbed
compacr
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stefan_lange...@t-online.de

When in Calc the User Interface "Tabbed compact" is activated, in the Tab
"Insert" a click on the arrow belonging to "Field" is without any effect.
Other arrows do work properly (Symbol, Formula, Emoji, Basic Shapes, ...) and
the problem also doesn't occur with UI "Tabbed".

In all builds of LO 6.5.0.0 installed from
https://dev-builds.libreoffice.org/daily/master/Win-x86_64@tb77-TDF/2019-12-05_04.54.44/
or earlier the problem doesn't occur.

The problem first occurs with the build installed from
https://dev-builds.libreoffice.org/daily/master/Win-x86_64@tb77-TDF/2019-12-06_04.46.39/
and it still exists with build installed from
https://dev-builds.libreoffice.org/daily/master/Win-x86_64@tb77-TDF/2019-12-16_04.51.40/.

Reproducing the problem:
- install LO 6.5.0.0 from
https://dev-builds.libreoffice.org/daily/master/Win-x86_64@tb77-TDF/2019-12-06_04.46.39/
or newer
- New -> spreadsheet document
- change user interface to "Tabbed compact"
- select any cell
- select tab "Insert" and click on the arrow belonging to "Field" --> nothing
happens
- correct would be if a menu appears with the items "Date" and "Time"

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


[Libreoffice-bugs] [Bug 129428] CRASH: Chart: Displaying content menu of a data point

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129428

--- Comment #4 from Julien Nabet  ---
Created attachment 156611
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156611=edit
Valgrind trace

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


[Libreoffice-bugs] [Bug 64902] Add new menu options to move rows/columns in tables without overwriting the original cells

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64902

László Németh  changed:

   What|Removed |Added

Summary|Moving rows/columns in  |Add new menu options to
   |tables inserting as new |move rows/columns in tables
   |rows/columns without|without overwriting the
   |overwriting the original|original cells
   |cells   |
 Status|REOPENED|ASSIGNED
   Assignee|libreoffice-b...@lists.free |nem...@numbertext.org
   |desktop.org |

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


[Libreoffice-bugs] [Bug 129434] New: Suggested features for Writer for authors.

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129434

Bug ID: 129434
   Summary: Suggested features for Writer for authors.
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lynneconnoll...@yahoo.co.uk

I'm an author, and there are reasons I don't use LO for novel writing, much
though I love the program. Someone suggested I reported why I use a different
word processor for writing, so here it is:

1. All the autocorrect problems I've reported before. Especially the way Writer
doesn't capitalise at the start of a sentence if the last sentence ends in
double quotes, or the word starting the sentence has an apostrophe in it.
Incredibly annoying, best to just switch the feature off in LO and capitalise
using the shift, which is slower than the auto-correct.

2. I can check a box on AWP and it will start on the document I was last
working on, the cursor at the place where I last left it. Such a useful feature
to have!

3. A browser-style tagged interface, so that I can have all the documents I'm
working on easily visible, and just click on them to switch between them.

4. A wonderful little tool that lists long sentences (over x number of words),
word repetitions and word frequencies. But I doubt you'll be able to do that.

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


[Libreoffice-bugs] [Bug 64902] Moving rows/columns in tables inserting as new rows/columns without overwriting the original cells

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64902

László Németh  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 64902] Moving rows/columns in tables inserting as new rows/columns without overwriting the original cells

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64902

László Németh  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 64902] Moving rows/columns in tables inserting as new rows/columns without overwriting the original cells

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64902

--- Comment #4 from László Németh  ---
Note: Word 2016 uses a toolbar on its table popup menu to handle these and the
function "paste as nested table".

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


[Libreoffice-bugs] [Bug 64902] Moving rows/columns in tables inserting as new rows/columns without overwriting the original cells

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64902

László Németh  changed:

   What|Removed |Added

Summary|Moving columns in tables|Moving rows/columns in
   |overwrites content  |tables inserting as new
   ||rows/columns without
   ||overwriting the original
   ||cells

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


[Libreoffice-bugs] [Bug 64902] Moving columns in tables overwrites content

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64902

László Németh  changed:

   What|Removed |Added

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

--- Comment #3 from László Németh  ---
I reopen this to file the new table popup menu items Paste Special->Table
Row/Column and Edit->Paste Special->Paste Table Row/Column.

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


[Libreoffice-bugs] [Bug 35570] Moving rows (and columns too) in tables overwrites content

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35570

László Németh  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |nem...@numbertext.org
   |desktop.org |

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


Re: GPU optimization feedback (I hope ;-)

2019-12-16 Thread Thorsten Behrens
Hey Drew,

Drew Jensen wrote:
> If there is a use for another test file I'll let them know and IDK get it
> to the QA group, I guess - ?
> 
Absolutely! I personally don't think we could possibly have too *many*
real-world test files ..

Cheers,

-- Thorsten


signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 129428] CRASH: Chart: Displaying content menu of a data point

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129428

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

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

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


[Libreoffice-bugs] [Bug 77970] FILEOPEN: I get a macro warning on a spreadsheet with no macros

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77970

--- Comment #12 from himajin100...@gmail.com ---
https://opengrok.libreoffice.org/xref/core/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java?r=f4a07458#306

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


[Libreoffice-bugs] [Bug 60252] Add a Clipboard Manager to manage multiple copy/paste

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60252

Buovjaga  changed:

   What|Removed |Added

 CC||gerritmichelsb...@gmail.com

--- Comment #6 from Buovjaga  ---
*** Bug 129433 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 129433] Multiple clipboard for LibreOffice

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129433

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Buovjaga  ---
This is out of scope and will not be implemented. Use the manager of the
operating system or develop an extension of your own.

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

-- 
You are receiving this mail because:
You 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 60252] Add a Clipboard Manager to manage multiple copy/paste

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60252

Buovjaga  changed:

   What|Removed |Added

 CC||gerritmichelsb...@gmail.com

--- Comment #6 from Buovjaga  ---
*** Bug 129433 has been marked as a duplicate of this bug. ***

-- 
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 129433] New: Multiple clipboard for LibreOffice

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129433

Bug ID: 129433
   Summary: Multiple clipboard for LibreOffice
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gerritmichelsb...@gmail.com

Description:
LibreOffice should get a multi-clipboard (for 10 items) organized as a
LIFO-stack. If the user just uses ctrl-v the item last added to the clipboard
is inserted. But anotother shortcut with the numbers 1, 2, ... 9, 0 (and a
visual clipboard-manager) inserts the last 10 items. And in combination with
shift, it just inserts the contents without formatting.

Steps to Reproduce:
Paste multiple items to the clipboard.

Actual Results:
Only the last one is in the clipboard.

Expected Results:
There should be a multi-clipboard that remembers the last 10 items, that can be
accessed by shortcuts and a visual clipboard-manager, while the traditional
ctrl-v works as expected and inserts the item last added to the clipboard. And
in addition with shift, the shortcuts should only insert the contents without
formatting.


Reproducible: Always


User Profile Reset: Yes



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 77970] FILEOPEN: I get a macro warning on a spreadsheet with no macros

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77970

--- Comment #11 from himajin100...@gmail.com ---
self-reminder:

https://opengrok.libreoffice.org/xref/core/sfx2/source/doc/docmacromode.cxx?r=0b5fea74#361

https://opengrok.libreoffice.org/xref/core/cui/source/dialogs/scriptdlg.cxx?r=d628258f#828
https://opengrok.libreoffice.org/xref/core/cui/source/dialogs/scriptdlg.cxx?r=d628258f#938

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


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

2019-12-16 Thread Miklos Vajna (via logerrit)
 include/sfx2/docfile.hxx  |1 
 sfx2/source/doc/docfile.cxx   |4 
 sw/qa/extras/htmlimport/data/allowed-rtf-ole-mime-types.xhtml |5 
 sw/qa/extras/htmlimport/data/ole2.ole | 1014 ++
 sw/qa/extras/htmlimport/data/ole2.png |binary
 sw/qa/extras/htmlimport/htmlimport.cxx|   35 
 sw/source/filter/html/htmlplug.cxx|6 
 sw/source/filter/html/swhtml.cxx  |   19 
 sw/source/filter/html/swhtml.hxx  |3 
 9 files changed, 1086 insertions(+), 1 deletion(-)

New commits:
commit e0f20211a8048a87b078aa4cf0f28c0c847487ad
Author: Miklos Vajna 
AuthorDate: Mon Dec 16 17:02:46 2019 +0100
Commit: Miklos Vajna 
CommitDate: Mon Dec 16 19:50:21 2019 +0100

sw reqif-xhtml import: add a new AllowedRTFOLEMimeTypes parameter

The HTML import is an old-style filter, so it has no XFilter
implementation where filter() would get custom parameters out of the
box. One way would be to fix by adding one more entry to the aFormalArgs
table under sfx2/, but doing that with a random parameter of a random
import filter feels dirty.

So instead make SfxMedium store all arguments as-is, this way accessing
other keys is as easy to accessing the already available FilterOptions
(string) key.

Regarding the actual filter change, don't require "text/rtf" as a mime
type for embedded objects in the reqif XHTML import, so that in case the
file has e.g. application/rtf, then that works as well.

In case an (UNO) client wants to still limit the accepted set of MIME
types, that's possible via the new parameter.

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

diff --git a/include/sfx2/docfile.hxx b/include/sfx2/docfile.hxx
index 2019b5738c01..09aae02b1976 100644
--- a/include/sfx2/docfile.hxx
+++ b/include/sfx2/docfile.hxx
@@ -108,6 +108,7 @@ public:
 const OUString& GetOrigURL() const;
 
 SfxItemSet  *   GetItemSet() const;
+css::uno::Sequence GetArgs() const;
 voidClose(bool bInDestruction = false);
 voidCloseAndRelease();
 voidReOpen();
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index 0e646ae723b5..69c4b1a248ff 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -328,6 +328,8 @@ public:
 
 util::DateTime m_aDateTime;
 
+uno::Sequence m_aArgs;
+
 explicit SfxMedium_Impl();
 ~SfxMedium_Impl();
 SfxMedium_Impl(const SfxMedium_Impl&) = delete;
@@ -3240,6 +3242,7 @@ SfxMedium::SfxMedium( const 
uno::Sequence& aArgs ) :
 SfxAllItemSet *pParams = new SfxAllItemSet( SfxGetpApp()->GetPool() );
 pImpl->m_pSet.reset( pParams );
 TransformParameters( SID_OPENDOC, aArgs, *pParams );
+pImpl->m_aArgs = aArgs;
 
 OUString aFilterProvider, aFilterName;
 {
@@ -3301,6 +3304,7 @@ SfxMedium::SfxMedium( const 
uno::Sequence& aArgs ) :
 Init_Impl();
 }
 
+uno::Sequence SfxMedium::GetArgs() const { return 
pImpl->m_aArgs; }
 
 SfxMedium::SfxMedium( const uno::Reference < embed::XStorage >& rStor, const 
OUString& rBaseURL, const std::shared_ptr& p ) :
 pImpl(new SfxMedium_Impl)
diff --git a/sw/qa/extras/htmlimport/data/allowed-rtf-ole-mime-types.xhtml 
b/sw/qa/extras/htmlimport/data/allowed-rtf-ole-mime-types.xhtml
new file mode 100644
index ..9b01ad72a5e5
--- /dev/null
+++ b/sw/qa/extras/htmlimport/data/allowed-rtf-ole-mime-types.xhtml
@@ -0,0 +1,5 @@
+
+   
+   OLE 
Object
+   
+
diff --git a/sw/qa/extras/htmlimport/data/ole2.ole 
b/sw/qa/extras/htmlimport/data/ole2.ole
new file mode 100644
index ..96407e88fa3d
--- /dev/null
+++ b/sw/qa/extras/htmlimport/data/ole2.ole
@@ -0,0 +1,1014 @@
+{\object\objemb{\*\objclass PowerPoint.Show.12}\objw10020\objh5638{\*\objdata 
+0105
+0200
+1300
+506f776572506f696e742e53686f772e313200
+
+
+0094
+d0cf11e0a1b11ae13e000300feff090006
+000100011002000100feff
+ff
+ff
+ff
+ff
+ff
+ff
+ff

[Libreoffice-bugs] [Bug 129388] It's not possible to apply a template to a slide deck using the iOS app (version 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129388

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129391] The active/selected cell misses the handles to grow/shrink the cell selection in calc on iOS (app version 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129391

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129383] Paragraph background color selection doens't fit on screen in iOS version 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129383

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129381] Crash when using "edit > cut" on a picture in impress on iOS using app version 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129381

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Moving to 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 129392] "Edit Chart" seems not work in calc on iOS (app version 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129392

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129386] Box with slide transitions can't be scrolled in the sidebar in iOS (app version 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129386

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129389] Not possible to edit the title when adding a new slide (maybe file specific) using impress on iOS (app version 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129389

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #3 from Xisco Faulí  ---
Moving to 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 129374] Dialog containing shapes is too big and doesn't scroll on iOS 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129374

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129371] cmd+v on a hardware keyboard seems not to paste content from the clipboard on iOS version 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129371

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129384] Crash when tapping on the "movie" button in impress on iOS (app version 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129384

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Moving to 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 129373] Content doesn't fit into sidebar in writer on iOS 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129373

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129375] Crash when using insert > table of contents... > bibliography entry... on iOS 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129375

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Moving to 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 129380] Typing using a hardware keyboard shows a "helper bar" from the OS in the iOS app

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129380

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Xisco Faulí  ---
Moving to 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 129378] Non working menu entries in menu "help" on iOS 4.2

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129378

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Xisco Faulí  ---
Moving to 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 129377] Crash when using insert > table of contents... > table of contents, index... (ios 4.2)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129377

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Moving to 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 129430] FILESAVE: Saving Impress file to PPTX changes line spacing

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129430

Xisco Faulí  changed:

   What|Removed |Added

 OS|Mac OS X (All)  |All
   Hardware|x86-64 (AMD64)  |All
 Ever confirmed|0   |1
   Keywords||bibisected, bisected,
   ||regression
 CC||xiscofa...@libreoffice.org,
   ||zolnaitamas2...@gmail.com
 Status|UNCONFIRMED |NEW

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

https://cgit.freedesktop.org/libreoffice/core/commit/?id=ef2e9b19a52e04ae0ed45900bcf64bf375a910ef

author  Tamás Zolnai2017-09-25 21:42:57
+0200
committer   Tamás Zolnai2017-09-26
14:06:22 +0200
commit  ef2e9b19a52e04ae0ed45900bcf64bf375a910ef (patch)
tree84ed81f6c7c56618623c4b38512287916065b184
parent  616fc7a79f35f4db65b58d34ff6d6e806ff9a6ef (diff)
tdf#112647: Fixed line spacing is saved incorrectly to PPTX

Bisected with: bibisect-linux64-6.0

Adding Cc: to Tamás Zolnai

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


Re: what jdk for build?

2019-12-16 Thread Terrence Enger
On Fri, 2019-12-13 at 21:22 +0100, Stephan Bergmann wrote:
> You appear to wonder whether you should be able to point --with-jdk-home 
> to a 32-bit Java installation for a 64-bit LO build (on Linux).  No.  At 
> least some tests run during the LO build would want to load libjvm.so 
> from the specified --with-jdk-home (propagated via JAVA_HOME environment 
> variable and UNO_JAVA_JFW_ENV_JREHOME bootstrap variable) into a 64-bit 
> process, and fail.

By completely omitting --with-jdk-home from autogen.input, I get a
successful build.  configure complains that JAVA_HOME is not set, but
the build continues.

Thank you, Stephan.

> 
> I guess configure.ac doesn't check that a Java installation specified 
> via --with-jdk-home matches the bitness of the LO build.  If that's the 
> case, feel free to improve that if you see a need for it.

Oh my!

 
  When I first came from OpenOffice to LibreOffice, lo those
  many years ago, I planned to carefully collect all the configuration
  and build problems I encountered, thinking that the compilation
  would be a useful contribution to the project.  I found no problems,
  and that is one of the big improvements in LibreOffice: the build
  system "just works".  A result, though, is that I have needed to
  learn essentially nothing about the build system.


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


[Libreoffice-bugs] [Bug 129318] Java JRE not found on Base

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129318

Robert Großkopf  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||rob...@familiegrosskopf.de
 Status|UNCONFIRMED |NEEDINFO

--- Comment #10 from Robert Großkopf  ---
I have read this up and down ... Can't find a answer to the question:
Which bit-version of Java do you use? It must be 64bit for LO x86_64, must be
32bit for LO x86.

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


[Libreoffice-bugs] [Bug 88283] Calc - Fill vertically exceeds top of cell boundary by 1px greater than No Fill cells

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88283

--- Comment #9 from Marc Meledandri  ---
This bug is still present in versions 6.2.8 and 6.3.4.

Version: 6.3.4.2
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU threads: 4; OS: Linux 5.3; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


Re: sd: disable pdf import tests

2019-12-16 Thread Stephan Bergmann

On 16/12/2019 17:59, Stephan Bergmann wrote:
What's the reason for this change, and/or are there plans to enable the 
tests again?


(see  "Re-enable PDF import 
tests" in case we want to re-enable them)


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


[Libreoffice-commits] online.git: loleaflet/src

2019-12-16 Thread Ashod Nakashian (via logerrit)
 loleaflet/src/map/Map.js |1 +
 1 file changed, 1 insertion(+)

New commits:
commit aae1eae9e4a7503d5d6cb0fe4f6ba573c73f7933
Author: Ashod Nakashian 
AuthorDate: Mon Dec 16 08:41:18 2019 -0500
Commit: Michael Meeks 
CommitDate: Mon Dec 16 19:02:23 2019 +0100

leaflet: don't show the sidebar wizard in Impress

Only Impress seems to be affected by this lack of
proper initialization.

Change-Id: I5c870d8afaf7c7403071c61ed26ba321070264d0
Reviewed-on: https://gerrit.libreoffice.org/85220
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index d80a60f4b..58d9cf849 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -111,6 +111,7 @@ L.Map = L.Evented.extend({
this._disableDefaultAction = {}; // The events for which the 
default handler is disabled and only issues postMessage.
this._winId = 0;
this._activeDialog = null;
+   this.showSidebar = false;
 
vex.dialogID = -1;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loleaflet/src

2019-12-16 Thread Ashod Nakashian (via logerrit)
 loleaflet/src/control/Control.LokDialog.js|2 +-
 loleaflet/src/control/Control.MobileWizard.js |2 --
 loleaflet/src/control/Control.Toolbar.js  |   16 ++--
 loleaflet/src/map/Map.js  |   14 ++
 4 files changed, 5 insertions(+), 29 deletions(-)

New commits:
commit b4de4d77d00396f0ab4422bf14d50d7a1c2bdddb
Author: Ashod Nakashian 
AuthorDate: Sun Dec 15 21:20:18 2019 -0500
Commit: Michael Meeks 
CommitDate: Mon Dec 16 19:02:00 2019 +0100

leaflet: improved sidebar control using new uno commands

Change-Id: I90e0833e1bc4e71719c91afe971fe7180c743676
Reviewed-on: https://gerrit.libreoffice.org/85193
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 

diff --git a/loleaflet/src/control/Control.LokDialog.js 
b/loleaflet/src/control/Control.LokDialog.js
index 7ac61c241..2e1e52d90 100644
--- a/loleaflet/src/control/Control.LokDialog.js
+++ b/loleaflet/src/control/Control.LokDialog.js
@@ -224,7 +224,6 @@ L.Control.LokDialog = L.Control.extend({
}
 
e.id = parseInt(e.id);
-   window.sidebarId = e.id;
var strId = this._toStrId(e.id);
 
var width = 0;
@@ -255,6 +254,7 @@ L.Control.LokDialog = L.Control.extend({
if (!window.mode.isMobile()) {
this._launchSidebar(e.id, width, 
height);
} else {
+   // In mobile we get jsdialog messages.
window.sidebarId = e.id;
}
} else if (e.winType === 'child') {
diff --git a/loleaflet/src/control/Control.MobileWizard.js 
b/loleaflet/src/control/Control.MobileWizard.js
index f5aa7c767..035d14f36 100644
--- a/loleaflet/src/control/Control.MobileWizard.js
+++ b/loleaflet/src/control/Control.MobileWizard.js
@@ -240,8 +240,6 @@ L.Control.MobileWizard = L.Control.extend({
if (!this._isActive && isSidebar) {
if (this.map.showSidebar == false)
return;
-   else
-   this._refreshSidebar();
}
 
this._isActive = true;
diff --git a/loleaflet/src/control/Control.Toolbar.js 
b/loleaflet/src/control/Control.Toolbar.js
index 2cb0b5289..bf1997688 100644
--- a/loleaflet/src/control/Control.Toolbar.js
+++ b/loleaflet/src/control/Control.Toolbar.js
@@ -339,6 +339,7 @@ function onClick(e, id, item, subItem) {
else if (id === 'mobile_wizard') {
if (window.mobileWizard) {
window.mobileWizard = false;
+   map.sendUnoCommand('.uno:SidebarHide');
map.fire('closemobilewizard');
toolbar.uncheck(id);
}
@@ -346,20 +347,7 @@ function onClick(e, id, item, subItem) {
if (window.insertionMobileWizard)
this.onClick(null, 'insertion_mobile_wizard');
window.mobileWizard = true;
-   if (!map._sidebarVisible) {
-   map._sidebarVisible = true;
-   map.sendUnoCommand('.uno:Sidebar');
-   if (map.hasObjectFocusDarkOverlay())
-   map.sendUnoCommand('.uno:Sidebar');
-   } else {
-   // As the sidebar LOKWindowId can and does 
change,
-   // esp. between chart and other elements, we 
apparently
-   // lose track, and there is currently no 
reliable way to
-   // recover it (which is needed to request 
updates).
-   // The following disable and enable the sidebar 
to get it.
-   map.sendUnoCommand('.uno:Sidebar');
-   map.sendUnoCommand('.uno:Sidebar');
-   }
+   map.sendUnoCommand('.uno:SidebarShow');
map.fire('showwizardsidebar');
toolbar.check(id);
}
diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index ed03f6098..d80a60f4b 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -111,8 +111,6 @@ L.Map = L.Evented.extend({
this._disableDefaultAction = {}; // The events for which the 
default handler is disabled and only issues postMessage.
this._winId = 0;
this._activeDialog = null;
-   this._sidebarVisible = false; // The state of the sidebar in 
Core.
-   this._showSidebar = false; // Whether we have the sidebar 
visible in the UI or not (i.e. does 

[Libreoffice-bugs] [Bug 129418] Highlighting lost in Impress presentation

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129418

--- Comment #7 from flyingv...@gmail.com ---
(In reply to Julien Nabet from comment #6)
> Also do you reproduce this with a brand new file containing just one
> sentence?

Hello

On the download page of LO i always use the version stated as "tested for
longer".
because my documents are critical and represent much work. 

Whatever your test was the right one, and so anybody will be able to test the
issue on every version : ;)
Creating  a brand new file with impress :

 one sentence  ,  highligthing it in yellow fluorescent :

If you 
save in ODG : highlighting is kept

In PPT Or PPTX :   highlighting is lost 

Regards

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


[Libreoffice-bugs] [Bug 127481] EDITING: Crash in sdr::table::Cell::GetItemSet() (on double-click in 1x1 table within duplicated slide)

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127481

--- Comment #20 from Xisco Faulí  ---
Verified in

Version: 6.5.0.0.alpha0+
Build ID: 3e33a11d8a553a99bd5f23940a65c301924198fb
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); UI-Language: en-US
Calc: threaded

@Thosten, thanks for fixing this issue!

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


[Libreoffice-bugs] [Bug 111922] Draw/Impress Sidebar with point measurement units set, incorrect Size measurements shown on Position and Size content panel--but shows correctly on properties dialog

2019-12-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111922

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
   Keywords||bibisected, bisected,
   ||regression

--- Comment #10 from Xisco Faulí  ---
(In reply to NISZ LibreOffice Team from comment #6)
> This is the same issue as: 
> https://bugs.documentfoundation.org/show_bug.cgi?id=100632#c6
> but let's keep this open since that bug is about multiple issues.

According to that commit, this is a regression...

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