[Libreoffice-commits] core.git: configure.ac

2019-06-04 Thread Tor Lillqvist (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3ced4cd5f31dfca8198ab583cebe487ef1f2a809
Author: Tor Lillqvist 
AuthorDate: Wed Jun 5 08:13:47 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 08:14:14 2019 +0300

Accept also iOS SDK 13.0

Change-Id: Ibbc731f998b00a0ea1235a961290746a849f81cf

diff --git a/configure.ac b/configure.ac
index 2122bf97d41c..37f9b6ff62e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2982,7 +2982,7 @@ dnl 
===
 if test $_os = iOS; then
 AC_MSG_CHECKING([what iOS SDK to use])
 current_sdk_ver=12.2
-older_sdk_vers="12.1 12.0 11.4"
+older_sdk_vers="13.0 12.1 12.0 11.4"
 if test "$enable_ios_simulator" = "yes"; then
 platform=iPhoneSimulator
 versionmin=-mios-simulator-version-min=11.0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-04 Thread Andrea Gelmini (via logerrit)
 forms/source/component/GroupManager.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ff22834795711df14e8ad20c503afc2598884880
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:23:26 2019 +
Commit: Julien Nabet 
CommitDate: Wed Jun 5 07:09:39 2019 +0200

Fix typo

Change-Id: I2d361544b571144e7f0f2c4190ec3e578427ec7c
Reviewed-on: https://gerrit.libreoffice.org/73475
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/forms/source/component/GroupManager.cxx 
b/forms/source/component/GroupManager.cxx
index 35fd716a47a2..a98cceb075d5 100644
--- a/forms/source/component/GroupManager.cxx
+++ b/forms/source/component/GroupManager.cxx
@@ -270,7 +270,7 @@ void SAL_CALL OGroupManager::propertyChange(const 
PropertyChangeEvent& evt)
 else if (evt.PropertyName == PROPERTY_GROUP_NAME) {
 evt.OldValue >>= sGroupName;
 if (sGroupName.isEmpty()) {
-// No prior GroupName; fallback to Nme
+// No prior GroupName; fallback to Name
 xSet->getPropertyValue( PROPERTY_NAME ) >>= sGroupName;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-04 Thread Andrea Gelmini (via logerrit)
 forms/source/component/EventThread.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0f97f545dd9764e0861be07c204029cadbdfcf76
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:23:28 2019 +
Commit: Julien Nabet 
CommitDate: Wed Jun 5 07:08:56 2019 +0200

Fix typo

Change-Id: Ib92c1a4b60e46019b4c6f89f88b9e99e5b2d497a
Reviewed-on: https://gerrit.libreoffice.org/73473
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/forms/source/component/EventThread.hxx 
b/forms/source/component/EventThread.hxx
index 363bf94acc6e..eb3062080d73 100644
--- a/forms/source/component/EventThread.hxx
+++ b/forms/source/component/EventThread.hxx
@@ -68,7 +68,7 @@ protected:
 
 // Edit an Event:
 // The mutex is not locked, but pCompImpl stays valid in any case.
-// pEvt can be a derrived type, namely the one that cloneEvent returns.
+// pEvt can be a derived type, namely the one that cloneEvent returns.
 // rControl is only set, if a Control has been passed in addEvent.
 // Because the Control is only held as a WeakRef, it can disappear in the 
meantime.
 virtual void processEvent( ::cppu::OComponentHelper* _pCompImpl,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-04 Thread Andrea Gelmini (via logerrit)
 forms/source/component/FormattedField.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5f26419865d5f3c772264d3efe655116745ebbbd
Author: Andrea Gelmini 
AuthorDate: Tue May 14 21:23:27 2019 +
Commit: Julien Nabet 
CommitDate: Wed Jun 5 07:07:59 2019 +0200

Fix typo

Change-Id: Ie8b8aeb1ebcb78cca73c6c2bc0512b2f30d245ae
Reviewed-on: https://gerrit.libreoffice.org/73474
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/forms/source/component/FormattedField.cxx 
b/forms/source/component/FormattedField.cxx
index 171387dbc026..0e5d7f157d56 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -514,7 +514,7 @@ void OFormattedModel::loaded(const EventObject& rEvent)
 {
 // HACK: our onConnectedDbColumn accesses our NumberFormatter which locks 
the solar mutex (as it doesn't have
 // an own one). To prevent deadlocks with other threads which may request 
a property from us in an
-// UI-triggered action (e.g. an tooltip) we lock the solar mutex _here_ 
before our base class locks
+// UI-triggered action (e.g. a tooltip) we lock the solar mutex _here_ 
before our base class locks
 // its own mutex (which is used for property requests)
 // alternative a): we use two mutexes, one which is passed to the 
OPropertysetHelper and used for
 // property requests and one for our own code. This would need a lot of 
code rewriting
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-04 Thread Andrea Gelmini (via logerrit)
 sfx2/source/dialog/tabdlg.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b89a6da298502e5b0d48ba36d22c4d8448b6a2cf
Author: Andrea Gelmini 
AuthorDate: Tue Jun 4 15:03:32 2019 +
Commit: Julien Nabet 
CommitDate: Wed Jun 5 07:07:20 2019 +0200

Fix typo

Change-Id: Ied69455eb0a048a9d20d72cb017fa9ba0cd655fb
Reviewed-on: https://gerrit.libreoffice.org/73472
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index f75b78a1a9f7..9cc1161769ff 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -862,7 +862,7 @@ void SfxTabDialogController::SavePosAndId()
 }
 
 /*
-Adds a page to the dialog. The Name must correspond to a entry in the
+Adds a page to the dialog. The Name must correspond to an entry in the
 TabControl in the dialog .ui
 */
 void SfxTabDialogController::AddTabPage(const OString  /* Page ID */,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-04 Thread Andrea Gelmini (via logerrit)
 0 files changed

New commits:
commit 0ec8233fe9c210e999f1b8db48e8b645e1029eeb
Author: Andrea Gelmini 
AuthorDate: Tue Jun 4 20:26:41 2019 +
Commit: Julien Nabet 
CommitDate: Wed Jun 5 07:06:52 2019 +0200

Removed executable permission on file

Change-Id: I671e4936e06a29214c65abfb402f0b3b45246f00
Reviewed-on: https://gerrit.libreoffice.org/73471
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sw/qa/extras/ooxmlexport/data/tdf125657.docx 
b/sw/qa/extras/ooxmlexport/data/tdf125657.docx
old mode 100755
new mode 100644
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: 5 commits - configure.ac extensions/source fpicker/source sd/Library_sd.mk sfx2/source sw/Module_sw.mk vcl/osx

2019-06-04 Thread Tor Lillqvist (via logerrit)
 configure.ac  |   21 +++---
 extensions/source/macosx/spotlight/OOoContentDataParser.m |2 -
 extensions/source/macosx/spotlight/OOoMetaDataParser.m|2 -
 fpicker/source/aqua/SalAquaFilePicker.mm  |2 -
 sd/Library_sd.mk  |5 ++-
 sfx2/source/appl/shutdowniconaqua.mm  |4 +-
 sw/Module_sw.mk   |4 ++
 vcl/osx/salframe.cxx  |5 ---
 8 files changed, 30 insertions(+), 15 deletions(-)

New commits:
commit 1d47a33d8874ea28e054c873d7c0c712be9dda78
Author: Tor Lillqvist 
AuthorDate: Wed Jun 5 07:13:18 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 07:44:57 2019 +0300

CppunitTest_sw_uiwriter always fails on my Retina iMac, so skip on macOS

Change-Id: I95ee6786a7a7ac0e8c62b634c8de3c25bd68bb70

diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index c6a0c5f4fa0f..644649206b1f 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -94,7 +94,9 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 CppunitTest_sw_odfexport \
 CppunitTest_sw_odfimport \
 CppunitTest_sw_txtexport \
-CppunitTest_sw_uiwriter \
+$(if $(filter-out MACOSX,$(OS)), \
+CppunitTest_sw_uiwriter \
+) \
 CppunitTest_sw_layoutwriter \
 CppunitTest_sw_mailmerge \
 CppunitTest_sw_globalfilter \
commit 1e95c8dd006147f7a94e24135396277ee2f469b8
Author: Tor Lillqvist 
AuthorDate: Wed Jun 5 02:06:00 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 07:44:57 2019 +0300

The Bluetooth code doesn't compile with macOS SDK 10.15

Change-Id: I8fffa4cef9628e6872c881cd0cbdfe85495fa324

diff --git a/configure.ac b/configure.ac
index f03615124aa4..2122bf97d41c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10354,6 +10354,10 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != 
"no"; then
 ENABLE_SDREMOTE=TRUE
 AC_MSG_CHECKING([whether to enable Bluetooth support in Impress remote 
control])
 
+if test $OS = MACOSX -a "$MAC_OS_X_VERSION_MAX_ALLOWED" -ge 101500; then
+# The Bluetooth code doesn't compile with macOS SDK 10.15
+enable_sdremote_bluetooth=no
+fi
 # If not explicitly enabled or disabled, default
 if test -z "$enable_sdremote_bluetooth"; then
 case "$OS" in
diff --git a/sd/Library_sd.mk b/sd/Library_sd.mk
index a38184c07673..85953e285575 100644
--- a/sd/Library_sd.mk
+++ b/sd/Library_sd.mk
@@ -517,6 +517,10 @@ $(eval $(call gb_Library_add_objcxxobjects,sd,\
sd/source/ui/remotecontrol/OSXNetworkService \
 ))
 
+$(eval $(call gb_Library_use_system_darwin_frameworks,sd,\
+   Foundation \
+))
+
 else # OS!=MACSOX
 
 ifeq ($(ENABLE_AVAHI),TRUE)
@@ -565,7 +569,6 @@ $(eval $(call gb_Library_add_libs,sd,\
 ))
 
 $(eval $(call gb_Library_use_system_darwin_frameworks,sd,\
-   Foundation \
IOBluetooth \
 ))
 
commit c6ab40a2dd25d94786bda82aed85f086f00f050b
Author: Tor Lillqvist 
AuthorDate: Wed Jun 5 01:19:13 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 07:44:56 2019 +0300

-[NSWindow setRestorable:] is present since 10.7

No need to use objc_msgSend().

Change-Id: I56c824e3206c37be4b60fb7d82b65c9d5e89958b

diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 761f7898d6ad..2a60c8d85f81 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -224,10 +224,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP
 
 [mpNSWindow setDelegate: static_cast >(mpNSWindow)];
 
-if( [mpNSWindow respondsToSelector: @selector(setRestorable:)])
-{
-objc_msgSend(mpNSWindow, @selector(setRestorable:), NO);
-}
+[mpNSWindow setRestorable:NO];
 const NSRect aRect = { NSZeroPoint, NSMakeSize( maGeometry.nWidth, 
maGeometry.nHeight )};
 mnTrackingRectTag = [mpNSView addTrackingRect: aRect owner: mpNSView 
userData: nil assumeInside: NO];
 
commit 4d3628ca769ce07c93e8c4629075eeb7c8dc317e
Author: Tor Lillqvist 
AuthorDate: Wed Jun 5 01:17:56 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 07:44:56 2019 +0300

The macOS SDK 10.15 has a tighter declaration of objc_msgSend()

Change-Id: I51734b92965a9fa1f06aa18017d39b4b0d532456

diff --git a/extensions/source/macosx/spotlight/OOoContentDataParser.m 
b/extensions/source/macosx/spotlight/OOoContentDataParser.m
index 89d92a8c126a..d3ecf16ffaab 100644
--- a/extensions/source/macosx/spotlight/OOoContentDataParser.m
+++ b/extensions/source/macosx/spotlight/OOoContentDataParser.m
@@ -52,7 +52,7 @@
 // So instead of this:
 // [parser setDelegate:self];
 // do this:
-objc_msgSend(parser, @selector(setDelegate:), self);
+((id (*)(id, SEL, ...))objc_msgSend)(parser, @selector(setDelegate:), 
self);
 
 [parser setShouldResolveExternalEntities:NO];
 [parser parse];
diff --git 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - solenv/bin

2019-06-04 Thread Tor Lillqvist (via logerrit)
 solenv/bin/native-code.py |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f0b9b1305fd77990e0cc3015b0d5b38fe501bbf1
Author: Tor Lillqvist 
AuthorDate: Tue Jun 4 14:58:20 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 06:39:09 2019 +0200

Add css_comp_Impress_oox_PowerPointExport

Change-Id: I17d95cce0dd69e2ba8b4ebc7045544fc5659a249
Reviewed-on: https://gerrit.libreoffice.org/73469
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 9160dece3961..aa3a03d3fd20 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -391,6 +391,8 @@ draw_constructor_list = [
 
"com_sun_star_comp_Draw_framework_module_ModuleController_get_implementation",
 # sd/util/sdd.component
 "com_sun_star_comp_draw_FormatDetector_get_implementation",
+# sd/util/sdfilt.component
+"css_comp_Impress_oox_PowerPointExport",
 # writerperfect/source/draw/wpftdraw.component
 "com_sun_star_comp_Draw_VisioImportFilter_get_implementation",
 ]
___
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' - vcl/source

2019-06-04 Thread Tor Lillqvist (via logerrit)
 vcl/source/filter/graphicfilter.cxx |   30 ++
 1 file changed, 14 insertions(+), 16 deletions(-)

New commits:
commit 36d1d9c826b6a4a82cd4c99aabfe000c5ba89153
Author: Tor Lillqvist 
AuthorDate: Tue Jun 4 14:20:45 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Wed Jun 5 06:38:49 2019 +0200

Fix "external" graphic filter code for the DISABLE_DYNLOADING case

The DISABLE_DYNLOADING case in ImpFilterLibCacheEntry::GetImportFunction()
had apparently been broken from the start, but nobody never noticed as
the common formats (PNG, JPEG, GIF etc) use a more "internal"code
path. The problem was noticed now with a TIFF image in a presentation.

The fix for the import case seems to work, but I could not test the
fix for the export case.

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

diff --git a/vcl/source/filter/graphicfilter.cxx 
b/vcl/source/filter/graphicfilter.cxx
index 1307f31817bf..61c38ec51067 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -721,27 +721,27 @@ PFilterCall ImpFilterLibCacheEntry::GetImportFunction()
 else if (maFormatName == "iti")
 mpfnImport = 
reinterpret_cast(maLibrary.getFunctionSymbol("itiGraphicImport"));
  #else
-if (maFiltername ==  "icd")
+if (maFormatName ==  "icd")
 mpfnImport = icdGraphicImport;
-else if (maFiltername ==  "idx")
+else if (maFormatName ==  "idx")
 mpfnImport = idxGraphicImport;
-else if (maFiltername ==  "ime")
+else if (maFormatName ==  "ime")
 mpfnImport = imeGraphicImport;
-else if (maFiltername ==  "ipb")
+else if (maFormatName ==  "ipb")
 mpfnImport = ipbGraphicImport;
-else if (maFiltername ==  "ipd")
+else if (maFormatName ==  "ipd")
 mpfnImport = ipdGraphicImport;
-else if (maFiltername ==  "ips")
+else if (maFormatName ==  "ips")
 mpfnImport = ipsGraphicImport;
-else if (maFiltername ==  "ipt")
+else if (maFormatName ==  "ipt")
 mpfnImport = iptGraphicImport;
-else if (maFiltername ==  "ipx")
+else if (maFormatName ==  "ipx")
 mpfnImport = ipxGraphicImport;
-else if (maFiltername ==  "ira")
+else if (maFormatName ==  "ira")
 mpfnImport = iraGraphicImport;
-else if (maFiltername ==  "itg")
+else if (maFormatName ==  "itg")
 mpfnImport = itgGraphicImport;
-else if (maFiltername ==  "iti")
+else if (maFormatName ==  "iti")
 mpfnImport = itiGraphicImport;
  #endif
 }
@@ -1893,9 +1893,7 @@ ErrCode GraphicFilter::ExportGraphic( const Graphic& 
rGraphic, const OUString& r
 
 FilterConfigItem aConfigItem( pFilterData );
 OUString aFilterName( pConfig->GetExportFilterName( nFormat ) );
-#ifndef DISABLE_DYNLOADING
 OUString aExternalFilterName(pConfig->GetExternalFilterName(nFormat, 
true));
-#endif
 ErrCode nStatus = ERRCODE_NONE;
 GraphicType eType;
 Graphic aGraphic = ImpGetScaledGraphic( rGraphic, aConfigItem );
@@ -2187,11 +2185,11 @@ ErrCode GraphicFilter::ExportGraphic( const Graphic& 
rGraphic, const OUString& r
  #else
 --nIdx; // Just one iteration
 PFilterCall pFunc = NULL;
-if (aFilterName == "egi")
+if (aExternalFilterName == "egi")
 pFunc = egiGraphicExport;
-else if (aFilterName == "eps")
+else if (aExternalFilterName == "eps")
 pFunc = epsGraphicExport;
-else if (aFilterName == "eti")
+else if (aExternalFilterName == "eti")
 pFunc = etiGraphicExport;
  #endif
 if( pFunc )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 86449] Crash importing malformed .rtf

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86449

Shawn  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Ever confirmed|1   |0
 Resolution|FIXED   |---

--- Comment #8 from Shawn  ---
This might be the possible sol to the .rtf problem, but I'm not completely
sure.
https://www.youtube.com/watch?v=Ty99PDGnyRI

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

[Libreoffice-bugs] [Bug 125694] Save most current used colors

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125694

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #1 from V Stuart Foote  ---
No, recent colors are intentionally transient stanzas in user profile.

Rather than a work flow depending on that listing we provide user ability to
build a "custom" palette in their profile within the GUI, which can be reused
in multiple documents.

Open the Area dialog's -> Color tab, or the Character dialog's Highlighting ->
Color tabb; the recent colors are there to pick and add to the built-in custom
palette. The RGB HEX color values of the picker are written as decimal values
with names into the user profile (registrymodifications.xcu) where they can be
edited outside of a LO session.  

The Document colors palette has a few functional issues--but is intended to
provide the same reusable palette colors recorded to profile, and can be saved
to document template (as Hex values--without color name) for portability.

And in addition to the provided Custom palette in user profile, it is trivial
to build a palette of color tupples in a text editor outside of the GUI, and
add to your LO installation share/palette directory with a name of your choice.
 Have a look at a .soc file in that directory for file format. The color names
and Hex values of the .soc will be used in the GUI.

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

[Libreoffice-bugs] [Bug 65535] Adding a comment in the middle of a word makes it recognised as misspelt by spellchecker

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65535

--- Comment #19 from stragu  ---
Created attachment 151919
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151919=edit
bug as seen in LO Writer 6.2

Confirmed in both 6.2 and 6.3 branches:

- Commenting inside a word / on a range inside a word makes the word being
detected as misspelled (you might have to keep writing a bit more text for
spellcheck to notice it)
- The spellcheck window shows the word with a "IAA" rectangle where the comment
is located
- Correcting the word as suggested removes the comment

I can't reproduce Gordo's issue though (with a letter being added inside the
word when ignoring).

Details about versions:

Version: 6.2.4.2
Build ID: 1:6.2.4-0ubuntu0.18.04.1~lo1
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); UI-Language: en-GB
Calc: threaded

Version: 6.3.0.0.alpha1
Build ID: 547edd20e527fb02900f6174973770d26306e2e7
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.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 125386] Export as PNG is NOT scaling up when using Multi-language.

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125386

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 118974] Writer Spell check slow

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118974

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 125380] FILESAVE XLSX write includes col record incompatible with LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125380

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 118974] Writer Spell check slow

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118974

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

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

[Libreoffice-bugs] [Bug 125380] FILESAVE XLSX write includes col record incompatible with LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125380

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 125407] Special character dialog doesn't work anymore

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125407

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 125678] Crash on slideshow

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125678

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

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

[Libreoffice-bugs] [Bug 125380] FILESAVE XLSX write includes col record incompatible with LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125380

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

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

[Libreoffice-bugs] [Bug 125390] Gtk3 theme settings with small sizes for scrollbars make them unusable

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125390

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 125678] Crash on slideshow

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125678

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 125416] LibreOffice Impress embed video broken outside slide

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125416

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 112553] UI: Google drive and One drive are not available on Remote files.

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112553

--- Comment #8 from QA Administrators  ---
Dear m.a.riosv,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117434] Add to Dictionary Only Affects Current Cell Instead of Whole Document

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117434

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 113027] Editing F4 (Sheet - Cycle Cell Reference Types) doesn't cycle remote references with space in sheet name

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113027

--- Comment #2 from QA Administrators  ---
Dear John Russell,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 65535] Adding a comment in the middle of a word makes it recognised as misspelt by spellchecker

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65535

--- Comment #18 from QA Administrators  ---
Dear stragu,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117905] Coinmarketcap api doesn't work anymore

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117905

--- Comment #10 from QA Administrators  ---
Dear spamgoeshere,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 38014] Pressing Ctrl+Shift+Enter doesn't switch to array mode

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38014

--- Comment #17 from QA Administrators  ---
Dear Pedro,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117998] Not all of the spreadsheet themes are working

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117998

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 75662] All of LibO 4.x hangs if Base is running when switching between video console and RDP session

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75662

--- Comment #27 from QA Administrators  ---
Dear Brolin Empey,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 74586] EDITING: Content seems to be lost when sort data with header in merged cells

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74586

--- Comment #10 from QA Administrators  ---
Dear robert,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 112664] NSAccessibility - Remote Files dialog fails accessibility audit

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112664

--- Comment #2 from QA Administrators  ---
Dear Alex Thurgood,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 117818] CHAPTER NUMBERING DIALOG: Preview doesn't work as expected (steps in comment 1)

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117818

--- Comment #11 from QA Administrators  ---
Dear Nithin,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 106586] Android viewer displays garbage when panning / zooming spreadsheets

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106586

Keith Curtis  changed:

   What|Removed |Added

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

--- Comment #7 from Keith Curtis  ---
Zoom doesn't seem to work, but I don't see the redraw problems anymore.

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

[Libreoffice-bugs] [Bug 125683] Find and Replace fails to detect specified search characters in Calc Formulas

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125683

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
Please be sure you have no marked 'Entire cell' under Find box.

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

[Libreoffice-bugs] [Bug 125694] New: Save most current used colors

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125694

Bug ID: 125694
   Summary: Save most current used colors
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rthu...@gmail.com

Description:
The 4-6 last used colors on the background color picker should be saved for
reuse across documents. I use the same color-coding in all my documents and am
constantly having to pick out my colors from the palette instead of from a
recent pick list. Currently colors are not saved across documents or after
closing the app.

Steps to Reproduce:
1.select and use a background color
2.close and open new document (especially if after a few hours)
3.Try to select color from frequent used pick list (below palette)

Actual Results:
Usually no recent colors are shown to select from

Expected Results:
expect to see last half dozen used colors


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:

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

[Libreoffice-bugs] [Bug 102304] AutoLayout textbox background fill should appear even without text

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102304

Aron Budea  changed:

   What|Removed |Added

   Keywords|notBibisectable |preBibisect
 CC||ba...@caesar.elte.hu

--- Comment #4 from Aron Budea  ---
Still in 6.3.0.0.alpha1+ (1376bb3e44c4b9eb15cf788df04f7cc0bba8cb09) / Ubuntu
18.04.

Let's use keyword preBibisect, as bug is already in oldest commit of
bibisect-43all.

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

[Libreoffice-bugs] [Bug 114223] RTL/LTR buttons don't appear before restart when CTL is enabled

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114223

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected
 CC||ba...@caesar.elte.hu

--- Comment #9 from Aron Budea  ---
Bibsected to the following range using repo bibisect-43all:
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=19f4ebd8a54da0ae03b9cc8481613e5cd20ee1e7..a43a76cd5aa2f145f2cb43fcdbc8f21fb6c89af0

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

[Libreoffice-bugs] [Bug 125693] New: Print dialogue lacks english

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125693

Bug ID: 125693
   Summary: Print dialogue lacks english
   Product: LibreOffice
   Version: 6.3.0.0.beta1+
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aosd...@gmail.com

On a Mac using macOS 10.12 go to /Applications/LibreOfficeDev.
Invoke «Show Package Contents»
Go to «Contents/Resources»
This directory is missing «en.lproj»

I copied this directory from LODev 6.2.5 and inserted it into LODev 6.3.0 beta1
This appears to have solved the problem.

Is this the same as Bug# 109090?

-- 
You are receiving this mail because:
You 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-06-04 Thread Jay Bingham (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c30ea50dd2b1c557dfbefc1a4c660fbf2402a604
Author: Jay Bingham 
AuthorDate: Mon Jun 3 13:59:33 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Wed Jun 5 00:58:43 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - Refactor RegExp Help page with improved contents

1) Mute some l10n strings

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

diff --git a/helpcontent2 b/helpcontent2
index 9a0f4fb18ab7..41a83520a0f8 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 9a0f4fb18ab7832dbafb4b789279411f5aa8cecd
+Subproject commit 41a83520a0f8a1a84619324291d3b1c1e2a2ee15
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-06-04 Thread Jay Bingham (via logerrit)
 source/text/shared/01/0211.xhp |  257 -
 1 file changed, 167 insertions(+), 90 deletions(-)

New commits:
commit 41a83520a0f8a1a84619324291d3b1c1e2a2ee15
Author: Jay Bingham 
AuthorDate: Mon Jun 3 13:59:33 2019 -0300
Commit: Olivier Hallot 
CommitDate: Wed Jun 5 00:58:43 2019 +0200

Refactor RegExp Help page with improved contents

1) Mute some l10n strings

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

diff --git a/source/text/shared/01/0211.xhp 
b/source/text/shared/01/0211.xhp
index b4d037dd5..1f4b2dc77 100644
--- a/source/text/shared/01/0211.xhp
+++ b/source/text/shared/01/0211.xhp
@@ -27,6 +27,11 @@
 
 
 regular expressions; list of
+regular expressions; new line
+regular expressions; empty paragraph
+regular expressions; begin of word
+regular expressions; begin of paragraph
+regular expressions; end of paragraph
 lists; regular expressions
 replacing; tab stops (regular expressions)
 tab stops; regular expressions
@@ -37,10 +42,10 @@
 
   
 
-  Character
+  Term
 
 
-  Result/Use
+  Representation/Use
 
   
   
@@ -48,96 +53,100 @@
   Any 
character
 
 
-  Represents the given character unless otherwise 
specified.
+The given character unless it is a regular expression meta 
character, which follow in this table.
 
   
   
 
-  .
+  .
 
 
-  Represents any single character except for a line break or 
paragraph break. For example, the search term "sh.rt" returns both "shirt" and 
"short".
+Any 
single character except a line break or a paragraph break. For example, the 
search term "sh.rt" matches both "shirt" and "short".
 
   
   
 
-^
+^
 
 
-  Only 
finds the search term if the term is at the beginning of a paragraph. Special 
objects such as empty fields or character-anchored frames, at the beginning of 
a paragraph are ignored. Example: "^Peter".
+The 
beginning of a paragraph or cell. Special objects such as empty fields or 
character-anchored frames, at the beginning of a paragraph are ignored. 
Example: "^Peter" matches the word "Peter" only when it is the first word of a 
paragraph.
+
 
   
   
 
-$
+$
 
 
-  Only 
finds the search term if the term appears at the end of a paragraph. Special 
objects such as empty fields or character-anchored frames at the end of a 
paragraph are ignored. Example: "Peter$".
+The 
end of a paragraph or cell. Special objects such as empty fields or 
character-anchored frames at the end of a paragraph are ignored. Example: 
"Peter$" matches only when the word "Peter" is the last word of a paragraph, 
note "Peter" cannot be followed by a period.
   $ on 
its own matches the end of a paragraph. This way it is possible to search and 
replace paragraph breaks.
 
   
   
 
-*
+*
 
 
-  Finds 
zero or more of the characters in front of the "*". For example, "Ab*c" finds 
"Ac", "Abc", "Abbc", "Abbbc", and so on.
+Zero or more of the regular expression term immediately 
preceding it. For example, "Ab*c" matches "Ac", "Abc", "Abbc", "Abbbc", and so 
on.
+
 
   
   
 
-+
++
 
 
-  Finds 
one or more of the characters in front of the "+". For example, "AX.+4" finds 
"AXx4", but not "AX4".
-  The 
longest possible string that matches this search pattern in a paragraph is 
always found. If the paragraph contains the string "AX 4 AX4", the entire 
passage is highlighted.
+One 
or more of the regular expression term immediately preceding it. For example, 
"AX.+4" finds "AXx4", but not "AX4".
+The 
longest possible string that matches this regular expression in a paragraph is 
always matched. If the paragraph contains the string "AX 4 AX4", the entire 
passage is highlighted.
 
   
   
 
-?
+?
 
 
-  Finds 
zero or one of the characters in front of the "?". For example, "Texts?" finds 
"Text" and "Texts" and "x(ab|c)?y" finds "xy", "xaby", or "xcy".
+Zero or one of the regular expression term immediately 
preceding it. For example, "Texts?" matches "Text" and "Texts" and "x(ab|c)?y" 
finds "xy", "xaby", or "xcy".
 
   
   
 
-\
+\
 
 
-  Search interprets the special character that follows the 
"\" as a normal character and not as a regular expression (except for the 
combinations \n, \t, \, and \). For example, "tree\." finds "tree.", 
not "treed" or "trees".
+The 
special character that follows it is interpreted as a normal character and not 
as a regular expression meta character (except for the combinations "\n", "\t", 
"\b", "\" and "\"). For example, "tree\." matches "tree.", not "treed" 

[Libreoffice-bugs] [Bug 92472] FILEOPEN: First legacy checkbox in row has too large dimensions on docx import

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92472

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
   Keywords|bibisectRequest |preBibisect

--- Comment #12 from Aron Budea  ---
Already buggy in first commit of bibisect-43all. => preBibisect

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

[Libreoffice-bugs] [Bug 105948] [META] Undo/Redo bugs and enhancements

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948
Bug 105948 depends on bug 109151, which changed state.

Bug 109151 Summary: Undo actions are not grouped when deleting with Track 
Changes set
https://bugs.documentfoundation.org/show_bug.cgi?id=109151

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946
Bug 83946 depends on bug 109151, which changed state.

Bug 109151 Summary: Undo actions are not grouped when deleting with Track 
Changes set
https://bugs.documentfoundation.org/show_bug.cgi?id=109151

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 109151] Undo actions are not grouped when deleting with Track Changes set

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109151

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||ba...@caesar.elte.hu
   Keywords|bibisectRequest |preBibisect
 Status|NEW |RESOLVED

--- Comment #9 from Aron Budea  ---
Seems to work as expected now, closing as WFM.

Version: 6.3.0.0.alpha1+
Build ID: 1376bb3e44c4b9eb15cf788df04f7cc0bba8cb09
CPU threads: 16; OS: Linux 4.15; 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 123190] Erroneous additional space in Math formula object

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123190

Aron Budea  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Windows (All)   |All
   Keywords|bibisectRequest, regression |
 CC||ba...@caesar.elte.hu
Version|3.5.7.2 release |Inherited From OOo

--- Comment #6 from Aron Budea  ---
Seems the same in 3.3.0 / Ubuntu 18.04. Let's say it's not a regression.

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

[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-1' - 13 commits - brand/cib configure.ac desktop/source download.lst external/curl icon-themes/cib instsetoo_native/inc_common instseto

2019-06-04 Thread Marina Latini (CIB) (via logerrit)
Rebased ref, commits from common ancestor:
commit 4e61eb25cc3013ce7b48f2eafc7784bf880b9395
Author: Marina Latini (CIB) 
AuthorDate: Mon May 20 15:18:34 2019 +0200
Commit: Katarina Behrens 
CommitDate: Tue Jun 4 16:23:01 2019 +0200

Final CIB branding and last edits to config files

Change-Id: Id583453910f50839dbe1f114afc5c6a4aa6c2e07

diff --git a/brand/cib/Image.svg b/brand/cib/Image.svg
new file mode 100644
index ..369941585b61
--- /dev/null
+++ b/brand/cib/Image.svg
@@ -0,0 +1,306 @@
+
+
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   version="1.1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 162 312"
+   xml:space="preserve"
+   id="svg3336"
+   inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+   sodipodi:docname="Image.svg"
+   width="162"
+   height="312"
+   
inkscape:export-filename="C:\cygwin\home\Marina\lode\dev\FLOSS-194\instsetoo_native\inc_common\windows\msi_templates\Binary\ImageBanner.bmp.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">image/svg+xmlhttp://purl.org/dc/dcmitype/StillImage; 
/>
+  .cls-1 {
+fill: #961e29;
+  }
+
+  .cls-2 {
+fill: #fff;
+  }
+
+  .cls-1 {
+fill: #961e29;
+  }
+
+  .cls-2 {
+fill: #fff;
+  }
+
+
+   .st0{display:none;}
+   .st1{display:inline;}
+   .st2{fill:#5FA243;}
+   .st3{fill:#FF;}
+   .st4{fill-rule:evenodd;clip-rule:evenodd;fill:#FF;}
+   .st5{fill:#C12521;}
+   .st6{clip-path:url(#SVGID_2_);fill:#FF;}
+   .st7{display:inline;fill:#5FA243;}
+   .st8{display:inline;fill:#C12521;}
+   .st9{display:inline;fill:#FF;}
+   .st10{clip-path:url(#SVGID_4_);fill:#FF;}
+   .st11{font-family:'CIBUnit';}
+   .st12{font-size:17px;}
+
+
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   powered
 by
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/brand/cib/banner.svg b/brand/cib/banner.svg
new file mode 100644
index ..9b03d38ea183
--- /dev/null
+++ b/brand/cib/banner.svg
@@ -0,0 +1,306 @@
+
+
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   version="1.1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 499 58"
+   xml:space="preserve"
+   id="svg3336"
+   inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+   sodipodi:docname="banner.svg"
+   width="499"
+   height="58"
+   
inkscape:export-filename="C:\cygwin\home\Marina\lode\dev\FLOSS-194\brand\cib\intro-highres.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">image/svg+xmlhttp://purl.org/dc/dcmitype/StillImage; 
/>
+  .cls-1 {
+fill: #961e29;
+  }
+
+  .cls-2 {
+fill: #fff;
+  }
+
+  .cls-1 {
+fill: #961e29;
+  }
+
+  .cls-2 {
+fill: #fff;
+  }
+
+
+   .st0{display:none;}
+   .st1{display:inline;}
+   .st2{fill:#5FA243;}
+   .st3{fill:#FF;}
+   .st4{fill-rule:evenodd;clip-rule:evenodd;fill:#FF;}
+   .st5{fill:#C12521;}
+   .st6{clip-path:url(#SVGID_2_);fill:#FF;}
+   .st7{display:inline;fill:#5FA243;}
+   .st8{display:inline;fill:#C12521;}
+   .st9{display:inline;fill:#FF;}
+   .st10{clip-path:url(#SVGID_4_);fill:#FF;}
+   .st11{font-family:'CIBUnit';}
+   .st12{font-size:17px;}
+
+
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   

[Libreoffice-bugs] [Bug 108771] [META] DOCX (OOXML) page-related issues

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108771
Bug 108771 depends on bug 106073, which changed state.

Bug 106073 Summary: FILEOPEN: DOCX has a different page count in LibreOffice
https://bugs.documentfoundation.org/show_bug.cgi?id=106073

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 106073] FILEOPEN: DOCX has a different page count in LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106073

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
   Keywords|bibisectRequest |bibisectNotNeeded
 Status|NEW |RESOLVED
 CC||ba...@caesar.elte.hu

--- Comment #4 from Aron Budea  ---
Checked in Ubuntu 18.04, and in LO 6.1.0.3 it has 129 pages, but in 6.2.0.3 it
has 130. Closing as WFM.

-- 
You are receiving this mail because:
You 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 'aoo/trunk' - default_images/sfx2

2019-06-04 Thread Matthias Seidel (via logerrit)
 dev/null |binary
 1 file changed

New commits:
commit 2e0153f530d6c23649e01ca7a1f1e12a5093e1e5
Author: Matthias Seidel 
AuthorDate: Tue Jun 4 21:56:10 2019 +
Commit: Matthias Seidel 
CommitDate: Tue Jun 4 21:56:10 2019 +

Remove unused animated graphics (StarDivision logo?)

diff --git a/default_images/sfx2/res/an01.png b/default_images/sfx2/res/an01.png
deleted file mode 100644
index b9dfc058c0a2..
Binary files a/default_images/sfx2/res/an01.png and /dev/null differ
diff --git a/default_images/sfx2/res/an02.png b/default_images/sfx2/res/an02.png
deleted file mode 100644
index 752ec39bf8e9..
Binary files a/default_images/sfx2/res/an02.png and /dev/null differ
diff --git a/default_images/sfx2/res/an03.png b/default_images/sfx2/res/an03.png
deleted file mode 100644
index ce195e595fb6..
Binary files a/default_images/sfx2/res/an03.png and /dev/null differ
diff --git a/default_images/sfx2/res/an04.png b/default_images/sfx2/res/an04.png
deleted file mode 100644
index 8c0de0f47493..
Binary files a/default_images/sfx2/res/an04.png and /dev/null differ
diff --git a/default_images/sfx2/res/an05.png b/default_images/sfx2/res/an05.png
deleted file mode 100644
index b61b012b0a17..
Binary files a/default_images/sfx2/res/an05.png and /dev/null differ
diff --git a/default_images/sfx2/res/an06.png b/default_images/sfx2/res/an06.png
deleted file mode 100644
index b72d8ba80608..
Binary files a/default_images/sfx2/res/an06.png and /dev/null differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 125380] FILESAVE XLSX write includes col record incompatible with LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125380

--- Comment #4 from SheetJS  ---
Created attachment 151918
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151918=edit
Modified file with equivalent col structure

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

[Libreoffice-bugs] [Bug 119818] Right table border disappearing for 1/2 sec when holding space

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119818

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |notBibisectable

--- Comment #4 from Aron Budea  ---
I could repro in Linux with zoom level 250%, and bibisect using repo
bibisect-42max, however the result commit seems wrong. Marking as
notBibisectable.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=b8002169336b6b7597d32755e41fa3dc2688539e
author  Michael Stahl2013-11-06 16:36:04
+0100
committer   Michael Stahl2013-11-07 14:27:50
-0600

remove INPATH and PROEXT

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

[Libreoffice-bugs] [Bug 125380] FILESAVE XLSX write includes col record incompatible with LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125380

--- Comment #3 from SheetJS  ---
A file generated from LibreOffice was attached.  The relevant segment is in the
`cols` xml block from the `xl/worksheets/sheet1.xml` entry within the file:

```xml
  



  
```

The "max" field in the third col entry is "1025".  That column maps to the name
"AMK", which is beyond the AMJ max column that LibreOffice currently supports.

As far as Excel is concerned, the previous block is equivalent to

```
  




  
```

But when you make that change (see second attachment) LibreOffice complains

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

[Libreoffice-bugs] [Bug 125380] FILESAVE XLSX write includes col record incompatible with LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125380

--- Comment #2 from SheetJS  ---
Created attachment 151917
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151917=edit
Example XLSX from LO

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

[Libreoffice-bugs] [Bug 103444] [META] Slide transition deck/tab of the sidebar

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103444
Bug 103444 depends on bug 125525, which changed state.

Bug 125525 Summary: Pressing F5 after selecting a transition on sidebar doesn't 
start slideshow
https://bugs.documentfoundation.org/show_bug.cgi?id=125525

   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 103610] [META] Slide show (presentation mode) bugs and enhancements

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103610
Bug 103610 depends on bug 125525, which changed state.

Bug 125525 Summary: Pressing F5 after selecting a transition on sidebar doesn't 
start slideshow
https://bugs.documentfoundation.org/show_bug.cgi?id=125525

   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 112984] Invisible shapes in doc

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112984

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |preBibisect

--- Comment #7 from Aron Budea  ---
Already in oldest of bibisect-43all.
Note that a difference between Writer and Word is that even in versions <3.5
and in AOO, Writer only displays the circles if formatting marks are set to be
displayed.

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

2019-06-04 Thread Mike Kaganski (via logerrit)
 sw/qa/extras/ooxmlexport/data/tdf125657.docx |binary
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx   |   25 +
 sw/source/filter/ww8/docxattributeoutput.cxx |8 
 3 files changed, 29 insertions(+), 4 deletions(-)

New commits:
commit 66a5ab79b0a67e67ce196557ae4e768460807d98
Author: Mike Kaganski 
AuthorDate: Tue Jun 4 17:08:04 2019 +1000
Commit: Mike Kaganski 
CommitDate: Tue Jun 4 23:31:35 2019 +0200

tdf#125657: restore conversion of a:srcRect attributes to integers

Regression from commit 1fe24bb1e2fbe44a4bf2c03297e259b3a18b1235

Change-Id: I5597fe6a7f7c54ad9bf2634eba5245e2e4a1efbf
Reviewed-on: https://gerrit.libreoffice.org/73430
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 
(cherry picked from commit 166aafde5b716dfeb5325e7d1bee1c163ab56b12)
Reviewed-on: https://gerrit.libreoffice.org/73452

diff --git a/sw/qa/extras/ooxmlexport/data/tdf125657.docx 
b/sw/qa/extras/ooxmlexport/data/tdf125657.docx
new file mode 100755
index ..eeaad7a4bb3d
Binary files /dev/null and b/sw/qa/extras/ooxmlexport/data/tdf125657.docx differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
index edbc0964685d..804d25b9612e 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport13.cxx
@@ -323,6 +323,31 @@ DECLARE_OOXMLIMPORT_TEST(testTdf121784, "tdf121784.docx")
 CPPUNIT_ASSERT_EQUAL( OUString( "i" ), getRun( getParagraph( 2 ), 3 
)->getString());
 }
 
+DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf125657, "tdf125657.docx")
+{
+xmlDocPtr pXmlDoc = parseExport("word/document.xml");
+CPPUNIT_ASSERT(pXmlDoc);
+auto checkAttrIsInt = [&](const OString& sAttrName) {
+OUString sAttr = getXPath(pXmlDoc,
+  
"/w:document/w:body/w:p[1]/w:r[1]/w:drawing/wp:inline/a:graphic/"
+  
"a:graphicData/pic:pic/pic:blipFill/a:srcRect",
+  sAttrName);
+OString sAssertMsg("Attribute " + sAttrName + " value " + 
sAttr.toUtf8()
+   + " is not a valid integer");
+CPPUNIT_ASSERT_MESSAGE(sAssertMsg.getStr(), !sAttr.isEmpty());
+// Only decimal characters allowed, optionally prepended with '-'; no 
'.'
+CPPUNIT_ASSERT_MESSAGE(sAssertMsg.getStr(),
+   sAttr[0] == '-' || (sAttr[0] >= '0' && sAttr[0] 
<= '9'));
+for (sal_Int32 i = 1; i < sAttr.getLength(); ++i)
+CPPUNIT_ASSERT_MESSAGE(sAssertMsg.getStr(), sAttr[i] >= '0' && 
sAttr[i] <= '9');
+};
+// check that we export all coordinates of srcRect as integers
+checkAttrIsInt("l");
+checkAttrIsInt("t");
+checkAttrIsInt("r");
+checkAttrIsInt("b");
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 6e7fa0632e0d..472649c7585a 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4668,10 +4668,10 @@ void DocxAttributeOutput::WriteSrcRect(const SdrObject* 
pSdrObj, const SwFrameFo
 double  widthMultiplier  = 10.0/aOriginalSize.Width();
 double  heightMultiplier = 10.0/aOriginalSize.Height();
 
-double left   = nCropL * widthMultiplier;
-double right  = nCropR * widthMultiplier;
-double top= nCropT * heightMultiplier;
-double bottom = nCropB * heightMultiplier;
+sal_Int32 left   = static_cast(rtl::math::round(nCropL * 
widthMultiplier));
+sal_Int32 right  = static_cast(rtl::math::round(nCropR * 
widthMultiplier));
+sal_Int32 top= static_cast(rtl::math::round(nCropT * 
heightMultiplier));
+sal_Int32 bottom = static_cast(rtl::math::round(nCropB * 
heightMultiplier));
 
 m_pSerializer->singleElementNS( XML_a, XML_srcRect,
  XML_l, OString::number(left),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 99838] EDITING: Converting text to curve doesn't convert characters not found in font.

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99838

Aron Budea  changed:

   What|Removed |Added

   Keywords|bibisectRequest |preBibisect

--- Comment #12 from Aron Budea  ---
Bug already in oldest commit of bibisect-43all.

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

[Libreoffice-bugs] [Bug 90931] 'Apply Style' drop down doesnt show accurate style previews

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90931

Jim Raykowski  changed:

   What|Removed |Added

 CC||rayk...@gmail.com

--- Comment #6 from Jim Raykowski  ---
I noticed when both Calc and Writer sidebar Styles decks are open, style
preview display of both decks follow behavior of the module with focus. When
Writer has focus, Calc Styles with the same style name display as in Writer
Styles deck. The opposite happens when Calc has focus.

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

[Libreoffice-bugs] [Bug 124443] AutoInput tooltip positioning is inconsistent when editing formula, covering different parts of UI

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124443

--- Comment #2 from aSystemOverload  ---
Still an issue in:
Version: 6.2.4.2.0+  Build ID: 6.2.4-1
CPU threads: 4; OS: Linux 5.1; UI render: default; VCL: kde5; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-GB
Calc: threaded

Waiting for 6.3 version in Arch Repositories.

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

[Libreoffice-bugs] [Bug 125681] Clicking on Insert Symbol crash a document window

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125681

Xisco Faulí  changed:

   What|Removed |Added

 OS|Linux (All) |All
   Hardware|x86-64 (AMD64)  |All

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

[Bug 79641] LibreOffice 4.4 most annoying bugs

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 88194, which changed state.

Bug 88194 Summary: freeze when paste into lots of cells (cell with comment)
https://bugs.documentfoundation.org/show_bug.cgi?id=88194

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 79641] LibreOffice 4.4 most annoying bugs

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 88194, which changed state.

Bug 88194 Summary: freeze when paste into lots of cells (cell with comment)
https://bugs.documentfoundation.org/show_bug.cgi?id=88194

   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 88194] freeze when paste into lots of cells (cell with comment)

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88194

Xisco Faulí  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |WORKSFORME

--- Comment #11 from Xisco Faulí  ---
Even if bug 76324 is open, it doesn't mean we have to reopen all similar bugs.
According to comment 8, this particular case is not reproducible in 5.5
Please, do not reopen it, specially after more than 4 years since it was
closed.

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - sw/qa sw/source

2019-06-04 Thread Regina Henschel (via logerrit)
 sw/qa/extras/ww8export/data/tdf118375_240degClockwise.doc |binary
 sw/qa/extras/ww8export/ww8export3.cxx |   23 ++
 sw/source/filter/ww8/wrtw8esh.cxx |   30 ++
 sw/source/filter/ww8/ww8graf.cxx  |   11 +
 4 files changed, 64 insertions(+)

New commits:
commit 4977bf684097247d7121a43d6d3e9374684b0d07
Author: Regina Henschel 
AuthorDate: Tue Apr 2 21:36:57 2019 +0200
Commit: Aron Budea 
CommitDate: Tue Jun 4 22:55:20 2019 +0200

tdf#118375, tdf#70838 correct position of rotated shape in doc

Word relates the position to the unrotated shape in legacy doc
format. Writer uses the rotated shape. The patch corrects the
difference on import and export.

Reviewed-on: https://gerrit.libreoffice.org/70152
Tested-by: Jenkins
Reviewed-by: Regina Henschel 
(cherry picked from commit 421e6fc3cd2e6fe37afbef341e2d0ad7b8edde37)

Change-Id: I25537123656e62d6ffae5118ee8d621a4b5c5be0

diff --git a/sw/qa/extras/ww8export/data/tdf118375_240degClockwise.doc 
b/sw/qa/extras/ww8export/data/tdf118375_240degClockwise.doc
new file mode 100644
index ..99d15e20cea5
Binary files /dev/null and 
b/sw/qa/extras/ww8export/data/tdf118375_240degClockwise.doc differ
diff --git a/sw/qa/extras/ww8export/ww8export3.cxx 
b/sw/qa/extras/ww8export/ww8export3.cxx
index 84f9e2f2d6cf..32b4197452b1 100644
--- a/sw/qa/extras/ww8export/ww8export3.cxx
+++ b/sw/qa/extras/ww8export/ww8export3.cxx
@@ -106,6 +106,29 @@ DECLARE_WW8EXPORT_TEST(testTdf94009_zeroPgMargin, 
"tdf94009_zeroPgMargin.odt")
 CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(defaultStyle, 
"TopMargin"));
 }
 
+DECLARE_WW8EXPORT_TEST(testTdf118375export, "tdf118375_240degClockwise.doc")
+{
+// The input document has one custom shape, which is rotated 240deg. Check
+// that it has the same position as in Word.
+uno::Reference xDrawPagesSupplier(mxComponent,
+   
uno::UNO_QUERY_THROW);
+CPPUNIT_ASSERT_MESSAGE("Could not get XDrawPagesSupplier", 
xDrawPagesSupplier.is());
+uno::Reference 
xDrawPages(xDrawPagesSupplier->getDrawPages());
+uno::Reference xDrawPage(xDrawPages->getByIndex(0), 
uno::UNO_QUERY_THROW);
+CPPUNIT_ASSERT_MESSAGE("Could not get xDrawPage", xDrawPage.is());
+uno::Reference xShape(xDrawPage->getByIndex(0), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT_MESSAGE("Could not get xShape", xShape.is());
+uno::Reference xShapeProps(xShape, uno::UNO_QUERY);
+CPPUNIT_ASSERT_MESSAGE("Could not get the shape properties", 
xShapeProps.is());
+sal_Int32 nPosX, nPosY;
+xShapeProps->getPropertyValue("HoriOrientPosition") >>= nPosX;
+xShapeProps->getPropertyValue("VertOrientPosition") >>= nPosY;
+// Allow some tolerance because rounding errors through integer arithmethic
+// in rotation.
+CPPUNIT_ASSERT_DOUBLES_EQUAL(5200.0, static_cast(nPosX), 1.0);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(1152.0, static_cast(nPosY), 1.0);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/wrtw8esh.cxx 
b/sw/source/filter/ww8/wrtw8esh.cxx
index 0ae92a2aec2d..e1655946c80c 100644
--- a/sw/source/filter/ww8/wrtw8esh.cxx
+++ b/sw/source/filter/ww8/wrtw8esh.cxx
@@ -663,6 +663,7 @@ void PlcDrawObj::WritePlc( WW8Export& rWrt ) const
 WinwordAnchoring::ConvertPosition( rHOr, rVOr, rFormat );
 
 Point aObjPos;
+bool bHasHeightWidthSwapped(false);
 if (RES_FLYFRMFMT == rFormat.Which())
 {
 SwRect aLayRect(rFormat.FindLayoutRect(false, ));
@@ -698,6 +699,7 @@ void PlcDrawObj::WritePlc( WW8Export& rWrt ) const
 const long nHeight = aRect.getHeight();
 aRect.setWidth( nHeight );
 aRect.setHeight( nWidth );
+bHasHeightWidthSwapped = true;
 }
 }
 }
@@ -759,6 +761,34 @@ void PlcDrawObj::WritePlc( WW8Export& rWrt ) const
 //Nasty swap for bidi if necessary
 rWrt.MiserableRTLFrameFormatHack(nLeft, nRight, rFrameFormat);
 
+// tdf#70838. Word relates the position to the unrotated rectangle,
+// Writer to the rotated one. Because the rotation is around 
center,
+// the difference counts half.
+if(pObj && pObj->GetRotateAngle())
+{
+SwTwips nXOff;
+SwTwips nYOff;
+SwTwips nSnapWidth = pObj->GetSnapRect().getWidth();
+SwTwips nSnapHeight = pObj->GetSnapRect().getHeight();
+SwTwips nLogicWidth = pObj->GetLogicRect().getWidth();
+SwTwips nLogicHeight = pObj->GetLogicRect().getHeight();
+// +1 for to compensate integer arithmetic rounding errors
+

[Libreoffice-bugs] [Bug 125625] Cannot update appimage LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125625

--- Comment #3 from asf...@hotmail.com ---
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 125692] kde5: Impress crashes when closing after using presentation minimizer

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125692

Michael Weghorn  changed:

   What|Removed |Added

 Blocks||102495


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE VCL backend 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 102495] [META] KDE VCL backend bugs and enhancements

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102495

Michael Weghorn  changed:

   What|Removed |Added

 Depends on||125692


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125692
[Bug 125692] kde5: Impress crashes when closing after using presentation
minimizer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 122743] Parent style change not immediately seen for children in Sidebar preview

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122743

Jim Raykowski  changed:

   What|Removed |Added

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

--- Comment #4 from Jim Raykowski  ---
(In reply to Buovjaga from comment #3)
> Sadly I still repro. Also tried with safe mode just in case.
> 
> Arch Linux 64-bit
> Version: 6.3.0.0.alpha0+
> Build ID: ae34f471030869dfc0da1784597cae6f9131f8c5
> CPU threads: 8; OS: Linux 4.20; UI render: default; VCL: gtk3; 
> Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
> Calc: threaded
> Built on 18 January 2019

Hi Buovjaga, the patch for bug124152 should resolve the bug reported here as
well.

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

[Libreoffice-bugs] [Bug 83581] caret does not enter ligature; easy to insert at wrong place

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83581

--- Comment #15 from Terrence Enger  ---
I still see the bug in 6.3 bibisect repository, source hash 41bdaf4a,
2019-06-04.

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

[Libreoffice-bugs] [Bug 125692] kde5: Impress crashes when closing after using presentation minimizer

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125692

Michael Weghorn  changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de

--- Comment #1 from Michael Weghorn  ---
Created attachment 151916
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151916=edit
gdb backtrace and some output)

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

[Libreoffice-bugs] [Bug 125692] New: kde5: Impress crashes when closing after using presentation minimizer

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125692

Bug ID: 125692
   Summary: kde5: Impress crashes when closing after using
presentation minimizer
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m.wegh...@posteo.de

Created attachment 151915
  --> https://bugs.documentfoundation.org/attachment.cgi?id=151915=edit
Sample presentation

Version: 6.4.0.0.alpha0+
Build ID: 222f6a1c43b7ae7bf8e2f1fbc1dbe6457e611ab7
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

Steps to reproduce:

1) open attached presentation "some_slides.odp" in Impress
2) "Tools" -> "Minimize Presentation"
3) click "Finish"
4) select name to save the minimized presentation, don't open it
5) close Impress

Result: crash

This is specific to the kde5 VCL plugin. It's reproducible on both X11 and
Wayland (though bug 121293 on X11 may prevent even getting that far).

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

2019-06-04 Thread Caolán McNamara (via logerrit)
 cui/source/inc/optlingu.hxx  |   41 +--
 cui/source/options/optlingu.cxx  |  432 ---
 cui/uiconfig/ui/editmodulesdialog.ui |  103 +++-
 3 files changed, 269 insertions(+), 307 deletions(-)

New commits:
commit 2ca64f0f29970616b3b4c3833d473f72e7d702a2
Author: Caolán McNamara 
AuthorDate: Sun Jun 2 20:46:52 2019 +0100
Commit: Caolán McNamara 
CommitDate: Tue Jun 4 22:18:39 2019 +0200

weld SvxEditModulesDlg

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

diff --git a/cui/source/inc/optlingu.hxx b/cui/source/inc/optlingu.hxx
index 77e016d0b154..8478f9bc45e0 100644
--- a/cui/source/inc/optlingu.hxx
+++ b/cui/source/inc/optlingu.hxx
@@ -50,18 +50,8 @@ class SvxLinguData_Impl;
 
 // forward ---
 
-class SvxEditModulesDlg : public ModalDialog
+class SvxEditModulesDlg : public weld::GenericDialogController
 {
-VclPtr m_pLanguageLB;
-
-VclPtrm_pModulesCLB;
-VclPtr m_pPrioUpPB;
-VclPtr m_pPrioDownPB;
-VclPtr m_pBackPB;
-VclPtr m_pMoreDictsLink;
-
-VclPtrm_pClosePB;
-
 OUStringsSpell;
 OUStringsHyph;
 OUStringsThes;
@@ -70,23 +60,26 @@ class SvxEditModulesDlg : public ModalDialog
 std::unique_ptr  pDefaultLinguData;
 SvxLinguData_Impl&  rLinguData;
 
-std::unique_ptr   m_xCheckButtonData;
-
-SvTreeListEntry*CreateEntry(OUString& rTxt, sal_uInt16 nCol);
+std::unique_ptr m_xModulesCLB;
+std::unique_ptr m_xPrioUpPB;
+std::unique_ptr m_xPrioDownPB;
+std::unique_ptr m_xBackPB;
+std::unique_ptr m_xMoreDictsLink;
+std::unique_ptr m_xClosePB;
+std::unique_ptr m_xLanguageLB;
 
-DECL_LINK( SelectHdl_Impl, SvTreeListBox*, void );
-DECL_LINK( UpDownHdl_Impl, Button*, void );
-DECL_LINK( ClickHdl_Impl, Button*, void );
-DECL_LINK( BackHdl_Impl, Button*, void );
-DECL_LINK( LangSelectListBoxHdl_Impl, ListBox&, void );
-DECL_LINK( BoxCheckButtonHdl_Impl2, SvLBoxButtonData*, void );
-DECL_LINK( BoxCheckButtonHdl_Impl, SvTreeListBox*, void );
-void LangSelectHdl_Impl(ListBox const *);
+DECL_LINK( SelectHdl_Impl, weld::TreeView&, void );
+DECL_LINK( UpDownHdl_Impl, weld::Button&, void );
+DECL_LINK( ClickHdl_Impl, weld::Button&, void );
+DECL_LINK( BackHdl_Impl, weld::Button&, void );
+DECL_LINK( LangSelectListBoxHdl_Impl, weld::ComboBox&, void );
+typedef std::pair row_col;
+DECL_LINK( BoxCheckButtonHdl_Impl, const row_col&, void );
+void LangSelectHdl_Impl(const LanguageBox* pBox);
 
 public:
-SvxEditModulesDlg(vcl::Window* pParent, SvxLinguData_Impl& rData);
+SvxEditModulesDlg(weld::Window* pParent, SvxLinguData_Impl& rData);
 virtual ~SvxEditModulesDlg() override;
-virtual void dispose() override;
 };
 
 // class SvxLinguTabPage -
diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx
index 5be9468fef0d..ed8b59ed5644 100644
--- a/cui/source/options/optlingu.cxx
+++ b/cui/source/options/optlingu.cxx
@@ -78,9 +78,6 @@ using namespace css::uno;
 using namespace css::linguistic2;
 using namespace css::beans;
 
-#define CBCOL_FIRST 0
-#define CBCOL_SECOND1
-
 static const sal_Char cSpell[]   = SN_SPELLCHECKER;
 static const sal_Char cGrammar[] = SN_GRAMMARCHECKER;
 static const sal_Char cHyph[]= SN_HYPHENATOR;
@@ -88,29 +85,6 @@ static const sal_Char cThes[]= SN_THESAURUS;
 
 // static 
 
-static std::vector< LanguageType > lcl_LocaleSeqToLangSeq( const Sequence< 
Locale >  )
-{
-sal_Int32 nLen = rSeq.getLength();
-std::vector aRes;
-aRes.reserve(nLen);
-const Locale *pSeq = rSeq.getConstArray();
-for (sal_Int32 i = 0;  i < nLen;  ++i)
-{
-aRes.push_back( LanguageTag::convertToLanguageType( pSeq[i] ) );
-}
-return aRes;
-}
-
-
-static bool lcl_SeqHasLang( const std::vector< LanguageType > , 
LanguageType nLang )
-{
-for (auto const & i : rSeq)
-if (i == nLang)
-return true;
-return false;
-}
-
-
 static sal_Int32 lcl_SeqGetEntryPos(
 const Sequence< OUString > , const OUString  )
 {
@@ -214,49 +188,6 @@ DicUserData::DicUserData(
 (static_cast(bDeletable ? 1 : 0)<< 10);
 }
 
-static void lcl_SetCheckButton( SvTreeListEntry* pEntry, bool bCheck )
-{
-SvLBoxButton* pItem = 
static_cast(pEntry->GetFirstItem(SvLBoxItemType::Button));
-
-DBG_ASSERT(pItem,"SetCheckButton:Item not found");
-if (pItem && pItem->GetType() == SvLBoxItemType::Button)
-{
-if (bCheck)
-pItem->SetStateChecked();
-else
-pItem->SetStateUnchecked();
-}
-}
-

[Libreoffice-bugs] [Bug 123088] Allow in Navigator view focused on Headings, the selection of several headers to be dragged at once.

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123088

Jim Raykowski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |rayk...@gmail.com
   |desktop.org |

--- Comment #5 from Jim Raykowski  ---
Hi all, here is an enhancement patch that adds drag and drop for multi selected
continuous headings. Testing and code review are very much appreciated.

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

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

[Libreoffice-bugs] [Bug 122221] PNG images with alpha don't show up in .odp documents

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=11

Tor Lillqvist  changed:

   What|Removed |Added

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

--- Comment #6 from Tor Lillqvist  ---
Together with an earlier commit that was not marked with tdf#11, the bug
now seems fixed. (Both commits are also in the cp-6.0 branch.)

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - Repository.mk scp2/source setup_native/Library_reg_dlls.mk setup_native/Module_setup_native.mk setup_native/source

2019-06-04 Thread Mike Kaganski (via logerrit)
 Repository.mk |1 
 scp2/source/calc/module_calc.scp  |2 
 scp2/source/draw/module_draw.scp  |2 
 scp2/source/impress/module_impress.scp|2 
 scp2/source/ooo/windowscustomaction_ooo.scp   |   41 +
 scp2/source/writer/module_writer.scp  |2 
 setup_native/Library_reg_dlls.mk  |   40 +
 setup_native/Module_setup_native.mk   |1 
 setup_native/source/win32/customactions/reg_dlls/reg_dlls.cxx |  281 ++
 setup_native/source/win32/customactions/reg_dlls/reg_dlls.def |5 
 10 files changed, 373 insertions(+), 4 deletions(-)

New commits:
commit 7f0ef81cec7e4f64c7fbfce04372d84871244b11
Author: Mike Kaganski 
AuthorDate: Wed May 22 19:17:44 2019 +0300
Commit: Aron Budea 
CommitDate: Tue Jun 4 21:58:30 2019 +0200

Register spsupp*.dll during installation

This registers SharePoint integration libraries using regsvr.exe.
Both 32-bit and 64-bit libraries are registered; registration of
SharePoint.OpenDocuments is unconditional (subject to ActiveX
feature install state), substituting respective MSO component.

This only works for 32-bit MSI, because in case of 64-bit MSI, only
64-bit SharePoint DLL is included; this makes the library ~useless
in case of 64-bit MSI, because IE needs 32-bit component absent there.
Proper solution will be created for master branch.

Change-Id: Ic5bf9e7090acfaa17d47cb72b9ebfd483242f656
Reviewed-on: https://gerrit.libreoffice.org/72801
Reviewed-by: Aron Budea 
Tested-by: Aron Budea 

diff --git a/Repository.mk b/Repository.mk
index ca4b1031131c..889643183942 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -668,6 +668,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooobinaryta
instooofiltmsi \
inst_msu_msi \
qslnkmsi \
+   reg_dlls \
reg4allmsdoc \
sdqsmsi \
sellangmsi \
diff --git a/scp2/source/calc/module_calc.scp b/scp2/source/calc/module_calc.scp
index dd31007bb5ca..0f83dec54352 100644
--- a/scp2/source/calc/module_calc.scp
+++ b/scp2/source/calc/module_calc.scp
@@ -74,7 +74,7 @@ Module gid_Module_Prg_Calc_MSO_Reg
 Name = "gid_Module_Prg_Calc_MSO_Reg";
 Description = "gid_Module_Prg_Calc_MSO_Reg";
 Styles = (HIDDEN_ROOT);
-Default = YES;
+Default = NO;
 End
 
 Module gid_Module_Prg_Calc_Other_Reg
diff --git a/scp2/source/draw/module_draw.scp b/scp2/source/draw/module_draw.scp
index 87375797e1c6..c4c835b4ccc1 100644
--- a/scp2/source/draw/module_draw.scp
+++ b/scp2/source/draw/module_draw.scp
@@ -64,7 +64,7 @@ Module gid_Module_Prg_Draw_MSO_Reg
 Name = "gid_Module_Prg_Draw_MSO_Reg";
 Description = "gid_Module_Prg_Draw_MSO_Reg";
 Styles = (HIDDEN_ROOT);
-Default = YES;
+Default = NO;
 End
 
 Module gid_Module_Prg_Draw_Other_Reg
diff --git a/scp2/source/impress/module_impress.scp 
b/scp2/source/impress/module_impress.scp
index ca335d6973d9..42d62dd9e7c6 100644
--- a/scp2/source/impress/module_impress.scp
+++ b/scp2/source/impress/module_impress.scp
@@ -66,7 +66,7 @@ Module gid_Module_Prg_Impress_MSO_Reg
 Name = "gid_Module_Prg_Impress_MSO_Reg";
 Description = "gid_Module_Prg_Impress_MSO_Reg";
 Styles = (HIDDEN_ROOT);
-Default = YES;
+Default = NO;
 End
 
 Module gid_Module_Prg_Impress_Other_Reg
diff --git a/scp2/source/ooo/windowscustomaction_ooo.scp 
b/scp2/source/ooo/windowscustomaction_ooo.scp
index bc7201b9b2b4..f98296ca48dc 100644
--- a/scp2/source/ooo/windowscustomaction_ooo.scp
+++ b/scp2/source/ooo/windowscustomaction_ooo.scp
@@ -221,3 +221,44 @@ WindowsCustomAction gid_Customaction_RegisterSomeExtensions
 End
 
 #endif /* HAVE_WINDOWS_SDK */
+
+/* Deferred not-impersonated actions that will call regsvr32 to (un)register 
DLLs.
+   Custom action type 1 (msidbCustomActionTypeDll + 
msidbCustomActionTypeBinaryData)
+   + 64 (msidbCustomActionTypeContinue) + 1024 (msidbCustomActionTypeInScript)
+   + 2048 (msidbCustomActionTypeNoImpersonate).
+   Since deferred actions don't have access to current DB, the actions depend 
on
+   immediate-executed action prep_reg_unreg_dlls (see below) that precedes it, 
and
+   sets this action's CustomActionData property.
+*/
+
+WindowsCustomAction gid_Customaction_reg_dlls
+   Name = "reg_dlls";
+   Typ = "3137";
+   Source = "reg_dlls.dll";
+   Target = "RegDLLs";
+   Inbinarytable = 1;
+   Assignment1 = ("InstallExecuteSequence", "reg_dlls", "InstallFinalize");
+End
+
+WindowsCustomAction gid_Customaction_unreg_dlls
+   Name = "unreg_dlls";
+   Typ = "3137";
+   Source = "reg_dlls.dll";
+   Target = "UnregDLLs";
+   Inbinarytable = 1;
+   Assignment1 = ("InstallExecuteSequence", 

[Bug 79641] LibreOffice 4.4 most annoying bugs

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 88194, which changed state.

Bug 88194 Summary: freeze when paste into lots of cells (cell with comment)
https://bugs.documentfoundation.org/show_bug.cgi?id=88194

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 88194] freeze when paste into lots of cells (cell with comment)

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88194

b.  changed:

   What|Removed |Added

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

--- Comment #10 from b.  ---
sorry for bad news, 

this bug isn't solved yet, at least not in total, 

#76324 is still in state 'new', 

there is still a performance issue with files - (files not sheets, the comments
on not displayed sheets seem to affect performance in the shown sheet as well), 

may be it's reduced to occur only after the first autosave, thus hidden from a
fast check by testers, 

modern machines can bear more but limited amount of comments, try doubling the
number of cells with comments copied until you see issues, strip the comments
from the sheet, double data cells again, and you see it's lightning fast
compared to half the cells but with comments. 

thus: poor performance, wasting time and energy.

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

[Libreoffice-bugs] [Bug 79641] LibreOffice 4.4 most annoying bugs

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79641
Bug 79641 depends on bug 88194, which changed state.

Bug 88194 Summary: freeze when paste into lots of cells (cell with comment)
https://bugs.documentfoundation.org/show_bug.cgi?id=88194

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 125475] Crash after saving and/or closing document

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125475

--- Comment #8 from Xisco Faulí  ---
I can't reproduce the crash in

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

@Michael Stahl, can we call this issue 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 125684] Font changes from Liberation Mono to Liberation Serif after Undo/ redo

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125684

Telesto  changed:

   What|Removed |Added

Version|4.4.7.2 release |4.0.0.3 release

--- Comment #3 from Telesto  ---
Also in
Versie 4.0.0.3 (Bouw-id: 7545bee9c2a0782548772a21bc84a9dcc583b89)

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - vcl/quartz

2019-06-04 Thread Tor Lillqvist (via logerrit)
 vcl/quartz/salgdicommon.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 17fdf034c144c64d6a9ebd3d8ace6096c9867944
Author: Tor Lillqvist 
AuthorDate: Tue Jun 4 21:00:27 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Tue Jun 4 21:01:04 2019 +0300

tdf#11: Bin apparently unnecessary early return

Removing these few lines of code fixes the problem on iOS, as far as I
can see. Let's hope it doesn't introduce any new issue in the iOS app.
In this branch, I didn't have the clout to remove them for macOS, too.

Change-Id: I2380d010ba223a698acfe916fca4580a1502be98

diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index fbd49f60d459..5940b12b8343 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -571,11 +571,13 @@ bool AquaSalGraphics::drawAlphaBitmap( const SalTwoRect& 
rTR,
const SalBitmap& rSrcBitmap,
const SalBitmap& rAlphaBmp )
 {
+#ifndef IOS
 if (rTR.mnSrcWidth != rTR.mnDestWidth || rTR.mnSrcHeight != 
rTR.mnDestHeight)
 {
 // TODO - would be better to scale it by the native code
 return false;
 }
+#endif
 
 // An image mask can't have a depth > 8 bits (should be 1 to 8 bits)
 if( rAlphaBmp.GetBitCount() > 8 )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 122221] PNG images with alpha don't show up in .odp documents

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=11

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

https://git.libreoffice.org/core/+/9c8478d428293c6223c8d1bdd1e93f7729b6d952%5E%21

tdf#11: Bin apparently unnecessary early return

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-bugs] [Bug 122221] PNG images with alpha don't show up in .odp documents

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=11

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-commits] core.git: vcl/quartz

2019-06-04 Thread Tor Lillqvist (via logerrit)
 vcl/quartz/salgdicommon.cxx |6 --
 1 file changed, 6 deletions(-)

New commits:
commit 9c8478d428293c6223c8d1bdd1e93f7729b6d952
Author: Tor Lillqvist 
AuthorDate: Tue Jun 4 18:58:56 2019 +0300
Commit: Tor Lillqvist 
CommitDate: Tue Jun 4 20:52:50 2019 +0300

tdf#11: Bin apparently unnecessary early return

Removing these few lines of code fixes the problem on iOS, and has no
apparent ill effect on macOS. But sure, I didn't check that thoroughly
on macOS, so in case this has a bad effect on macOS after all, need to
reinstate the few lines but make them #ifndef IOS.

(Still passes make check.)

Change-Id: I2380d010ba223a698acfe916fca4580a1502be98

diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index 333c23c93035..af70708eb0f2 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -587,12 +587,6 @@ bool AquaSalGraphics::drawAlphaBitmap( const SalTwoRect& 
rTR,
const SalBitmap& rSrcBitmap,
const SalBitmap& rAlphaBmp )
 {
-if (rTR.mnSrcWidth != rTR.mnDestWidth || rTR.mnSrcHeight != 
rTR.mnDestHeight)
-{
-// TODO - would be better to scale it by the native code
-return false;
-}
-
 // An image mask can't have a depth > 8 bits (should be 1 to 8 bits)
 if( rAlphaBmp.GetBitCount() > 8 )
 return false;
___
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' - sc/source

2019-06-04 Thread Miklos Vajna (via logerrit)
 sc/source/ui/cctrl/checklistmenu.cxx |3 +++
 sc/source/ui/view/gridwin.cxx|6 ++
 2 files changed, 9 insertions(+)

New commits:
commit a92dd896b003ded7f5c4347a8370624ee9d77dbd
Author: Miklos Vajna 
AuthorDate: Tue Jun 4 14:11:33 2019 +0200
Commit: Miklos Vajna 
CommitDate: Tue Jun 4 19:39:57 2019 +0200

tdf#101086 sc autofilter popup: avoid flicker

Regression from commit a4cb27f61376d8f2d8faed0022c291af68d437bd
(refactor ScMenuFloatingWindow to use RenderContext, 2015-05-14), the
problem was that the change had two effects:

1) It removed incremental rendering that now causes flicker.

2) It added support for painting into a rendercontext, not on the window
itself.

Given that here a hierarchy of widgets have to be painted at once (to
avoid flicker), use vcl::Window::RequestDoubleBuffering() instead of the
much simpler vcl::BufferDevice.

This improves the situation on Windows, but explicitly blacklist the
focus rectangle case (gtk3) which is currently not compatible with this
higher level double-buffering (and there we already have lower-level
double-buffering anyway, similar to OpenGL).

(cherry picked from commit 4dadbff74eff5f8ad00df99c659f8a2b914e09a1)

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

diff --git a/sc/source/ui/cctrl/checklistmenu.cxx 
b/sc/source/ui/cctrl/checklistmenu.cxx
index e735ad62f7e6..8383738967a5 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -1164,6 +1164,9 @@ void ScCheckListMenuWindow::selectCurrentMemberOnly(bool 
bSet)
 if (!pEntry)
 return;
 maChecks->CheckEntry(pEntry, bSet );
+
+// Make sure all checkboxes are invalidated.
+Invalidate();
 }
 
 IMPL_LINK( ScCheckListMenuWindow, ButtonHdl, Button*, pBtn, void )
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index ea51223772ec..e043cfc4d857 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -645,6 +645,12 @@ void ScGridWindow::LaunchAutoFilterMenu(SCCOL nCol, SCROW 
nRow)
 
 mpAutoFilterPopup.disposeAndClear();
 mpAutoFilterPopup.reset(VclPtr::Create(this, pDoc));
+
+// Avoid flicker when hovering over the menu items.
+if (!IsNativeControlSupported(ControlType::Pushbutton, ControlPart::Focus))
+// If NWF renders the focus rects itself, that breaks double-buffering.
+mpAutoFilterPopup->RequestDoubleBuffering(true);
+
 if (comphelper::LibreOfficeKit::isActive())
 mpAutoFilterPopup->SetLOKNotifier(SfxViewShell::Current());
 mpAutoFilterPopup->setOKAction(new AutoFilterAction(this, 
AutoFilterMode::Normal));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 108648] Add LibreOffice AppImage update entry to the Help menu

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108648

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125625] Cannot update appimage LibreOffice

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125625

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||8648
 CC||antonio.faccioli@libreoffic
   ||e.org

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

Re: Need for new x86 Jenkin's Bot

2019-06-04 Thread Jan-Marek Glogowski
Hi everyone,

Am 04.06.19 um 17:01 schrieb Luke Benes:
> The decision was to demote release builds, but NOT to remove x86
> compatibility. If you take this as an excuse to also end x86 CI testing bots,
> you are effectively killing x86 through bit rot. This is not a hypothetical.
> As you know, @87 just recently caught a regression introduced by an easyHack
> to convert use of sal_uLong to better integer types. Without CI testing,
> these bugs will pile up effectively removing x86 compatibility.

IMHO we should "just" switch one of the Jenkins Linux builds to 32bit, not have
an other one. Preferable the gcc release one, as that has smaller object size,
if that is a concern for 32bit (linking etc). Should be fine just to cross-build
on 64bit in a 32bit chroot.

I remember there were some problems because of a missing 32bit Red Hat Developer
Toolset needed for the build, which was AFAIK the real reason to get rid of the
32bit builds - aehmm. Not sure that is now available.

And I / Rene was bitten a few times by broken 32bit builds, last was the
QVariant constructor ambiguity, so generally I'm all for it, if possible.

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

[Libreoffice-bugs] [Bug 107554] New table 'Default Style'

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107554

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Status|RESOLVED|VERIFIED

--- Comment #14 from BogdanB  ---
I tested now a default table and all are 0,10 cm.
Consider fixed.


Version: 6.3.0.0.beta1
Build ID: a187af327633f5f00363be5131bd21a13e0f1a7b
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ro-RO (ro_RO.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 125684] Font changes from Liberation Mono to Liberation Serif after Undo/ redo

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125684

Dieter Praas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||105948
 Status|UNCONFIRMED |NEW
 CC||dgp-m...@gmx.de

--- Comment #2 from Dieter Praas  ---
I confirm it with

Version: 6.3.0.0.beta1 (x64)
Build ID: a187af327633f5f00363be5131bd21a13e0f1a7b
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (de_DE); UI-Language: en-GB
Calc: threaded


Referenced Bugs:

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

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948

Dieter Praas  changed:

   What|Removed |Added

 Depends on||125684


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125684
[Bug 125684] Font changes from Liberation Mono to Liberation Serif after Undo/
redo
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 117857] Korean Hangul/Hanja Conversion Menu's "add Korean Ruby script" not work

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117857

--- Comment #8 from DaeHyun Sung  ---
(In reply to Mark Hung from comment #7)
> This still an issue with 6.2.3.2 as well as the master branch.
> Tested with
> 版本:6.2.3.2 (x64)
> 組建 ID:aecc05fe267cc68dde00352a451aa867b3b546ac
> CPU 執行緒:8; OS:Windows 10.0; UI 算繪:預設; VCL: win; 
> 語言地區:zh-TW (zh_TW); UI語言:zh-TW
> Calc: threaded
> 
> 
> 
> @DaeHun Sung:
> inspecting the source code, UI configuration file
> cui/uiconfig/ui/hangulhanjaconversiondialog.ui
> 
> "group" property of the GtkRadioButton object "simpleconversion" is missing.
> ( Just compare that one with other GtkRadioButton. ) 
> 
> This should be an EasyHack. Do you want to take this issue?

Yes, I'll check and work it on this weekend.

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

[Libreoffice-bugs] [Bug 125398] VIEWING: Certain image shows shadow if you change zoom level

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125398

Dieter Praas  changed:

   What|Removed |Added

Summary|Shadow shows on inserted|VIEWING: Certain image
   |images in doc/pdf files |shows shadow if you change
   ||zoom level
 Status|NEEDINFO|NEW
 Blocks||107923

--- Comment #13 from Dieter Praas  ---
Steps

1. Open Writer
2. Insert => Image => Insert Image from attachment 12 => everything looks fine
3. change zoom level => thin line on the right and / or at the buttom appears
and disappears

Additional information:
if you add several copies of that image, you can get different results at the
same zoom-level
PDF Export is fine

Version: 6.3.0.0.beta1 (x64)
Build ID: a187af327633f5f00363be5131bd21a13e0f1a7b
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (de_DE); UI-Language: en-GB
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 107923] [META] Zoom issues

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107923

Dieter Praas  changed:

   What|Removed |Added

 Depends on||125398


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125398
[Bug 125398] VIEWING: Certain image shows shadow if you change zoom level
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 116082] [META] Image issues related to image DPI

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116082

Dieter Praas  changed:

   What|Removed |Added

 Blocks|101393  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101393
[Bug 101393] Picture copy-pasted from web with text having wrong dimensions
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 101393] Picture copy-pasted from web with text having wrong dimensions

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101393

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Depends on|116082  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116082
[Bug 116082] [META] Image issues related to image DPI
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 35847] [UI] Wrong page style name in status bar after page preview

2019-06-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35847

--- Comment #12 from Laurent BP  ---
Bug still present in
- Version: 6.2.4.2 (x64)
Build ID: 2412653d852ce75f65fbfa83fb7e7b669a126d64
Threads CPU : 4; OS : Windows 6.1; UI Render : par défaut; VCL: win; 
Locale : fr-FR (fr_FR); Langue IHM : fr-FR
Calc: threaded
- Version: 6.3.0.0.beta1 (x64)
Build ID: a187af327633f5f00363be5131bd21a13e0f1a7b
Threads CPU : 4; OS : Windows 6.1; UI Render : par défaut; VCL: win; 
Locale : fr-FR (fr_FR); Langue IHM : fr-FR
Calc: CL

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

  1   2   3   4   5   >