[Libreoffice-commits] core.git: download.lst external/mdds

2019-08-14 Thread Kohei Yoshida (via logerrit)
 download.lst|2 
 external/mdds/UnpackedTarball_mdds.mk   |1 
 external/mdds/use-position-hint-also-back.patch |   50 
 3 files changed, 1 insertion(+), 52 deletions(-)

New commits:
commit 1c59fed7c43654736775580799f1165e8b8740a0
Author: Kohei Yoshida 
AuthorDate: Thu Aug 15 00:37:44 2019 -0400
Commit: Kohei Yoshida 
CommitDate: Thu Aug 15 07:26:42 2019 +0200

Correctly pack mdds 1.5.0.

Turns out the earlier mdds 1.5.0 package was not correctly packaged.
I've fixed that now, and re-published the 1.5.0 package, which does
contain the patch from Lubos.

Change-Id: I1ff7d6568568860f7cccd3be3bc29aaaebe7fd73
Reviewed-on: https://gerrit.libreoffice.org/77483
Tested-by: Jenkins
Reviewed-by: Kohei Yoshida 

diff --git a/download.lst b/download.lst
index 59b58f96347c..046b440cd379 100644
--- a/download.lst
+++ b/download.lst
@@ -168,7 +168,7 @@ export LXML_SHA256SUM := 
940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a
 export LXML_TARBALL := lxml-4.1.1.tgz
 export MARIADB_CONNECTOR_C_SHA256SUM := 
fd2f751dea049c1907735eb236aeace1d811d6a8218118b00bbaa9b84dc5cd60
 export MARIADB_CONNECTOR_C_TARBALL := 
a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz
-export MDDS_SHA256SUM := 
74cda018d5aa39a2f91652608efb066fd225f3597ce54733e6ab1e99e52606f7
+export MDDS_SHA256SUM := 
144d6debd7be32726f332eac14ef9f17e2d3cf89cb3250eb31a7127e0789680d
 export MDDS_TARBALL := mdds-1.5.0.tar.bz2
 export MDNSRESPONDER_SHA256SUM := 
e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e3990d68aabf6e8b3f5a0
 export MDNSRESPONDER_TARBALL := mDNSResponder-878.200.35.tar.gz
diff --git a/external/mdds/UnpackedTarball_mdds.mk 
b/external/mdds/UnpackedTarball_mdds.mk
index 625204d29619..c015f4c13f5a 100644
--- a/external/mdds/UnpackedTarball_mdds.mk
+++ b/external/mdds/UnpackedTarball_mdds.mk
@@ -14,7 +14,6 @@ $(eval $(call 
gb_UnpackedTarball_set_tarball,mdds,$(MDDS_TARBALL)))
 $(eval $(call gb_UnpackedTarball_set_patchlevel,mdds,0))
 
 $(eval $(call gb_UnpackedTarball_add_patches,mdds,\
-   external/mdds/use-position-hint-also-back.patch \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/mdds/use-position-hint-also-back.patch 
b/external/mdds/use-position-hint-also-back.patch
deleted file mode 100644
index 0b38c38d5536..
--- a/external/mdds/use-position-hint-also-back.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 726e2f02d14833bde2f7eef9677f5564c485a992 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= 
-Date: Fri, 17 May 2019 13:55:20 +0200
-Subject: [PATCH] use position hint also when it is past the actual position
-
-The m_blocks data structure is a vector. It means that it can be
-also walked back, instead of resetting and starting from the very
-start.
-
-Allows a noticeable performance improvement in
-https://gerrit.libreoffice.org/#/c/72424/ .

- include/mdds/multi_type_vector_def.inl | 21 -
- 1 file changed, 20 insertions(+), 1 deletion(-)
-
-diff --git a/include/mdds/multi_type_vector_def.inl 
b/include/mdds/multi_type_vector_def.inl
-index 22a0ee2..09894e6 100644
 include/mdds/multi_type_vector_def.inl
-+++ include/mdds/multi_type_vector_def.inl
-@@ -861,7 +861,26 @@ void multi_type_vector<_CellBlockFunc, 
_EventFunc>::get_block_position(
- 
- if (pos < start_row)
- {
--// Position hint is past the insertion position. Reset.
-+// Position hint is past the insertion position.
-+// Walk back if that seems efficient.
-+if (pos > start_row / 2)
-+{
-+for (size_type i = block_index; i > 0;)
-+{
-+--i;
-+const block& blk = m_blocks[i];
-+start_row -= blk.m_size;
-+if (pos >= start_row)
-+{
-+// Row is in this block.
-+block_index = i;
-+return;
-+}
-+// Specified row is not in this block.
-+}
-+assert(start_row == 0);
-+}
-+// Otherwise reset.
- start_row = 0;
- block_index = 0;
- }
--- 
-2.16.4
-
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: [ANN] mdds 1.5.0 and liborcus 0.15.0 on master

2019-08-14 Thread Kohei Yoshida
On Thu, 2019-08-15 at 00:14 -0400, Kohei Yoshida wrote:
> Hi there,
> 
> I just finished merging my changes on the master branch to upgrade
> mdds and orcus to 1.5.0 and 0.15.0, respectively.  These are the new
> baselines now.

Actually I've just discovered that I had incorrectly packaged the mdds
1.5.0 tarball, which did not include the patch from Lubos.  I've fixed
that now and re-published the package.  Once this change

https://gerrit.libreoffice.org/#/c/77483/

lands, everything should be okay.

If any distro packagers have packaged the earlier 1.5.0 package, you
may want to re-download the fixed package instead.

Sorry about that.

Kohei

-- 
Kohei Yoshida, LibreOffice Calc volunteer hacker

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

[Libreoffice-bugs] [Bug 126418] Crash in: ScColumn::MergeBlockFrame(SvxBoxItem *, SvxBoxInfoItem *, ScLineFlags &, long, long, bool, short)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126418

--- Comment #9 from Mike Kaganski  ---
(In reply to m.a.riosv from comment #8)

Of course; https://bugs.documentfoundation.org/show_bug.cgi?id=126418 is
prepared and must be merged as required for all backports: i.e., 1 review from
someone other than me [1].

[1] https://wiki.documentfoundation.org/Development/Branches

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

[Libreoffice-bugs] [Bug 126418] Crash in: ScColumn::MergeBlockFrame(SvxBoxItem *, SvxBoxInfoItem *, ScLineFlags &, long, long, bool, short)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126418

--- Comment #10 from Mike Kaganski  ---
Sorry; the link to backport is https://gerrit.libreoffice.org/77442

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

[ANN] mdds 1.5.0 and liborcus 0.15.0 on master

2019-08-14 Thread Kohei Yoshida
Hi there,

I just finished merging my changes on the master branch to upgrade mdds
and orcus to 1.5.0 and 0.15.0, respectively.  These are the new
baselines now.

Best,

Kohei

-- 
Kohei Yoshida, LibreOffice Calc volunteer hacker

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

[Libreoffice-commits] core.git: configure.ac download.lst external/liborcus RepositoryExternal.mk sc/inc sc/qa sc/source svl/source

2019-08-14 Thread Kohei Yoshida (via logerrit)
 RepositoryExternal.mk   |4 -
 configure.ac|4 -
 download.lst|8 +-
 external/liborcus/0001-Prevent-unsigned-integer-underflow.patch |   27 
--
 external/liborcus/ExternalPackage_liborcus.mk   |8 +-
 external/liborcus/ExternalProject_liborcus.mk   |4 -
 external/liborcus/Library_orcus-parser.mk   |2 
 external/liborcus/Library_orcus.mk  |7 ++
 external/liborcus/UnpackedTarball_liborcus.mk   |3 -
 external/liborcus/version.patch.0   |   11 
 sc/inc/mtvelements.hxx  |8 +-
 sc/inc/orcusxml.hxx |1 
 sc/qa/unit/dataproviders_test.cxx   |1 
 sc/source/core/tool/scmatrix.cxx|8 +-
 sc/source/filter/inc/orcusinterface.hxx |2 
 sc/source/filter/orcus/interface.cxx|8 ++
 sc/source/filter/orcus/orcusfiltersimpl.cxx |4 -
 sc/source/filter/orcus/xmlcontext.cxx   |9 ++-
 sc/source/ui/xmlsource/xmlsourcedlg.cxx |6 ++
 svl/source/misc/gridprinter.cxx |2 
 20 files changed, 58 insertions(+), 69 deletions(-)

New commits:
commit 56ffe3c0a1261cd98a3d42b8b08d5f8eb013ead4
Author: Kohei Yoshida 
AuthorDate: Mon Aug 12 13:57:34 2019 -0400
Commit: Kohei Yoshida 
CommitDate: Thu Aug 15 06:09:52 2019 +0200

Switch mdds to 1.5.0 and liborcus to 0.15.0.

Change-Id: Ibff9a5e0f0771e4cf12b4dc3985661a01195e265
Reviewed-on: https://gerrit.libreoffice.org/77482
Tested-by: Jenkins
Reviewed-by: Kohei Yoshida 

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 54ab1dbfdcc3..57f66b8f344a 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -3262,7 +3262,7 @@ $(call gb_LinkTarget_set_include,$(1),\
 )
 
 $(call gb_LinkTarget_add_libs,$(1),\
-   -L$(call gb_UnpackedTarball_get_dir,liborcus)/src/liborcus/.libs 
-lorcus-0.14 \
+   -L$(call gb_UnpackedTarball_get_dir,liborcus)/src/liborcus/.libs 
-lorcus-0.15 \
 )
 
 $(if $(SYSTEM_BOOST), \
@@ -3281,7 +3281,7 @@ $(call gb_LinkTarget_set_include,$(1),\
 )
 
 $(call gb_LinkTarget_add_libs,$(1),\
-   -L$(call gb_UnpackedTarball_get_dir,liborcus)/src/parser/.libs 
-lorcus-parser-0.14 \
+   -L$(call gb_UnpackedTarball_get_dir,liborcus)/src/parser/.libs 
-lorcus-parser-0.15 \
 )
 
 endef
diff --git a/configure.ac b/configure.ac
index 1510daf22454..d0e6759b1f52 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9291,7 +9291,7 @@ AC_SUBST(SYSTEM_BOOST)
 dnl ===
 dnl Check for system mdds
 dnl ===
-libo_CHECK_SYSTEM_MODULE([mdds], [MDDS], [mdds-1.4 >= 1.4.1], 
["-I${WORKDIR}/UnpackedTarball/mdds/include"])
+libo_CHECK_SYSTEM_MODULE([mdds], [MDDS], [mdds-1.5 >= 1.5.0], 
["-I${WORKDIR}/UnpackedTarball/mdds/include"])
 
 dnl ===
 dnl Check for system glm
@@ -9597,7 +9597,7 @@ AC_SUBST(ENABLE_FUZZERS)
 dnl ===
 dnl Orcus
 dnl ===
-libo_CHECK_SYSTEM_MODULE([orcus],[ORCUS],[liborcus-0.14 >= 0.14.0])
+libo_CHECK_SYSTEM_MODULE([orcus],[ORCUS],[liborcus-0.15 >= 0.15.0])
 if test "$with_system_orcus" != "yes"; then
 if test "$SYSTEM_BOOST" = "TRUE"; then
 # ===
diff --git a/download.lst b/download.lst
index b57ed794d2a6..59b58f96347c 100644
--- a/download.lst
+++ b/download.lst
@@ -168,8 +168,8 @@ export LXML_SHA256SUM := 
940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a
 export LXML_TARBALL := lxml-4.1.1.tgz
 export MARIADB_CONNECTOR_C_SHA256SUM := 
fd2f751dea049c1907735eb236aeace1d811d6a8218118b00bbaa9b84dc5cd60
 export MARIADB_CONNECTOR_C_TARBALL := 
a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz
-export MDDS_SHA256SUM := 
25ce3d5af9f6609e1de05bb22b2316e57b74a72a5b686fbb2da199da72349c81
-export MDDS_TARBALL := mdds-1.4.3.tar.bz2
+export MDDS_SHA256SUM := 
74cda018d5aa39a2f91652608efb066fd225f3597ce54733e6ab1e99e52606f7
+export MDDS_TARBALL := mdds-1.5.0.tar.bz2
 export MDNSRESPONDER_SHA256SUM := 
e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e3990d68aabf6e8b3f5a0
 export MDNSRESPONDER_TARBALL := mDNSResponder-878.200.35.tar.gz
 export MSPUB_SHA256SUM := 
ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba
@@ -194,8 +194,8 @@ export OPENLDAP_SHA256SUM := 

[Libreoffice-bugs] [Bug 124490] Libreoffice crashes in Save As dialog box when user types "~/"

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124490

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #9 from Aron Budea  ---
And which Linux distro / desktop environment do you use?

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

[Libreoffice-bugs] [Bug 117073] [META] WebDAV bugs

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117073

Aron Budea  changed:

   What|Removed |Added

 Depends on||126595


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126595
[Bug 126595] Crash when receiving certain WebDAV error responses
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126595] Crash when receiving certain WebDAV error responses

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126595

Aron Budea  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117073
[Bug 117073] [META] WebDAV 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 125461] Start Center: File Preview has a black contour if default is used

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125461

--- Comment #4 from russell  ---
Created attachment 153400
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153400=edit
Recently Used thumbnails and Help > About are black

Existing Recently Used thumbnails created by 6.2.4 are displaced ok. But if I
select one with 6.3.0, close libreoffice and reopen, the thumbnail is now
black.

Help > About is also black.  Please see image.

When I start libreoffice from the command line I see:

===> /opt/libreoffice6.3/program/soffice --nologo

/opt/libreoffice6.3/program/soffice.bin: /lib/x86_64-linux-gnu/libdbus-1.so.3:
no version information available (required by
/opt/libreoffice6.3/program/libmergedlo.so)

** (process:5016): WARNING **: require gtk >= 3.18 for theme expectations

(soffice:5016): Gdk-WARNING **: gdk_window_set_icon_list: icons too large

(soffice:5016): Gdk-WARNING **: gdk_window_set_icon_list: icons too large

>From this link, https://www.libreoffice.org/get-help/system-requirements/, it
appears this machine meets requirements.

Linux kernel: 4.4
glibc2: 2.19
Pentium-compatible PC: yes
256Mb RAM (512 MB RAM recommended): yes
Up to 1.55 GB available hard disk space: yes
X Server with 1024x768 resolution, with at least 256 colors: yes
Gnome 2.16 or higher, with the gail 1.8.6 and at-spi 1.7 packages: kde 4.14,
gail 2.24, at-spi 2.10

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

[Libreoffice-bugs] [Bug 124194] Loading files in Calc 5 times slower in 6.2.1.2 snap than in v6.2.0.1 .deb

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124194

--- Comment #5 from Buovjaga  ---
(In reply to Dan Dascalescu from comment #4)
> I understand that slow loading *of LibreCalc* from the snap should be
> reported to  the Ubuntu packagers, but the issue I ran into was slow loading
> of files AFTER Calc had been started.

If Canonical devs determine the problem to be in upstream, we can always
revisit this report.

-- 
You are receiving this mail because:
You 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: bundled/include kit/ChildSession.cpp kit/KitHelper.hpp loleaflet/build loleaflet/css loleaflet/images loleaflet/Makefile.am loleaflet/src tools/KitClient.cpp

2019-08-14 Thread Tomaž Vajngerl (via logerrit)
 bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h |9 
 kit/ChildSession.cpp |3 
 kit/KitHelper.hpp|2 
 loleaflet/Makefile.am|1 
 loleaflet/build/deps.js  |3 
 loleaflet/css/loleaflet.css  |   20 +
 loleaflet/images/table-column-resize-marker.svg  |   10 
 loleaflet/images/table-row-resize-marker.svg |   10 
 loleaflet/src/layer/tile/TileLayer.TableOverlay.js   |  191 +++
 loleaflet/src/layer/tile/TileLayer.js|5 
 tools/KitClient.cpp  |1 
 11 files changed, 254 insertions(+), 1 deletion(-)

New commits:
commit cc7060293945a6d45bf83376a456c57165a10f2f
Author: Tomaž Vajngerl 
AuthorDate: Wed Aug 14 18:13:40 2019 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Aug 15 05:16:04 2019 +0200

tdf#122529 Support for table overlay - column/row change markers

This adds table markers for resizing rows and columns if the user
has the table selected or the cursor is in the table. The code
reacts to the callback "tableselected:", where the markers are
created for each column and row, if the payload (json) of course
has any data. When the marker is dragged, a uno command to resize
the table column or row border is send to the core.

Change-Id: I9b21d09639c1b2be70a1a897f9e3340b453d847e
Reviewed-on: https://gerrit.libreoffice.org/77360
Reviewed-by: Tomaž Vajngerl 
Tested-by: Tomaž Vajngerl 

diff --git a/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 4277adbe6..0c8e5938f 100644
--- a/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -665,6 +665,15 @@ typedef enum
  * Rectangle format is the same as LOK_CALLBACK_INVALIDATE_TILES.
  */
 LOK_CALLBACK_CELL_AUTO_FILL_AREA = 43,
+
+/**
+ * When the cursor is in a table or a table is selected in the
+ * document, this sends the table's column and row border positions
+ * to the client. If the payload is empty (empty JSON object), then
+ * no table is currently selected or the cursor is not inside a table
+ * cell.
+ */
+LOK_CALLBACK_TABLE_SELECTED = 44,
 }
 LibreOfficeKitCallbackType;
 
diff --git a/kit/ChildSession.cpp b/kit/ChildSession.cpp
index 9684553e9..428808835 100644
--- a/kit/ChildSession.cpp
+++ b/kit/ChildSession.cpp
@@ -2296,6 +2296,9 @@ void ChildSession::loKitCallback(const int type, const 
std::string& payload)
 case LOK_CALLBACK_CELL_AUTO_FILL_AREA:
 sendTextFrame("cellautofillarea: " + payload);
 break;
+case LOK_CALLBACK_TABLE_SELECTED:
+sendTextFrame("tableselected: " + payload);
+break;
 
 #if !ENABLE_DEBUG
 // we want a compilation-time failure in the debug builds; but ERR in the
diff --git a/kit/KitHelper.hpp b/kit/KitHelper.hpp
index 9f51fe528..8a32cb2dd 100644
--- a/kit/KitHelper.hpp
+++ b/kit/KitHelper.hpp
@@ -137,6 +137,8 @@ namespace LOKitHelper
 return "CELL_SELECTION_AREA";
 case LOK_CALLBACK_CELL_AUTO_FILL_AREA:
 return "CELL_AUTO_FILL_AREA";
+case LOK_CALLBACK_TABLE_SELECTED:
+return "TABLE_SELECTED";
}
 
 assert(!"Missing LOK_CALLBACK type");
diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index 00cfdc083..cb8522a6b 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -340,6 +340,7 @@ pot:
src/errormessages.js \
src/layer/marker/Annotation.js \
src/layer/tile/TileLayer.js \
+   src/layer/tile/TileLayer.TableOverlay.js \
src/map/Map.js \
src/map/Clipboard.js \
src/map/handler/Map.FileInserter.js \
diff --git a/loleaflet/build/deps.js b/loleaflet/build/deps.js
index 45feef2b5..52a71fd24 100644
--- a/loleaflet/build/deps.js
+++ b/loleaflet/build/deps.js
@@ -36,7 +36,8 @@ var deps = {
},
 
TileLayer: {
-   src: ['layer/tile/TileLayer.js'],
+   src: ['layer/tile/TileLayer.js',
+ 'layer/tile/TileLayer.TableOverlay.js'],
desc: 'The base class for displaying tile layers on the map.',
deps: ['GridLayer']
},
diff --git a/loleaflet/css/loleaflet.css b/loleaflet/css/loleaflet.css
index 576931f8d..62cecafa9 100644
--- a/loleaflet/css/loleaflet.css
+++ b/loleaflet/css/loleaflet.css
@@ -41,6 +41,26 @@
-ms-filter: "alpha(opacity=100)" !important;
 }
 
+.table-column-resize-marker {
+   margin-left: 0px;
+   margin-top: 0px;
+   width: 24px;
+   height: 24px;
+   background-image: url('images/table-column-resize-marker.svg');
+   background-size: 100% 100%;
+   background-repeat: no-repeat;
+}
+

[Libreoffice-bugs] [Bug 122529] Resize handles in tables (Writer)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122529

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

https://git.libreoffice.org/online/+/cc7060293945a6d45bf83376a456c57165a10f2f%5E%21

tdf#122529 Support for table overlay - column/row change markers

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

[Libreoffice-bugs] [Bug 113108] [META] Dialog UI/UX bugs and enhancements

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113108
Bug 113108 depends on bug 124734, which changed state.

Bug 124734 Summary: 'Format' windows in writer and calc on Ubuntu-Linux too wide
https://bugs.documentfoundation.org/show_bug.cgi?id=124734

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182
Bug 103182 depends on bug 124734, which changed state.

Bug 124734 Summary: 'Format' windows in writer and calc on Ubuntu-Linux too wide
https://bugs.documentfoundation.org/show_bug.cgi?id=124734

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 124734] 'Format' windows in writer and calc on Ubuntu-Linux too wide

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124734

Buovjaga  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
   Keywords||corruptProfile
 Resolution|--- |WORKSFORME

--- Comment #12 from Buovjaga  ---
That is good news.

It sounds like you could rename your user profile directory, which will make
LibreOffice generate a new one upon next launch. If you have not done any
customisations to the menus, toolbars or keyboard shortcuts, there should not
be any loss of data. Extensions also live in the user profile, so if you have
any, you could copy the extensions directory back.

More info:
https://wiki.documentfoundation.org/UserProfile

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

[Libreoffice-bugs] [Bug 126925] Crash of LO Writer when changing xfce4 theme

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126925

--- Comment #3 from Buovjaga  ---
(In reply to Adalbert Hanßen from comment #2)
> Do I have to make this setting of the environment variable permanent or was
> my trial just a proof for your conjecture? What would be necessary to make
> it permanent?
> 
> But as you see from my copying from the terminal window, there is another
> error message on the display.

There should be a package called libreoffice-gtk3. You can uninstall the
package and then LibreOffice should automatically use gtk2. You can always
check the currently used UI plugin from LibreOffice's Help - About dialog (VCL:
gtk2/gtk3).

The message you refer to is a warning, not an error, so at least it is not
fatal.

Anyway, I hope Xfce 4.14 will work with LibreOffice using gtk3:
https://xfce.org/about/news/?post=1565568000
Perhaps it will be available in Xubuntu 19.10.

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

[Libreoffice-bugs] [Bug 122529] Resize handles in tables (Writer)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122529

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.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 122529] Resize handles in tables (Writer)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122529

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

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

tdf#122529 lok - table border position manipulation

It will be available in 6.4.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: desktop/source include/LibreOfficeKit include/sfx2 include/svx libreofficekit/source svx/sdi sw/inc sw/sdi sw/source

2019-08-14 Thread Tomaž Vajngerl (via logerrit)
 desktop/source/lib/init.cxx  |   16 -
 include/LibreOfficeKit/LibreOfficeKitEnums.h |9 +++
 include/sfx2/sfxsids.hrc |3 +
 include/svx/svxids.hrc   |1 
 libreofficekit/source/gtk/lokdocview.cxx |2 
 svx/sdi/svx.sdi  |   21 ++-
 sw/inc/crsrsh.hxx|1 
 sw/sdi/_viewsh.sdi   |4 +
 sw/source/core/crsr/crsrsh.cxx   |   81 +++
 sw/source/uibase/uiview/viewtab.cxx  |   80 ++
 10 files changed, 214 insertions(+), 4 deletions(-)

New commits:
commit 43cce4ef2cf865b2bb637e17b70102a4260295b0
Author: Tomaž Vajngerl 
AuthorDate: Wed Aug 14 18:08:18 2019 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Aug 15 04:49:33 2019 +0200

tdf#122529 lok - table border position manipulation

This adds a new LOK callback (LOK_CALLBACK_TABLE_SELECTED) that
sends the border positions to the client when the user has the
cursor or slelection in a table.

In addition this adds a .uno:TableChangeCurrentBorderPosition
uno command, which implements changing a specific border in
the current table. Border can be either a column or a row border,
which is either at the first, middle or last position.

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

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a2a6ba56f496..2a86c3f6a94f 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -368,9 +368,21 @@ std::vector 
desktop::jsonToPropertyValuesVector(const char
 else if (rType == "long")
 aValue.Value <<= OString(rValue.c_str()).toInt32();
 else if (rType == "short")
-aValue.Value <<= 
static_cast(OString(rValue.c_str()).toInt32());
+aValue.Value <<= sal_Int16(OString(rValue.c_str()).toInt32());
 else if (rType == "unsigned short")
-aValue.Value <<= 
static_cast(OString(rValue.c_str()).toUInt32());
+aValue.Value <<= 
sal_uInt16(OString(rValue.c_str()).toUInt32());
+else if (rType == "int64")
+aValue.Value <<= OString(rValue.c_str()).toInt64();
+else if (rType == "int32")
+aValue.Value <<= OString(rValue.c_str()).toInt32();
+else if (rType == "int16")
+aValue.Value <<= sal_Int16(OString(rValue.c_str()).toInt32());
+else if (rType == "uint64")
+aValue.Value <<= OString(rValue.c_str()).toUInt64();
+else if (rType == "uint32")
+aValue.Value <<= OString(rValue.c_str()).toUInt32();
+else if (rType == "uint16")
+aValue.Value <<= 
sal_uInt16(OString(rValue.c_str()).toUInt32());
 else if (rType == "[]byte")
 {
 aNodeValue = rPair.second.get_child("value", aNodeNull);
diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 0680c7e6c44f..43762cc54c48 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -674,6 +674,15 @@ typedef enum
  * Rectangle format is the same as LOK_CALLBACK_INVALIDATE_TILES.
  */
 LOK_CALLBACK_CELL_AUTO_FILL_AREA = 43,
+
+/**
+ * When the cursor is in a table or a table is selected in the
+ * document, this sends the table's column and row border positions
+ * to the client. If the payload is empty (empty JSON object), then
+ * no table is currently selected or the cursor is not inside a table
+ * cell.
+ */
+LOK_CALLBACK_TABLE_SELECTED = 44,
 }
 LibreOfficeKitCallbackType;
 
diff --git a/include/sfx2/sfxsids.hrc b/include/sfx2/sfxsids.hrc
index 20c9e4db5c94..b535f26e7489 100644
--- a/include/sfx2/sfxsids.hrc
+++ b/include/sfx2/sfxsids.hrc
@@ -565,6 +565,9 @@ class SvxSearchItem;
 #define SID_OPEN_SMARTTAGOPTIONS(SID_SVX_START + 1062)
 #define SID_RULER_MARGIN1   (SID_SVX_START + 1063)
 #define SID_RULER_MARGIN2   (SID_SVX_START + 1064)
+#define SID_TABLE_BORDER_TYPE   (SID_SVX_START + 1065)
+#define SID_TABLE_BORDER_INDEX  (SID_SVX_START + 1066)
+#define SID_TABLE_BORDER_NEW_POSITION   (SID_SVX_START + 1067)
 
 #define FID_SVX_START   (SID_LIB_START + 500)
 #define FID_SEARCH_NOW  (FID_SVX_START + 2)
diff --git a/include/svx/svxids.hrc b/include/svx/svxids.hrc
index 06bec32a4869..e4851b4f2fb5 100644
--- a/include/svx/svxids.hrc
+++ b/include/svx/svxids.hrc
@@ -241,6 +241,7 @@ class SvxSetItem;
 #define SID_ATTR_TRANSFORM_ROT_Y
TypedWhichId( SID_SVX_START + 94 )
 #define 

[Libreoffice-bugs] [Bug 125585] OLE objects corruption bug

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125585

--- Comment #12 from dante19031...@gmail.com ---
The bug stills at the 6.3.0. I've been testing further how it works to get
definite patterns and more concrete data. 

Description:
When inserting an OLE objects inside a document it gets corrupted. If the file
is closed an reopened, the preview stills working, but if you double-click, it
is empty.

Summary:
Affected versions: 6.2.* and 6.3.*, might still on 6.4 alpha.
Tested operating systems: Debian 9.9 (linux 4.9.0),  Windows 10, Debian 10
(linux 4.19.37).
Instalation: offictial msi installer / offitial deb packages.

Data:
- It has already been verified that is not an issue related to corruption in
the user profile.
- The OLE objects witch get corrupted are Impress and Draw modules.
- Whatever is the module in witch is inserted the OLE oject, it gets corrupted.
- A sample document has already been uploaded (attachment 152643).
- The OLE object is lost when it is opened, but only when it was created before
the file was opened (when the OLE object is created everything works fine, if
it is closed and reopened it stills working, the problem begins when the file
is closed and reopened).
- If the document is edited withought opening the OLE object, the data does not
corrupt.
- If the document is opened with an earlier version (6.1.*) the OLE object
works fine, unless if the data has already been lost because the document was
saved after opening the OLE object on 6.2.* or 6.3.*.
- If the OLE object has been created with an older version (6.1.*) it also gets
corrupted.

Reproducing instructions with the sample document:
1. Open the document (with 6.2.0 or later).
2. Open the OLE object.
3. Observate.

Reproducing instructions:
1. Create a blank document.
2. Insert a drawing or a presentation.
3. Insert something in it, for example a rectangle (very visible).
4. Save the document.
5. Close the document.
6. Reopen the document.
7. Open the OLE object.
8. Observate.

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

[Libreoffice-bugs] [Bug 126937] New: CONFIGURATION:template saved can't be opened

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126937

Bug ID: 126937
   Summary: CONFIGURATION:template saved can't be opened
   Product: LibreOffice
   Version: 6.2.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vincent_hy...@hotmail.com

Save current config as template under 'My Templates" category. Open a new
document and try to open template, shows the directory I load document from but
couldn't find the template.
Use 'Manage Template', it shows up. If open it, it creates a new document in a
new 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 126935] Spell Check Dialog: Area containing context of error no longer accessible to screen readers

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126935

Aron Budea  changed:

   What|Removed |Added

Version|unspecified |6.4.0.0.alpha0+ Master
 CC||ba...@caesar.elte.hu
   Keywords||bibisected, bisected,
   ||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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - i18npool/source

2019-08-14 Thread Eike Rathke (via logerrit)
 i18npool/source/localedata/data/dsb_DE.xml |   64 +-
 i18npool/source/localedata/data/hsb_DE.xml |   84 +
 2 files changed, 136 insertions(+), 12 deletions(-)

New commits:
commit 4ceff7f5d65673e57de5878ad5b1ffc470df3483
Author: Eike Rathke 
AuthorDate: Thu Aug 15 00:50:18 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Aug 15 03:13:55 2019 +0200

Resolves: tdf#126931 fix Sorbian date formats and add genitive month names

Change-Id: I9ece3f55eff79a3eebc294f7ecc8cca0beae650f
Reviewed-on: https://gerrit.libreoffice.org/77477
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit d3a565eddffc6e39ffd47f018ec7ab17d2a554cd)
Reviewed-on: https://gerrit.libreoffice.org/77481
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/i18npool/source/localedata/data/dsb_DE.xml 
b/i18npool/source/localedata/data/dsb_DE.xml
index f97e2146db72..4bad6889ef56 100644
--- a/i18npool/source/localedata/data/dsb_DE.xml
+++ b/i18npool/source/localedata/data/dsb_DE.xml
@@ -144,7 +144,7 @@
   D.  
 
 
-  MM.DD
+  MM-DD
 
 
   YY-MM-DD
@@ -316,6 +316,68 @@
   december
 
   
+  
+
+  jan
+  jan.
+  januara
+
+
+  feb
+  feb.
+  februara
+
+
+  mar
+  měr.
+  měrca
+
+
+  apr
+  apr.
+  apryla
+
+
+  may
+  maj
+  maja
+
+
+  jun
+  jun.
+  junija
+
+
+  jul
+  jul.
+  julija
+
+
+  aug
+  awg.
+  awgusta
+
+
+  sep
+  sep.
+  septembra
+
+
+  oct
+  okt.
+  oktobra
+
+
+  nov
+  now.
+  nowembra
+
+
+  dec
+  dec.
+  decembra
+
+  
   
 
   bc
diff --git a/i18npool/source/localedata/data/hsb_DE.xml 
b/i18npool/source/localedata/data/hsb_DE.xml
index a481137a43d4..22f446f6b699 100644
--- a/i18npool/source/localedata/data/hsb_DE.xml
+++ b/i18npool/source/localedata/data/hsb_DE.xml
@@ -108,7 +108,7 @@
   D.MM.YY
 
 
-  DD,  
+  DD.  
 
 
   DD.MM.YY
@@ -117,34 +117,34 @@
   DD.MM.
 
 
-  D, MMM YY
+  D. MMM YY
 
 
-  D, MMM 
+  D. MMM 
 
 
-  D, MMM 
+  D. MMM 
 
 
-  D,  
+  D.  
 
 
-  D,  YY
+  D.  YY
 
 
   NN, DD.MMM.YY
 
 
-  NN, D, MMM YY
+  NN, D. MMM YY
 
 
-  NN, D,  
+  NN, D.  
 
 
-  D,  
+  D.  
 
 
-  MM.DD
+  MM-DD
 
 
   YY-MM-DD
@@ -157,7 +157,7 @@
   MM.YY
 
 
-  MMM.DD
+  DD.MMM
 
 
   
@@ -316,6 +316,68 @@
   december
 
   
+  
+
+  jan
+  jan
+  januara
+
+
+  feb
+  feb
+  februara
+
+
+  mar
+  měrc
+  měrca
+
+
+  apr
+  apr
+  apryla
+
+
+  may
+  meja
+  meja
+
+
+  jun
+  jun
+  junija
+
+
+  jul
+  jul
+  julija
+
+
+  aug
+  awg
+  awgusta
+
+
+  sep
+  sep
+  septembra
+
+
+  oct
+  okt
+  oktobra
+
+
+  nov
+  now
+  nowembra
+
+
+  dec
+  dec
+  decembra
+
+  
   
 
   bc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: We'd like to continue the production of the 32-bit deb packages

2019-08-14 Thread dreamn...@gmail.com
Well, I already created the schroot environment following your kind
instructions.

However... 'make' failed again!!! cppunittest again...

My hope is that maybe I didn't interpret correctly the changes that you
made on the sal/Module_sal.mk file (for this test I'm not using git, but
the xz sources downloaded). Could you please paste here the actual contents
of that file?

El mié., 14 ago. 2019 a las 14:44, Michael Weghorn ()
escribió:

> On 14/08/2019 19.21, dreamn...@gmail.com wrote:
> > Would be possible to download your generated deb files from some
> > file-sharing service?
>
> If necessary, I'll probably find a way to upload them somewhere next
> week. (I'll be away for the next days.) However, that won't help in the
> long run, so I'll think it'd be better if you can get your build setup
> working.
>
> >
> > I'm still struggling with compilation issues.
> > 1) After the bad experience with Debian 10, I downloaded Debian 9.9 in
> > the hope that would make a better compilation choice, but, alas, Debian
> > 9 includes a version of gcc already unsupported by LibreOffice, it
> > requires at least gcc 7. As far as I could found, upgrading gcc on
> > Debian 9 is an ugly chore, so I went back to installing Debian 10...
> > 2) But, this time, instead of choosing LXQT, I chose LXDE and used
> > LXTerminal. Now it compiled until the make error without a single hang.
> > I don't know if LXQT of tis default terminal were the culprits of the
> > frequent crashes, or something else, but at least I reached the make
> > error on Debian 10.
> >
> > I paste the error produced in Debian 10. It seems to be still cpunittest
> > related.
> >
> > Would be wise to apply your diff here, or it is not related since I'm
> > not running a chroot environment but a VM?
>
> The diff wouldn't help, since the tests that fail for you are unrelated
> to the ones I temporarily disabled.
>
> Maybe you want to try setting up an i386 chroot on an amd64 host as
> well? That might work better than using a i386 virtual machine (e.g.
> with regard to memory limitations) and I guess this should also work
> just fine on a host running Escuelas Linux.
>
> The steps I took to set up the chroot for use with schroot were roughly:
>
> Create chroot:
>
> sudo debootstrap --arch=i386 buster /some/path/to/chroot/buster-i386
>
> Create entry in /etc/schroot/schroot.conf:
>
> [buster-i386]
> description=Debian buster (stable) 32-bit
> directory=/some/path/to/chroot/buster-i386
> users=
> root-users=
> personality=linux32
>
> After that, you can change into the chroot using
>
> schroot -c buster-i386
>
> or (to work as root):
>
> schroot -c buster-i386 -u root
>
> and then set up the build dependencies, clone LibreOffice and build from
> there as usual.
>
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice

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

2019-08-14 Thread Eike Rathke (via logerrit)
 i18npool/source/localedata/data/dsb_DE.xml |   64 +-
 i18npool/source/localedata/data/hsb_DE.xml |   84 +
 2 files changed, 136 insertions(+), 12 deletions(-)

New commits:
commit d3a565eddffc6e39ffd47f018ec7ab17d2a554cd
Author: Eike Rathke 
AuthorDate: Thu Aug 15 00:50:18 2019 +0200
Commit: Eike Rathke 
CommitDate: Thu Aug 15 02:03:13 2019 +0200

Resolves: tdf#126931 fix Sorbian date formats and add genitive month names

Change-Id: I9ece3f55eff79a3eebc294f7ecc8cca0beae650f
Reviewed-on: https://gerrit.libreoffice.org/77477
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/i18npool/source/localedata/data/dsb_DE.xml 
b/i18npool/source/localedata/data/dsb_DE.xml
index f97e2146db72..4bad6889ef56 100644
--- a/i18npool/source/localedata/data/dsb_DE.xml
+++ b/i18npool/source/localedata/data/dsb_DE.xml
@@ -144,7 +144,7 @@
   D.  
 
 
-  MM.DD
+  MM-DD
 
 
   YY-MM-DD
@@ -316,6 +316,68 @@
   december
 
   
+  
+
+  jan
+  jan.
+  januara
+
+
+  feb
+  feb.
+  februara
+
+
+  mar
+  měr.
+  měrca
+
+
+  apr
+  apr.
+  apryla
+
+
+  may
+  maj
+  maja
+
+
+  jun
+  jun.
+  junija
+
+
+  jul
+  jul.
+  julija
+
+
+  aug
+  awg.
+  awgusta
+
+
+  sep
+  sep.
+  septembra
+
+
+  oct
+  okt.
+  oktobra
+
+
+  nov
+  now.
+  nowembra
+
+
+  dec
+  dec.
+  decembra
+
+  
   
 
   bc
diff --git a/i18npool/source/localedata/data/hsb_DE.xml 
b/i18npool/source/localedata/data/hsb_DE.xml
index a481137a43d4..22f446f6b699 100644
--- a/i18npool/source/localedata/data/hsb_DE.xml
+++ b/i18npool/source/localedata/data/hsb_DE.xml
@@ -108,7 +108,7 @@
   D.MM.YY
 
 
-  DD,  
+  DD.  
 
 
   DD.MM.YY
@@ -117,34 +117,34 @@
   DD.MM.
 
 
-  D, MMM YY
+  D. MMM YY
 
 
-  D, MMM 
+  D. MMM 
 
 
-  D, MMM 
+  D. MMM 
 
 
-  D,  
+  D.  
 
 
-  D,  YY
+  D.  YY
 
 
   NN, DD.MMM.YY
 
 
-  NN, D, MMM YY
+  NN, D. MMM YY
 
 
-  NN, D,  
+  NN, D.  
 
 
-  D,  
+  D.  
 
 
-  MM.DD
+  MM-DD
 
 
   YY-MM-DD
@@ -157,7 +157,7 @@
   MM.YY
 
 
-  MMM.DD
+  DD.MMM
 
 
   
@@ -316,6 +316,68 @@
   december
 
   
+  
+
+  jan
+  jan
+  januara
+
+
+  feb
+  feb
+  februara
+
+
+  mar
+  měrc
+  měrca
+
+
+  apr
+  apr
+  apryla
+
+
+  may
+  meja
+  meja
+
+
+  jun
+  jun
+  junija
+
+
+  jul
+  jul
+  julija
+
+
+  aug
+  awg
+  awgusta
+
+
+  sep
+  sep
+  septembra
+
+
+  oct
+  okt
+  oktobra
+
+
+  nov
+  now
+  nowembra
+
+
+  dec
+  dec
+  decembra
+
+  
   
 
   bc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 102315] EDITING: Increase/Decrease Font Size do not work reliable in Table selections

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102315

Aron Budea  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #14 from Aron Budea  ---
Thanks for retesting! Let's change status to WORKSFORME, since the fixing
commit is unknown.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - i18npool/source

2019-08-14 Thread Eike Rathke (via logerrit)
 i18npool/source/localedata/data/fr_BF.xml |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 4cbc0ac530c8a9e843ba875708368109926aeccc
Author: Eike Rathke 
AuthorDate: Wed Aug 14 20:34:58 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Aug 15 01:50:24 2019 +0200

Resolves: tdf#124108 localized quotation marks for [fr-BF] and derived

Inherited by
fr_BJ
fr_CI
fr_ML
fr_NE
fr_SN
fr_TG

Change-Id: Ic47345fedd0792db213e6584f581ce63b8c5439b
Reviewed-on: https://gerrit.libreoffice.org/77470
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit 21bffad6bc108f3dc5eee608bf702412a5fcb530)
Reviewed-on: https://gerrit.libreoffice.org/77478
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/i18npool/source/localedata/data/fr_BF.xml 
b/i18npool/source/localedata/data/fr_BF.xml
index 0a7ee39fd750..c442a93ceea7 100644
--- a/i18npool/source/localedata/data/fr_BF.xml
+++ b/i18npool/source/localedata/data/fr_BF.xml
@@ -33,10 +33,10 @@

 
 
-  '
-  '
-  "
-  "
+  ‘
+  ’
+  «
+  »
 
 AM
 PM
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126936] New: Embedded fonts not rendered correctly

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126936

Bug ID: 126936
   Summary: Embedded fonts not rendered correctly
   Product: LibreOffice
   Version: 5.2.7.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ad...@genome.arizona.edu

Description:
Using the embed fonts in document option, the saved document size is much
larger, so seems something is being embedded.  However, opening the document on
another system without the fonts installed, the fonts are not rendered
correctly at all (rendered in some Sans font).

Steps to Reproduce:
1. Create new document with some text using a specialized font that is not
installed on the target system
2. Use File > Properties > Font > embed fonts in document
3. Save document and transfer to the target system without the specialized font

Actual Results:
The font that is not installed on the target system is rendered in some default
Sans font

Expected Results:
Text should be rendered with the embedded fonts in the document


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 71732] [META] Bugs related to text rendering, typography and font features in LO

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 52540, which changed state.

Bug 52540 Summary: Ligatures hyphenation bug using graphite font (Linux 
Libertine G): "ligc" is ignored
https://bugs.documentfoundation.org/show_bug.cgi?id=52540

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 52540] Ligatures hyphenation bug using graphite font (Linux Libertine G): "ligc" is ignored

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52540

Khaled Hosny  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #35 from Khaled Hosny  ---
If I change the font size in
https://bugs.documentfoundation.org/attachment.cgi?id=77854 or
https://bugs.documentfoundation.org/attachment.cgi?id=115200 I get hyphenation
in:

Version: 6.2.5.0
Build ID: 9883e6d6b2d958db6253e7b973987bb92094bd0d
CPU threads: 6; OS: Mac OS X 10.14.6; UI render: GL; VCL: osx; 
Locale: en-EG (en_EG.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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - cui/uiconfig

2019-08-14 Thread Caolán McNamara (via logerrit)
 cui/uiconfig/ui/bulletandposition.ui |1 +
 1 file changed, 1 insertion(+)

New commits:
commit c6eb24bcf5880ce0abe28ad2563898a0e520d7fa
Author: Caolán McNamara 
AuthorDate: Tue Aug 13 09:49:55 2019 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Aug 15 01:37:47 2019 +0200

avoid invalid cast from 'GtkImage' to 'GtkLabel'

Change-Id: I6fbc991e288b150dcbcfb61018f97fdce69c90cd
Reviewed-on: https://gerrit.libreoffice.org/77406
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/cui/uiconfig/ui/bulletandposition.ui 
b/cui/uiconfig/ui/bulletandposition.ui
index ceb642ca6870..c62f1acb8da5 100644
--- a/cui/uiconfig/ui/bulletandposition.ui
+++ b/cui/uiconfig/ui/bulletandposition.ui
@@ -626,6 +626,7 @@
 False
 0
 False
+
 
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126935] Spell Check Dialog: Area containing context of error no longer accessible to screen readers

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126935

am_dxer  changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #2 from am_dxer  ---
Adding you hoping you might have insight into this. 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 126935] Spell Check Dialog: Area containing context of error no longer accessible to screen readers

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126935

--- Comment #1 from am_dxer  ---
The commit that introduced this was:
commit 243b5b392906042ab03800e0b5765e6f3513372c
Author: Caolán McNamara 
Date:   Fri Jun 14 21:56:44 2019 +0100

weld SpellDialog

a) use EditEngine instead of TextEngine as the former can be hosted in a
   foreign widget
b) use a SfxGrabBagItem to hold the custom spellchecking info inside the
   EditEngine
c) in longer paragraphs the current word is now auto-scrolled into view
d) rename Invalidate to InvalidateDialog

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

[Libreoffice-bugs] [Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103381
Bug 103381 depends on bug 107945, which changed state.

Bug 107945 Summary: Performance of pivot table cache population can be 
improved...
https://bugs.documentfoundation.org/show_bug.cgi?id=107945

   What|Removed |Added

 Status|ASSIGNED|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 126935] Spell Check Dialog: Area containing context of error no longer accessible to screen readers

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126935

am_dxer  changed:

   What|Removed |Added

 Blocks||101912


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101912
[Bug 101912] [META] Accessibility (a11y) 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 126935] New: Spell Check Dialog: Area containing context of error no longer accessible to screen readers

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126935

Bug ID: 126935
   Summary: Spell Check Dialog: Area containing context of error
no longer accessible to screen readers
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: am_d...@fastmail.fm

Description:
When using screen readers, the text area to provide context for the misspelling
is no longer voices and is announced by Orca as a Drawing area and NVDA as an
option Pane.
I bisected the bug on Debian Linux as that is my primary OS.

repo: bibisect-linux-64-6.3
# bad: [ab59b18e6835c0c68d91adef82c576abb10f671b] source
sha:5f48428533e928868c11ddd00cc449a54d0cdfd9
# good: [cbe79d197e743d9c38dd1c13c781212e7834bfab] source
sha:a20a2d7e0d28658f2d9089da076961a599833a28
git bisect start 'origin/master' 'oldest'
# good: [b3c58ea817b35939c4309eece9ce9ba00589b2b2] source
sha:fce6f470d2887833d22d7cffe4c035df1599c7a5
git bisect good b3c58ea817b35939c4309eece9ce9ba00589b2b2
# good: [3e231ca40707c19bbabefcacaed35645f2e5891c] source
sha:2e7aa6f7a5669e7c2b4029ef8b0785a7dbdee0eb
git bisect good 3e231ca40707c19bbabefcacaed35645f2e5891c
# good: [f59a0dae715c68bf36b44b77fef382654f315b3b] source
sha:aa6b59c4bc4462b451cd6fe674b8fb8600698b2b
git bisect good f59a0dae715c68bf36b44b77fef382654f315b3b
# good: [f9f35d3ae829de0ed0618b6d3bd2b0c9dbb8f3cd] source
sha:2574ce0f2dc711e71b4799bbd76d5d8b6ec04300
git bisect good f9f35d3ae829de0ed0618b6d3bd2b0c9dbb8f3cd
# good: [1cca1199b6200e517d3f920d74a28521e9308767] source
sha:2ab93756963727b8dde43b405e2daee3e1bf9deb
git bisect good 1cca1199b6200e517d3f920d74a28521e9308767
# bad: [4fa662007dbb1a5295f260d4b2d53aa04edbabd3] source
sha:804c9453cf1cd636959872f71b694544ffd3f76f
git bisect bad 4fa662007dbb1a5295f260d4b2d53aa04edbabd3
# good: [42734cee10e8a99bbdf4a5fdca177d888c317926] source
sha:c342960d01b8df8f92b499c204af869c5417985e
git bisect good 42734cee10e8a99bbdf4a5fdca177d888c317926
# bad: [0aa176d46bac843eea7f479828abafde86e6dd0d] source
sha:340d4f9d8e726827113967e91f05d4831727180a
git bisect bad 0aa176d46bac843eea7f479828abafde86e6dd0d
# good: [12c75eaf01d54b23c27bb3ba95bcc962416f46d2] source
sha:49c92a3b46b8f4c3303ea17a508f91a0c87d54f6
git bisect good 12c75eaf01d54b23c27bb3ba95bcc962416f46d2
# bad: [672420151c7978ae817576b652c40a1e88e56416] source
sha:243b5b392906042ab03800e0b5765e6f3513372c
git bisect bad 672420151c7978ae817576b652c40a1e88e56416
# good: [62070b946440530c16a0e34e77ebffded30e8b20] source
sha:6830aa8962116601f22542944e196242207068c7
git bisect good 62070b946440530c16a0e34e77ebffded30e8b20
# good: [2f4b252709e64375514be0e2aa0a1b75fa57dd60] source
sha:3d98a2b8135315c57af86490eac32963688e3be4
git bisect good 2f4b252709e64375514be0e2aa0a1b75fa57dd60
# good: [e50089f10148619d86bf3ae31ee73c09c6a11c82] source
sha:01cd1d68d96057624db38b9baaa6c6795353758d
git bisect good e50089f10148619d86bf3ae31ee73c09c6a11c82
# first bad commit: [672420151c7978ae817576b652c40a1e88e56416] source
sha:243b5b392906042ab03800e0b5765e6f3513372c

Steps to Reproduce:
1. Open write and type in some text.
2. Press F7 for a spell check.
3. Tab to the pane which contains context for the incorrect item.

Actual Results:
Pressing arrow keys to read the text is silent and no text is read when tab
lands on the item.

Expected Results:
Orca and NVDA should read the text.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 6.3.0.0.beta2+
Build ID: 01cd1d68d96057624db38b9baaa6c6795353758d
CPU threads: 8; OS: Linux 5.2; 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

[Libreoffice-bugs] [Bug 101912] [META] Accessibility (a11y) bugs and enhancements

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101912

am_dxer  changed:

   What|Removed |Added

 Depends on||126935


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126935
[Bug 126935] Spell Check Dialog: Area containing context of error no longer
accessible to screen readers
-- 
You are receiving this mail because:
You 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-08-14 Thread Andrea Gelmini (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 46625258b332884bfa00b3bc810488743976c66a
Author: Andrea Gelmini 
AuthorDate: Thu Aug 15 01:00:58 2019 +0200
Commit: Gerrit Code Review 
CommitDate: Thu Aug 15 01:14:16 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - Fix typo

Change-Id: I0f9eeed5d1edad294f6397ace822bf721487699d
Reviewed-on: https://gerrit.libreoffice.org/77479
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index d2c1339bef89..574747989578 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d2c1339bef89ad0074810728c580cb14d8db4b40
+Subproject commit 574747989578468349ab4d6321379c51b80be8ff
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-08-14 Thread Andrea Gelmini (via logerrit)
 source/text/shared/01/moviesound.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 574747989578468349ab4d6321379c51b80be8ff
Author: Andrea Gelmini 
AuthorDate: Thu Aug 15 01:00:58 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Aug 15 01:14:16 2019 +0200

Fix typo

Change-Id: I0f9eeed5d1edad294f6397ace822bf721487699d
Reviewed-on: https://gerrit.libreoffice.org/77479
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/shared/01/moviesound.xhp 
b/source/text/shared/01/moviesound.xhp
index 25c9bb8dc..fd2ccbd87 100644
--- a/source/text/shared/01/moviesound.xhp
+++ b/source/text/shared/01/moviesound.xhp
@@ -91,7 +91,7 @@
 
 
   
-  https://docs.microsoft.com/en-us/windows/win32/directshow/supported-formats-in-directshow;
 name="directwhow">List of default formats for Microsoft Windows 
DirectShow.
+  https://docs.microsoft.com/en-us/windows/win32/directshow/supported-formats-in-directshow;
 name="directshow">List of default formats for Microsoft Windows 
DirectShow.
   https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types;
 name="gstreamer">List of defined types for gstreamer in 
GNU/Linux.
   https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html; 
name="quicktime">List of media formats for Apple macOS 
QuickTime.
   https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/;
 name="askbot">%PRODUCTNAME Askbot question and answer
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - helpcontent2

2019-08-14 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4f0f846f4f0d55b01e77f693bb2d4f1cb572e077
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 16:16:07 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Aug 15 01:12:41 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'libreoffice-6-3'
  - tdf#126889 Fix icon size in branch 6.3

fix dtd mistake

Change-Id: Ic8b0fe43788d6743e3d7f7c11b05d96235a0b967
Reviewed-on: https://gerrit.libreoffice.org/77473
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index ecf0cdc0597e..f2a2568c6211 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit ecf0cdc0597e076dff4c257aa5d28a2aa8c7081b
+Subproject commit f2a2568c6211285c3da999a7d1a788c3f3485abd
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] help.git: Branch 'libreoffice-6-3' - source/text

2019-08-14 Thread Olivier Hallot (via logerrit)
 source/text/swriter/guide/arrange_chapters.xhp |   32 +++--
 1 file changed, 15 insertions(+), 17 deletions(-)

New commits:
commit f2a2568c6211285c3da999a7d1a788c3f3485abd
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 16:16:07 2019 -0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Aug 15 01:12:41 2019 +0200

tdf#126889 Fix icon size in branch 6.3

fix dtd mistake

Change-Id: Ic8b0fe43788d6743e3d7f7c11b05d96235a0b967
Reviewed-on: https://gerrit.libreoffice.org/77473
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/swriter/guide/arrange_chapters.xhp 
b/source/text/swriter/guide/arrange_chapters.xhp
index 3a330cab2..4bb157139 100644
--- a/source/text/swriter/guide/arrange_chapters.xhp
+++ b/source/text/swriter/guide/arrange_chapters.xhp
@@ -28,24 +28,23 @@
 
 
 
-  headings;rearranging
-  rearranging headings
-  moving;headings
-  demoting heading levels
-  promoting heading levels
-  Navigator;heading levels and chapters
-  arranging;headings
-  outlines;arranging chapters
+headings;rearranging
+rearranging headings
+moving;headings
+demoting heading levels
+promoting heading levels
+Navigator;heading levels and chapters
+arranging;headings
+outlines;arranging chapters
 
 
-
-Arranging Chapters in the Navigator 

+Arranging Chapters in the Navigator 
 You can move 
headings and subordinate text up and down in a document text by using the 
Navigator. You can also promote and demote heading levels. To use this feature, 
format the headings in your document with one of the predefined heading 
paragraph styles. To use a custom paragraph style for a heading, choose 
Tools - Chapter Numbering, select the style in the Paragraph 
Style box, and then double-click a number in the Levels 
list.
-To quickly move the 
text cursor to a heading in the document, double-click the heading in the 
Navigator list.
+To quickly move the text cursor to a heading in the 
document, double-click the heading in the Navigator list.
 To dock the 
Navigator, drag the title bar to the edge of the workspace. To 
undock the Navigator, double-click its frame while holding the 
CommandCtrl
 key.
 
-To Move 
a Heading Up or Down in the Document
-Ensure 
that all heading levels are shown in the Navigator. By default all levels are 
shown. See steps below how to change the heading levels that are 
shown.
+To Move a Heading Up or Down in the Document
+Ensure that all heading levels are shown 
in the Navigator. By default all levels are shown. See steps below how to 
change the heading levels that are shown.
 
 
   
@@ -67,9 +66,9 @@
 Click a 
heading in the Navigator list, and then click the Promote 
Chapter Icon or Demote Chapter icon 
Icon.
   
 
-To move the heading 
without the subordinate text, hold down CommandCtrl
 while you drag or click the Promote Chapter or Demote 
Chapter icons.
+To move the heading without the subordinate text, 
hold down CommandCtrl
 while you drag or click the Promote Chapter or Demote 
Chapter icons.
 
-To 
Promote or Demote the Level of a Heading
+To Promote or Demote the Level of a Heading
 
 
   
@@ -80,7 +79,7 @@
   
 
 
-To 
Change the Number of Heading Levels That Are Displayed
+To Change the Number of Heading Levels That Are 
Displayed
 Click the 
Heading Levels Shown icon Icon heading levels, and then select a number 
from the list.
 
 
@@ -88,5 +87,4 @@
 
 
 
-
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 103341] [META] AutoCorrect and Word Completion bugs and enhancements

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103341
Bug 103341 depends on bug 124108, which changed state.

Bug 124108 Summary: auto-correction of typographic quotation marks and 
apostrophes broken for fr_CI
https://bugs.documentfoundation.org/show_bug.cgi?id=124108

   What|Removed |Added

 Status|ASSIGNED|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 126934] New: gallery new theme add odg files didn't work

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126934

Bug ID: 126934
   Summary: gallery new theme add odg files didn't work
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

In LibO you can create your own gallery and add there images. There are a lot
of different images files possible, but NOT odg the file of LibreOffice draw,
so it's not possible to add to an gallery single .odg files.

You can move shapes from LibreOffice Draw to an gallery (via click shape group
and move the group to the gallery). Than this shape group was stored .sdg .sdv
and .thm. The problem is that you can't easy change the content within this 3
files. If you save each gallery item at an .odg file you can update every
single file easy. svg for example is available.

Please make the standard LibreOffice Draw file type available in Gallery.

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

[Libreoffice-bugs] [Bug 126934] gallery new theme add odg files didn't work

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126934

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com
   Keywords||needsUXEval

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

[Libreoffice-bugs] [Bug 126933] LO Writer shows some Buttons almost Unreadable when using High Contrast Theme

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126933

--- Comment #2 from Adalbert Hanßen  ---
Created attachment 153399
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153399=edit
third picture: The color transformation curve  used in Gimp for a special
inversion for the depressed states

The bent curve is the inversion applied in the third row (this has been done in
GIMP). This one shows the added items more clearly.

In the pressed state, a button should best be shown in such a special inversion
mode. This can be done by applying a proper look up table for the pixle colors.

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

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

2019-08-14 Thread Olivier Hallot (via logerrit)
 source/text/scalc/04/0102.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d2c1339bef89ad0074810728c580cb14d8db4b40
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 19:03:53 2019 -0300
Commit: Olivier Hallot 
CommitDate: Thu Aug 15 00:21:32 2019 +0200

tdf#61588 Clarify usage of Shift+Ctrl+Arrows in Calc

Change-Id: If00a19b3258d5ab08f4dee35ecad94d3b5a1e689
Reviewed-on: https://gerrit.libreoffice.org/77476
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/scalc/04/0102.xhp 
b/source/text/scalc/04/0102.xhp
index 094358d6a..aeef91f8a 100644
--- a/source/text/scalc/04/0102.xhp
+++ b/source/text/scalc/04/0102.xhp
@@ -182,7 +182,7 @@
 CommandCtrl+Shift+Arrow
 
 
-Selects all 
cells containing data from the current cell to the end of the continuous range 
of data cells, in the direction of the arrow pressed. If used to select rows 
and columns together, a rectangular cell range is selected.
+Selects all 
cells of the range created by the cursor movements using the Ctrl+Arrows key 
combinations. If used to select rows and columns together, a rectangular cell 
range is selected.
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: helpcontent2

2019-08-14 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 69e5360ce5b403bdd36e977cd1c3fb778272d5fe
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 19:03:53 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Aug 15 00:21:32 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#61588 Clarify usage of Shift+Ctrl+Arrows in Calc

Change-Id: If00a19b3258d5ab08f4dee35ecad94d3b5a1e689
Reviewed-on: https://gerrit.libreoffice.org/77476
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index c564fc53c7a5..d2c1339bef89 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit c564fc53c7a5c1e2839876998edd13a4dfba03d1
+Subproject commit d2c1339bef89ad0074810728c580cb14d8db4b40
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: helpcontent2

2019-08-14 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 38a03e6a6b72f770a76930a540ea81869949ba05
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 18:32:46 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Aug 15 00:21:02 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#61586 Correct usage of Ctrl+Arrows in Calc

Change-Id: I3b5eece678e1b1298215e4533cf4e66fceb74df3
Reviewed-on: https://gerrit.libreoffice.org/77475
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index a0b873f632e9..c564fc53c7a5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a0b873f632e9ca598ea6b773da7f2007143b1f05
+Subproject commit c564fc53c7a5c1e2839876998edd13a4dfba03d1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-08-14 Thread Olivier Hallot (via logerrit)
 source/text/scalc/04/0102.xhp |  352 +++---
 1 file changed, 176 insertions(+), 176 deletions(-)

New commits:
commit c564fc53c7a5c1e2839876998edd13a4dfba03d1
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 18:32:46 2019 -0300
Commit: Olivier Hallot 
CommitDate: Thu Aug 15 00:21:02 2019 +0200

tdf#61586 Correct usage of Ctrl+Arrows in Calc

Change-Id: I3b5eece678e1b1298215e4533cf4e66fceb74df3
Reviewed-on: https://gerrit.libreoffice.org/77475
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/scalc/04/0102.xhp 
b/source/text/scalc/04/0102.xhp
index e595e82f6..094358d6a 100644
--- a/source/text/scalc/04/0102.xhp
+++ b/source/text/scalc/04/0102.xhp
@@ -48,242 +48,242 @@
 Navigating in Spreadsheets
 
 
-
+
 Shortcut 
Keys
 
-
+
 
 Effect
 
 
 
 
-
+
 CommandCtrl+Home
 
-
+
 Moves the 
cursor to the first cell in the sheet (A1).
 
 
 
-
+
 CommandCtrl+End
 
-
+
 Moves the 
cursor to the last cell on the sheet that contains data.
 
 
 
-
+
 Home
 
-
+
 Moves the 
cursor to the first cell of the current row.
 
 
 
-
+
 End
 
-
+
 Moves the 
cursor to the last cell of the current row.
 
 
 
-
+
 Shift+Home
 
-
+
 Selects 
cells from the current cell to the first cell of the current row.
 
 
 
-
+
 Shift+End
 
-
+
 Selects 
cells from the current cell to the last cell of the current row.
 
 
 
-
+
 Shift+Page 
Up
 
-
+
 Selects 
cells from the current cell up to one page in the current column or extends the 
existing selection one page up.
 
 
 
-
+
 Shift+Page 
Down
 
-
+
 Selects 
cells from the current cell down to one page in the current column or extends 
the existing selection one page down.
 
 
 
-
+
 Shift+Space
 
-
+
 Selects the current row or extends the existing selection to 
all respective rows.
 
 
 
-
+
 CommandCtrl+Space
 
-
+
 Selects the current column or extends the existing selection 
to all respective columns.
 
 
 
-
+
 CommandCtrl+Shift+Space
 
-
+
 Selects all cells in the sheet.
 
 
 
-
+
 CommandCtrl+Left
 Arrow
 
-
-Moves the 
cursor to the left edge of the current data range. If the column to the left of 
the cell that contains the cursor is empty, the cursor moves to the next column 
to the left that contains data.
+
+Moves 
the cursor leftward to the start and end of cell blocks with data. If the cell 
to the left of the cursor is empty or the cell with cursor is empty, cursor 
moves leftward in row to the next cell with contents. If the row on the left of 
the cursor is empty, the cursor moves to then first cell in the row.
 
 
 
-
+
 CommandCtrl+Right
 Arrow
 
-
-Moves the 
cursor to the right edge of the current data range. If the column to the right 
of the cell that contains the cursor is empty, the cursor moves to the next 
column to the right that contains data.
+
+Moves 
the cursor rightward to the start and end of cell blocks with contents. If the 
cell to the right of the cursor is empty or the cursor is in an empty cell, the 
cursor moves rightward to the next cell that contains data. If the row on the 
right of the cursor is empty, the cursor moves to the last cell in the 
row.
 
 
 
-
+
 CommandCtrl+Up
 Arrow
 
-
-Moves the 
cursor to the top edge of the current data range. If the row above the cell 
that contains the cursor is empty, the cursor moves up to the next row that 
contains data.
+
+Moves 
the cursor upward to the start and end of cell blocks with data. If the cell 
above the cursor is empty or the cursor is in an empty cell, the cursor moves 
up to the end of next cell block with data. If the column above the cursor is 
empty, the cursor moves up to first cell in the column.
 
 
 
-
+
 CommandCtrl+Down
 Arrow
 
-
-Moves the 
cursor to the bottom edge of the current data range. If the row below the cell 
that contains the cursor is empty, the cursor moves down to the next row that 
contains data.
+
+Moves 
the cursor downward to the start and end of cell blocks with data. If the cell 
below the cursor is empty or the cursor is in an empty cell, the cursor moves 
down to the next cell that contains data. If the column below the cursor is 
empty, the cursor moves down to last cell in the column.
 
 
 
-
+
 CommandCtrl+Shift+Arrow
 
-
+
 Selects all 
cells containing data from the current cell to the end of the continuous range 
of data cells, in the direction of the arrow pressed. If used to select rows 
and columns together, a rectangular cell range is selected.
 
 
 
-
+
 CommandCtrl+Page
 Up
 
-
+
 Moves one 
sheet to the left.
 In the 
print preview: Moves to the previous print page.
 
 
 
-
+
 CommandCtrl+Page
 Down
 
-
+
 Moves one 
sheet to the right.
 In the 
print preview: Moves to the next print page.
 
 
 
-
+
 Option
 Alt+Page 
Up
 
-
+
 Moves one 
screen to the left.
 
 
 
-
+
 Option
 Alt+Page 
Down
 
-
+
 Moves one 
screen page to the right.
 
 
 
-
+
 Shift+CommandCtrl+Page
 Up
 
-
+
 Adds the 
previous sheet to the current 

[Libreoffice-bugs] [Bug 126933] LO Writer shows some Buttons almost Unreadable when using High Contrast Theme

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126933

--- Comment #1 from Adalbert Hanßen  ---
Created attachment 153398
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153398=edit
second picture: original undepressed keys, inverted and proposed special
inverted display

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

[Libreoffice-bugs] [Bug 126933] New: LO Writer shows some Buttons almost Unreadable when using High Contrast Theme

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126933

Bug ID: 126933
   Summary: LO Writer shows some Buttons almost Unreadable when
using High Contrast Theme
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adalbert.hans...@gmx.de

Created attachment 153397
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153397=edit
first picture: some depressed and some undepressed buttons in
LibreOfficeWriter.

This bug report pertains to

Version: 6.4.0.0.alpha0+
Build-ID: 9ee5ad5a0b84bfa652da34694ba4f75668f06087
CPU-Threads: 4; BS: Linux 4.4; UI-Render: Standard; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-07-30_13:21:44
Gebietsschema: de-DE (de_DE.UTF-8); UI-Sprache: de-DE
Calc: threaded
running on Xubuntu 16.04 and as well on 18.04.

I tried windows manager’s theme „Hoher Kontrast“ (probably it is called High
Contrast in an English version). However, using it in connection with
LibreOffice, the buttons which have a permanent on/off state become almost
unreadable when they are activated. 

When depressed, LibreOffice's buttons are flooded with dark color. Since the
key caps inscription is in dark grey, they become almost unreadable then. Try
it out e.g. with bold, italic, underlined, … as shown in my first picture.
First I thought this is a problem of xfwm4, the window manager of xfce4 and I
reported a bug at https://bugzilla.xfce.org/show_bug.cgi?id=15826. However I
was told, xfwm4 has nothing to do with how the applications draw their own
widgets. I should report the bug at the make of the application instead.

If one would just invert the color of the pressed key, the on and off states
for bold/italic/underlined/subscripted/superscripted…. would clearly be
recognized in one or the other state and this would work in any a windows
manager settings as shown in my second picture.

Instead of inverting, one might do a little better by inverting the button
using a negatively bent brightness curve as shown in my third picture.

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

[Libreoffice-bugs] [Bug 124194] Loading files in Calc 5 times slower in 6.2.1.2 snap than in v6.2.0.1 .deb

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124194

--- Comment #4 from Dan Dascalescu  ---
I understand that slow loading *of LibreCalc* from the snap should be reported
to  the Ubuntu packagers, but the issue I ran into was slow loading of files
AFTER Calc had been started.

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

[Libreoffice-bugs] [Bug 126932] File opened from Calc opens in Writer instead.

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126932

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from m.a.riosv  ---
LibreOffice always test to find what kind of file is before take in account the
extension. In this case nothing in the file and the extension it's not a
recognized extension for LibreOffice.

To open with calc, select the file with a single click and the file type like
'Text CSV' and then open it.

The Document Foundation, behind LibreOffice is member of Document Liberation
Project https://www.documentfoundation.org/

IMO not a bug, please if you are not agree, reopen it.

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

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

2019-08-14 Thread Tor Lillqvist (via logerrit)
 vbahelper/source/vbahelper/vbaapplicationbase.cxx |   14 --
 vbahelper/source/vbahelper/vbadocumentsbase.cxx   |   20 ++--
 2 files changed, 30 insertions(+), 4 deletions(-)

New commits:
commit 935a5f456755ce132a42fee2792b195cfc5d1fb4
Author: Tor Lillqvist 
AuthorDate: Wed Aug 14 15:46:16 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Thu Aug 15 00:08:37 2019 +0200

Try harder to avoid exceptions screwing stuff up for OLE clients

Change-Id: I5e9ae8669c4f5c561a09f5f21f11a675a40e5929
Reviewed-on: https://gerrit.libreoffice.org/77463
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 

diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx 
b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
index 90c7e83badc6..82bcf256ace5 100644
--- a/vbahelper/source/vbahelper/vbaapplicationbase.cxx
+++ b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
@@ -225,8 +225,18 @@ sal_Bool SAL_CALL VbaApplicationBase::getInteractive()
 uno::Reference< frame::XModel > xModel = getCurrentDocument();
 if (!xModel.is())
 return true;
-uno::Reference< frame::XFrame > xFrame( 
xModel->getCurrentController()->getFrame(), uno::UNO_SET_THROW );
-uno::Reference< awt::XWindow2 > xWindow( xFrame->getContainerWindow(), 
uno::UNO_QUERY_THROW );
+
+uno::Reference< frame::XController > xController( 
xModel->getCurrentController() );
+if (!xController.is())
+return true;
+
+uno::Reference< frame::XFrame > xFrame( xController->getFrame() );
+if (!xFrame.is())
+return true;
+
+uno::Reference< awt::XWindow2 > xWindow( xFrame->getContainerWindow(), 
uno::UNO_QUERY );
+if (!xWindow.is())
+return true;
 
 return xWindow->isEnabled();
 }
diff --git a/vbahelper/source/vbahelper/vbadocumentsbase.cxx 
b/vbahelper/source/vbahelper/vbadocumentsbase.cxx
index fc20c882f092..1ba2bb1a0b0f 100644
--- a/vbahelper/source/vbahelper/vbadocumentsbase.cxx
+++ b/vbahelper/source/vbahelper/vbadocumentsbase.cxx
@@ -222,7 +222,15 @@ uno::Any VbaDocumentsBase::createDocument()
 // #163808# determine state of Application.ScreenUpdating and 
Application.Interactive symbols (before new document is opened)
 uno::Reference< XApplicationBase > xApplication( Application(), 
uno::UNO_QUERY );
 bool bScreenUpdating = !xApplication.is() || 
xApplication->getScreenUpdating();
-bool bInteractive = !xApplication.is() || xApplication->getInteractive();
+bool bInteractive = true;
+
+try
+{
+bInteractive = !xApplication.is() || xApplication->getInteractive();
+}
+catch( const uno::Exception& )
+{
+}
 
 uno::Reference< frame::XDesktop2 > xLoader = 
frame::Desktop::create(mxContext);
 OUString sURL;
@@ -255,7 +263,15 @@ uno::Any VbaDocumentsBase::openDocument( const OUString& 
rFileName, const uno::A
 // #163808# determine state of Application.ScreenUpdating and 
Application.Interactive symbols (before new document is opened)
 uno::Reference< XApplicationBase > xApplication( Application(), 
uno::UNO_QUERY );
 bool bScreenUpdating = !xApplication.is() || 
xApplication->getScreenUpdating();
-bool bInteractive = !xApplication.is() || xApplication->getInteractive();
+bool bInteractive = true;
+
+try
+{
+bInteractive = !xApplication.is() || xApplication->getInteractive();
+}
+catch( const uno::Exception& )
+{
+}
 
 // we need to detect if this is a URL, if not then assume it's a file path
 OUString aURL;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 61588] LOCALHELP: Misleading for Ctrl+Shift+Arrow

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61588

Olivier Hallot  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olivier.hallot@libreoffice.
   |desktop.org |org

--- Comment #8 from Olivier Hallot  ---
The current behaviour of Ctrl+Shift+Arrow

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

[Libreoffice-bugs] [Bug 125341] Crash upon exporting a document to PDF

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125341

--- Comment #16 from Carlton  ---
I've had the same problem. LibreOffice crashes after creating a report, saving
to .odt then exporting to .PDF
LibreOffice 6.1 Linux Mint 18.1'Serena'

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

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

2019-08-14 Thread Jan-Marek Glogowski (via logerrit)
 vcl/qa/cppunit/timer.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 80648b3580baf73b345b66d0858edcfc661005ba
Author: Jan-Marek Glogowski 
AuthorDate: Wed Aug 14 14:53:59 2019 +0200
Commit: Jan-Marek Glogowski 
CommitDate: Wed Aug 14 23:47:12 2019 +0200

Add some margin to the Stopwatch test

The test works with system ticks, so generally isn't that stable.
So add a little margin by comparing the values as doubles.

Change-Id: I1c6e582c7d0755f165f00a669911265b1d960acd
Reviewed-on: https://gerrit.libreoffice.org/77460
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/vcl/qa/cppunit/timer.cxx b/vcl/qa/cppunit/timer.cxx
index d0cfca5c1088..39734ae18b85 100644
--- a/vcl/qa/cppunit/timer.cxx
+++ b/vcl/qa/cppunit/timer.cxx
@@ -601,8 +601,8 @@ void TimerTest::testStopwatch()
 break;
 }
 
-CPPUNIT_ASSERT_EQUAL(sal_uInt32(10), n1Iter);
-CPPUNIT_ASSERT_EQUAL(sal_uInt32(10), n2Iter);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, double(n1Iter), 1.1);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(10.0, double(n2Iter), 1.1);
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(TimerTest);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126920] LibreOffice Calc is oversensitive to pasting overlapping images

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126920

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can reproduce the bug in

Version: 6.3.0.0.alpha0+
Build ID: b6b28931435e44aca92b8c0e1659f701e3ed1a87
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-01-30_06:57:04
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

But, not in
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.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 126931] Wrong date formats for Upper Sorbian and Lower Sorbian

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126931

Eike Rathke  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
Version|6.3.0.4 release |Inherited From OOo
 Status|UNCONFIRMED |ASSIGNED

--- Comment #1 from Eike Rathke  ---
The abbreviated genitive month names are identical to the abbreviated
nominative month names?

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

[Libreoffice-bugs] [Bug 126893] Problem with Cell Reference

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126893

--- Comment #2 from libreoff...@g2od.ch ---
Thank you for the answer.

The manual solution to my problem:

a) copy range
b) special paste
c) transpose

Works, but is only static.

---
Thank you for your help.

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

[Libreoffice-bugs] [Bug 126922] Images anchored to hidden Calc rows reappear in wrong place when saved and loaded in XLSX

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126922

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug.I cannot reproduce the bug in

Version: 6.3.0.0.alpha0+
Build ID: b6b28931435e44aca92b8c0e1659f701e3ed1a87
CPU threads: 2; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-01-30_06:57:04
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

and

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.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 61586] LOCALHELP: Misleading for Ctrl+Down Arrow

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61586

Olivier Hallot  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olivier.hallot@libreoffice.
   |desktop.org |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 126418] Crash in: ScColumn::MergeBlockFrame(SvxBoxItem *, SvxBoxInfoItem *, ScLineFlags &, long, long, bool, short)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126418

--- Comment #8 from m.a.riosv  ---
Seems to work fine with
Version: 6.4.0.0.alpha0+ (x64)
Build ID: d3d13140f0036c53aa74820b41acfeffa3572168
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@62-TDF, Branch:master, Time: 2019-08-14_12:05:15
Locale: es-ES (es_ES); UI-Language: en-US Calc: CL

Really thanks Mike, please could it be backported to 6.3, at least for me makes
difficult use it.

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

[Libreoffice-commits] core.git: Branch 'feature/chart-style-experiment-markus' - 3 commits - chart2/Library_chartcontroller.mk chart2/source chart2/uiconfig chart2/UIConfig_chart2.mk officecfg/registr

2019-08-14 Thread Markus Mohrhard (via logerrit)
 Repository.mk|4 
 chart2/Library_chartcontroller.mk|1 
 chart2/UIConfig_chart2.mk|1 
 chart2/source/controller/sidebar/Chart2PanelFactory.cxx  |3 
 chart2/source/controller/sidebar/ChartStylesPanel.cxx|   69 ++
 chart2/source/controller/sidebar/ChartStylesPanel.hxx|   90 
 chart2/uiconfig/ui/sidebarstyle.ui   |  111 +++
 officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu |   41 +++-
 8 files changed, 313 insertions(+), 7 deletions(-)

New commits:
commit 8fb2808b35a60771ec72cc9ad01cfde17e2f102a
Author: Markus Mohrhard 
AuthorDate: Thu Aug 15 04:12:11 2019 +0800
Commit: Markus Mohrhard 
CommitDate: Thu Aug 15 04:12:11 2019 +0800

don't force huge control size

Change-Id: I9b42a8b16a333b0833d8444cdc70f32455859028

diff --git a/chart2/source/controller/sidebar/ChartStylesPanel.cxx 
b/chart2/source/controller/sidebar/ChartStylesPanel.cxx
index 13cdd32c65e7..82976b5b1e44 100644
--- a/chart2/source/controller/sidebar/ChartStylesPanel.cxx
+++ b/chart2/source/controller/sidebar/ChartStylesPanel.cxx
@@ -34,7 +34,6 @@ ChartStylesPanel::ChartStylesPanel(vcl::Window* pParent,
 get(aDefaultButton, "setdefault");
 get(aDeleteButton, "deletestyle");
 
-aStyleList->set_height_request(45 * aStyleList->GetTextHeight());
 Link aLink = LINK(this, ChartStylesPanel, SelHdl);
 Link aLink2 = LINK(this, ChartStylesPanel, 
SetSelectionClickHdl);
 
commit 3c1a4c172426e573a8f231c15c27ff5cc3d37302
Author: Markus Mohrhard 
AuthorDate: Thu Aug 15 04:10:47 2019 +0800
Commit: Markus Mohrhard 
CommitDate: Thu Aug 15 04:10:47 2019 +0800

make sure the ChartStyles panel shows up in chart sidebar

Change-Id: I8c6cef96d12a97fb8246efc5186d02c5f26733eb

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
index e9e206a470c7..05a7789b5db7 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
@@ -292,26 +292,6 @@
 
   
 
-  
-
-  Chart Styles
-
-
-  ChartStylesDeck
-
-
-  
private:graphicrepository/sfx2/res/symphony/sidebar-style-large.png
-
-
-  
-Chart, any, visible ;
-  
-
-
-  10
-
-  
-
 
 
 
@@ -1431,7 +1411,7 @@
   
private:resource/toolpanel/ChartPanelFactory/SeriesPanel
 
 
-  2
+  3
 
   
 
@@ -1454,7 +1434,7 @@
   
private:resource/toolpanel/ChartPanelFactory/TrendlinePanel
 
 
-  3
+  4
 
   
 
@@ -1480,7 +1460,7 @@
   
private:resource/toolpanel/ChartPanelFactory/ErrorBarPanel
 
 
-  4
+  5
 
   
 
@@ -1506,7 +1486,7 @@
   private:resource/toolpanel/ChartPanelFactory/AxisPanel
 
 
-  5
+  6
 
   
 
@@ -1533,7 +1513,7 @@
   private:resource/toolpanel/ChartPanelFactory/AreaPanel
 
 
-  6
+  7
 
   
 
@@ -1564,7 +1544,7 @@
   private:resource/toolpanel/ChartPanelFactory/LinePanel
 
 
-  7
+  8
 
   
 
@@ -1587,7 +1567,7 @@
   
private:resource/toolpanel/ChartPanelFactory/CharacterPanel
 
 
-  8
+  9
 
   
 
@@ -1602,7 +1582,7 @@
   ChartStylesPanel
 
 
-  ChartStylesDeck
+  ChartDeck
 
 
   
@@ -1613,7 +1593,7 @@
   
private:resource/toolpanel/ChartPanelFactory/ChartStylesPanel
 
 
-  1
+  2
 
   
 
commit 16f447d6232d34a5c665b81ef53c15250849044a
Author: Gagandeep Singh 
AuthorDate: Fri May 3 16:51:51 2019 +0530
Commit: Markus Mohrhard 
CommitDate: Thu Aug 15 03:29:06 2019 +0800

Chart Styles : Added a list box for chart Style in sidebar

Just a GUI update for help in testing chart styles

Change-Id: If7990af383e73996e42ce756c46a8d69d3ab95f3

diff --git a/Repository.mk b/Repository.mk
index d292bd461201..0f5606f12da3 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -835,6 +835,10 @@ $(eval $(call 
gb_Helper_register_packages_for_install,calc,\
sc_res_xml \
 ))
 
+$(eval $(call gb_Helper_register_packages_for_install,chart2,\
+   chart2_res_xml \
+))
+
 $(eval $(call gb_Helper_register_packages_for_install,libreofficekit,\
$(if $(filter LINUX %BSD SOLARIS, 
$(OS)),libreofficekit_selectionhandles) \
 ))
diff --git a/chart2/Library_chartcontroller.mk 
b/chart2/Library_chartcontroller.mk
index 02c8bcb75774..2009595e63cb 100644
--- 

[Libreoffice-bugs] [Bug 121010] [META] Font size bugs and enhancements

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121010
Bug 121010 depends on bug 102315, which changed state.

Bug 102315 Summary: EDITING: Increase/Decrease Font Size do not work reliable 
in Table selections
https://bugs.documentfoundation.org/show_bug.cgi?id=102315

   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 102315] EDITING: Increase/Decrease Font Size do not work reliable in Table selections

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102315

aslmx  changed:

   What|Removed |Added

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

--- Comment #13 from aslmx  ---
Almost 3 years after I initially raised this, I could no longer reproduce this
with the latest LO Writer, 6.3 on linux via AppImage. 

I consider it fixed.

Thanks a lot!

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

[Libreoffice-bugs] [Bug 107200] [META] Writer table and cell selection issues

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107200
Bug 107200 depends on bug 102315, which changed state.

Bug 102315 Summary: EDITING: Increase/Decrease Font Size do not work reliable 
in Table selections
https://bugs.documentfoundation.org/show_bug.cgi?id=102315

   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 102315] EDITING: Increase/Decrease Font Size do not work reliable in Table selections

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102315

--- Comment #12 from aslmx  ---
Created attachment 153396
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153396=edit
Fixed in LO Writer 6.3 (linux, appimage)

The bug should be fixed now.

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

[Libreoffice-bugs] [Bug 126932] File opened from Calc opens in Writer instead.

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126932

Chris  changed:

   What|Removed |Added

 CC||christopherle...@hotmail.co
   ||m

--- Comment #1 from Chris  ---
Created attachment 153395
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153395=edit
Demonstration of a file that triggers the 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 126932] New: File opened from Calc opens in Writer instead.

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126932

Bug ID: 126932
   Summary: File opened from Calc opens in Writer instead.
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: christopherle...@hotmail.com

Description:
Trying to open an IIF file in LibreOffice Calc. This is a column-based,
tab-separated file format used by financial software such as QuickBooks. When I
open the file in Calc, it just assumes that the file is text, and that I must
want it opened in Writer.


Steps to Reproduce:
1. Create an IIF file in another application. (A sample file is attached to
this bug report.)
2. Open Calc.
3. Select File/Open in Calc, and choose the IIF file created in step 1.


Actual Results:
Writer starts, and opens the file as though it were a text file.


Expected Results:
The file should open in Calc, with the text input filter options dialog.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Renaming the file to have a "csv" extension causes Calc to open the file
properly.

Version: 6.1.6.3
Build ID: 6.1.6.3-1.fc29
CPU threads: 4; OS: Linux 5.2; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); Calc: group threaded

Version: 6.1.3.2
Build ID: 86daf60bf00efa86ad547e59e09d6bb77c699acb
CPU threads: 1; OS: Windows 6.1; UI render: default; 
Locale: en-US (en_US); Calc: group threaded

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

[Libreoffice-bugs] [Bug 126931] New: Wrong date formats for Upper Sorbian and Lower Sorbian

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126931

Bug ID: 126931
   Summary: Wrong date formats for Upper Sorbian and Lower Sorbian
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mil...@sorbzilla.de

Created attachment 153394
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153394=edit
Upper Soriban date format selection dialog

Hi,

I tested the feature "Insert Field" adding a date field. Unfortunately, I
detected that there are wrong date formats for Upper Sorbian (hsb) and Lower
Sorbian (dsb). In the Upper Sorbian date format samples even the wrong
separator between day and month is used in different formats, a comma instead
of a point.

Sorbian date formats are similar to the German ones with one exception: the
full date format. In Sorbian full date format the month is always in genitive,
similar to the full date format in Czech, Polish, or Slovak. Unlike German, the
month name is always in lower case.

The genitive month names are:

januara, feburara, měrca, apryla, meje (Upper Sorbian), maja (Lower Sorbian),
junija, julija, awgusta, septembra, oktobra, nowembra, decembra

The nominative forms are:

januar, feburar, měrc, apryl, meja (Upper Sorbian), maj (Lower Sorbian), junij,
julij, awgust, september, oktober, nowember, december

Example: 14. awgusta 2019 (not 14. awgust!)

Please fix the date formats.

Please find attached a screenshot of the date format selection dialog.

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

2019-08-14 Thread Eike Rathke (via logerrit)
 i18npool/source/localedata/data/fr_BF.xml |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 21bffad6bc108f3dc5eee608bf702412a5fcb530
Author: Eike Rathke 
AuthorDate: Wed Aug 14 20:34:58 2019 +0200
Commit: Eike Rathke 
CommitDate: Wed Aug 14 22:49:34 2019 +0200

Resolves: tdf#124108 localized quotation marks for [fr-BF] and derived

Inherited by
fr_BJ
fr_CI
fr_ML
fr_NE
fr_SN
fr_TG

Change-Id: Ic47345fedd0792db213e6584f581ce63b8c5439b
Reviewed-on: https://gerrit.libreoffice.org/77470
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/i18npool/source/localedata/data/fr_BF.xml 
b/i18npool/source/localedata/data/fr_BF.xml
index 0a7ee39fd750..c442a93ceea7 100644
--- a/i18npool/source/localedata/data/fr_BF.xml
+++ b/i18npool/source/localedata/data/fr_BF.xml
@@ -33,10 +33,10 @@

 
 
-  '
-  '
-  "
-  "
+  ‘
+  ’
+  «
+  »
 
 AM
 PM
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126773] Date formatting issue when viewing Calc created .xlsx spreadsheet on iPad/iPhone

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126773

Eike Rathke  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #9 from Eike Rathke  ---
I guess that's some invention of those OSX/iOS viewers, there's no definition
that uppercase DD or D would be format code keywords for day of year, see also
https://support.office.com/en-us/article/Review-guidelines-for-customizing-a-number-format-c0a1d1fa-d3f4-4018-96b7-9c9354dd99f5

The ECMA-376-1:2016 OOXML specification doesn't say anything about case
sensitivity in
18.8.30 numFmt (Number Format)
or
18.8.31 numFmts (Number Formats)
but gives codes in lowercase. There is no DD or D with a special day of year
meaning.

Historically LibreOffice internally uses all uppercase format code keywords and
different casing doesn't produce duplicated format codes. AFAIK also in Excel
one can enter codes in lower or upper case, just that Excel internally uses all
lowercase format code keywords. So far this hasn't been a problem until this
odd iOS/OSX thing.

We maybe could convert format code keywords (and only those) to lowercase when
writing MS (Excel) file formats.

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

[Libreoffice-bugs] [Bug 126693] I cannot create custom categories for captions in KDE 5

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126693

Michael Weghorn  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #7 from Michael Weghorn  ---
(In reply to Miroslav Cupal from comment #6)
> Yes steps are same, but cannot write new caption category.

Can you possibly attach a screencast on the exact behaviour you get?

Can you try whether it still happens with a current daily build from [1]? you
can install that one in parallel as described at [2].

Does this also happen when you start LibreOffice with at fresh user profile,
e.g. start it from command line using this command:

libreoffice -env:UserInstallation=file:///tmp/testprofile

[1] https://dev-builds.libreoffice.org/daily/
[2] https://wiki.documentfoundation.org/Installing_in_parallel/Linux

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

[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-1' - 6 commits - configure.ac icon-themes/breeze icon-themes/colibre icon-themes/elementary icon-themes/karasa_jaga icon-themes/sifr ic

2019-08-14 Thread Thorsten Behrens (via logerrit)
Rebased ref, commits from common ancestor:
commit 15411734fb5201c821167bc19984e3ff06467983
Author: Thorsten Behrens 
AuthorDate: Wed Aug 14 17:20:44 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Aug 14 22:16:10 2019 +0200

Bump version to 6.1.7.3

Change-Id: Ia9ea416138cad0244b672dee43b8b3e8261d990b

diff --git a/configure.ac b/configure.ac
index 118c15c8c22b..93e280a19074 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice powered by 
CIB],[6.1.7.2],[],[],[https://libreoffice.cib.eu/])
+AC_INIT([LibreOffice powered by 
CIB],[6.1.7.3],[],[],[https://libreoffice.cib.eu/])
 
 AC_PREREQ([2.59])
 
commit dc6e0f36962d8902a68a4b480f8698a0ae65f5a9
Author: Samuel Mehrbrodt 
AuthorDate: Tue Jul 30 11:18:45 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Aug 14 22:16:10 2019 +0200

tdf#126508 Fix crash when changing icon style

Regression from b58aa94f1f365c746135470bceb97cc182c289bc

Change-Id: I253447c197d8b333e26f243e26794e775f3edcee
Reviewed-on: https://gerrit.libreoffice.org/76603
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/sfx2/source/sidebar/SidebarController.cxx 
b/sfx2/source/sidebar/SidebarController.cxx
index 5ed199f58f69..301bcf43bb3c 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -653,6 +653,8 @@ void SidebarController::SwitchToDeck (
 const DeckDescriptor& rDeckDescriptor,
 const Context& rContext)
 {
+maFocusManager.Clear();
+
 const bool bForceNewDeck 
((mnRequestedForceFlags_ForceNewDeck)!=0);
 const bool bForceNewPanels 
((mnRequestedForceFlags_ForceNewPanels)!=0);
 mnRequestedForceFlags = SwitchFlag_NoForce;
commit 9286c2cf1fe5c91e8d7136308114fc9ab4b3e9eb
Author: Jan-Marek Glogowski 
AuthorDate: Tue Jul 23 13:48:47 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Aug 14 22:16:09 2019 +0200

tdf#126597 don't use modeless dialog for senddoc.exe

There is already a large comment in initAttachmentList about
problems with MAPI_DIALOG_MODELESS. Using MAPI_DIALOG_MODELESS with
Outlook 2016 and multiple attachments sometimes produces a
MAPI_E_FAILURE, but most times it crashes for me. And it's not a
problem with the removed temporary files, as uncommenting that
shows the same problem. And there seems to be many more problems:


https://social.msdn.microsoft.com/Forums/en-US/5d8fece6-9d93-490c-9331-625c17e3291d/mapisendmailhelper-and-mapidialogmodeless

But actually I don't see any blocking of LO, if I switch to
using MAPI_DIALOG, as senddoc.exe already runs in the background.

So this switches MAPI_DIALOG_MODELESS to MAPI_DIALOG.

This reverts commit 5874c76371562c3e2d8564b1fb04df1997091d27
("tdf#116074: Use modeless dialogs with supporting mailers").

Change-Id: Ie0f8f22196d1a174dfeada2bc4aabb1717ee16a7
Reviewed-on: https://gerrit.libreoffice.org/76155
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 
(cherry picked from commit e79f61340405dcc75f3fe41f727dea4ba4202c2e)
Reviewed-on: https://gerrit.libreoffice.org/76615
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/shell/source/win32/simplemail/senddoc.cxx 
b/shell/source/win32/simplemail/senddoc.cxx
index 636a0d862f4e..4b8e09f48ccf 100644
--- a/shell/source/win32/simplemail/senddoc.cxx
+++ b/shell/source/win32/simplemail/senddoc.cxx
@@ -207,8 +207,9 @@ void initParameter(int argc, wchar_t* argv[])
 
 if (_wcsicmp(argv[i], L"--mapi-dialog") == 0)
 {
-// Outlook 2013+; for earlier versions this equals to MAPI_DIALOG
-gMapiFlags |= MAPI_DIALOG_MODELESS;
+// MAPI_DIALOG_MODELESS has many problems and crashes Outlook 2016.
+// see the commit message for a lengthy description.
+gMapiFlags |= MAPI_DIALOG;
 }
 else if (_wcsicmp(argv[i], L"--mapi-logon-ui") == 0)
 {
commit f93b4e06e8d06037f8f463534e0735b5e45afe7a
Author: Marina Latini (CIB) 
AuthorDate: Thu Jul 25 09:16:58 2019 +0200
Commit: Thorsten Behrens 
CommitDate: Wed Aug 14 22:16:08 2019 +0200

Branded logo for the startcenter

All the icon-themes are now using the CIB logo
in the start center.
The CIB icon set is including only the logo
and the start center banner.
That theme can be used also for custom builds
where are required different logos.

Change-Id: If5bbf5899088af0e1f37c0a56b74ab399b10b5e0

diff --git a/icon-themes/breeze/sfx2/res/logo.png 
b/icon-themes/breeze/sfx2/res/logo.png
new file mode 100755
index ..ace737a89fd9
Binary files /dev/null and 

[Libreoffice-bugs] [Bug 126888] Ctrl+Shift+; shortcut to insert current time stopped working

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126888

--- Comment #5 from Michael Weghorn  ---
I cannot reproduce on Debian testing with KDE Plasma, German keyboard layout:

Version: 6.4.0.0.alpha0+
Build ID: fa774e16b1dfe4844ec5eb3f9372d6468f6b8a56
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kf5; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-US
Calc: threaded

neither with the package provided in Debian testing (libreoffice 1:6.3.0-2):

Version: 6.3.0.4
Build ID: 1:6.3.0-2
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-US
Calc: threaded


@Martin: What is your keyboard layout that works with SAL_USE_VCLPLUGIN=gtk3,
but not with the "kde5" VCL plugin?

(In reply to Jean-Baptiste Faure from comment #4)
> I already use the plugin GTK3 and it does not work with any version I can
> test : 6.1, 6.2, 6.3 and master.
> Could it be possible that the problem is linked to the use of an AZERTY
> keyboard?

That's possible. Can you try whether it works as expected when you configure
another keyboard layout?

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

[Libreoffice-bugs] [Bug 126930] New: Install failed

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126930

Bug ID: 126930
   Summary: Install failed
   Product: QA Tools
   Version: unspecified
  Hardware: All
   URL: http://tdf.io/siguihome
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: SI-GUI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: carrbig...@yahoo.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-commits] core.git: basic/source

2019-08-14 Thread Stephan Bergmann (via logerrit)
 basic/source/sbx/sbxdbl.cxx  |   19 ++-
 basic/source/sbx/sbxint.cxx  |   23 +--
 basic/source/sbx/sbxlng.cxx  |   15 +--
 basic/source/sbx/sbxsng.cxx  |   21 -
 basic/source/sbx/sbxuint.cxx |9 ++---
 basic/source/sbx/sbxulng.cxx |9 ++---
 6 files changed, 56 insertions(+), 40 deletions(-)

New commits:
commit b34472226495b35707d7df3c71bb8dbc3d11d6b8
Author: Stephan Bergmann 
AuthorDate: Wed Aug 14 13:47:17 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Wed Aug 14 21:53:21 2019 +0200

Fix Clang 10 -Werror,-Wimplicit-int-float-conversion

> basic/source/sbx/sbxint.cxx:342:13: error: implicit conversion from 
'sal_Int64' (aka 'long') to 'double' changes value from 9223372036854775807 to 
9223372036854775808 [-Werror,-Wimplicit-int-float-conversion]
> if( d > SAL_MAX_INT64 )
>   ~ ^
> basic/source/sbx/sbxint.cxx:358:13: error: implicit conversion from 
'sal_uInt64' (aka 'unsigned long') to 'double' changes value from 
18446744073709551615 to 18446744073709551616 
[-Werror,-Wimplicit-int-float-conversion]
> if( d > SAL_MAX_UINT64 )
>   ~ ^~
> basic/source/sbx/sbxint.cxx:706:34: error: implicit conversion from 
'sal_uInt64' (aka 'unsigned long') to 'double' changes value from 
18446744073709551615 to 18446744073709551616 
[-Werror,-Wimplicit-int-float-conversion]
> else if( d > SAL_MAX_UINT64 )
>~ ^~

> basic/source/sbx/sbxlng.cxx:60:30: error: implicit conversion from 'int' 
to 'float' changes value from 2147483647 to 2147483648 
[-Werror,-Wimplicit-int-float-conversion]
> if( p->nSingle > SbxMAXLNG )
>~ ^

> basic/source/sbx/sbxsng.cxx:280:21: error: implicit conversion from 'int' 
to 'float' changes value from 2147483647 to 2147483648 
[-Werror,-Wimplicit-int-float-conversion]
> if( n > SbxMAXLNG )
>   ~ ^
> basic/source/sbx/sbxsng.cxx:297:21: error: implicit conversion from 
'sal_uInt32' (aka 'unsigned int') to 'float' changes value from 4294967295 to 
4294967296 [-Werror,-Wimplicit-int-float-conversion]
> if( n > SbxMAXULNG )
>   ~ ^~

> basic/source/sbx/sbxulng.cxx:66:30: error: implicit conversion from 
'sal_uInt32' (aka 'unsigned int') to 'float' changes value from 4294967295 to 
4294967296 [-Werror,-Wimplicit-int-float-conversion]
> if( p->nSingle > SbxMAXULNG )
>~ ^~

Consistently use o3tl::convertsToAtLeast/Most(o3tl::roundAway(...), ...) 
for all
those conversion cases that check that a floating-point value falls into an
integer range, even those that don't cause a warning.
even those that don't con

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

diff --git a/basic/source/sbx/sbxdbl.cxx b/basic/source/sbx/sbxdbl.cxx
index 823693c3a149..968dc837edb8 100644
--- a/basic/source/sbx/sbxdbl.cxx
+++ b/basic/source/sbx/sbxdbl.cxx
@@ -19,6 +19,7 @@
 
 #include 
 
+#include 
 #include 
 #include 
 #include "sbxconv.hxx"
@@ -210,17 +211,17 @@ start:
 break;
 }
 case SbxBYREF | SbxCHAR:
-if( n > SbxMAXCHAR )
+if( !o3tl::convertsToAtMost(o3tl::roundAway(n), SbxMAXCHAR) )
 {
 SbxBase::SetError( ERRCODE_BASIC_MATH_OVERFLOW ); n = 
SbxMAXCHAR;
 }
-else if( n < SbxMINCHAR )
+else if( !o3tl::convertsToAtLeast(o3tl::roundAway(n), SbxMINCHAR) )
 {
 SbxBase::SetError( ERRCODE_BASIC_MATH_OVERFLOW ); n = 
SbxMINCHAR;
 }
 *p->pChar = static_cast(n); break;
 case SbxBYREF | SbxBYTE:
-if( n > SbxMAXBYTE )
+if( !o3tl::convertsToAtMost(o3tl::roundAway(n), SbxMAXBYTE) )
 {
 SbxBase::SetError( ERRCODE_BASIC_MATH_OVERFLOW ); n = 
SbxMAXBYTE;
 }
@@ -231,18 +232,18 @@ start:
 *p->pByte = static_cast(n); break;
 case SbxBYREF | SbxINTEGER:
 case SbxBYREF | SbxBOOL:
-if( n > SbxMAXINT )
+if( !o3tl::convertsToAtMost(o3tl::roundAway(n), SbxMAXINT) )
 {
 SbxBase::SetError( ERRCODE_BASIC_MATH_OVERFLOW ); n = 
SbxMAXINT;
 }
-else if( n < SbxMININT )
+else if( !o3tl::convertsToAtLeast(o3tl::roundAway(n), SbxMININT) )
 {
 SbxBase::SetError( ERRCODE_BASIC_MATH_OVERFLOW ); n = 
SbxMININT;
 }
 *p->pInteger = static_cast(n); break;
 case SbxBYREF | SbxERROR:
 case SbxBYREF | SbxUSHORT:
-if( n > 

[Libreoffice-commits] core.git: helpcontent2

2019-08-14 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 866b4a41d50e11306e890f3033fe1fed9b69b709
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 16:16:07 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Aug 14 21:52:59 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#126889 Fix icon size in branch 6.3

fix dtd mistake

Change-Id: Ic8b0fe43788d6743e3d7f7c11b05d96235a0b967
Reviewed-on: https://gerrit.libreoffice.org/77471
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 13021ba30942..a0b873f632e9 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 13021ba3094211caa9db56f51dfe20870ee132f1
+Subproject commit a0b873f632e9ca598ea6b773da7f2007143b1f05
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-08-14 Thread Olivier Hallot (via logerrit)
 source/text/swriter/guide/arrange_chapters.xhp |   32 +++--
 1 file changed, 15 insertions(+), 17 deletions(-)

New commits:
commit a0b873f632e9ca598ea6b773da7f2007143b1f05
Author: Olivier Hallot 
AuthorDate: Wed Aug 14 16:16:07 2019 -0300
Commit: Olivier Hallot 
CommitDate: Wed Aug 14 21:52:59 2019 +0200

tdf#126889 Fix icon size in branch 6.3

fix dtd mistake

Change-Id: Ic8b0fe43788d6743e3d7f7c11b05d96235a0b967
Reviewed-on: https://gerrit.libreoffice.org/77471
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/swriter/guide/arrange_chapters.xhp 
b/source/text/swriter/guide/arrange_chapters.xhp
index 693b024fb..33d20a21c 100644
--- a/source/text/swriter/guide/arrange_chapters.xhp
+++ b/source/text/swriter/guide/arrange_chapters.xhp
@@ -28,24 +28,23 @@
 
 
 
-  headings;rearranging
-  rearranging headings
-  moving;headings
-  demoting heading levels
-  promoting heading levels
-  Navigator;heading levels and chapters
-  arranging;headings
-  outlines;arranging chapters
+headings;rearranging
+rearranging headings
+moving;headings
+demoting heading levels
+promoting heading levels
+Navigator;heading levels and chapters
+arranging;headings
+outlines;arranging chapters
 
 
-
-Arranging Chapters in the Navigator 

+Arranging Chapters in the Navigator 
 You can move 
headings and subordinate text up and down in a document text by using the 
Navigator. You can also promote and demote heading levels. To use this feature, 
format the headings in your document with one of the predefined heading 
paragraph styles. To use a custom paragraph style for a heading, choose 
Tools - Chapter Numbering, select the style in the Paragraph 
Style box, and then double-click a number in the Levels 
list.
-To quickly move the 
text cursor to a heading in the document, double-click the heading in the 
Navigator list.
+To quickly move the text cursor to a heading in the 
document, double-click the heading in the Navigator list.
 To dock the 
Navigator, drag the title bar to the edge of the workspace. To 
undock the Navigator, double-click its frame while holding the 
CommandCtrl
 key.
 
-To Move 
a Heading Up or Down in the Document
-Ensure 
that all heading levels are shown in the Navigator. By default all levels are 
shown. See steps below how to change the heading levels that are 
shown.
+To Move a Heading Up or Down in the Document
+Ensure that all heading levels are shown 
in the Navigator. By default all levels are shown. See steps below how to 
change the heading levels that are shown.
 
 
   
@@ -67,9 +66,9 @@
 Click a 
heading in the Navigator list, and then click the Promote 
Chapter Icon 
promote or Demote Chapter icon Icon 
demote.
   
 
-To move the heading 
without the subordinate text, hold down CommandCtrl
 while you drag or click the Promote Chapter or Demote 
Chapter icons.
+To move the heading without the subordinate text, 
hold down CommandCtrl
 while you drag or click the Promote Chapter or Demote 
Chapter icons.
 
-To 
Promote or Demote the Level of a Heading
+To Promote or Demote the Level of a Heading
 
 
   
@@ -80,7 +79,7 @@
   
 
 
-To 
Change the Number of Heading Levels That Are Displayed
+To Change the Number of Heading Levels That Are 
Displayed
 Click the 
Heading Levels Shown icon Icon heading levels, and then select a number 
from the list.
 
 
@@ -88,5 +87,4 @@
 
 
 
-
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Re: We'd like to continue the production of the 32-bit deb packages

2019-08-14 Thread Michael Weghorn
On 14/08/2019 19.21, dreamn...@gmail.com wrote:
> Would be possible to download your generated deb files from some
> file-sharing service?

If necessary, I'll probably find a way to upload them somewhere next
week. (I'll be away for the next days.) However, that won't help in the
long run, so I'll think it'd be better if you can get your build setup
working.

> 
> I'm still struggling with compilation issues.
> 1) After the bad experience with Debian 10, I downloaded Debian 9.9 in
> the hope that would make a better compilation choice, but, alas, Debian
> 9 includes a version of gcc already unsupported by LibreOffice, it
> requires at least gcc 7. As far as I could found, upgrading gcc on
> Debian 9 is an ugly chore, so I went back to installing Debian 10...
> 2) But, this time, instead of choosing LXQT, I chose LXDE and used
> LXTerminal. Now it compiled until the make error without a single hang.
> I don't know if LXQT of tis default terminal were the culprits of the
> frequent crashes, or something else, but at least I reached the make
> error on Debian 10.
> 
> I paste the error produced in Debian 10. It seems to be still cpunittest
> related.
> 
> Would be wise to apply your diff here, or it is not related since I'm
> not running a chroot environment but a VM?

The diff wouldn't help, since the tests that fail for you are unrelated
to the ones I temporarily disabled.

Maybe you want to try setting up an i386 chroot on an amd64 host as
well? That might work better than using a i386 virtual machine (e.g.
with regard to memory limitations) and I guess this should also work
just fine on a host running Escuelas Linux.

The steps I took to set up the chroot for use with schroot were roughly:

Create chroot:

sudo debootstrap --arch=i386 buster /some/path/to/chroot/buster-i386

Create entry in /etc/schroot/schroot.conf:

[buster-i386]
description=Debian buster (stable) 32-bit
directory=/some/path/to/chroot/buster-i386
users=
root-users=
personality=linux32

After that, you can change into the chroot using

schroot -c buster-i386

or (to work as root):

schroot -c buster-i386 -u root

and then set up the build dependencies, clone LibreOffice and build from
there as usual.



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

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

2019-08-14 Thread Caolán McNamara (via logerrit)
 sfx2/source/dialog/dinfdlg.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 2dbe7c08340d6505c528544327e7c27f6d690c6c
Author: Caolán McNamara 
AuthorDate: Wed Aug 14 17:16:46 2019 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 14 21:40:38 2019 +0200

tdf#126859 ensure initial height calculation

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

diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 5c8d83be5398..34d685e61128 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1791,6 +1791,8 @@ void CustomPropertiesControl::Init(weld::Builder& 
rBuilder)
 
 Link aScrollLink = LINK( this, 
CustomPropertiesControl, ScrollHdl );
 m_xVertScroll->connect_vadjustment_changed(aScrollLink);
+
+ResizeHdl(Size(-1, nHeight));
 }
 
 IMPL_LINK(CustomPropertiesControl, ResizeHdl, const Size&, rSize, void)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126859] Custom document properties cannot be accessed in LO 6.3

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126859

Caolán McNamara  changed:

   What|Removed |Added

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

--- Comment #11 from Caolán McNamara  ---
I suspect the page in question doesn't get an initial explicit resize event,
perhaps because it "starts off" at its final size so never "resizes" away from
that so the calculation depending on getting a resize never happens.

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

[Libreoffice-bugs] [Bug 124734] 'Format' windows in writer and calc on Ubuntu-Linux too wide

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124734

--- Comment #11 from Robert Simpson  ---
Comment on attachment 153393
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153393
see comment #10

Thanks, Buovjaga. Problem present neither in appimage, nor safe-mode. (Help not
offering 'restart in safe-mode', but started from terminal.)

Not sure how to proceed, so I'm attaching the user profile dumped from
safe-mode start window. However 31Mb too big, so I've arbitrarily removed
'backup' and 'uno-packages'.

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

[Libreoffice-bugs] [Bug 124734] 'Format' windows in writer and calc on Ubuntu-Linux too wide

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124734

--- Comment #10 from Robert Simpson  ---
Created attachment 153393
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153393=edit
see comment #10

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - vcl/headless vcl/win

2019-08-14 Thread Caolán McNamara (via logerrit)
 vcl/headless/svpgdi.cxx |   16 ++--
 vcl/win/gdi/gdiimpl.cxx |   14 +-
 2 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit d72a9f930215b10f6f45a767b0515dcc8ad2b793
Author: Caolán McNamara 
AuthorDate: Wed Aug 14 13:09:36 2019 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 14 21:24:44 2019 +0200

tdf#124700 don't pull from or insert into cache for PixelSnapHairline

Change-Id: I7ca0f556164b6bc462cee3c5532733dbd6b68a2b
Reviewed-on: https://gerrit.libreoffice.org/77456
Reviewed-by: Michael Stahl 
Tested-by: Jenkins

diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index 26fe0651d7d3..467de73597e6 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -1282,7 +1282,8 @@ bool SvpSalGraphics::drawPolyLine(
 // check data validity
 if(nullptr == pSystemDependentData_CairoPath->getCairoPath()
 || pSystemDependentData_CairoPath->getNoJoin() != bNoJoin
-|| pSystemDependentData_CairoPath->getAntiAliasB2DDraw() != 
bAntiAliasB2DDraw)
+|| pSystemDependentData_CairoPath->getAntiAliasB2DDraw() != 
bAntiAliasB2DDraw
+|| bPixelSnapHairline /*tdf#124700*/ )
 {
 // data invalid, forget
 pSystemDependentData_CairoPath.reset();
@@ -1337,11 +1338,14 @@ bool SvpSalGraphics::drawPolyLine(
 }
 
 // copy and add to buffering mechanism
-pSystemDependentData_CairoPath = 
rPolyLine.addOrReplaceSystemDependentData(
-ImplGetSystemDependentDataManager(),
-cairo_copy_path(cr),
-bNoJoin,
-bAntiAliasB2DDraw);
+if (!bPixelSnapHairline /*tdf#124700*/)
+{
+pSystemDependentData_CairoPath = 
rPolyLine.addOrReplaceSystemDependentData(
+ImplGetSystemDependentDataManager(),
+cairo_copy_path(cr),
+bNoJoin,
+bAntiAliasB2DDraw);
+}
 }
 
 // extract extents
diff --git a/vcl/win/gdi/gdiimpl.cxx b/vcl/win/gdi/gdiimpl.cxx
index 10efebc5cf47..e62d30a1fabe 100644
--- a/vcl/win/gdi/gdiimpl.cxx
+++ b/vcl/win/gdi/gdiimpl.cxx
@@ -2286,7 +2286,8 @@ bool WinSalGraphicsImpl::drawPolyLine(
 if(pSystemDependentData_GraphicsPath)
 {
 // check data validity
-if(pSystemDependentData_GraphicsPath->getNoLineJoin() != bNoLineJoin)
+if (pSystemDependentData_GraphicsPath->getNoLineJoin() != bNoLineJoin
+|| bPixelSnapHairline /*tdf#124700*/)
 {
 // data invalid, forget
 pSystemDependentData_GraphicsPath.reset();
@@ -2317,10 +2318,13 @@ bool WinSalGraphicsImpl::drawPolyLine(
 }
 
 // add to buffering mechanism
-
rPolygon.addOrReplaceSystemDependentData(
-ImplGetSystemDependentDataManager(),
-pGraphicsPath,
-bNoLineJoin);
+if (!bPixelSnapHairline /*tdf#124700*/)
+{
+
rPolygon.addOrReplaceSystemDependentData(
+ImplGetSystemDependentDataManager(),
+pGraphicsPath,
+bNoLineJoin);
+}
 }
 
 if(mrParent.getAntiAliasB2DDraw())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: vcl/headless vcl/win

2019-08-14 Thread Caolán McNamara (via logerrit)
 vcl/headless/svpgdi.cxx |   16 ++--
 vcl/win/gdi/gdiimpl.cxx |   14 +-
 2 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit bd513456710b69ac2f73e983ee1b823d71b3b47b
Author: Caolán McNamara 
AuthorDate: Wed Aug 14 13:09:36 2019 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 14 21:27:35 2019 +0200

tdf#124700 don't pull from or insert into cache for PixelSnapHairline

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

diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index f107b9936833..7488a77b635d 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -1285,7 +1285,8 @@ bool SvpSalGraphics::drawPolyLine(
 // check data validity
 if(nullptr == pSystemDependentData_CairoPath->getCairoPath()
 || pSystemDependentData_CairoPath->getNoJoin() != bNoJoin
-|| pSystemDependentData_CairoPath->getAntiAliasB2DDraw() != 
bAntiAliasB2DDraw)
+|| pSystemDependentData_CairoPath->getAntiAliasB2DDraw() != 
bAntiAliasB2DDraw
+|| bPixelSnapHairline /*tdf#124700*/ )
 {
 // data invalid, forget
 pSystemDependentData_CairoPath.reset();
@@ -1340,11 +1341,14 @@ bool SvpSalGraphics::drawPolyLine(
 }
 
 // copy and add to buffering mechanism
-pSystemDependentData_CairoPath = 
rPolyLine.addOrReplaceSystemDependentData(
-ImplGetSystemDependentDataManager(),
-cairo_copy_path(cr),
-bNoJoin,
-bAntiAliasB2DDraw);
+if (!bPixelSnapHairline /*tdf#124700*/)
+{
+pSystemDependentData_CairoPath = 
rPolyLine.addOrReplaceSystemDependentData(
+ImplGetSystemDependentDataManager(),
+cairo_copy_path(cr),
+bNoJoin,
+bAntiAliasB2DDraw);
+}
 }
 
 // extract extents
diff --git a/vcl/win/gdi/gdiimpl.cxx b/vcl/win/gdi/gdiimpl.cxx
index 008f3a460f25..c3d891cd681e 100644
--- a/vcl/win/gdi/gdiimpl.cxx
+++ b/vcl/win/gdi/gdiimpl.cxx
@@ -2288,7 +2288,8 @@ bool WinSalGraphicsImpl::drawPolyLine(
 if(pSystemDependentData_GraphicsPath)
 {
 // check data validity
-if(pSystemDependentData_GraphicsPath->getNoLineJoin() != bNoLineJoin)
+if (pSystemDependentData_GraphicsPath->getNoLineJoin() != bNoLineJoin
+|| bPixelSnapHairline /*tdf#124700*/)
 {
 // data invalid, forget
 pSystemDependentData_GraphicsPath.reset();
@@ -2319,10 +2320,13 @@ bool WinSalGraphicsImpl::drawPolyLine(
 }
 
 // add to buffering mechanism
-
rPolygon.addOrReplaceSystemDependentData(
-ImplGetSystemDependentDataManager(),
-pGraphicsPath,
-bNoLineJoin);
+if (!bPixelSnapHairline /*tdf#124700*/)
+{
+
rPolygon.addOrReplaceSystemDependentData(
+ImplGetSystemDependentDataManager(),
+pGraphicsPath,
+bNoLineJoin);
+}
 }
 
 if(mrParent.getAntiAliasB2DDraw())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/headless vcl/win

2019-08-14 Thread Caolán McNamara (via logerrit)
 vcl/headless/svpgdi.cxx |   16 ++--
 vcl/win/gdi/gdiimpl.cxx |   14 +-
 2 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit 91230327fd28d9a021effea62e8cff4836e5a74d
Author: Caolán McNamara 
AuthorDate: Wed Aug 14 13:09:36 2019 +0100
Commit: Caolán McNamara 
CommitDate: Wed Aug 14 21:26:59 2019 +0200

tdf#124700 don't pull from or insert into cache for PixelSnapHairline

Change-Id: I7ca0f556164b6bc462cee3c5532733dbd6b68a2b
Reviewed-on: https://gerrit.libreoffice.org/77457
Reviewed-by: Michael Stahl 
Tested-by: Jenkins

diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index c8bc89160c3a..625eb803fa6d 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -1277,7 +1277,8 @@ bool SvpSalGraphics::drawPolyLine(
 // check data validity
 if(nullptr == pSystemDependentData_CairoPath->getCairoPath()
 || pSystemDependentData_CairoPath->getNoJoin() != bNoJoin
-|| pSystemDependentData_CairoPath->getAntiAliasB2DDraw() != 
bAntiAliasB2DDraw)
+|| pSystemDependentData_CairoPath->getAntiAliasB2DDraw() != 
bAntiAliasB2DDraw
+|| bPixelSnapHairline /*tdf#124700*/ )
 {
 // data invalid, forget
 pSystemDependentData_CairoPath.reset();
@@ -1332,11 +1333,14 @@ bool SvpSalGraphics::drawPolyLine(
 }
 
 // copy and add to buffering mechanism
-pSystemDependentData_CairoPath = 
rPolyLine.addOrReplaceSystemDependentData(
-ImplGetSystemDependentDataManager(),
-cairo_copy_path(cr),
-bNoJoin,
-bAntiAliasB2DDraw);
+if (!bPixelSnapHairline /*tdf#124700*/)
+{
+pSystemDependentData_CairoPath = 
rPolyLine.addOrReplaceSystemDependentData(
+ImplGetSystemDependentDataManager(),
+cairo_copy_path(cr),
+bNoJoin,
+bAntiAliasB2DDraw);
+}
 }
 
 // extract extents
diff --git a/vcl/win/gdi/gdiimpl.cxx b/vcl/win/gdi/gdiimpl.cxx
index 10aad77ed229..434cdcbac8e4 100644
--- a/vcl/win/gdi/gdiimpl.cxx
+++ b/vcl/win/gdi/gdiimpl.cxx
@@ -2264,7 +2264,8 @@ bool WinSalGraphicsImpl::drawPolyLine(
 if(pSystemDependentData_GraphicsPath)
 {
 // check data validity
-if(pSystemDependentData_GraphicsPath->getNoLineJoin() != bNoLineJoin)
+if (pSystemDependentData_GraphicsPath->getNoLineJoin() != bNoLineJoin
+|| bPixelSnapHairline /*tdf#124700*/)
 {
 // data invalid, forget
 pSystemDependentData_GraphicsPath.reset();
@@ -2295,10 +2296,13 @@ bool WinSalGraphicsImpl::drawPolyLine(
 }
 
 // add to buffering mechanism
-
rPolygon.addOrReplaceSystemDependentData(
-ImplGetSystemDependentDataManager(),
-pGraphicsPath,
-bNoLineJoin);
+if (!bPixelSnapHairline /*tdf#124700*/)
+{
+
rPolygon.addOrReplaceSystemDependentData(
+ImplGetSystemDependentDataManager(),
+pGraphicsPath,
+bNoLineJoin);
+}
 }
 
 if(mrParent.getAntiAliasB2DDraw())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

How to handle a testing only python package dependency

2019-08-14 Thread Markus Mohrhard
G'day fellow hackers,

to finally merge the work of one of my GSoC students we are trying to
figure out how to handle a new test framework only python package
dependency. Note that the package is a purely optional dependency and not
required to run our normal test cases. The dependency in question is testx
which again has two dependencies:

textX==2.0.1
  - Arpeggio [required: >=1.9.0, installed: 1.9.0]
  - click [required: ==7.0, installed: 7.0]

What is our policy about python packages that are actually not needed for
an installed LibreOffice?
My current solution would be to add an explicit ImportError check in the
script and tell the person calling the script to install the package. As
this is mostly something for a few selected QA team members this seems like
an acceptable solution.

Any other solutions/opinions?

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

[Libreoffice-commits] core.git: helpcontent2

2019-08-14 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2641f8233787d755651ae9aa6f2af407686debf4
Author: Olivier Hallot 
AuthorDate: Mon Aug 12 13:11:09 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Aug 14 21:19:34 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - Fix URL after pootle translation revision.

Change-Id: I21b95f8f528deb27c22d4f7d5945b0fd0dbd4198
Reviewed-on: https://gerrit.libreoffice.org/77371
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 1fbd4a961d94..13021ba30942 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 1fbd4a961d94cd74ba92e1a5d02085d216af0474
+Subproject commit 13021ba3094211caa9db56f51dfe20870ee132f1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-08-14 Thread Olivier Hallot (via logerrit)
 source/text/shared/01/moviesound.xhp |   14 +++---
 source/text/simpress/main0203.xhp|   12 ++--
 2 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 13021ba3094211caa9db56f51dfe20870ee132f1
Author: Olivier Hallot 
AuthorDate: Mon Aug 12 13:11:09 2019 -0300
Commit: Olivier Hallot 
CommitDate: Wed Aug 14 21:19:34 2019 +0200

Fix URL after pootle translation revision.

Change-Id: I21b95f8f528deb27c22d4f7d5945b0fd0dbd4198
Reviewed-on: https://gerrit.libreoffice.org/77371
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/01/moviesound.xhp 
b/source/text/shared/01/moviesound.xhp
index f1d34c3cc..25c9bb8dc 100644
--- a/source/text/shared/01/moviesound.xhp
+++ b/source/text/shared/01/moviesound.xhp
@@ -80,21 +80,21 @@
   %PRODUCTNAME relies on the operating system's installed media 
support.
 
   
-For Microsoft Windows: %PRODUCTNAME can open 
anything for which DirectShow filters are installed (https://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx; 
name="linkname">list of default formats).
+For Microsoft Windows: %PRODUCTNAME can open 
anything for which DirectShow filters are installed (https://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx; 
name="mediaplayer">list of default formats).
   
   
-For GNU/Linux: %PRODUCTNAME uses 
gstreamer, so whatever you can play using gstreamer can be used 
with %PRODUCTNAME (https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types;
 name="linkname">list of defined types).
+For GNU/Linux: %PRODUCTNAME uses 
gstreamer, so whatever you can play using gstreamer can be used 
with %PRODUCTNAME (https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types;
 name="gstreamer1">list of defined types).
   
   
-For Apple macOS: %PRODUCTNAME uses 
QuickTime supported media formats (https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true;
 name="linkname">list of media formats).
+  For Apple macOS: %PRODUCTNAME uses 
QuickTime supported media formats (https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html; 
name="quicktime2">list of media formats).
   
 
 
   
-  https://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx; 
name="linkname">List of default formats for Microsoft Windows 
DirectShow.
-  https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types;
 name="linkname">List of defined types for gstreamer in 
GNU/Linux.
-  https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true;
 name="linkname">List of media formats for Apple macOS 
QuickTime.
-  https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/;
 name="linkname">%PRODUCTNAME Askbot question and answer
+  https://docs.microsoft.com/en-us/windows/win32/directshow/supported-formats-in-directshow;
 name="directwhow">List of default formats for Microsoft Windows 
DirectShow.
+  https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types;
 name="gstreamer">List of defined types for gstreamer in 
GNU/Linux.
+  https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html; 
name="quicktime">List of media formats for Apple macOS 
QuickTime.
+  https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/;
 name="askbot">%PRODUCTNAME Askbot question and answer
 
 
 
diff --git a/source/text/simpress/main0203.xhp 
b/source/text/simpress/main0203.xhp
index 322730bbf..17220506c 100644
--- a/source/text/simpress/main0203.xhp
+++ b/source/text/simpress/main0203.xhp
@@ -1,6 +1,6 @@
 
 
-   
+
 
- 
-   
+
+
 
   
  Text Formatting Bar
@@ -134,10 +134,10 @@
   
   
 
-Increase Font
+Increase Font Size
   Increases the font size of the selected 
text.
 
-Reduce Font
+Decrease Font Size
   Reduces the font size of the selected 
text.

-
\ No newline at end of file
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-qa] Minutes from the UX/design meeting 2019-Aug-14

2019-08-14 Thread Heiko Tietze
Present: Roman, Cor, Heiko

Discussion

 * Meeting in general (Cor)
   + invite people personally
   + regular meetings are a good idea (Cor)

Tickets

 * Alignment of images
   + https://bugs.documentfoundation.org/show_bug.cgi?id=126857
   + new command to center vertically and horizontally requested
   + seeking for a nice term
   + too many options as suggested later in the ticket is too much for the menu
   + "Center on Page/Slide" or "Equidistant" (Stuart)
   + I agree with an idea. (kompi)
   => "Center on Page/Slide" (and rename Center to Middle, Centered to Center)


 * Find & Replace should optionally also make use of AutoCorrect single or 
double quote substitutions for easier keyboard search entry
   + https://bugs.documentfoundation.org/show_bug.cgi?id=126752
+ would require to doit in a general way, ie. all autocorrected terms are 
found when searching for the  basic version
+ maybe an option is nice but then working in the dialog only
- disagree F new options. let's will be simply (kompi)
+ technically challenging as the search has to be run twice
+ users may expect the search to result in <>n found results of <'> and a 
messagebox that the document contains of
   autocorrected places with <"> and a button to search for this term 
(Heiko)
+ simply show a message that this input might have been autocorrected by 
 (Cor)
=> let's go with the simple solution


 * Add option to show 'Apply Style' menu in plain text
   + https://bugs.documentfoundation.org/show_bug.cgi?id=62926
   + extra option or combination with existing
   + unclear what controls would be affected (Stuart, c9)
   + afraid of too many options if there are more controls (Heiko)
   + Tools > Options > View is across modules and "Show preview of styles" 
would be Writer-only (Heiko)
   => run a poll on the blog/ml (Cor)

 * Ability to forbid the use of direct formatting
   + https://bugs.documentfoundation.org/show_bug.cgi?id=53847
   + user customization is king, no need to ship another UI variant
   + do as MUFFIN (Stuart), yes but per extension then (Heiko)
  + bad idea, users should to have the ability to choose (kompi)
   + prefer the internal solution (Cor)
   + alternatively, introduce an option to switch from Formatting (toolbar) to 
Formatting (Styles) as the default
   + or close the ticket as WFM since we have the styles focused TB (and maybe 
kill the direct formatting options from this TB)
   => close as WFM if we change the existing toolbar

 * Rework of Safe Mode dialog
   + https://bugs.documentfoundation.org/show_bug.cgi?id=120269
   + https://nextcloud.documentfoundation.org/s/Zj8nsETFTyPgeEB
   + https://listarchives.libreoffice.org/global/design/msg09116.html
   + pls reply to my comment on the ML (Cor) - will do (Heiko)
   => a few comments, keep it boiling for another week



signature.asc
Description: OpenPGP digital signature
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Minutes from the UX/design meeting 2019-Aug-14

2019-08-14 Thread Heiko Tietze
Present: Roman, Cor, Heiko

Discussion

 * Meeting in general (Cor)
   + invite people personally
   + regular meetings are a good idea (Cor)

Tickets

 * Alignment of images
   + https://bugs.documentfoundation.org/show_bug.cgi?id=126857
   + new command to center vertically and horizontally requested
   + seeking for a nice term
   + too many options as suggested later in the ticket is too much for the menu
   + "Center on Page/Slide" or "Equidistant" (Stuart)
   + I agree with an idea. (kompi)
   => "Center on Page/Slide" (and rename Center to Middle, Centered to Center)


 * Find & Replace should optionally also make use of AutoCorrect single or 
double quote substitutions for easier keyboard search entry
   + https://bugs.documentfoundation.org/show_bug.cgi?id=126752
+ would require to doit in a general way, ie. all autocorrected terms are 
found when searching for the  basic version
+ maybe an option is nice but then working in the dialog only
- disagree F new options. let's will be simply (kompi)
+ technically challenging as the search has to be run twice
+ users may expect the search to result in <>n found results of <'> and a 
messagebox that the document contains of
   autocorrected places with <"> and a button to search for this term 
(Heiko)
+ simply show a message that this input might have been autocorrected by 
 (Cor)
=> let's go with the simple solution


 * Add option to show 'Apply Style' menu in plain text
   + https://bugs.documentfoundation.org/show_bug.cgi?id=62926
   + extra option or combination with existing
   + unclear what controls would be affected (Stuart, c9)
   + afraid of too many options if there are more controls (Heiko)
   + Tools > Options > View is across modules and "Show preview of styles" 
would be Writer-only (Heiko)
   => run a poll on the blog/ml (Cor)

 * Ability to forbid the use of direct formatting
   + https://bugs.documentfoundation.org/show_bug.cgi?id=53847
   + user customization is king, no need to ship another UI variant
   + do as MUFFIN (Stuart), yes but per extension then (Heiko)
  + bad idea, users should to have the ability to choose (kompi)
   + prefer the internal solution (Cor)
   + alternatively, introduce an option to switch from Formatting (toolbar) to 
Formatting (Styles) as the default
   + or close the ticket as WFM since we have the styles focused TB (and maybe 
kill the direct formatting options from this TB)
   => close as WFM if we change the existing toolbar

 * Rework of Safe Mode dialog
   + https://bugs.documentfoundation.org/show_bug.cgi?id=120269
   + https://nextcloud.documentfoundation.org/s/Zj8nsETFTyPgeEB
   + https://listarchives.libreoffice.org/global/design/msg09116.html
   + pls reply to my comment on the ML (Cor) - will do (Heiko)
   => a few comments, keep it boiling for another week



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

[Libreoffice-bugs] [Bug 126925] Crash of LO Writer when changing xfce4 theme

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126925

Adalbert Hanßen  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from Adalbert Hanßen  ---
(In reply to Buovjaga from comment #1)
> (In reply to Adalbert Hanßen from comment #0)
> > CPU-Threads: 4; BS: Linux 4.4; UI-Render: Standard; VCL: gtk3; 
...
> Try running from the command line with
> SAL_USE_VCLPLUGIN=gtk /path/to/program/soffice

You are right, starting LibreOffice from the command line using

$ SAL_USE_VCLPLUGIN=gtk /opt/libreofficedev6.4/program/soffice

(soffice:17390): Gtk-WARNING **: 20:50:06.315: Im Modulpfad »hcengine« konnte
keine Themen-Engine gefunden werden,
$

I could store my big file seeing the progress bar. 

Do I have to make this setting of the environment variable permanent or was my
trial just a proof for your conjecture? What would be necessary to make it
permanent?

But as you see from my copying from the terminal window, there is another error
message on the display.

-- 
You are receiving this mail because:
You 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 53847] Bring a tool bar to work with styles only ( is a sort of ability to 'forbid' the use of direct formatting)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53847

Cor Nouws  changed:

   What|Removed |Added

Summary|Ability to forbid the use   |Bring a tool bar to work
   |of direct formatting|with styles only ( is a
   ||sort of ability to 'forbid'
   ||the use of direct
   ||formatting)

-- 
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 124108] auto-correction of typographic quotation marks and apostrophes broken for fr_CI

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124108

Eike Rathke  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |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 53847] Bring a tool bar to work with styles only ( is a sort of ability to 'forbid' the use of direct formatting)

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53847

Cor Nouws  changed:

   What|Removed |Added

Summary|Ability to forbid the use   |Bring a tool bar to work
   |of direct formatting|with styles only ( is a
   ||sort of ability to 'forbid'
   ||the use of direct
   ||formatting)

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

[Libreoffice-bugs] [Bug 122640] Apostrophe not recognize

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122640

Eike Rathke  changed:

   What|Removed |Added

 Resolution|DUPLICATE   |INSUFFICIENTDATA

--- Comment #4 from Eike Rathke  ---
In fact I don't even know what exactly "Searching an apostrophe entered in
LibreOffice calc with a CAFR (french canadian) keyboard gives no result" is
supposed to describe. The apostrophe is part of data content? The same
apostrophe is entered in the search dialog? Or was the apostrophe in the data
converted to the localized quotation marks when typed in, hence logically can't
be found with an apostrophe?

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

[Libreoffice-bugs] [Bug 124108] auto-correction of typographic quotation marks and apostrophes broken for fr_CI

2019-08-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124108

--- Comment #14 from Eike Rathke  ---
Significantly (now listed with fr_BF as well) we use the same for all fr_*
locales where defined:

fr_BE.xml:  ‘
fr_BE.xml:  ’
fr_BE.xml:  «
fr_BE.xml:  »
fr_BF.xml:  ‘
fr_BF.xml:  ’
fr_BF.xml:  «
fr_BF.xml:  »
fr_CA.xml:  ‘
fr_CA.xml:  ’
fr_CA.xml:  «
fr_CA.xml:  »
fr_CH.xml:  ‘
fr_CH.xml:  ’
fr_CH.xml:  «
fr_CH.xml:  »
fr_FR.xml:  ‘
fr_FR.xml:  ’
fr_FR.xml:  «
fr_FR.xml:  »
fr_LU.xml:  ‘
fr_LU.xml:  ’
fr_LU.xml:  «
fr_LU.xml:  »

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

  1   2   3   4   >