[Libreoffice-bugs] [Bug 123478] Impress crashes immediately when EDITING and trying to insert a specific video file

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

--- Comment #12 from Buovjaga  ---
(In reply to Allen from comment #11)
> Bug seems to be fixed in LibreOffice 6.3.04 on Ubuntu 16.04 but still
> crashes on Ubuntu 18.04.

Compare the packages between your 16.04 and 18.04: do they both have gstreamer
packages installed?

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

[Libreoffice-commits] core.git: Branch 'private/EL-SHREIF/ui_logger' - uitest/ui_logger_dsl

2019-08-15 Thread Ahmed ElShreif (via logerrit)
 uitest/ui_logger_dsl/dsl_core.py |  118 ---
 1 file changed, 86 insertions(+), 32 deletions(-)

New commits:
commit e45c9cf958dea4074b9e7544067a8242ea0cf27e
Author: Ahmed ElShreif 
AuthorDate: Thu Aug 15 22:48:14 2019 -0500
Commit: Ahmed ElShreif 
CommitDate: Thu Aug 15 22:48:14 2019 -0500

Fix some Logger issues:

Use prefix for names that has conflict with python's words

Change-Id: I01d044a96eeae60a070a5ca0fc8d6105d7333414

diff --git a/uitest/ui_logger_dsl/dsl_core.py b/uitest/ui_logger_dsl/dsl_core.py
index 5d2a7e93ba82..b8e0b9b7269c 100644
--- a/uitest/ui_logger_dsl/dsl_core.py
+++ b/uitest/ui_logger_dsl/dsl_core.py
@@ -9,6 +9,7 @@
 import os
 import sys
 import argparse
+import keyword
 from textx.metamodel import metamodel_from_file
 
 tab=""
@@ -129,14 +130,14 @@ class ul_Compiler:
 line=double_tab+self.current_app+" = 
MainWindow.getChild(\""+self.current_app+"\")\n"
 self.variables.append(line)
 
-def init_Object(self,Id_of_Object,Obj_parent):
+def init_Object(self,Id_of_Object,name_of_child,Obj_parent):
 
 if Id_of_Object in self.objects:
 self.objects[Id_of_Object]+=1
 else:
 self.objects[Id_of_Object]=1
 line=double_tab+Id_of_Object+" = "+Obj_parent+\
-".getChild(\""+Id_of_Object+"\")\n"
+".getChild(\""+name_of_child+"\")\n"
 self.variables.append(line)
 
 def write_line_without_parameters(self,Action_holder,Action,Action_type):
@@ -224,8 +225,13 @@ class ul_Compiler:
 elif (DialogCommand.__class__.__name__ == "CloseDialog"):
 if (self.prev_command.__class__.__name__ == "ButtonUIObject"):
 old_line = self.variables.pop()
-line= double_tab + 
"self.ui_test.close_dialog_through_button("+\
-self.prev_command.ui_button+")\n"
+line=""
+if(keyword.iskeyword( self.prev_command.ui_button )):
+line= double_tab + 
"self.ui_test.close_dialog_through_button(x"+\
+self.prev_command.ui_button+")\n"
+else:
+line= double_tab + 
"self.ui_test.close_dialog_through_button("+\
+self.prev_command.ui_button+")\n"
 self.variables.append(line)
 self.last_parent.pop()
 self.parent_hierarchy_count=self.parent_hierarchy_count-1
@@ -234,109 +240,157 @@ class ul_Compiler:
 
 def handle_button(self, ButtonUIObject):
 
+name_of_obj=""
+if(keyword.iskeyword( ButtonUIObject.ui_button )):
+name_of_obj = "x" +ButtonUIObject.ui_button
+else:
+name_of_obj = ButtonUIObject.ui_button
+
 if  ButtonUIObject.parent_id == "" :
-self.init_Object( ButtonUIObject.ui_button , 
self.last_parent[self.parent_hierarchy_count] )
+self.init_Object( name_of_obj , ButtonUIObject.ui_button , 
self.last_parent[self.parent_hierarchy_count] )
 else:
-self.init_Object(ButtonUIObject.ui_button,ButtonUIObject.parent_id)
+self.init_Object( name_of_obj , 
ButtonUIObject.ui_button,ButtonUIObject.parent_id)
 
-
self.write_line_without_parameters(ButtonUIObject.ui_button,"CLICK","tuple")
+self.write_line_without_parameters(name_of_obj,"CLICK","tuple")
 
 self.prev_command=ButtonUIObject
 
 def handle_check_box(self, CheckBoxUIObject):
 
+name_of_obj=""
+if(keyword.iskeyword( CheckBoxUIObject.Check_box_id )):
+name_of_obj = "x" + CheckBoxUIObject.Check_box_id
+else:
+name_of_obj = CheckBoxUIObject.Check_box_id
+
 if  CheckBoxUIObject.parent_id == "" :
-self.init_Object( CheckBoxUIObject.Check_box_id , 
self.last_parent[self.parent_hierarchy_count] )
+self.init_Object( name_of_obj , CheckBoxUIObject.Check_box_id , 
self.last_parent[self.parent_hierarchy_count] )
 else:
-
self.init_Object(CheckBoxUIObject.Check_box_id,CheckBoxUIObject.parent_id)
+self.init_Object( name_of_obj , 
CheckBoxUIObject.Check_box_id,CheckBoxUIObject.parent_id)
 
-
self.write_line_without_parameters(CheckBoxUIObject.Check_box_id,"CLICK","tuple")
+self.write_line_without_parameters(name_of_obj,"CLICK","tuple")
 
 self.prev_command=CheckBoxUIObject
 
 def handle_tab(self, TabControlUIObject):
 
+name_of_obj=""
+if(keyword.iskeyword( TabControlUIObject.tab_id )):
+name_of_obj = "x" + TabControlUIObject.tab_id
+else:
+name_of_obj = TabControlUIObject.tab_id
+
 if  TabControlUIObject.parent_id == "" :
-self.init_Object( TabControlUIObject.tab_id , 
self.last_parent[self.parent_hierarchy_count] )
+self.init_Object( name_of_obj , TabControlUIObject.tab_id , 

[Libreoffice-bugs] [Bug 35078] FILEOPEN: Support Excel 2003 XML with Unescaped '<' in attributes values

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

Kohei Yoshida  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |ko...@libreoffice.org
   |desktop.org |
 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #16 from Kohei Yoshida  ---
I've tested all four test files in the master branch build with the latest
orcus, and all of them open fine now.  I'll call this 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 113869] [META] MS Office XML formats (pre-OOXML) bugs and enhancements

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

Bug 35078 Summary: FILEOPEN: Support Excel 2003 XML with Unescaped '<' in 
attributes values
https://bugs.documentfoundation.org/show_bug.cgi?id=35078

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 126957] New: LibreOffice Toolbar FILESAVE

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

Bug ID: 126957
   Summary: LibreOffice Toolbar FILESAVE
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: PowerPC
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: n4...@arrl.net

Description:
On opening the Save icon on the toolbar is very small until you select it.  It
then returns to normal size.  Occured with last update.

Steps to Reproduce:
1. Open spreadsheet file.
2. Open spreadsheet file.
3. Open spreadsheet file.

Actual Results:
 Open spreadsheet file.

Expected Results:
No change


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.3.0.4 (x64)
Build ID: 057fc023c990d676a43019934386b85b21a9ee99
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-US (en_US); 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 126956] New: Menus trail off screen (With KDE VCL bug integration)

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

Bug ID: 126956
   Summary: Menus trail off screen (With KDE VCL bug integration)
   Product: LibreOffice
   Version: 6.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: leftcr...@tutanota.com

Description:
Menus trail off screen. Example: popover on the right is on the screen edge and
runs off screen when window is tiled right or maximized.

I am not sure if the bug exists with the GTK theme - I am using the QT theme.

Version: 6.2.5.2
Build ID: 1:6.2.5-0ubuntu0.19.04.1
CPU threads: 4; OS: Linux 5.0; UI render: default; VCL: kde5; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US

Steps to Reproduce:
1.Open LO
2. Maximize
3. Click on the popover button in sidebar.

Actual Results:
Menu trails off - not usable.

Expected Results:
Menu should remain inside the window (I think this is the only solution on
Wayland anyhow).


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 126954] Image cropping bug in Writer 6.2.5.2

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

--- Comment #2 from Marcellus Wallace  ---
I gave a bad youtube address, here's the proper link :
https://youtu.be/5lkzWYo4ImQ
Sorry

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

[Libreoffice-bugs] [Bug 126924] Base Upgrade 6.3.0 From 6.2.5 (Firebird from hsqldb) Issues

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

--- Comment #3 from Brent Warkentin  ---
Added testing...

1. Stopping of the upgrade utility and missing rows of data was linked to a
data format error in one field..  When corrected the upgrade ran to
completion..

2. The utility dd NOT process DOUBLE format... had to follow similar steps as
for DATE fields...  ie. Copy as text VARCHAR, run upgrade and copy back...

3. Confirm that query and sub form setting in content.xml fix was needed to
allow for my queries and forms to work...

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

[Libreoffice-bugs] [Bug 123980] HELP: Error on explanation for WORKDAY()

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

Olivier Hallot  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 123980] HELP: Error on explanation for WORKDAY()

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

--- Comment #3 from Olivier Hallot  ---
Patch submitted.

Not sure if this is a bug, but when Days=0, the function returns always the
StartDate, even if StarDate is in a week-end.

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

2019-08-15 Thread Arkadiy Illarionov (via logerrit)
 stoc/source/defaultregistry/defaultregistry.cxx |   24 +---
 1 file changed, 9 insertions(+), 15 deletions(-)

New commits:
commit 3e64065612acec2eb29aa21e2b515953422256d7
Author: Arkadiy Illarionov 
AuthorDate: Wed Aug 14 22:27:06 2019 +0300
Commit: Arkadiy Illarionov 
CommitDate: Thu Aug 15 23:44:41 2019 +0200

Optimize NestedKeyImpl::openKeys

* Use const methods of Sequence
* Get rid of extra loop over localSeq
* Simplify default keys insert condition

Change-Id: I112c0a53d3ebfc2ff54a4ac904e6e112beaf3cdd
Reviewed-on: https://gerrit.libreoffice.org/77472
Tested-by: Jenkins
Reviewed-by: Arkadiy Illarionov 

diff --git a/stoc/source/defaultregistry/defaultregistry.cxx 
b/stoc/source/defaultregistry/defaultregistry.cxx
index bfa698b13b91..71a637309c5a 100644
--- a/stoc/source/defaultregistry/defaultregistry.cxx
+++ b/stoc/source/defaultregistry/defaultregistry.cxx
@@ -755,33 +755,27 @@ Sequence< Reference< XRegistryKey > > SAL_CALL 
NestedKeyImpl::openKeys(  )
 defaultSeq = m_defaultKey->getKeyNames();
 }
 
-sal_uInt32 local = localSeq.getLength();
-sal_uInt32 def = defaultSeq.getLength();
-sal_uInt32 len = static_cast(std::count_if(localSeq.begin(), 
localSeq.end(),
-[](const OUString& rLocal) { return 
comphelper::findValue(defaultSeq, rLocal) != -1; }));
-
-Sequence< Reference > retSeq(local + def - len);
+std::vector< Reference > retVec;
+retVec.reserve(localSeq.getLength() + defaultSeq.getLength());
 
 auto lKeyNameToRegKey = [this](const OUString& rName) -> 
Reference {
 sal_Int32 lastIndex = rName.lastIndexOf('/');
 OUString name = rName.copy(lastIndex);
 return new NestedKeyImpl(name, this);
 };
-std::transform(localSeq.begin(), localSeq.end(), retSeq.begin(), 
lKeyNameToRegKey);
 
-sal_uInt32 k = local;
-for (const auto& rDef : std::as_const(defaultSeq))
-{
-bool insert = std::none_of(retSeq.begin(), std::next(retSeq.begin(), 
local),
-[](const Reference& rKey) { return 
rKey->getKeyName() == rDef; });
+for (const auto& rKeyName : std::as_const(localSeq))
+retVec.push_back(lKeyNameToRegKey(rKeyName));
 
-if ( insert )
+for (const auto& rKeyName : std::as_const(defaultSeq))
+{
+if ( comphelper::findValue(localSeq, rKeyName) == -1 )
 {
-retSeq.getArray()[k++] = lKeyNameToRegKey(rDef);
+retVec.push_back(lKeyNameToRegKey(rKeyName));
 }
 }
 
-return retSeq;
+return comphelper::containerToSequence(retVec);
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

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

Bug 124391 Summary: Doubled global menu in 6.2.2 with GTK VCL
https://bugs.documentfoundation.org/show_bug.cgi?id=124391

   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 124391] Doubled global menu in 6.2.2 with GTK VCL

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

OfficeUser  changed:

   What|Removed |Added

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

--- Comment #12 from OfficeUser  ---
Works for me with:

Version: 6.2.6.2
Build-ID: 684e730861356e74889dfe6dbddd3562aae2e6ad
CPU-Threads: 8; BS: Linux 4.4; UI-Render: Standard; VCL: gtk2; 
Gebietsschema: de-DE (de_DE.UTF-8); UI-Sprache: de-DE
Calc: threaded


I don't know if there has been a fix applied to build 6.2.6.2 or if it works
for me now because I have installed this build along with ALL integration
packages.

Status set to: RESOLVED 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 126787] Setting borders on character format become paragraph format

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

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

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

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

[Libreoffice-bugs] [Bug 123478] Impress crashes immediately when EDITING and trying to insert a specific video file

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

Allen  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #11 from Allen  ---
Bug seems to be fixed in LibreOffice 6.3.04 on Ubuntu 16.04 but still crashes
on Ubuntu 18.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 125076] looking at recent files list we should see the path info

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

--- Comment #10 from Cédric Bellegarde  ---
I resolved the issue in Lollypop by using a custom menu builder:

https://gitlab.gnome.org/World/lollypop/blob/master/lollypop/widgets_menu.py

Allows me to add more custom attributes.

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

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

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

--- Comment #2 from andreas_k  ---
Created attachment 153424
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153424=edit
Add Image to gallery

sorry heiko but you get me wrong. this is not a bug of how to add odg files
into core/extra/gallery/...

ok there it's also an problem, but the main issue is, that you can add all kind
of image files to an gallery, but not the LibO drawing file format odg.

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

[Libreoffice-bugs] [Bug 101957] Crash when inserting an row in Writer using the context menu (likely GTK2-related)

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

Julien Nabet  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: readlicense_oo/docs

2019-08-15 Thread Julien Nabet (via logerrit)
 readlicense_oo/docs/readme.xrm |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5eeed4ef360ddfefaa489d71da788e1e9f217398
Author: Julien Nabet 
AuthorDate: Thu Aug 15 14:53:05 2019 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 15 23:00:58 2019 +0200

Related tdf#101957: glibc2 should be at least 2.14

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

diff --git a/readlicense_oo/docs/readme.xrm b/readlicense_oo/docs/readme.xrm
index 50dcc99859c2..c7f3e46a74ba 100644
--- a/readlicense_oo/docs/readme.xrm
+++ b/readlicense_oo/docs/readme.xrm
@@ -65,7 +65,7 @@

 

-   glibc2 version 2.5 or higher;
+   glibc2 version 2.14 or higher;

 

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

[Libreoffice-bugs] [Bug 101957] Crash when inserting an row in Writer using the context menu (likely GTK2-related)

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

--- Comment #35 from Commit Notification 
 ---
Julien Nabet committed a patch related to this issue.
It has been pushed to "master":

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

Related tdf#101957: glibc2 should be at least 2.14

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 101957] Crash when inserting an row in Writer using the context menu (likely GTK2-related)

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

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: svtools/source

2019-08-15 Thread Julien Nabet (via logerrit)
 svtools/source/graphic/renderer.cxx   |3 +--
 svtools/source/hatchwindow/documentcloser.cxx |3 +--
 svtools/source/hatchwindow/hatchwindowfactory.cxx |8 
 3 files changed, 6 insertions(+), 8 deletions(-)

New commits:
commit c368e0c00e98212e783ae98a18616ea5d0ca6da6
Author: Julien Nabet 
AuthorDate: Thu Aug 15 19:56:03 2019 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 15 23:00:38 2019 +0200

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

in svtools

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

diff --git a/svtools/source/graphic/renderer.cxx 
b/svtools/source/graphic/renderer.cxx
index bae898873953..655e07ef72d5 100644
--- a/svtools/source/graphic/renderer.cxx
+++ b/svtools/source/graphic/renderer.cxx
@@ -151,8 +151,7 @@ sal_Bool SAL_CALL GraphicRendererVCL::supportsService( 
const OUString& ServiceNa
 
 uno::Sequence< OUString > SAL_CALL 
GraphicRendererVCL::getSupportedServiceNames()
 {
-uno::Sequence aSeq { "com.sun.star.graphic.GraphicRendererVCL" };
-return aSeq;
+return uno::Sequence{"com.sun.star.graphic.GraphicRendererVCL" };
 }
 
 
diff --git a/svtools/source/hatchwindow/documentcloser.cxx 
b/svtools/source/hatchwindow/documentcloser.cxx
index e94403073477..58d4f4ecbd96 100644
--- a/svtools/source/hatchwindow/documentcloser.cxx
+++ b/svtools/source/hatchwindow/documentcloser.cxx
@@ -220,8 +220,7 @@ sal_Bool SAL_CALL ODocumentCloser::supportsService( const 
OUString& ServiceName
 
 uno::Sequence< OUString > SAL_CALL ODocumentCloser::getSupportedServiceNames()
 {
-const OUString aServiceName( "com.sun.star.embed.DocumentCloser" );
-return uno::Sequence< OUString >( , 1 );
+return uno::Sequence< OUString > { "com.sun.star.embed.DocumentCloser" };
 }
 
 }
diff --git a/svtools/source/hatchwindow/hatchwindowfactory.cxx 
b/svtools/source/hatchwindow/hatchwindowfactory.cxx
index 63004c951004..9bd711d18b51 100644
--- a/svtools/source/hatchwindow/hatchwindowfactory.cxx
+++ b/svtools/source/hatchwindow/hatchwindowfactory.cxx
@@ -74,10 +74,10 @@ sal_Bool SAL_CALL OHatchWindowFactory::supportsService( 
const OUString& ServiceN
 
 uno::Sequence< OUString > SAL_CALL 
OHatchWindowFactory::getSupportedServiceNames()
 {
-uno::Sequence< OUString > aRet(2);
-aRet[0] = "com.sun.star.embed.HatchWindowFactory";
-aRet[1] = "com.sun.star.comp.embed.HatchWindowFactory";
-return aRet;
+return uno::Sequence{
+"com.sun.star.embed.HatchWindowFactory",
+"com.sun.star.comp.embed.HatchWindowFactory"
+};
 }
 
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

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

--- Comment #44 from Commit Notification 
 ---
Julien Nabet committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

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 123984] Bad scaling of inserted video in Impress

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

Petr Valach  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #5 from Petr Valach  ---
Understand. I close it. Thank you very much.

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

[Libreoffice-commits] core.git: include/oox oox/inc oox/source sd/qa sd/source

2019-08-15 Thread Bartosz Kosiorek (via logerrit)
 include/oox/drawingml/shapepropertymap.hxx |1 
 oox/inc/drawingml/lineproperties.hxx   |3 ++
 oox/source/drawingml/chart/objectformatter.cxx |5 ++--
 oox/source/drawingml/lineproperties.cxx|   24 +++
 oox/source/drawingml/shape.cxx |1 
 oox/source/drawingml/shapepropertymap.cxx  |2 -
 oox/source/export/drawingml.cxx|8 ++
 oox/source/token/properties.txt|1 
 sd/qa/unit/data/odp/closed-shapes.odp  |binary
 sd/qa/unit/export-tests-ooxml2.cxx |   31 ++---
 sd/source/filter/eppt/pptx-epptooxml.cxx   |3 ++
 11 files changed, 73 insertions(+), 6 deletions(-)

New commits:
commit 606a88d2abf85aa6edcc1fa26dc50cab6de3241f
Author: Bartosz Kosiorek 
AuthorDate: Sat Aug 10 12:11:38 2019 +0200
Commit: Bartosz Kosiorek 
CommitDate: Thu Aug 15 22:43:51 2019 +0200

tdf#126746 Add support for import/export line caps for .pptx format

With this commit I have added importing and exporting line caps,
which could be (for pptx format:
  rnd   Round Line Cap
  sqSquare Line Cap
  flat  Flat Line Cap

Also exporting of these caps are added.

Change-Id: I799485048a2a7ac8df89f004e177d507f86ce99d
Reviewed-on: https://gerrit.libreoffice.org/77233
Reviewed-by: Regina Henschel 
Reviewed-by: Bartosz Kosiorek 
Tested-by: Bartosz Kosiorek 

diff --git a/include/oox/drawingml/shapepropertymap.hxx 
b/include/oox/drawingml/shapepropertymap.hxx
index eff203a4643d..cc55b24e8ceb 100644
--- a/include/oox/drawingml/shapepropertymap.hxx
+++ b/include/oox/drawingml/shapepropertymap.hxx
@@ -49,6 +49,7 @@ enum class ShapeProperty
 LineColor,
 LineTransparency,
 LineDash, ///< Explicit line dash or name of a line 
dash stored in a global container.
+LineCap,
 LineJoint,
 LineStart,///< Explicit line start marker or name of a 
line marker stored in a global container.
 LineStartWidth,
diff --git a/oox/inc/drawingml/lineproperties.hxx 
b/oox/inc/drawingml/lineproperties.hxx
index 512c1aba5fe6..b0d27a278373 100644
--- a/oox/inc/drawingml/lineproperties.hxx
+++ b/oox/inc/drawingml/lineproperties.hxx
@@ -23,6 +23,7 @@
 #include 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -74,6 +75,8 @@ struct OOX_DLLPUBLIC LineProperties
 
 /** Calculates the line style attribute from the internal state of the 
object */
 css::drawing::LineStyle  getLineStyle() const;
+/** Calculates the line cap attribute from the internal state of the 
object */
+css::drawing::LineCap  getLineCap() const;
 /** Calculates the line joint attribute from the internal state of the 
object */
 css::drawing::LineJoint  getLineJoint() const;
 /** Calculates the line width attribute from the internal state of the 
object */
diff --git a/oox/source/drawingml/chart/objectformatter.cxx 
b/oox/source/drawingml/chart/objectformatter.cxx
index 9c64530a70ad..ed52ccf5c2b1 100644
--- a/oox/source/drawingml/chart/objectformatter.cxx
+++ b/oox/source/drawingml/chart/objectformatter.cxx
@@ -446,7 +446,7 @@ const AutoTextEntry* lclGetAutoTextEntry( const 
AutoTextEntry* pEntries, sal_Int
 static const ShapePropertyIds spnCommonPropIds =
 {
 PROP_LineStyle, PROP_LineWidth, PROP_LineColor, PROP_LineTransparence, 
PROP_LineDashName,
-PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, 
PROP_INVALID, PROP_INVALID,
+PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, 
PROP_INVALID, PROP_INVALID, PROP_INVALID,
 PROP_FillStyle, PROP_FillColor, PROP_FillTransparence, PROP_INVALID, 
PROP_FillGradientName,
 PROP_FillBitmapName, PROP_FillBitmapMode, PROP_FillBitmapSizeX, 
PROP_FillBitmapSizeY,
 PROP_FillBitmapPositionOffsetX, PROP_FillBitmapPositionOffsetY, 
PROP_FillBitmapRectanglePoint,
@@ -456,7 +456,7 @@ static const ShapePropertyIds spnCommonPropIds =
 static const ShapePropertyIds spnLinearPropIds =
 {
 PROP_LineStyle, PROP_LineWidth, PROP_Color, PROP_Transparency, 
PROP_LineDashName,
-PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, 
PROP_INVALID, PROP_INVALID,
+PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, 
PROP_INVALID, PROP_INVALID, PROP_INVALID,
 PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID,
 PROP_INVALID, PROP_INVALID, PROP_INVALID, PROP_INVALID,
 PROP_INVALID, PROP_INVALID, PROP_INVALID,
@@ -477,6 +477,7 @@ static const ShapePropertyIds spnFilledPropIds =
 PROP_INVALID,
 PROP_INVALID,
 PROP_INVALID,
+PROP_INVALID,
 PROP_FillStyle,
 PROP_Color,
 PROP_Transparency,
diff --git a/oox/source/drawingml/lineproperties.cxx 
b/oox/source/drawingml/lineproperties.cxx
index 2b5de7a1f8c0..a7ea2396e65d 100644
--- a/oox/source/drawingml/lineproperties.cxx
+++ 

[Libreoffice-bugs] [Bug 126955] There's no way to override the heuristic file type determination.

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

Chris  changed:

   What|Removed |Added

   Severity|normal  |trivial

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

[Libreoffice-bugs] [Bug 126955] There's no way to override the heuristic file type determination.

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

Chris  changed:

   What|Removed |Added

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

--- Comment #1 from Chris  ---
Created attachment 153423
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153423=edit
Demonstration of a file that triggers the bug

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

[Libreoffice-bugs] [Bug 126955] New: There's no way to override the heuristic file type determination.

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

Bug ID: 126955
   Summary: There's no way to override the heuristic file type
determination.
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: christopherle...@hotmail.com

Description:
When choosing a file to open, LibreOffice uses a heuristic to guess the file
type, and choose the correct program. In most cases, it does a pretty good job
of deciding which program (Calc, Writer, etc.) to use to read the file.

However, there are cases where the heuristic fails, and the wrong program is
opened. For instance, IIF is a common format of file for data exchange between
accounting software (particularly QuickBooks). It is a grid-based,
tab-delimited file format that is best edited with a spreadsheet application,
such as Calc. However, trying to open an IIF file in Calc results in the Writer
application opening the file instead.

Changing the file type to "Text CSV" in the open dialog does cause Calc to
behave properly. However, it also has the side effect of hiding any file that
doesn't have a CSV extension, making it impossible to choose the file. You
either have to remember the name and type it in, or remember to choose the file
before choosing the file type. Also note that LibreOffice on certain Linux
installations don't give you the option of typing the name at all.

The above behavior is correct in most situations, and should remain the
default. But there needs to be an easy way to override the automatic file type
detection, separate from the file extension filter, for edge cases such as
this.

Steps to Reproduce:
1. Open Calc.
2. Choose File/Open.
3. Pick an IIF file.

Actual Results:
The file opens in Writer, with no option to change it.

Expected Results:
There should be some *easy* way to force the file to open in Calc, using the
Text CSV import options.


Reproducible: Always


User Profile Reset: Yes



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

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

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

[Libreoffice-bugs] [Bug 126954] Image cropping bug in Writer 6.2.5.2

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

Marcellus Wallace  changed:

   What|Removed |Added

 CC||beber...@yahoo.fr

--- Comment #1 from Marcellus Wallace  ---
Created attachment 153422
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153422=edit
this is the doc with incorrectly cropped pictures

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

[Libreoffice-bugs] [Bug 126254] Help - About is black with Linux gen and gtk2 backend

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

Rene Engelhard  changed:

   What|Removed |Added

Version|6.4.0.0.alpha0+ Master  |6.3.0.2 rc

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

[Libreoffice-bugs] [Bug 126954] New: Image cropping bug in Writer 6.2.5.2

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

Bug ID: 126954
   Summary: Image cropping bug in Writer 6.2.5.2
   Product: LibreOffice
   Version: 6.2.5.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: beber...@yahoo.fr

Description:
I cropped and resize an image in Writer on my desktop. The file looked good.
Then I opened it in my laptop and I saw that the cropping of every image was
incorrect. I fixed it with my laptop, saved and closed. I reopened it,
everything was fine. I reopened it with my desktop and bad cropping was here
again, it still was present on a virtualized Xubuntu.
It's always the same file, opened from the same place, a shared folder.
Desktop (Win10 up to date), Laptop (Win10 up to date) and virtualized Xubuntu
(19.04 up to date) has the same LibreOffice version : 6.2.5.2 
Here, you'll find a video of what I see : https://www.youtube.com/upload

Steps to Reproduce:
1. Open the file
2. look at the pictures
3.

Actual Results:
pictures aren't correctly cropped when file is opened on another computer

Expected Results:
The document should be identical


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
I already experienced such cropping problems in previous LibreOffice versions.

-- 
You are receiving this mail because:
You 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' - comphelper/source dbaccess/source include/comphelper include/oox include/sfx2 include/xmloff oox/source scripting/source sc/source sfx2/sourc

2019-08-15 Thread Caolán McNamara (via logerrit)
 comphelper/source/misc/documentinfo.cxx  |   14 +++
 dbaccess/source/core/dataaccess/ModelImpl.cxx|7 +
 dbaccess/source/core/dataaccess/databasedocument.cxx |   25 --
 dbaccess/source/core/inc/ModelImpl.hxx   |2 
 include/comphelper/documentinfo.hxx  |5 +
 include/oox/ole/axcontrol.hxx|2 
 include/sfx2/docmacromode.hxx|7 +
 include/sfx2/objsh.hxx   |3 
 include/xmloff/xmlimp.hxx|3 
 oox/source/ole/vbaproject.cxx|4 +
 sc/source/filter/excel/xiescher.cxx  |   36 -
 sc/source/filter/inc/xiescher.hxx|   11 ++
 sc/source/ui/vba/vbasheetobject.cxx  |   13 +++
 sc/source/ui/vba/vbasheetobject.hxx  |4 +
 scripting/source/protocolhandler/scripthandler.cxx   |6 -
 sfx2/source/doc/docmacromode.cxx |2 
 sfx2/source/doc/objmisc.cxx  |   13 +--
 sfx2/source/doc/objstor.cxx  |   10 ++
 sfx2/source/doc/objxtor.cxx  |1 
 sfx2/source/doc/sfxbasemodel.cxx |7 +
 sfx2/source/inc/objshimp.hxx |4 -
 sfx2/source/notify/eventsupplier.cxx |   70 +--
 sw/source/filter/html/htmlform.cxx   |   16 +++-
 sw/source/filter/html/htmlgrin.cxx   |   19 +
 sw/source/filter/html/swhtml.cxx |1 
 sw/source/filter/html/swhtml.hxx |3 
 sw/source/filter/ww8/ww8par.cxx  |   13 +++
 sw/source/filter/ww8/ww8par.hxx  |2 
 sw/source/filter/ww8/ww8par5.cxx |2 
 xmloff/source/core/xmlimp.cxx|   14 +++
 xmloff/source/script/XMLEventImportHelper.cxx|3 
 31 files changed, 266 insertions(+), 56 deletions(-)

New commits:
commit a661549b70d30d8925e9839ca97e832111f289b5
Author: Caolán McNamara 
AuthorDate: Wed Aug 7 17:37:11 2019 +0100
Commit: Caolán McNamara 
CommitDate: Thu Aug 15 21:36:42 2019 +0200

warn on load when a document binds an event to a macro

a) treat shared/Scripts equivalently to document scripts

This doesn't automatically warn/block running those scripts when used in a
freshly loaded document on its own however

because DocumentMacroMode::checkMacrosOnLoading will see at...

if ( m_xData->m_rDocumentAccess.documentStorageHasMacros() || 
hasMacroLibrary() )

that the document contains no macros and flip the allow macros flag to true 
so
that potentially new uses of macros added by the user during the edit are
allowed to run

b) so, add an additional flag to indicate existence of use of macros in a 
document

c) for odf import, set it when a script:event-listener tag is encountered
d) for html import when registerScriptEvents or 
SwFormatINetFormat::SetMacroTable is called
e) for doc import when Read_F_Macro or StoreMacroCmds is called as well for 
good measure
f) for xls import when registerScriptEvent or ScMacroInfo::SetMacro is 
called
g) for oox import when VbaProject::attachMacros is called

Change-Id: Ic1203d8ec7dfc217aa217135033ae9db2888e19b
Reviewed-on: https://gerrit.libreoffice.org/77386
Tested-by: Jenkins
Reviewed-by: Michael Stahl 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/comphelper/source/misc/documentinfo.cxx 
b/comphelper/source/misc/documentinfo.cxx
index 6115ad0e2e25..102766778f95 100644
--- a/comphelper/source/misc/documentinfo.cxx
+++ b/comphelper/source/misc/documentinfo.cxx
@@ -158,6 +158,20 @@ namespace comphelper {
 return sTitle;
 }
 
+void DocumentInfo::notifyMacroEventRead(const 
css::uno::Reference& rModel)
+{
+if (!rModel.is())
+return;
+
+// like BreakMacroSignature of XMLScriptContext use 
XModel::attachResource
+// to propagate this notification
+css::uno::Sequence aMedDescr = 
rModel->getArgs();
+sal_Int32 nNewLen = aMedDescr.getLength() + 1;
+aMedDescr.realloc(nNewLen);
+aMedDescr[nNewLen-1].Name = "MacroEventRead";
+aMedDescr[nNewLen-1].Value <<= true;
+rModel->attachResource(rModel->getURL(), aMedDescr);
+}
 
 } // namespace comphelper
 
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.cxx 
b/dbaccess/source/core/dataaccess/ModelImpl.cxx
index e27dc8d4a292..9958b6c0e995 100644
--- a/dbaccess/source/core/dataaccess/ModelImpl.cxx
+++ b/dbaccess/source/core/dataaccess/ModelImpl.cxx
@@ -370,6 +370,7 @@ ODatabaseModelImpl::ODatabaseModelImpl( const Reference< 
XComponentContext >& _r
 ,m_bSuppressVersionColumns(true)
 ,m_bModified(false)
 

[Libreoffice-bugs] [Bug 126885] LibreOffice is slow unless I use SAL_USE_VCLPLUGIN=gen

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

--- Comment #6 from Shay G  ---
@Julien Nabet: Didn't use accessibility tools.

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

[Libreoffice-bugs] [Bug 126895] Text alignment "Justified" last line "start" not honored in outline

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

Bob  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|NOTABUG |---

--- Comment #7 from Bob  ---
Thank you for the detailed response.  I will look into this for the sample
document.  However, it looks like you've come up with a work-around for this
particular use case.  Yes I could use headings for this document.  But the
problem I'm reporting is that it seems "Last line" for Justify cannot work in
outlines.  It is not unreasonable to have more than one paragraph in one
numbered outline section, and using shift-enter seems the only way to do that
in an outline without creating a new section.  It doesn't seem like what you
are suggesting will fix that problem.
Philosophically we could say it's not a bug, but it would certainly be a
deficiency to say that Justify with Last line left-justified cannot work in a
multi-paragraph outline section.  Again philosophically, we could say that an
outline section is considered one paragraph no matter what, and therefore Write
is behaving properly, but that doesn't serve the visual definition of a
paragraph.  And if this is the case, perhaps as a feature request there could
be the notion of a "new paragraph" insert.  Thanks for listening.

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

[Libreoffice-bugs] [Bug 126941] Date format with frontslashes (15/08/2019) will be changed to format with points (15.08.2019) when input data in a date-field of a tablecontrol of a form.

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

Robert Großkopf  changed:

   What|Removed |Added

Summary|changing of date format not |Date format with
   |affecting date field in |frontslashes (15/08/2019)
   |table element in form   |will be changed to format
   ||with points (15.08.2019)
   ||when input data in a
   ||date-field of a
   ||tablecontrol of a form.
 Status|UNCONFIRMED |NEW
 CC||rob...@familiegrosskopf.de
 Ever confirmed|0   |1
 OS|Windows (All)   |Linux (All)

--- Comment #1 from Robert Großkopf  ---
Have tested the attached Firebird-Database with LO 6.3.0.4.
Date format, choosen in the properties of the date-field of the tablecontrol,
should be DD/MM/ (15/08/2019). When changing from editmode to input data it
changes to DD.MM. (15.08.2019). This seems to be the same with all
frontslashes. Instead of frontslashes you could see points.

My system: OpenSUSE 15 64bit rpm Linux.

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

[Libreoffice-bugs] [Bug 126940] corrupt copy paste from base to calc containing russian symbols

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

Mike Kaganski  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #7 from Mike Kaganski  ---
https://gerrit.libreoffice.org/77545

-- 
You are receiving this mail because:
You 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-2' - sfx2/uiconfig

2019-08-15 Thread Caolán McNamara (via logerrit)
 sfx2/uiconfig/ui/loadtemplatedialog.ui |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3bf80a7c307b11630a81cb9b998baed8e19f0e1d
Author: Caolán McNamara 
AuthorDate: Thu Aug 15 13:17:43 2019 +0100
Commit: Xisco Faulí 
CommitDate: Thu Aug 15 20:56:06 2019 +0200

Resolves: tdf#126943 load styles should be modal

Change-Id: I7526cd974d3c3ac47f29fda95af226d42d63f583
Reviewed-on: https://gerrit.libreoffice.org/77518
Tested-by: Jenkins
Reviewed-by: Xisco Faulí 

diff --git a/sfx2/uiconfig/ui/loadtemplatedialog.ui 
b/sfx2/uiconfig/ui/loadtemplatedialog.ui
index 5c3fecf13ac0..29ee17a09d54 100644
--- a/sfx2/uiconfig/ui/loadtemplatedialog.ui
+++ b/sfx2/uiconfig/ui/loadtemplatedialog.ui
@@ -22,6 +22,7 @@
 False
 6
 New
+True
 dialog
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 126926] Extra filter icon appears on deleting sheet columns

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 OS|Windows (All)   |All

--- Comment #4 from Xisco Faulí  ---
Also reproduced in

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

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

2019-08-15 Thread Noel Grandin (via logerrit)
 shell/source/cmdmail/cmdmailsuppl.cxx|6 +++---
 slideshow/source/engine/shapes/shapeimporter.cxx |2 +-
 slideshow/source/engine/slide/slideimpl.cxx  |2 +-
 sot/source/sdstor/ucbstorage.cxx |2 +-
 sot/source/unoolestorage/xolesimplestorage.cxx   |2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 8e0918a04ee6797909264943eba23707b224c34c
Author: Noel Grandin 
AuthorDate: Thu Aug 15 13:35:20 2019 +0200
Commit: Noel Grandin 
CommitDate: Thu Aug 15 20:51:38 2019 +0200

loplugin:sequenceloop in shell..sot

Change-Id: I40e2a1be0ce7df627d3820192d24821ddd7c3e2f
Reviewed-on: https://gerrit.libreoffice.org/77527
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx 
b/shell/source/cmdmail/cmdmailsuppl.cxx
index df8e1f5c170e..bbd0ae07d4cf 100644
--- a/shell/source/cmdmail/cmdmailsuppl.cxx
+++ b/shell/source/cmdmail/cmdmailsuppl.cxx
@@ -237,7 +237,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const 
Reference< XSimpleMailM
 
 // Append carbon copy recipients set in the message
 Sequence< OUString > aStringList = xSimpleMailMessage->getCcRecipient();
-for ( const auto& rString : aStringList )
+for ( const auto& rString : std::as_const(aStringList) )
 {
 aBuffer.append(" --cc ");
 appendShellWord(aBuffer, rString, false);
@@ -245,7 +245,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const 
Reference< XSimpleMailM
 
 // Append blind carbon copy recipients set in the message
 aStringList = xSimpleMailMessage->getBccRecipient();
-for ( const auto& rString : aStringList )
+for ( const auto& rString : std::as_const(aStringList) )
 {
 aBuffer.append(" --bcc ");
 appendShellWord(aBuffer, rString, false);
@@ -260,7 +260,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const 
Reference< XSimpleMailM
 
 // Append attachments set in the message
 aStringList = xSimpleMailMessage->getAttachement();
-for ( const auto& rString : aStringList )
+for ( const auto& rString : std::as_const(aStringList) )
 {
 OUString aSystemPath;
 if ( FileBase::E_None == FileBase::getSystemPathFromFileURL(rString, 
aSystemPath) )
diff --git a/slideshow/source/engine/shapes/shapeimporter.cxx 
b/slideshow/source/engine/shapes/shapeimporter.cxx
index 2b2139ab63b8..65b0414d2645 100644
--- a/slideshow/source/engine/shapes/shapeimporter.cxx
+++ b/slideshow/source/engine/shapes/shapeimporter.cxx
@@ -397,7 +397,7 @@ void 
ShapeImporter::importPolygons(uno::Reference const& xP
 getPropertyValue( nLineColor, xPropSet, "LineColor" );
 getPropertyValue( fLineWidth, xPropSet, "LineWidth" );
 
-drawing::PointSequence* pOuterSequence = aRetval.getArray();
+const drawing::PointSequence* pOuterSequence = aRetval.getArray();
 
 ::basegfx::B2DPolygon aPoly;
 basegfx::B2DPoint aPoint;
diff --git a/slideshow/source/engine/slide/slideimpl.cxx 
b/slideshow/source/engine/slide/slideimpl.cxx
index 3786a00786c2..911f9866074d 100644
--- a/slideshow/source/engine/slide/slideimpl.cxx
+++ b/slideshow/source/engine/slide/slideimpl.cxx
@@ -841,7 +841,7 @@ void SlideImpl::applyShapeAttributes(
 const css::uno::Reference< css::animations::XAnimationNode >& 
xRootAnimationNode,
 bool bInitial) const
 {
-uno::Sequence< animations::TargetProperties > aProps(
+const uno::Sequence< animations::TargetProperties > aProps(
 TargetPropertiesCreator::createTargetProperties( xRootAnimationNode, 
bInitial ) );
 
 // apply extracted values to our shapes
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx
index 0aa9fff0b3c9..1b3bd3381e8a 100644
--- a/sot/source/sdstor/ucbstorage.cxx
+++ b/sot/source/sdstor/ucbstorage.cxx
@@ -1941,7 +1941,7 @@ bool UCBStorage_Impl::Insert( ::ucbhelper::Content 
*pContent )
 
 try
 {
-Sequence< ContentInfo > aInfo = pContent->queryCreatableContentsInfo();
+const Sequence< ContentInfo > aInfo = 
pContent->queryCreatableContentsInfo();
 if ( !aInfo.hasElements() )
 return false;
 
diff --git a/sot/source/unoolestorage/xolesimplestorage.cxx 
b/sot/source/unoolestorage/xolesimplestorage.cxx
index 82d7f8bbb7a5..5a7f561b0a22 100644
--- a/sot/source/unoolestorage/xolesimplestorage.cxx
+++ b/sot/source/unoolestorage/xolesimplestorage.cxx
@@ -236,7 +236,7 @@ void OLESimpleStorage::InsertNameAccessToStorage_Impl( 
BaseStorage* pStorage, co
 
 try
 {
-uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
+const uno::Sequence< OUString > aElements = 
xNameAccess->getElementNames();
 for ( const auto& rElement : aElements )
 {
 uno::Reference< io::XInputStream > xInputStream;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

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

2019-08-15 Thread Julien Nabet (via logerrit)
 writerperfect/source/calc/MSWorksCalcImportFilter.cxx |   15 
 writerperfect/source/calc/MWAWCalcImportFilter.cxx|   14 
 writerperfect/source/calc/NumbersImportFilter.cxx |   14 
 writerperfect/source/draw/CDRImportFilter.cxx |   14 
 writerperfect/source/draw/CMXImportFilter.cxx |   14 
 writerperfect/source/draw/FreehandImportFilter.cxx|   14 
 writerperfect/source/draw/MSPUBImportFilter.cxx   |   14 
 writerperfect/source/draw/MWAWDrawImportFilter.cxx|   14 
 writerperfect/source/draw/PageMakerImportFilter.cxx   |   14 
 writerperfect/source/draw/VisioImportFilter.cxx   |   14 
 writerperfect/source/draw/WPGImportFilter.cxx |   14 
 writerperfect/source/impress/KeynoteImportFilter.cxx  |   29 ++--
 writerperfect/source/impress/MWAWPresentationImportFilter.cxx |   14 
 writerperfect/source/writer/AbiWordImportFilter.cxx   |   14 
 writerperfect/source/writer/EBookImportFilter.cxx |   14 
 writerperfect/source/writer/MSWorksImportFilter.cxx   |   15 
 writerperfect/source/writer/MWAWImportFilter.cxx  |   14 
 writerperfect/source/writer/PagesImportFilter.cxx |   14 
 writerperfect/source/writer/WordPerfectImportFilter.cxx   |   35 --
 19 files changed, 73 insertions(+), 231 deletions(-)

New commits:
commit f817ce79d501ce32d54d6c8a3492f1913fb85a55
Author: Julien Nabet 
AuthorDate: Thu Aug 15 19:44:25 2019 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 15 20:49:17 2019 +0200

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

in writerperfect
+ remove some using

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

diff --git a/writerperfect/source/calc/MSWorksCalcImportFilter.cxx 
b/writerperfect/source/calc/MSWorksCalcImportFilter.cxx
index 919184a1fd75..e1c9b18d4163 100644
--- a/writerperfect/source/calc/MSWorksCalcImportFilter.cxx
+++ b/writerperfect/source/calc/MSWorksCalcImportFilter.cxx
@@ -34,12 +34,6 @@
 
 using namespace ::com::sun::star;
 
-using uno::Exception;
-using uno::RuntimeException;
-using uno::Sequence;
-using uno::XComponentContext;
-using uno::XInterface;
-
 namespace MSWorksCalcImportFilterInternal
 {
 /// returns the list of stream name present in a folder
@@ -435,13 +429,10 @@ sal_Bool SAL_CALL 
MSWorksCalcImportFilter::supportsService(const OUString& rServ
 return cppu::supportsService(this, rServiceName);
 }
 
-Sequence SAL_CALL MSWorksCalcImportFilter::getSupportedServiceNames()
+css::uno::Sequence SAL_CALL 
MSWorksCalcImportFilter::getSupportedServiceNames()
 {
-Sequence aRet(2);
-OUString* pArray = aRet.getArray();
-pArray[0] = "com.sun.star.document.ImportFilter";
-pArray[1] = "com.sun.star.document.ExtendedTypeDetection";
-return aRet;
+return css::uno::Sequence{ "com.sun.star.document.ImportFilter",
+ 
"com.sun.star.document.ExtendedTypeDetection" };
 }
 
 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
diff --git a/writerperfect/source/calc/MWAWCalcImportFilter.cxx 
b/writerperfect/source/calc/MWAWCalcImportFilter.cxx
index ce9834bdf8ec..5e4236d4772f 100644
--- a/writerperfect/source/calc/MWAWCalcImportFilter.cxx
+++ b/writerperfect/source/calc/MWAWCalcImportFilter.cxx
@@ -17,11 +17,6 @@
 
 #include "MWAWCalcImportFilter.hxx"
 
-using com::sun::star::uno::RuntimeException;
-using com::sun::star::uno::Sequence;
-using com::sun::star::uno::XComponentContext;
-using com::sun::star::uno::XInterface;
-
 static bool handleEmbeddedMWAWGraphicObject(const librevenge::RVNGBinaryData& 
data,
 OdfDocumentHandler* pHandler,
 const OdfStreamType streamType)
@@ -116,13 +111,10 @@ sal_Bool SAL_CALL 
MWAWCalcImportFilter::supportsService(const OUString& rService
 return cppu::supportsService(this, rServiceName);
 }
 
-Sequence SAL_CALL MWAWCalcImportFilter::getSupportedServiceNames()
+css::uno::Sequence SAL_CALL 
MWAWCalcImportFilter::getSupportedServiceNames()
 {
-Sequence aRet(2);
-OUString* pArray = aRet.getArray();
-pArray[0] = "com.sun.star.document.ImportFilter";
-pArray[1] = "com.sun.star.document.ExtendedTypeDetection";
-return aRet;
+return css::uno::Sequence{ "com.sun.star.document.ImportFilter",
+ 
"com.sun.star.document.ExtendedTypeDetection" };
 }
 
 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
diff --git a/writerperfect/source/calc/NumbersImportFilter.cxx 
b/writerperfect/source/calc/NumbersImportFilter.cxx
index 8cf18b492b9e..0352b2fa2981 100644
--- a/writerperfect/source/calc/NumbersImportFilter.cxx

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

2019-08-15 Thread Julien Nabet (via logerrit)
 editeng/source/accessibility/AccessibleImageBullet.cxx |4 +---
 editeng/source/uno/unonrule.cxx|4 +---
 editeng/source/uno/unotext.cxx |8 +++-
 3 files changed, 5 insertions(+), 11 deletions(-)

New commits:
commit 39921c1657d0d131ab7ed6c5490052f53bb764cb
Author: Julien Nabet 
AuthorDate: Thu Aug 15 20:02:41 2019 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 15 20:49:30 2019 +0200

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

in editeng

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

diff --git a/editeng/source/accessibility/AccessibleImageBullet.cxx 
b/editeng/source/accessibility/AccessibleImageBullet.cxx
index b596e292cb0d..3c9f7a0fc89b 100644
--- a/editeng/source/accessibility/AccessibleImageBullet.cxx
+++ b/editeng/source/accessibility/AccessibleImageBullet.cxx
@@ -359,9 +359,7 @@ namespace accessibility
 
 uno::Sequence< OUString > SAL_CALL 
AccessibleImageBullet::getSupportedServiceNames()
 {
-
-const OUString sServiceName 
("com.sun.star.accessibility.AccessibleContext");
-return uno::Sequence< OUString > (, 1);
+return uno::Sequence< OUString >{ 
"com.sun.star.accessibility.AccessibleContext" };
 }
 
 void AccessibleImageBullet::SetIndexInParent( sal_Int32 nIndex )
diff --git a/editeng/source/uno/unonrule.cxx b/editeng/source/uno/unonrule.cxx
index 3f2f344d9179..c9df5b169448 100644
--- a/editeng/source/uno/unonrule.cxx
+++ b/editeng/source/uno/unonrule.cxx
@@ -165,9 +165,7 @@ sal_Bool SAL_CALL SvxUnoNumberingRules::supportsService( 
const OUString& Service
 
 Sequence< OUString > SAL_CALL SvxUnoNumberingRules::getSupportedServiceNames(  
)
 {
-OUString aService( "com.sun.star.text.NumberingRules" );
-Sequence< OUString > aSeq( , 1 );
-return aSeq;
+return Sequence< OUString > { "com.sun.star.text.NumberingRules" };
 }
 
 Sequence 
SvxUnoNumberingRules::getNumberingRuleByIndex(sal_Int32 nIndex) const
diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx
index fc83f3fff196..74d453939ce5 100644
--- a/editeng/source/uno/unotext.cxx
+++ b/editeng/source/uno/unotext.cxx
@@ -1442,11 +1442,9 @@ uno::Sequence< OUString > SAL_CALL 
SvxUnoTextRangeBase::getSupportedServiceNames
 
 uno::Sequence< OUString > 
SvxUnoTextRangeBase::getSupportedServiceNames_Static()
 {
-uno::Sequence< OUString > aSeq(3);
-aSeq[0] = "com.sun.star.style.CharacterProperties";
-aSeq[1] = "com.sun.star.style.CharacterPropertiesComplex";
-aSeq[2] = "com.sun.star.style.CharacterPropertiesAsian";
-return aSeq;
+return uno::Sequence< OUString >{ "com.sun.star.style.CharacterProperties",
+  
"com.sun.star.style.CharacterPropertiesComplex",
+  
"com.sun.star.style.CharacterPropertiesAsian" };
 }
 
 // XTextRangeCompare
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

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

--- Comment #42 from Commit Notification 
 ---
Julien Nabet committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

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 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

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

--- Comment #43 from Commit Notification 
 ---
Julien Nabet committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/39921c1657d0d131ab7ed6c5490052f53bb764cb%5E%21

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

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 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.3.0 target:5.4.0   |target:5.3.0 target:5.4.0
   |target:6.1.0 target:6.2.0   |target:6.1.0 target:6.2.0
   ||target:6.4.0

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

[Libreoffice-bugs] [Bug 126849] UI Toolbar Customizing Icon

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

--- Comment #8 from ro...@rogercalvert.me.uk ---
Created attachment 153421
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153421=edit
Help - about Libreoffice

This is the About Libre Office text for version 6.2.5. I had to give up on 6.3
because it was unstable on my machine. I was previously using 6.2.2. All these
version show the same behaviour rearding changing command bar icons.

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

[Libreoffice-bugs] [Bug 126953] LibreOffice 6.3 Base crashes with the error loading of various forms.

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

Xisco Faulí  changed:

   What|Removed |Added

Crash report or||["SfxInfoBarWindow::addButt
crash signature||on(PushButton *)"]
   See Also||https://crashreport.libreof
   ||fice.org/stats/signature/Sf
   ||xInfoBarWindow::addButton(P
   ||ushButton%20*)

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

[Libreoffice-bugs] [Bug 126953] LibreOffice 6.3 Base crashes with the error loading of various forms.

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.

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

[Libreoffice-bugs] [Bug 124662] Crash in: libc-2.28.so

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

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #5 from Xisco Faulí  ---
A new major release of LibreOffice is available since this bug was reported.
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

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

[Libreoffice-bugs] [Bug 126849] UI Toolbar Customizing Icon

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

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #7 from Xisco Faulí  ---
Could you please paste the info from Help - about LibreOffice ?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the information has been provided

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

[Libreoffice-bugs] [Bug 126953] New: LibreOffice 6.3 Base crashes with the error loading of various forms.

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

Bug ID: 126953
   Summary: LibreOffice 6.3 Base crashes with the error loading of
various forms.
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kade...@ya.ru

Description:
When you try to use a database that works well in LibreOffice 6.2, in
LibreOffice 6.3 Base on different machines in different places when loading and
forming forms, it crashes and falls into a cyclic loading-an error and does not
load. Crashreport on W7x32:
http://crashreport.libreoffice.org/stats/crash_details/936fd856-98b2-488c-ab42-71f103594c92
On W10x64:
crashreport.libreoffice.org/stats/crash_details/fb066ce2-fd66-41c6-bbd1-0accf2bed0f3

Steps to Reproduce:
1.LibreOffice 6.3 + external DB Firebird + network multi-user mode.
2.Opening forms with iframes Calc attachments-documents that are formatted
during the download process, listeners and control buttons are installed
(inside Calc). 3.The formation of these OLE objects fails.


Actual Results:


6.3 LibreOffice Base fails, the attempt at recovery and attempt to reboot.
Always unsuccessful.


Expected Results:
In LO6.2, the form is loaded, formatted, control buttons are created in
IFrame-calc. Then the work and changes in the IFrame-calc document take place.


Reproducible: Always


User Profile Reset: Yes



Additional Info:

Here's the message:
The failure report was successfully sent.
It will soon be available at:
crashreport.libreoffice.org/stats/crash_details/936fd856-98b2-488c-ab42-71f103594c92
Check the report if there are no related error reports yet, please create one
on bugs.documentfoundation.org ahhh!
Add details on how to reproduce the failure and the above ID in the crash
report field.
Thank you for Your help in improving LibreOffice.

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

[Libreoffice-bugs] [Bug 107243] [META] Locale keyboard shortcut issues

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

Bug 125306 Summary: Shortcut Ctrl+Shift+; work uncorrectly  with JP keyboard
https://bugs.documentfoundation.org/show_bug.cgi?id=125306

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 125306] Shortcut Ctrl+Shift+; work uncorrectly with JP keyboard

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

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #4 from Xisco Faulí  ---
it seems to be the same problem as in bug 126888

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

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

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

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||aist0...@gmail.com

--- Comment #9 from Xisco Faulí  ---
*** Bug 125306 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 126950] Blurry text on 6.3.0.4 OSX Mojave

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

solarcolom...@icloud.com changed:

   What|Removed |Added

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

--- Comment #3 from solarcolom...@icloud.com ---
this is not a duplicate of bug 122218 since with 6.1.. there was no problem at
all.

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

[Libreoffice-bugs] [Bug 125176] Long comment should be collapsed

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||tima...@gmail.com

--- Comment #7 from Xisco Faulí  ---
Buovjaga, this is a LibreOffice Online issue

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

[Libreoffice-commits] core.git: 4 commits - include/vcl sw/qa sw/source test/source toolkit/source unoxml/source uui/source vbahelper/source vcl/qt5 vcl/source vcl/unx vcl/workben writerfilter/source

2019-08-15 Thread Noel Grandin (via logerrit)
 include/vcl/graphicfilter.hxx |2 
 sw/qa/extras/globalfilter/globalfilter.cxx|4 -
 sw/qa/extras/mailmerge/mailmerge.cxx  |2 
 sw/qa/extras/odfexport/odfexport.cxx  |3 
 sw/qa/extras/uiwriter/uiwriter.cxx|6 -
 sw/qa/extras/unowriter/unowriter.cxx  |4 -
 sw/qa/extras/ww8export/ww8export2.cxx |2 
 sw/source/core/crsr/DropDownFormFieldButton.cxx   |2 
 sw/source/core/doc/docglos.cxx|4 -
 sw/source/core/doc/docxforms.cxx  |2 
 sw/source/core/edit/edfcol.cxx|4 -
 sw/source/core/fields/authfld.cxx |2 
 sw/source/core/unocore/unochart.cxx   |4 -
 sw/source/core/unocore/unocrsrhelper.cxx  |2 
 sw/source/core/unocore/unoevent.cxx   |2 
 sw/source/core/unocore/unoframe.cxx   |2 
 sw/source/core/unocore/unoidx.cxx |2 
 sw/source/filter/html/htmlforw.cxx|2 
 sw/source/filter/html/wrthtml.cxx |2 
 sw/source/filter/ww8/docxattributeoutput.cxx  |   40 +-
 sw/source/filter/ww8/docxexport.cxx   |   18 ++--
 sw/source/filter/ww8/docxexport.hxx   |2 
 sw/source/filter/ww8/docxtablestyleexport.cxx |   66 +-
 sw/source/filter/ww8/docxtablestyleexport.hxx |2 
 sw/source/filter/ww8/rtfattributeoutput.cxx   |2 
 sw/source/filter/ww8/rtfexport.cxx|4 -
 sw/source/filter/ww8/rtfexport.hxx|3 
 sw/source/filter/ww8/wrtw8esh.cxx |2 
 sw/source/filter/ww8/wrtww8.hxx   |4 -
 sw/source/filter/ww8/ww8par.cxx   |2 
 sw/source/filter/xml/xmlimp.cxx   |4 -
 sw/source/ui/config/optcomp.cxx   |2 
 sw/source/ui/dbui/addresslistdialog.cxx   |4 -
 sw/source/ui/dbui/dbinsdlg.cxx|   10 +-
 sw/source/ui/dbui/mmaddressblockpage.cxx  |4 -
 sw/source/ui/dbui/mmgreetingspage.cxx |4 -
 sw/source/ui/dbui/mmoutputtypepage.cxx|2 
 sw/source/ui/dbui/mmresultdialogs.cxx |2 
 sw/source/ui/dbui/selectdbtabledialog.cxx |2 
 sw/source/ui/envelp/envlop1.cxx   |2 
 sw/source/ui/envelp/label1.cxx|2 
 sw/source/ui/fldui/DropDownFieldDialog.cxx|2 
 sw/source/ui/fldui/DropDownFormFieldDialog.cxx|2 
 sw/source/ui/fldui/fldfunc.cxx|2 
 sw/source/ui/index/swuiidxmrk.cxx |4 -
 sw/source/ui/vba/vbaaddins.cxx|2 
 sw/source/uibase/app/docsh.cxx|2 
 sw/source/uibase/app/docshini.cxx |2 
 sw/source/uibase/dbui/dbmgr.cxx   |4 -
 sw/source/uibase/dbui/dbtree.cxx  |8 +-
 sw/source/uibase/lingu/olmenu.cxx |8 +-
 sw/source/uibase/shells/textsh1.cxx   |2 
 sw/source/uibase/uno/unomailmerge.cxx |2 
 test/source/beans/xpropertyset.cxx|2 
 test/source/sheet/xdatabaserange.cxx  |2 
 test/source/sheet/xfunctiondescriptions.cxx   |4 -
 test/source/sheet/xsheetcellrangecontainer.cxx|4 -
 test/source/sheet/xsheetfilterableex.cxx  |2 
 test/source/sheet/xsheetpagebreak.cxx |4 -
 test/source/text/textsettings.cxx |2 
 toolkit/source/awt/vclxtoolkit.cxx|4 -
 toolkit/source/awt/vclxwindow1.cxx|2 
 toolkit/source/awt/vclxwindows.cxx|4 -
 toolkit/source/controls/controlmodelcontainerbase.cxx |   10 +-
 toolkit/source/controls/dialogcontrol.cxx |4 -
 toolkit/source/controls/geometrycontrolmodel.cxx  |4 -
 toolkit/source/controls/stdtabcontroller.cxx  |4 -
 toolkit/source/controls/tabpagecontainer.cxx  |2 
 toolkit/source/controls/tabpagemodel.cxx  |2 
 toolkit/source/controls/unocontrolcontainer.cxx   |4 -
 toolkit/source/controls/unocontrolmodel.cxx   |4 -
 toolkit/source/helper/vclunohelper.cxx|2 
 unoxml/source/dom/saxbuilder.cxx  |2 
 uui/source/iahndl.cxx |2 
 uui/source/passwordcontainer.cxx  |2 
 vbahelper/source/msforms/vbauserform.cxx  |2 
 vbahelper/source/vbahelper/vbashape.cxx   |2 
 vbahelper/source/vbahelper/vbashapes.cxx  |2 
 

[Libreoffice-commits] core.git: 5 commits - scaddins/source sccomp/source scripting/source sdext/source sd/qa sd/source sfx2/source starmath/source stoc/source svgio/qa svl/source svtools/source svx/s

2019-08-15 Thread Noel Grandin (via logerrit)
 scaddins/source/analysis/analysishelper.cxx   |4 -
 sccomp/source/solver/CoinMPSolver.cxx |4 -
 sccomp/source/solver/LpsolveSolver.cxx|6 +-
 sccomp/source/solver/SwarmSolver.cxx  |2 
 scripting/source/basprov/basprov.cxx  |2 
 scripting/source/dlgprov/dlgevtatt.cxx|2 
 scripting/source/dlgprov/dlgprov.cxx  |2 
 scripting/source/provider/BrowseNodeFactoryImpl.cxx   |8 
+--
 scripting/source/vbaevents/eventhelper.cxx|4 -
 sd/qa/unit/export-tests.cxx   |2 
 sd/source/core/CustomAnimationEffect.cxx  |2 
 sd/source/core/CustomAnimationPreset.cxx  |8 
+--
 sd/source/core/TransitionPreset.cxx   |2 
 sd/source/core/drawdoc.cxx|6 +-
 sd/source/core/stlpool.cxx|2 
 sd/source/filter/eppt/eppt.cxx|2 
 sd/source/filter/eppt/epptso.cxx  |2 
 sd/source/filter/eppt/pptexanimations.cxx |2 
 sd/source/filter/eppt/pptx-animations.cxx |2 
 sd/source/filter/ppt/pptinanimations.cxx  |2 
 sd/source/ui/dlg/PhotoAlbumDialog.cxx |2 
 sd/source/ui/dlg/tpaction.cxx |2 
 sd/source/ui/framework/configuration/ConfigurationController.cxx  |2 
 sd/source/ui/framework/factories/ViewShellWrapper.cxx |2 
 sd/source/ui/framework/tools/FrameworkHelper.cxx  |2 
 sd/source/ui/remotecontrol/Server.cxx |2 
 sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx  |4 -
 sd/source/ui/slideshow/PaneHider.cxx  |2 
 sd/source/ui/tools/ConfigurationAccess.cxx|2 
 sd/source/ui/unoidl/SdUnoSlideView.cxx|2 
 sd/source/ui/unoidl/unoobj.cxx|2 
 sd/source/ui/unoidl/unopage.cxx   |4 -
 sdext/source/minimizer/fileopendialog.cxx |4 -
 sdext/source/minimizer/impoptimizer.cxx   |2 
 sdext/source/minimizer/pagecollector.cxx  |2 
 sdext/source/presenter/PresenterConfigurationAccess.cxx   |6 +-
 sdext/source/presenter/PresenterTheme.cxx |2 
 sfx2/source/appl/appopen.cxx  |2 
 sfx2/source/appl/appserv.cxx  |2 
 sfx2/source/appl/fileobj.cxx  |2 
 sfx2/source/appl/newhelp.cxx  |2 
 sfx2/source/bastyp/fltfnc.cxx |8 
+--
 sfx2/source/bastyp/frmhtmlw.cxx   |2 
 sfx2/source/control/recentdocsview.cxx|2 
 sfx2/source/control/shell.cxx |2 
 sfx2/source/control/unoctitm.cxx  |3 -
 sfx2/source/dialog/dinfdlg.cxx|   16 
+++
 sfx2/source/dialog/dockwin.cxx|2 
 sfx2/source/dialog/filedlghelper.cxx  |2 
 sfx2/source/dialog/mailmodel.cxx  |2 
 sfx2/source/doc/docfac.cxx|2 
 sfx2/source/doc/docfile.cxx   |2 
 sfx2/source/doc/docinf.cxx|2 
 sfx2/source/doc/docmacromode.cxx  |2 
 sfx2/source/doc/doctemplates.cxx  |2 
 sfx2/source/doc/guisaveas.cxx |4 -
 sfx2/source/doc/objmisc.cxx   |2 
 sfx2/source/doc/objserv.cxx   |2 
 sfx2/source/doc/objstor.cxx   |   11 
++---
 sfx2/source/doc/sfxbasemodel.cxx  |4 -
 sfx2/source/doc/templatedlg.cxx   |2 
 sfx2/source/doc/watermarkitem.cxx |2 
 sfx2/source/doc/zoomitem.cxx   

[Libreoffice-commits] core.git: 2 commits - postprocess/qa pyuno/source reportdesign/source sc/source

2019-08-15 Thread Noel Grandin (via logerrit)
 postprocess/qa/services.cxx   |5 +++--
 pyuno/source/module/pyuno_struct.cxx  |3 ++-
 reportdesign/source/core/api/ReportDefinition.cxx |2 +-
 reportdesign/source/ui/inspection/GeometryHandler.cxx |4 ++--
 reportdesign/source/ui/inspection/metadata.cxx|2 +-
 reportdesign/source/ui/report/ViewsWindow.cxx |2 +-
 sc/source/core/data/dpobject.cxx  |7 ---
 sc/source/core/tool/addincol.cxx  |2 +-
 sc/source/core/tool/appoptio.cxx  |2 +-
 sc/source/filter/excel/xepivotxml.cxx |6 +++---
 sc/source/filter/oox/formulabase.cxx  |4 ++--
 sc/source/filter/oox/workbookhelper.cxx   |4 ++--
 sc/source/filter/xml/XMLCodeNameProvider.cxx  |2 +-
 sc/source/filter/xml/xmlexprt.cxx |4 ++--
 sc/source/filter/xml/xmlimprt.cxx |2 +-
 sc/source/ui/miscdlgs/optsolver.cxx   |2 +-
 sc/source/ui/unoobj/PivotTableDataProvider.cxx|9 +
 sc/source/ui/unoobj/appluno.cxx   |2 +-
 sc/source/ui/unoobj/cellvaluebinding.cxx  |2 +-
 sc/source/ui/unoobj/chartuno.cxx  |2 +-
 sc/source/ui/unoobj/dapiuno.cxx   |2 +-
 sc/source/ui/unoobj/eventuno.cxx  |2 +-
 sc/source/ui/unoobj/shapeuno.cxx  |2 +-
 sc/source/ui/vba/vbaworksheets.cxx|2 +-
 sc/source/ui/view/dbfunc3.cxx |2 +-
 sc/source/ui/view/tabvwshb.cxx|2 +-
 26 files changed, 42 insertions(+), 38 deletions(-)

New commits:
commit 16d7e22d78cdeac149ee874f803292b3e2634e0a
Author: Noel Grandin 
AuthorDate: Thu Aug 15 12:34:57 2019 +0200
Commit: Noel Grandin 
CommitDate: Thu Aug 15 20:22:06 2019 +0200

loplugin:sequenceloop in sc

Change-Id: I84e0b4784ddc66864b29e3b1f20c926aa17fc77f
Reviewed-on: https://gerrit.libreoffice.org/77523
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx
index 4c7d02baa957..9cfc72391e46 100644
--- a/sc/source/core/data/dpobject.cxx
+++ b/sc/source/core/data/dpobject.cxx
@@ -262,10 +262,11 @@ static sheet::DataPilotFieldOrientation 
lcl_GetDataGetOrientation( const uno::Re
 sheet::DataPilotFieldOrientation nRet = 
sheet::DataPilotFieldOrientation_HIDDEN;
 if ( xSource.is() )
 {
-uno::Reference xDimNames = 
xSource->getDimensions();
-for (const OUString& rDimName: xDimNames->getElementNames())
+uno::Reference xDimNameAccess = 
xSource->getDimensions();
+const uno::Sequence aDimNames = 
xDimNameAccess->getElementNames();
+for (const OUString& rDimName : aDimNames)
 {
-uno::Reference 
xDimProp(xDimNames->getByName(rDimName),
+uno::Reference 
xDimProp(xDimNameAccess->getByName(rDimName),
  uno::UNO_QUERY);
 if ( xDimProp.is() )
 {
diff --git a/sc/source/core/tool/addincol.cxx b/sc/source/core/tool/addincol.cxx
index 9dbe56cb70fb..ceeb156a0a31 100644
--- a/sc/source/core/tool/addincol.cxx
+++ b/sc/source/core/tool/addincol.cxx
@@ -439,7 +439,7 @@ void ScUnoAddInCollection::ReadConfiguration()
 uno::Sequence aLocalEntries;
 if ( aCompProperties[0] >>= aLocalEntries )
 {
-for ( const beans::PropertyValue& rConfig : 
aLocalEntries )
+for ( const beans::PropertyValue& rConfig : 
std::as_const(aLocalEntries) )
 {
 // PropertyValue name is the locale ("convert" from
 // string to canonicalize)
diff --git a/sc/source/core/tool/appoptio.cxx b/sc/source/core/tool/appoptio.cxx
index d181a450b795..530a8d9438cb 100644
--- a/sc/source/core/tool/appoptio.cxx
+++ b/sc/source/core/tool/appoptio.cxx
@@ -176,7 +176,7 @@ static void lcl_SetSortList( const Any& rValue )
 {
 aList.clear();
 
-for (const auto& rStr : aSeq)
+for (const auto& rStr : std::as_const(aSeq))
 {
 ScUserListData* pNew = new ScUserListData( rStr );
 aList.push_back(pNew);
diff --git a/sc/source/filter/excel/xepivotxml.cxx 
b/sc/source/filter/excel/xepivotxml.cxx
index eaee25d916c5..36db55476da8 100644
--- a/sc/source/filter/excel/xepivotxml.cxx
+++ b/sc/source/filter/excel/xepivotxml.cxx
@@ -715,16 +715,16 @@ void WriteGrabBagItemToStream(XclExpXmlStream& rStrm, 
sal_Int32 tokenId, const c
 
 css::uno::Sequence aFastSeq;
 css::uno::Sequence aUnkSeq;
-for (const auto& a : aSeqs)
+for (const auto& a : std::as_const(aSeqs))
 {
   

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

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

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #3 from Xisco Faulí  ---
(In reply to Jonathan Rahn from comment #2)
> This is already tested in 6.2.5.2, see the second crash report linked. We
> think the problem persists in 6.3 as well, but it was generally a bit
> unstable so we decided to put it aside for now.


A new major release of LibreOffice is available since this bug was reported.
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

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

[Libreoffice-bugs] [Bug 126944] Update help installer fonts to match newer versions of Windows

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

Xisco Faulí  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 126951] crash in custom slide show

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

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Keywords||bibisected
 Status|UNCONFIRMED |NEW
Version|6.4.0.0.alpha0+ Master  |6.2.0.0.beta1+

--- Comment #2 from Xisco Faulí  ---
It was fine until
https://cgit.freedesktop.org/libreoffice/core/commit/?id=a977098f59a4c931c6f8a1d423720e682f5ed047.
at this point selecting the existing slide on step 3 becomes impossible, later
on, in
https://cgit.freedesktop.org/libreoffice/core/commit/?id=df2cb0625ba0952ef1013373df875d643ad989d5,
the selection problem gets fixed and the crash can be reproduced

Adding Cc: to Caolán McNamara

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

Relationship between linecap and dashes

2019-08-15 Thread Regina Henschel

Hi all,

perhaps someone has an idea how to solve the problems with round dashes.

The problems are
(1)
LibreOffice applies the linecap not only to the true line ends, but to 
the dashes too. That might result in contradiction between DashStyle and 
LineCap (UNO enums). LibreOffice ignores the draw:style attribute of 
draw:stroke-dash element in ODF file format, it depends rounding of 
dashes on linecap. I see such behavior too in other application, which 
all do not have a special rounding attribute for the dashes. That 
includes MS Office, Corel Draw, Scribus and Browsers(SVG). But 
LibreOffice uses the DashStyle enum in several switches in the code and 
DashStyle is a published enum.

(2)
LibreOffice adds the linecap to the dash length and reduces the space 
between the dashes. I see that behavior in Browser(SVG), CorelDraw and 
Scribus too. But MS Office rounds the dashes themselves without taken 
any part of the space between the dashes.


You can skip the description below. It is only if you need some details.

Kind regards
Regina

ODF defines the dash pattern in the styles.xml file. For example
  
or
  

The line style itself has in its graphic-properties (relevant attributes 
only) for example

   draw:stroke="dash"
   draw:stroke-dash="Var3Dot2Dash"
   svg:stroke-width="0.6cm"
   svg:stroke-linecap="round
Or
  draw:stroke="dash"
  draw:stroke-dash="Fix1Dash2Dot"
  svg:stroke-width="0.6cm"
  svg:stroke-linecap="flat"

Possible values of draw:style attribute in the pattern are "rect" and 
"round".
Possible values of svg:stroke-linecap in the line style are "flat", 
"square" and "round".
From this definition, you would expect, that rounding of dashes is only 
defined by the pattern and rounding of the line ends is defined by the 
linecap.


UNO has the enum DashStyle in com::sun::star::drawing with values
{ RECT, ROUND, RECTRELATIVE, ROUNDRELATIVE }
RELATIVE corresponds to the ability to have dash length relative to line 
width or not. That exists in ODF too as you see in the examples.

And UNO has the struct LineDash with its components
DOTS, DOTLEN, DASHES, DASHLEN, DISTANCE.
The naming DOT and DASH is misleading, because always DOT corresponds to 
'dots1' of ODF, and DASH corresponds to 'dot2', regardless of the length 
given in DOTLEN and DASHLEN.
For linecaps exists the enum LineCap { BUTT, ROUND, SQUARE }. BUTT means 
the same as "flat".


OOXML has the line attribute cap, with values rnd (round), sq (square), 
flat. OOXML describes the dashing pattern with a sequence of Dash Stops 
elements, each with Dash length and Space length, all length values 
relative to line width. Despite of 'dot' in the names od prstDash 
presets, there exists no special pattern element 'dot'.


SVG describes the line cap in the stroke-linecap attribute and the 
pattern in a stroke-dasharray attribute, which too has dash pairs. 
SVG uses length with unit and percent values.


VML (Fallback in Word) uses the stroke element with attributes dashstyle 
and endcap. The pattern is a series of number pairs for dash length and 
space length, relative to line width. VML has some preset names with 
'dot', but here too the pattern does not provide a special 'dot' item.

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

[Libreoffice-bugs] [Bug 126951] crash in custom slide show

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

Xisco Faulí  changed:

   What|Removed |Added

 OS|Linux (All) |All

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

[Libreoffice-bugs] [Bug 126951] crash in custom slide show

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

Xisco Faulí  changed:

   What|Removed |Added

Crash report or||["SvListView::SelectListEnt
crash signature||ry(SvTreeListEntry
   ||*,bool)"]
 CC||xiscofa...@libreoffice.org
   See Also||https://crashreport.libreof
   ||fice.org/stats/signature/Sv
   ||ListView::SelectListEntry(S
   ||vTreeListEntry%20*,bool)

-- 
You are receiving this mail because:
You 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 'private/EL-SHREIF/ui_logger' - uitest/ui_logger_dsl

2019-08-15 Thread Ahmed ElShreif (via logerrit)
 uitest/ui_logger_dsl/dsl_core.py |   39 +--
 1 file changed, 21 insertions(+), 18 deletions(-)

New commits:
commit 2d3dd958b58876d63781855ad69459fa52fac0bf
Author: Ahmed ElShreif 
AuthorDate: Thu Aug 15 12:24:09 2019 -0500
Commit: Ahmed ElShreif 
CommitDate: Thu Aug 15 12:25:58 2019 -0500

Fix some Logger issues:

Replace tabs with spaces

Change-Id: I40779dfdb65037838e1a1b7bed5d89a656047ce6

diff --git a/uitest/ui_logger_dsl/dsl_core.py b/uitest/ui_logger_dsl/dsl_core.py
index a695ec009d22..5d2a7e93ba82 100644
--- a/uitest/ui_logger_dsl/dsl_core.py
+++ b/uitest/ui_logger_dsl/dsl_core.py
@@ -11,6 +11,9 @@ import sys
 import argparse
 from textx.metamodel import metamodel_from_file
 
+tab=""
+double_tab=""
+
 def parse_args():
 """
 This function parses the command-line arguments
@@ -59,7 +62,7 @@ class ul_Compiler:
 "from libreoffice.uno.propertyvalue import mkPropertyValues\n" + \
 "import importlib\n\n" + \
 "class TestClass(UITestCase):\n" + \
-"\tdef test_function(self):\n"
+tab+"def test_function(self):\n"
 
 self.variables.append(line)
 
@@ -123,7 +126,7 @@ class ul_Compiler:
 self.objects[self.current_app]+=1
 else:
 self.objects[self.current_app]=1
-line="\t\t"+self.current_app+" = 
MainWindow.getChild(\""+self.current_app+"\")\n"
+line=double_tab+self.current_app+" = 
MainWindow.getChild(\""+self.current_app+"\")\n"
 self.variables.append(line)
 
 def init_Object(self,Id_of_Object,Obj_parent):
@@ -132,16 +135,16 @@ class ul_Compiler:
 self.objects[Id_of_Object]+=1
 else:
 self.objects[Id_of_Object]=1
-line="\t\t"+Id_of_Object+" = "+Obj_parent+\
+line=double_tab+Id_of_Object+" = "+Obj_parent+\
 ".getChild(\""+Id_of_Object+"\")\n"
 self.variables.append(line)
 
 def write_line_without_parameters(self,Action_holder,Action,Action_type):
-
line="\t\t"+Action_holder+".executeAction(\""+Action+"\","+Action_type+"())\n"
+
line=double_tab+Action_holder+".executeAction(\""+Action+"\","+Action_type+"())\n"
 self.variables.append(line)
 
 def 
write_line_with_one_parameters(self,Action_holder,Action,Paramerter_name,parameter_value):
-line="\t\t"+Action_holder+".executeAction(\""+Action+"\", 
mkPropertyValues({\""+\
+line=double_tab+Action_holder+".executeAction(\""+Action+"\", 
mkPropertyValues({\""+\
 Paramerter_name+"\": \""+\
 str(parameter_value)+"\"}))\n"
 self.variables.append(line)
@@ -149,7 +152,7 @@ class ul_Compiler:
 def 
write_line_with_two_parameters(self,Action_holder,Action,Paramerter_name_1,parameter_value_1,
 Paramerter_name_2,parameter_value_2):
 
-line="\t\t"+Action_holder+\
+line=double_tab+Action_holder+\
 ".executeAction(\""+Action+"\", 
mkPropertyValues({\""+Paramerter_name_1+"\": \""+\
 str(parameter_value_1)+"\", \""+Paramerter_name_2+"\": \""+\
 str(parameter_value_2)+"\"}))\n"
@@ -157,7 +160,7 @@ class ul_Compiler:
 
 def handle_uno(self, UNOCommand):
 if(UNOCommand.prameters==None):
-line = "\t\tself.xUITest.executeCommand(\"" + \
+line = double_tab +"self.xUITest.executeCommand(\"" + \
 UNOCommand.uno_command_name +"\")\n"
 else:
 paramaters=""
@@ -165,18 +168,18 @@ class ul_Compiler:
 paramaters = paramaters + "\"" + p.key + "\" : " + 
str(p.value) + " ,"
 paramaters = paramaters[:-1]
 
-line = "\t\tself.xUITest.executeCommandWithParameters(\"" + \
+line = double_tab + "self.xUITest.executeCommandWithParameters(\"" 
+ \
 UNOCommand.uno_command_name +"\", mkPropertyValues({"+ 
paramaters +"}) )\n"
 
 self.variables.append(line)
 self.prev_command=UNOCommand
 
 def handle_start(self, StarterCommand):
-line="\t\tMainDoc = self.ui_test.create_doc_in_start_center(\""+\
+line= double_tab + "MainDoc = 
self.ui_test.create_doc_in_start_center(\""+\
 StarterCommand.program_name+"\")\n"
 self.variables.append(line)
 
-line="\t\tMainWindow = self.xUITest.getTopFocusWindow()\n"
+line= double_tab + "MainWindow = self.xUITest.getTopFocusWindow()\n"
 self.variables.append(line)
 
app={"writer":"writer_edit","calc":"grid_window","impress":"impress_win"\
 ,"math":"math_edit","draw":"draw_win"}
@@ -194,10 +197,10 @@ class ul_Compiler:
 key_word=old_line[-9:-3]
 
 if ( key_word == "Dialog"):
-old_line="\t\tself.ui_test.execute_dialog_through_command(\""+\
+old_line= double_tab + 
"self.ui_test.execute_dialog_through_command(\""+\
 

[Libreoffice-bugs] [Bug 126949] Data labels loses format unexpectedly

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

--- Comment #2 from Mark C  ---
Created attachment 153420
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153420=edit
LibreOffice spreadsheet document

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

[Libreoffice-bugs] [Bug 126949] Data labels loses format unexpectedly

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

Mark C  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 126885] LibreOffice is slow unless I use SAL_USE_VCLPLUGIN=gen

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

Shay G  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Shay G  ---
Distro just got v6.2.6. No longer slow. Closing

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

[Libreoffice-bugs] [Bug 126885] LibreOffice is slow unless I use SAL_USE_VCLPLUGIN=gen

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

--- Comment #4 from Julien Nabet  ---
Also, do you use any accessibility tools? If yes, would it be possible you
disable them just for the test?

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

[Libreoffice-bugs] [Bug 126885] LibreOffice is slow unless I use SAL_USE_VCLPLUGIN=gen

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

--- Comment #3 from Julien Nabet  ---
After having upgraded to 6.2.5, you can try this link:
https://wiki.documentfoundation.org/QA/FirstSteps

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

[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit 39cc9ed863cee396e2bb31d38e1aa44d8c97ad6c
Author: Olivier Hallot 
AuthorDate: Thu Aug 15 09:32:46 2019 -0300
Commit: Gerrit Code Review 
CommitDate: Thu Aug 15 19:09:58 2019 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  - Housekeeping Scripts dialog Help page

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

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

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

2019-08-15 Thread Olivier Hallot (via logerrit)
 source/text/shared/01/0613.xhp |   79 ++---
 1 file changed, 39 insertions(+), 40 deletions(-)

New commits:
commit f8fc25c072077221556b06ac8f60c4b679dd35f2
Author: Olivier Hallot 
AuthorDate: Thu Aug 15 09:32:46 2019 -0300
Commit: Olivier Hallot 
CommitDate: Thu Aug 15 19:09:58 2019 +0200

Housekeeping Scripts dialog Help page

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

diff --git a/source/text/shared/01/0613.xhp 
b/source/text/shared/01/0613.xhp
index 80352bd21..a0f786175 100644
--- a/source/text/shared/01/0613.xhp
+++ b/source/text/shared/01/0613.xhp
@@ -30,46 +30,46 @@
 
 
 
-Macro
+Macro
 Opens a dialog to organize 
macros.
 UFI: it is not the dialog to run a 
macro
 
 
 
 
-Macro 
name
+Macro name
 Displays the name of 
the selected macro. To create or to change the name of a macro, enter a name 
here.
 
 Lists the macros that are contained in the module selected 
in the Macro from list.
 UFI: Important: do not add Help IDS for 
SELECTOR_COMMANDS and SELECTOR_CATEGORIES, because they are reused for 
Customize dialog and will lead to display errors there if assigned. See 
#i51556#
 
-Macro 
from / Save macro in
+Macro from / Save macro in
 Lists the libraries and 
the modules where you can open or save your macros. To save a macro with a 
particular document, open the document, and then open this 
dialog.
 
-Run / 
Saveunfortunately both have the same Help ID
+Run / Saveunfortunately both have the same Help 
ID
 Runs or saves the current 
macro.
 
-Assign
+Assign
 Opens the Customize dialog, 
where you can assign the selected macro to a menu command, a toolbar, or an 
event.
 
 
-Edit
+Edit
 Starts the $[officename] Basic 
editor and opens the selected macro or dialog for editing.
 
-New / 
Delete
+New / Delete
 Creates a new macro, or 
deletes the selected macro.
 To create a 
new macro, select the "Standard" module in the Macro from list, 
and then click New.
 To delete a 
macro, select it, and then click Delete.
 
-New 
Library
+New Library
 Saves the recorded macro 
in a new library.
 
-New 
Module
+New Module
 Saves the recorded macro 
in a new module.
 
-Organizer
+Organizer
 Opens the Macro 
Organizer dialog, where you can add, edit, or delete existing macro 
modules, dialogs, and libraries.
-Module/Dialog tab page
+Module/Dialog tab page
 Lets you manage modules or 
dialog boxes.
 
 
@@ -77,89 +77,88 @@
 
 
 
-Module/Dialog
+Module/Dialog
 Lists the existing macros and 
dialogs.
 
 
-Edit
+Edit
 Opens the selected macro or dialog 
for editing.
 
 
-NewUFI: i40875
+NewUFI: i40875
 Opens the editor and creates a 
new module.
 
-New
+New
 Opens the editor and creates a 
new dialog.
 
-Libraries tab pagethe three tab pages have no 
Help button, so no need to have three help pages
+Libraries tab pagethe three tab pages have 
no Help button, so no need to have three help pages
 Lets you manage the macro libraries 
for the current application and any open documents.
 
 
 
-Location
+Location
 Select the application or the 
document containing the macro libraries that you want to 
organize.
 
-Library
+Library
 Lists the existing macro libraries 
for the current application and any open documents.
 
-Edit
+Edit
 Opens the $[officename] Basic editor so 
that you can modify the selected library.
 
 
-Password
+Password
 Assigns or edits the password for the 
selected library.
 
-New
+New
 Creates a new library.
 
 
-Name
+Name
 Enter a name for the new 
library or module.
 
-Importchanged in #i64102
+Importchanged in #i64102
 Locate that $[officename] Basic 
library that you want to add to the current list, and then click 
Open.
 
-Scripts
-
+Scripts
 
 
 
 
 
-Export
+Export
 Opens a dialog to export the selected library either as an extension or 
as a Basic library.
 
 
-Macros
-Select a macro or script 
from "user", "share", or an open document. To view the available macros or 
scripts, double-click an entry.
+Macros
+Select a macro or script 
from My Macros, %PRODUCTNAME Macros, or an open 
document. To view the available macros or scripts, double-click an 
entry.
 
-Run
+Run
 To run a script, select a script in the list, 
and then click Run.
 
-Create
+Create
 Creates a new script. The default 
script editor opens after you enter a name for the script.
 Enter a name for the 
script.UFI: called from Create and from 
Rename
 
-Edit
+Edit
 Opens the default script editor for your 
operating system.
 
-Rename
+Rename
 Opens a dialog where you can change the 
name of the selected script.
 
-Delete
+Delete
 Prompts you to delete the selected 
script.
 The Macro 
Selector dialog contains two list boxes, namely the Library list box and the 
Macro name list box.
-Library
-Select a macro 
or script from "user", "share", or an open document. To view the contents of a 
library, double-click an entry in the 

[Libreoffice-bugs] [Bug 122218] After Update to 6.1.4 on macOS fonts are blurred on retina display

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

trainma...@gmail.com changed:

   What|Removed |Added

 CC||solarcolom...@icloud.com

--- Comment #24 from trainma...@gmail.com ---
*** Bug 126950 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 126950] Blurry text on 6.3.0.4 OSX Mojave

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

trainma...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from trainma...@gmail.com ---


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

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

[Libreoffice-bugs] [Bug 126952] SVG: Wrong export from Draw to SVG-file

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

--- Comment #2 from Nick222  ---
Created attachment 153419
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153419=edit
SVG-file after export from Draw

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

[Libreoffice-bugs] [Bug 126952] SVG: Wrong export from Draw to SVG-file

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

--- Comment #1 from Nick222  ---
Created attachment 153418
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153418=edit
Draw-file

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

[Libreoffice-bugs] [Bug 126952] New: SVG: Wrong export from Draw to SVG-file

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

Bug ID: 126952
   Summary: SVG: Wrong export from Draw to SVG-file
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nick...@yandex.ru

Description:
Xubuntu 19.04-64

LibreOffice 6.3.0.4 ID: 1:6.3.0-0ubuntu0.19.04.1~lo1
from PPA


Steps to Reproduce:
1.Create file in Draw
2.Select all
3.Export to SVG-file

Actual Results:
Wrong text position

Expected Results:
Good text position


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 126951] crash in custom slide show

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

raal  changed:

   What|Removed |Added

   Keywords||regression
 CC||caol...@redhat.com,
   ||r...@post.cz

--- Comment #1 from raal  ---
regression, works in 5.4

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

[Libreoffice-bugs] [Bug 126951] New: crash in custom slide show

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

Bug ID: 126951
   Summary: crash in custom slide show
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Description:
crash in gen enviroment

Steps to Reproduce:
1.open impress
2.slideshow - custom slideshow - new
3.select existing slide and add >> to Selected slides/ OK
4. Edit
5. Select slide on right side in "Selected slides"
6. click button remove <<

Actual Results:
crash

Expected Results:
no crash


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.0.0.alpha0+
Build ID: 2812610f4f39ed5892da08864893c758325d1d39
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: x11;

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

[Libreoffice-bugs] [Bug 126950] Blurry text on 6.3.0.4 OSX Mojave

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

solarcolom...@icloud.com changed:

   What|Removed |Added

 CC||solarcolom...@icloud.com

--- Comment #1 from solarcolom...@icloud.com ---
Created attachment 153417
  --> https://bugs.documentfoundation.org/attachment.cgi?id=153417=edit
screenshot of problem

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

[Libreoffice-bugs] [Bug 126950] New: Blurry text on 6.3.0.4 OSX Mojave

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

Bug ID: 126950
   Summary: Blurry text on 6.3.0.4 OSX Mojave
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: x86 (IA32)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: solarcolom...@icloud.com

Description:
While the GUI looks perfect on the retina screen of the mbp15retina(late2013,
double GPU, blurry text effect on both devices) - no external screen, text and
numbers are blurry no matter what random settings are chosen in the app
preferences. OpenGL settings, font antialiasing, etc. are irrelevant and seem
to have no effect on libreoffice UI. as soon as the cell content is edited
however, the font looks crisp as the UI. by editing another cell, the font
blurres out again. no problems with versions up to 6.2.5

Steps to Reproduce:
1. open any document...
2.
3.

Actual Results:
permanent issue

Expected Results:
to be finally solved


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
this bug appears and disappears from version to version and is extremely(!)
annoying.

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

[Libreoffice-bugs] [Bug 126930] Install failed

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

Dan Carr  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEEDINFO|RESOLVED

--- Comment #2 from Dan Carr  ---
It appears that the issue was with my firewall/virus software. I turned it off
and the installation completed normally. This occurred on a Windows 7 SP1
system with Webroot SecureAnywhere installed.

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

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

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

New commits:
commit 3104eaa53593fd512d750ebbbd48314576c5c064
Author: Eike Rathke 
AuthorDate: Thu Aug 15 12:40:09 2019 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Thu Aug 15 17:47:48 2019 +0200

Related: tdf#126931 abbreviated month names should be three letters

Change-Id: I8d0d54bb70394f9e505d357b1f87aa47ef4d60fe
Reviewed-on: https://gerrit.libreoffice.org/77505
Reviewed-by: Eike Rathke 
Tested-by: Jenkins
(cherry picked from commit add2f2e9185a759847f3ccabc2d0cb04306eca85)
Reviewed-on: https://gerrit.libreoffice.org/77513
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/i18npool/source/localedata/data/hsb_DE.xml 
b/i18npool/source/localedata/data/hsb_DE.xml
index 22f446f6b699..92e4eaeb01d7 100644
--- a/i18npool/source/localedata/data/hsb_DE.xml
+++ b/i18npool/source/localedata/data/hsb_DE.xml
@@ -267,7 +267,7 @@
 
 
   mar
-  měrc
+  měr
   měrc
 
 
@@ -277,7 +277,7 @@
 
 
   may
-  meja
+  mej
   meja
 
 
@@ -329,7 +329,7 @@
 
 
   mar
-  měrc
+  měr
   měrca
 
 
@@ -339,7 +339,7 @@
 
 
   may
-  meja
+  mej
   meja
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 61718] VIEWING: Column and Row headers in Calc look dated

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

Adolfo Jayme  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org
   Keywords||accessibility

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

[Libreoffice-bugs] [Bug 126946] Formula will be displayed after re-type it into cell

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

RobG  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

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

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

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

--- Comment #8 from Jean-Baptiste Faure  ---
I tested the 4 following possibilities, none of them works :
1/ vclplugin=gtk3 (my default)
2/ vclplugin=gtk
3/ vlcplugin=gen
4/ English keybord layout (qwerty)

I can redefine the shortcut to "Ctrl+Shift+," or "Ctrl+shift+H" (or any other
letter), but not to "Ctrl+Shift+'"
With the key ";" the only 3-keys shortcut that works is "Ctrl+Alt+;" 
"Shift+Alt+;" does not work too.

Best regards. JBF

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

[Libreoffice-bugs] [Bug 126885] LibreOffice is slow unless I use SAL_USE_VCLPLUGIN=gen

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

--- Comment #2 from Shay G  ---
Coming and going. But that's the slowest I ever had.

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

[Libreoffice-bugs] [Bug 126949] Data labels loses format unexpectedly

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

Oliver Brinzing  changed:

   What|Removed |Added

 CC||oliver.brinz...@gmx.de
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Oliver Brinzing  ---
Thank you for reporting the bug. 
Please attach a sample document, as this makes it easier for us to verify the
bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.

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

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

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

m.a.riosv  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #4 from m.a.riosv  ---
First of all, you can't set your reports as NEW, someone else must confirm and
do it.

In any case, the program not complying with your desires it's not a bug.

You can select first the type and then introduce *.iif to find all that kind of
files.

Maybe the original program can generate the files with other extension.

Rename the extension of the files after generated prior to be loaded.

If you always permanent link from calc file to a .iif file with the same name
use Menu/Sheet/[Insert Link from file] or [Link to external data]. After you
can change the linked file Menu/Edit/Link to external files - Modify

Or you can kindly ask for an enhancement (second box of 'Importance') to add
that extension for CSV search. Instead of change this, please better report a
new one.

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

[Libreoffice-bugs] [Bug 123046] Undo sequence causes Impress to freeze

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

Rafael Giusti  changed:

   What|Removed |Added

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

--- Comment #2 from Rafael Giusti  ---
I would like to report that this bug no longer seems to affect Libre Office
6.3.0.2.

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

[Libreoffice-bugs] [Bug 126939] iOS Collabora Save Docx

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

--- Comment #4 from Andreas Gruhler  ---
Sorry I was wrong. This is not specific to this file but occurs for all .docx
files.

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

[Libreoffice-bugs] [Bug 126946] Formula will be displayed after re-type it into cell

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

Oliver Brinzing  changed:

   What|Removed |Added

 CC||oliver.brinz...@gmx.de

--- Comment #2 from Oliver Brinzing  ---


(In reply to RobG from comment #0)

> 6. Change format of cell AB2 to "Text"
> 7. Re-Run steps 3-5
> Result: Formula will be displayed (Bug)

if you format a cell with "Text", everything what is entered afterwards is
treated as text, so a formula will not be evaluated.

https://help.libreoffice.org/Calc/Formatting_Numbers_as_Text

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

[Libreoffice-qa] ESC meeting 2019-08-15 minutes

2019-08-15 Thread Jan Holesovsky
* Present:
+ Olivier, Stephan, Heiko, Xisco, Miklos, Caolán, Thosten, Kendy

* Completed Action Items:
+ 

* Pending Action Items:
+ Change behavior of Previous/Next Change commands:
  look at https://gerrit.libreoffice.org/#/c/76719/, decide if it’s safe
  or not (Kendy)
+ Talk to Markus about showing just dll name in crash reporting (Xisco)
  [ mail sent, but the issue not sorted out yet ]
+ Check with Italo wrt. LibOCon Hackfest wiki page (Sophie)
+ Package Silesian (szl) - ready to be used as UI language (Cloph)
+ Emoji toolbar control out of experimental (Heiko)
  + https://bugs.documentfoundation.org/show_bug.cgi?id=105689#c28
  [ looked, something wrong on Windows – will investigate more ]
+ 6.4 release plan (Christian)

* Release Engineering update (Christian)
+ Xisco reported
+ 6.2.6
+ RC2 tagged the last week & announced yesterday
+ 6.3.1
+ RC1 was meant to be tagged the last week, but was not in the end
+ probably will do it tomorrow or the next week
+ Remotes
+ Android viewer
+ Online
+ daily builds – people are asking (Thorsten)
+ to be looked at when Cloph is back, Xisco will take over
+ Xisco needs the know-how from Cloph

* Documentation (Olivier)
+ New Help
+ nothing new implemented
+ Helpcontents2
+ Several fixes in Help (ohallot, Vipul Gupta, A Gelmini)
+ Guides
+ More work on Calc and Draw guide
+ GSDOC
+ Tech writer bonding phase – but no response

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
238(238) (topicUI) bugs open, 204(204) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week1 month   3 months   12 months  
 added  6(-2) 17(-1)34(0)   77(-1) 
 commented 64(-89)   282(-4)   552(4) 1583(30) 
   removed  1(1)   2(0)  3(1)   21(1)  
  resolved  7(-11)36(5) 48(4)  149(5)  
+ top 10 contributors:
  Heiko Tietze made 189 changes in 1 month, and 299 changes in 1 year
  Foote, V Stuart made 81 changes in 1 month, and 260 changes in 1 year
  Kainz, Andreas made 48 changes in 1 month, and 235 changes in 1 year
  Todd made 42 changes in 1 month, and 42 changes in 1 year
  Dieter Praas made 31 changes in 1 month, and 149 changes in 1 year
  Cor Nouws made 22 changes in 1 month, and 130 changes in 1 year
  Thomas Lendo made 21 changes in 1 month, and 249 changes in 1 year
  Xisco Faulí made 21 changes in 1 month, and 277 changes in 1 year
  Kaganski, Mike made 20 changes in 1 month, and 40 changes in 1 year
  Henschel, Regina made 19 changes in 1 month, and 39 changes in 1 year
+ New needsUXEval between Aug/08-15

  * Arrow Style modification workflow is unclear
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126658
 
  * Confusing UX for Cell Navigation / Moving Image if Image Selected 
in Cell
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126900
 
  * The formatting of the target paragraph should remain intact upon 
pasting content from another paragraph
+ https://bugs.documentfoundation.org/show_bug.cgi?id=124959
  => in discussion, unconfirmed, needinfo

   -> * Find & Replace should optionally also make use of AutoCorrect single 
or double quote substitutions for easier keyboard search entry
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126752
   -> * Press Undo Spell Checking dialog has no effect in document
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126826
  * Alignment of images
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126857
  => NEW

  * Draw more export functions
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126842
  * gallery new theme add odg files didn't work
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126934
  => WF, INVALID

+ Poll on “design preview” (WYSIWYG dropdowns)
  + 
https://design.blog.documentfoundation.org/2019/08/15/poll-about-design-preview-for-dropdown-controls/
 

* Crash Testing (Caolan)
+ 1(-2) import failure, 7(-75) export failures
+ 49 (-?) coverity issues
+ other eyes welcome now
+ Google / ossfuzz
+ 15 issues (15 Timeouts, 1 OOM)
+ CVEs today
+ CVE-2019-9850 Insufficient url validation allowing LibreLogo script
execution
 + CVE-2019-9851 LibreLogo global-event script execution
 + CVE-2019-9852 Insufficient URL encoding flaw in allowed script location
  check

* Crash Reporting (Xisco)
+ https://crashreport.libreoffice.org/stats/version/6.2.5.2 
+ (-1192) 1808 3000 2274 748 0
+ https://crashreport.libreoffice.org/stats/version/6.2.6.2
+ (+12) 12 0 
+ 

ESC meeting 2019-08-15 minutes

2019-08-15 Thread Jan Holesovsky
* Present:
+ Olivier, Stephan, Heiko, Xisco, Miklos, Caolán, Thosten, Kendy

* Completed Action Items:
+ 

* Pending Action Items:
+ Change behavior of Previous/Next Change commands:
  look at https://gerrit.libreoffice.org/#/c/76719/, decide if it’s safe
  or not (Kendy)
+ Talk to Markus about showing just dll name in crash reporting (Xisco)
  [ mail sent, but the issue not sorted out yet ]
+ Check with Italo wrt. LibOCon Hackfest wiki page (Sophie)
+ Package Silesian (szl) - ready to be used as UI language (Cloph)
+ Emoji toolbar control out of experimental (Heiko)
  + https://bugs.documentfoundation.org/show_bug.cgi?id=105689#c28
  [ looked, something wrong on Windows – will investigate more ]
+ 6.4 release plan (Christian)

* Release Engineering update (Christian)
+ Xisco reported
+ 6.2.6
+ RC2 tagged the last week & announced yesterday
+ 6.3.1
+ RC1 was meant to be tagged the last week, but was not in the end
+ probably will do it tomorrow or the next week
+ Remotes
+ Android viewer
+ Online
+ daily builds – people are asking (Thorsten)
+ to be looked at when Cloph is back, Xisco will take over
+ Xisco needs the know-how from Cloph

* Documentation (Olivier)
+ New Help
+ nothing new implemented
+ Helpcontents2
+ Several fixes in Help (ohallot, Vipul Gupta, A Gelmini)
+ Guides
+ More work on Calc and Draw guide
+ GSDOC
+ Tech writer bonding phase – but no response

* UX Update (Heiko)
+ Bugzilla (topicUI) statistics
238(238) (topicUI) bugs open, 204(204) (needsUXEval) needs to be 
evaluated by the UXteam
+ Updates:
BZ changes   1 week1 month   3 months   12 months  
 added  6(-2) 17(-1)34(0)   77(-1) 
 commented 64(-89)   282(-4)   552(4) 1583(30) 
   removed  1(1)   2(0)  3(1)   21(1)  
  resolved  7(-11)36(5) 48(4)  149(5)  
+ top 10 contributors:
  Heiko Tietze made 189 changes in 1 month, and 299 changes in 1 year
  Foote, V Stuart made 81 changes in 1 month, and 260 changes in 1 year
  Kainz, Andreas made 48 changes in 1 month, and 235 changes in 1 year
  Todd made 42 changes in 1 month, and 42 changes in 1 year
  Dieter Praas made 31 changes in 1 month, and 149 changes in 1 year
  Cor Nouws made 22 changes in 1 month, and 130 changes in 1 year
  Thomas Lendo made 21 changes in 1 month, and 249 changes in 1 year
  Xisco Faulí made 21 changes in 1 month, and 277 changes in 1 year
  Kaganski, Mike made 20 changes in 1 month, and 40 changes in 1 year
  Henschel, Regina made 19 changes in 1 month, and 39 changes in 1 year
+ New needsUXEval between Aug/08-15

  * Arrow Style modification workflow is unclear
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126658
 
  * Confusing UX for Cell Navigation / Moving Image if Image Selected 
in Cell
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126900
 
  * The formatting of the target paragraph should remain intact upon 
pasting content from another paragraph
+ https://bugs.documentfoundation.org/show_bug.cgi?id=124959
  => in discussion, unconfirmed, needinfo

   -> * Find & Replace should optionally also make use of AutoCorrect single 
or double quote substitutions for easier keyboard search entry
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126752
   -> * Press Undo Spell Checking dialog has no effect in document
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126826
  * Alignment of images
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126857
  => NEW

  * Draw more export functions
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126842
  * gallery new theme add odg files didn't work
+ https://bugs.documentfoundation.org/show_bug.cgi?id=126934
  => WF, INVALID

+ Poll on “design preview” (WYSIWYG dropdowns)
  + 
https://design.blog.documentfoundation.org/2019/08/15/poll-about-design-preview-for-dropdown-controls/
 

* Crash Testing (Caolan)
+ 1(-2) import failure, 7(-75) export failures
+ 49 (-?) coverity issues
+ other eyes welcome now
+ Google / ossfuzz
+ 15 issues (15 Timeouts, 1 OOM)
+ CVEs today
+ CVE-2019-9850 Insufficient url validation allowing LibreLogo script
execution
 + CVE-2019-9851 LibreLogo global-event script execution
 + CVE-2019-9852 Insufficient URL encoding flaw in allowed script location
  check

* Crash Reporting (Xisco)
+ https://crashreport.libreoffice.org/stats/version/6.2.5.2 
+ (-1192) 1808 3000 2274 748 0
+ https://crashreport.libreoffice.org/stats/version/6.2.6.2
+ (+12) 12 0 
+ 

[Libreoffice-bugs] [Bug 126949] Data labels loses format unexpectedly

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

Mark C  changed:

   What|Removed |Added

Version|6.1.5.2 release |6.2.5.2 release

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

[Libreoffice-bugs] [Bug 46203] Fileopen: large text from small DOC text box, that is partially or not seen in Word, shown all in Writer

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

Justin L  changed:

   What|Removed |Added

 CC||vmik...@collabora.com

--- Comment #19 from Justin L  ---
UI Bottom to Top support was recently added to LO 6.3 with
commit 52e47276694575f119192f6ddafa69ec7a7eb6b4
Author: Miklos Vajna  Date:   Thu May 16 22:07:03 2019 +0200
sw btlr writing mode: implement UI for fly frames

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

[Libreoffice-bugs] [Bug 126949] New: Data labels loses format unexpectedly

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

Bug ID: 126949
   Summary: Data labels loses format unexpectedly
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: anicest...@gmail.com

Description:
I have a graph with data labels.  I edit the data labels to look the way I
want, font/size with 1 digit after the period for percent.  Editing the data
label in anyway (even cancelling!) will revert the data label number format to
no digits after the decimal.

(I did search but did not see this issue reported in the huge number of issues,
apologies if it is a duplicate.)

Steps to Reproduce:
1.Create a graph with data labels.
2.Edit the number format to be different.  In my case I set the percentage
format to have 12.1% (1 digit after the decimal)
3. Edit the font for the data label,  the number format will revert to the
default.  (This even happens if you CANCEL the edit.)

Actual Results:
Changing the font/size/colour (anything!) will revert the number format of the
data label.  This even happens if you CANCEL the edit.

Expected Results:
I expect that the only change to the data labels will be the font changes.


Reproducible: Always


User Profile Reset: No



Additional Info:
Linux 4.19.57-gentoo

LibreOffice About:
Version: 6.2.5.2
Build ID: Gentoo official package
CPU threads: 8; OS: Linux 4.19; UI render: default; VCL: kde5; 
Locale: en-US (C); UI-Language: en-US
Calc: threaded

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

[Libreoffice-commits] core.git: external/liborcus

2019-08-15 Thread Stephan Bergmann (via logerrit)
 external/liborcus/UnpackedTarball_liborcus.mk |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit 6c286f807c03321a79f8aaa98c6a785da005d619
Author: Stephan Bergmann 
AuthorDate: Thu Aug 15 15:49:26 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Aug 15 17:02:43 2019 +0200

external/liborcus/version.patch.0 is gone

...since 56ffe3c0a1261cd98a3d42b8b08d5f8eb013ead4 "Switch mdds to 1.5.0 and
liborcus to 0.15.0."

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

diff --git a/external/liborcus/UnpackedTarball_liborcus.mk 
b/external/liborcus/UnpackedTarball_liborcus.mk
index 88e0963c6dde..eb1d5af676ce 100644
--- a/external/liborcus/UnpackedTarball_liborcus.mk
+++ b/external/liborcus/UnpackedTarball_liborcus.mk
@@ -15,9 +15,6 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,liborcus,1))
 
 $(eval $(call gb_UnpackedTarball_update_autoconf_configs,liborcus))
 
-# * external/liborcus/version.patch.0 covered by upstream
-#   

 "Remove unused
-#   VERSION file":
 $(eval $(call gb_UnpackedTarball_add_patches,liborcus,\
external/liborcus/rpath.patch.0 \
external/liborcus/gcc9.patch.0 \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 122218] After Update to 6.1.4 on macOS fonts are blurred on retina display

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

--- Comment #23 from Xisco Faulí  ---
I'm wondering if this issue in introduced by
https://cgit.freedesktop.org/libreoffice/core/commit/?id=959e8ae7ea33ce94dd80ee8ea172b6db64593873
and LibreOffice being built with Xcode 10. Probably it wouldn't happen if we
used xcode 9, as in bug 121778

Comments from quikee in IRC:

 iplaw67: blame Apple as they are silently changing the CG API
behavior.
 iplaw67: We had to change how we draw stuff... and are forced to
implement HiDPI support ourselves, which is not yet ready
* MechtiIde ha sortit (Ping timeout: 258 seconds)

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

[Libreoffice-bugs] [Bug 126948] Unable to enter percentage in Base datafield

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

Jörg  changed:

   What|Removed |Added

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

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

  1   2   3   >