[Libreoffice-commits] core.git: comphelper/source include/comphelper include/sfx2 include/svx include/ucbhelper include/unotools sfx2/source svx/source ucbhelper/source unotools/source

2020-02-16 Thread Noel Grandin (via logerrit)
 comphelper/source/misc/weak.cxx  |   10 --
 include/comphelper/weak.hxx  |7 +
 include/sfx2/sfxbasemodel.hxx|6 -
 include/svx/unomodel.hxx |6 -
 include/svx/unopool.hxx  |6 -
 include/svx/unoshape.hxx |   42 +---
 include/ucbhelper/contenthelper.hxx  |7 -
 include/ucbhelper/interactionrequest.hxx |   56 +--
 include/unotools/streamwrap.hxx  |6 -
 sfx2/source/doc/sfxbasemodel.cxx |   23 
 svx/source/unodraw/unomod.cxx|   10 --
 svx/source/unodraw/unopool.cxx   |   10 --
 svx/source/unodraw/unoshap2.cxx  |   39 
 svx/source/unodraw/unoshap3.cxx  |   10 --
 svx/source/unodraw/unoshape.cxx  |   21 
 ucbhelper/source/provider/contenthelper.cxx  |6 -
 ucbhelper/source/provider/interactionrequest.cxx |  110 ---
 unotools/source/streaming/streamwrap.cxx |   10 --
 18 files changed, 80 insertions(+), 305 deletions(-)

New commits:
commit 6be9ae8aa1d3b164f3953dbc1cb7f0f1c1976d9b
Author: Noel Grandin 
AuthorDate: Sun Feb 16 13:05:12 2020 +0200
Commit: Noel Grandin 
CommitDate: Mon Feb 17 08:59:01 2020 +0100

inline some acquire/release calls

because these are all on the hot path, and in the best case, with
enough inlining, the compiler can skip the call altogether and just
do a locked CMPXHG instruction

Change-Id: I099d6385f602e40e1767f9f1002b7514ecf436e5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88775
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/comphelper/source/misc/weak.cxx b/comphelper/source/misc/weak.cxx
index 1aadadaa6b7f..02cf40e2b646 100644
--- a/comphelper/source/misc/weak.cxx
+++ b/comphelper/source/misc/weak.cxx
@@ -42,16 +42,6 @@ Any SAL_CALL OWeakTypeObject::queryInterface(const Type & 
rType )
 return ::cppu::OWeakObject::queryInterface( rType );
 }
 
-void SAL_CALL OWeakTypeObject::acquire()throw ()
-{
-::cppu::OWeakObject::acquire();
-}
-
-void SAL_CALL OWeakTypeObject::release()throw ()
-{
-::cppu::OWeakObject::release();
-}
-
 Sequence< Type > SAL_CALL OWeakTypeObject::getTypes(  )
 {
 return Sequence< Type >();
diff --git a/include/comphelper/weak.hxx b/include/comphelper/weak.hxx
index f094225cb32c..f53ea8d7f562 100644
--- a/include/comphelper/weak.hxx
+++ b/include/comphelper/weak.hxx
@@ -46,8 +46,11 @@ public:
 OWeakTypeObject & operator =(OWeakTypeObject &&) = default;
 
 virtual css::uno::Any SAL_CALL queryInterface(const css::uno::Type & rType 
) override;
-virtual void SAL_CALL acquire() throw () override;
-virtual void SAL_CALL release() throw () override;
+virtual void SAL_CALL acquire() throw () override
+{ ::cppu::OWeakObject::acquire(); }
+virtual void SAL_CALL release() throw () override
+{ ::cppu::OWeakObject::release(); }
+
 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes(  ) 
override;
 virtual css::uno::Sequence< ::sal_Int8 > SAL_CALL getImplementationId(  ) 
override;
 
diff --git a/include/sfx2/sfxbasemodel.hxx b/include/sfx2/sfxbasemodel.hxx
index 3dbdb80c3aff..5ee900b8d852 100644
--- a/include/sfx2/sfxbasemodel.hxx
+++ b/include/sfx2/sfxbasemodel.hxx
@@ -191,7 +191,8 @@ public:
 @onerrorA RuntimeException is thrown.
 */
 
-virtual void SAL_CALL acquire() throw() override ;
+virtual void SAL_CALL acquire() throw() override
+{ OWeakObject::acquire(); }
 
 
/**___
 @short  decrement refcount
@@ -200,7 +201,8 @@ public:
 @onerrorA RuntimeException is thrown.
 */
 
-virtual void SAL_CALL release() throw() override ;
+virtual void SAL_CALL release() throw() override
+{ OWeakObject::release(); }
 
 
 //  XTypeProvider
diff --git a/include/svx/unomodel.hxx b/include/svx/unomodel.hxx
index efbc5d7ba4e6..08b910ca83ec 100644
--- a/include/svx/unomodel.hxx
+++ b/include/svx/unomodel.hxx
@@ -67,8 +67,10 @@ public:
 
 // XInterface
 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & 
rType ) override;
-virtual void SAL_CALL acquire() throw() override;
-virtual void SAL_CALL release() throw() override;
+virtual void SAL_CALL acquire() throw() override
+{  SfxBaseModel::acquire(); }
+virtual void SAL_CALL release() throw() override
+{  SfxBaseModel::release(); }
 
 // XModel
 virtual void SAL_CALL lockControllers(  ) override;
diff --git a/include/svx/unopool.hxx b/include/svx/unopool.hxx
index f7738f3fc5c1..b8cc1c7d41f3 100644
--- a/include/svx/unopool.hxx
+++ b/include/svx/unopool.hxx
@@ -63,8 +63,10 @@ public:
 // XInterface
 virtual css::uno::Any 

[Libreoffice-bugs] [Bug 130725] New: ImpSvNumberInputScan::StringToDouble may produce inaccurate result

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130725

Bug ID: 130725
   Summary: ImpSvNumberInputScan::StringToDouble may produce
inaccurate result
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: er...@redhat.com

In Calc, put "0.0042" to A1, "0.0043" to A2, "=A2-A1" to A3; make sure to see
19 decimal places in A3.

Expected result:
> 0.0001000
Actual result:
> 0.994

The problem here is the entered string in A1 has been converted to double
0.0042006, which is not the nearest double-precision value for
decimal "0.0042": 0.0041997 is. The conversion of the entered
string to double happens in ImpSvNumberInputScan::StringToDouble, which handles
integer and fractional parts of the string separately, and then multiplies the
fractional part by a power 10 exponent. As shown, this does not guarantee the
closest possible representation, resulting in immediately observable
inaccuracies in following calculations.

A robust conversion is needed here.

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


[Libreoffice-bugs] [Bug 123456] Rendering problems until line selected

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123456

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Blocks||71732


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

Dieter  changed:

   What|Removed |Added

 Depends on||123456


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123456
[Bug 123456] Rendering problems until line selected
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 123456] Rendering problems until line selected

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123456

--- Comment #8 from Dieter  ---
*** Bug 130702 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 130702] Font rendering problem in Libre Office

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130702

Dieter  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Dieter  ---
Florian, I will mark it as duplicate. There are a lot of open bugs and every
developer is free to pick the bug he or she wants to pick. Looking at bug 12356
I saw, that there are not really steps to reproduce. Perhaps you can add them.
It might also helpful to paste information, that the bug is still present in
the newest version of LO.

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

-- 
You are receiving this mail because:
You 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: icon-themes/elementary icon-themes/elementary_svg

2020-02-16 Thread rizmut (via logerrit)
 icon-themes/elementary/cmd/32/bg/bold.png  |binary
 icon-themes/elementary/cmd/32/bg/changecasetolower.png |binary
 icon-themes/elementary/cmd/32/bg/changecasetoupper.png |binary
 icon-themes/elementary/cmd/32/bg/hyphenate.png |binary
 icon-themes/elementary/cmd/32/bg/insertfixedtext.png   |binary
 icon-themes/elementary/cmd/32/bg/italic.png|binary
 icon-themes/elementary/cmd/32/bg/smallcaps.png |binary
 icon-themes/elementary/cmd/32/bg/sortdescending.png|binary
 icon-themes/elementary/cmd/32/bg/spelling.png  |binary
 icon-themes/elementary/cmd/32/bg/spellonline.png   |binary
 icon-themes/elementary/cmd/32/changecasetolower.png|binary
 icon-themes/elementary/cmd/32/changecasetoupper.png|binary
 icon-themes/elementary/cmd/32/sortdescending.png   |binary
 icon-themes/elementary/cmd/bg/lc_bold.png  |binary
 icon-themes/elementary/cmd/bg/lc_changecasetolower.png |binary
 icon-themes/elementary/cmd/bg/lc_changecasetoupper.png |binary
 icon-themes/elementary/cmd/bg/lc_hyphenate.png |binary
 icon-themes/elementary/cmd/bg/lc_insertfixedtext.png   |binary
 icon-themes/elementary/cmd/bg/lc_italic.png|binary
 icon-themes/elementary/cmd/bg/lc_smallcaps.png |binary
 icon-themes/elementary/cmd/bg/lc_sortdescending.png|binary
 icon-themes/elementary/cmd/bg/lc_spelling.png  |binary
 icon-themes/elementary/cmd/bg/lc_spellonline.png   |binary
 icon-themes/elementary/cmd/bg/sc_bold.png  |binary
 icon-themes/elementary/cmd/bg/sc_changecasetolower.png |binary
 icon-themes/elementary/cmd/bg/sc_changecasetoupper.png |binary
 icon-themes/elementary/cmd/bg/sc_hyphenate.png |binary
 icon-themes/elementary/cmd/bg/sc_insertfixedtext.png   |binary
 icon-themes/elementary/cmd/bg/sc_italic.png|binary
 icon-themes/elementary/cmd/bg/sc_smallcaps.png |binary
 icon-themes/elementary/cmd/bg/sc_sortdescending.png|binary
 icon-themes/elementary/cmd/bg/sc_spelling.png  |binary
 icon-themes/elementary/cmd/bg/sc_spellonline.png   |binary
 icon-themes/elementary/cmd/lc_changecasetolower.png|binary
 icon-themes/elementary/cmd/lc_changecasetoupper.png|binary
 icon-themes/elementary/cmd/lc_sortdescending.png   |binary
 icon-themes/elementary/cmd/sc_sortdescending.png   |binary
 icon-themes/elementary/links.txt   |   25 -
 icon-themes/elementary_svg/cmd/32/bg/bold.svg  |1 
 icon-themes/elementary_svg/cmd/32/bg/changecasetolower.svg |1 
 icon-themes/elementary_svg/cmd/32/bg/changecasetoupper.svg |1 
 icon-themes/elementary_svg/cmd/32/bg/hyphenate.svg |1 
 icon-themes/elementary_svg/cmd/32/bg/insertfixedtext.svg   |1 
 icon-themes/elementary_svg/cmd/32/bg/italic.svg|1 
 icon-themes/elementary_svg/cmd/32/bg/smallcaps.svg |1 
 icon-themes/elementary_svg/cmd/32/bg/sortdescending.svg|1 
 icon-themes/elementary_svg/cmd/32/bg/spelling.svg  |1 
 icon-themes/elementary_svg/cmd/32/bg/spellonline.svg   |1 
 icon-themes/elementary_svg/cmd/32/changecasetolower.svg|2 -
 icon-themes/elementary_svg/cmd/32/changecasetoupper.svg|2 -
 icon-themes/elementary_svg/cmd/32/nl/bold.svg  |2 -
 icon-themes/elementary_svg/cmd/32/sortdescending.svg   |2 -
 icon-themes/elementary_svg/cmd/bg/lc_bold.svg  |1 
 icon-themes/elementary_svg/cmd/bg/lc_changecasetolower.svg |1 
 icon-themes/elementary_svg/cmd/bg/lc_changecasetoupper.svg |1 
 icon-themes/elementary_svg/cmd/bg/lc_hyphenate.svg |1 
 icon-themes/elementary_svg/cmd/bg/lc_insertfixedtext.svg   |1 
 icon-themes/elementary_svg/cmd/bg/lc_italic.svg|1 
 icon-themes/elementary_svg/cmd/bg/lc_smallcaps.svg |1 
 icon-themes/elementary_svg/cmd/bg/lc_sortdescending.svg|1 
 icon-themes/elementary_svg/cmd/bg/lc_spelling.svg  |1 
 icon-themes/elementary_svg/cmd/bg/lc_spellonline.svg   |1 
 icon-themes/elementary_svg/cmd/bg/sc_bold.svg  |2 +
 icon-themes/elementary_svg/cmd/bg/sc_changecasetolower.svg |1 
 icon-themes/elementary_svg/cmd/bg/sc_changecasetoupper.svg |1 
 icon-themes/elementary_svg/cmd/bg/sc_hyphenate.svg |1 
 icon-themes/elementary_svg/cmd/bg/sc_insertfixedtext.svg   |1 
 icon-themes/elementary_svg/cmd/bg/sc_italic.svg|5 ++
 icon-themes/elementary_svg/cmd/bg/sc_smallcaps.svg |1 
 icon-themes/elementary_svg/cmd/bg/sc_sortdescending.svg|1 
 icon-themes/elementary_svg/cmd/bg/sc_spelling.svg  |1 
 icon-themes/elementary_svg/cmd/bg/sc_spellonline.svg   |1 
 icon-themes/elementary_svg/cmd/lc_changecasetolower.svg|2 -
 

[Libreoffice-bugs] [Bug 130702] Font rendering problem in Libre Office

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130702

--- Comment #3 from florin.arj...@gmail.com ---
It is this report:
https://bugs.documentfoundation.org/show_bug.cgi?id=123456

I have experienced this for years, but every new release I hoped it would
dissapear.

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


[Libreoffice-bugs] [Bug 130704] Auto-correct punctuation change alters character style to its left

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130704

Dieter  changed:

   What|Removed |Added

 Blocks||107838


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 107838] [META] Character-level bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107838

Dieter  changed:

   What|Removed |Added

 Depends on||130704


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=130704
[Bug 130704] Auto-correct punctuation change alters character style to its left
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106179] [META] Writer comment bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

--- Comment #9 from Jeny Jehn  ---
Posts were made to appear in reverse chronological order by manually updating
text based HTML code using FTP software in real time several times a day. To
users, this offered the appearance of a live diary that contained multiple new
entries per day. https://www.mistersaad.com/

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


[Libreoffice-bugs] [Bug 130704] Auto-correct punctuation change alters character style to its left

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130704

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||dgp-m...@gmx.de
 OS|Linux (All) |All
 Ever confirmed|0   |1

--- Comment #1 from Dieter  ---
I can confirm the second issue with

Version: 6.3.4.2 (x64)
Build-ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU-Threads: 4; BS: Windows 10.0; UI-Render: Standard; VCL: win; 
Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
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: officecfg/registry sw/uiconfig

2020-02-16 Thread Samuel Mehrbrodt (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |8 

 sw/uiconfig/swriter/menubar/menubar.xml |6 
++
 2 files changed, 14 insertions(+)

New commits:
commit e24585ec2a9ef39ce68f9cf9b498fab999805ee8
Author: Samuel Mehrbrodt 
AuthorDate: Thu Feb 13 15:50:43 2020 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Mon Feb 17 08:10:42 2020 +0100

Add menu entries for field/bookmark protection

Change-Id: I5e0a194698a85e81089a929a0979e2b4022555e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88612
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 1d615a28ee09..3aba7f619224 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -3596,6 +3596,14 @@
   Content Controls
 
   
+  
+
+  ~Protect Document
+
+
+  1
+
+  
   
 
   Protect Fields
diff --git a/sw/uiconfig/swriter/menubar/menubar.xml 
b/sw/uiconfig/swriter/menubar/menubar.xml
index 6239cb53071e..2ff94dca3af5 100644
--- a/sw/uiconfig/swriter/menubar/menubar.xml
+++ b/sw/uiconfig/swriter/menubar/menubar.xml
@@ -760,6 +760,12 @@
   
 
   
+  
+
+  
+  
+
+  
   
   
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130589] Sorting goes wrong, text is moved between cells

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130589

--- Comment #7 from Dieter  ---
Perhaps, anybody else can help. I'm not an expert, but I think, there is
something wrong with your document. 12MB ist too much I think, although the
table is really huge.

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


[Libreoffice-bugs] [Bug 113384] Kopieren oder Ausschneiden und Einfügen in der Eingabezeile ist nicht möglich.

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113384

naitsirch  changed:

   What|Removed |Added

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

--- Comment #2 from naitsirch  ---
In version 6.3.1.2 this issue seem to be fixed. At least on Debian/Linux and
KDE plasma desktop I am able to right click and selecting copy or paste from
context menu.

But I have the problem that Ctrl + C does not add the selected content of the
formular field to the clipboard.

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

2020-02-16 Thread Samuel Mehrbrodt (via logerrit)
 sfx2/source/view/viewfrm.cxx |7 ---
 1 file changed, 7 deletions(-)

New commits:
commit 89b80daec907a456f08946dd9ebbc6efbd9b5391
Author: Samuel Mehrbrodt 
AuthorDate: Fri Feb 14 17:01:46 2020 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Mon Feb 17 07:40:45 2020 +0100

Don't display reload as toggle command

File->Reload was displayed with a checkbox, suggesting the command would 
toggle something.
Of course it does not.

So remove this code which makes the command appear as toggle command.

Change-Id: I5dd87fd82524e211e0d3444b14bc22dc4469de2d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88731
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 4d697710c0af..3534e2b889aa 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -931,13 +931,6 @@ void SfxViewFrame::StateReload_Impl( SfxItemSet& rSet )
 {
 if ( !pSh->CanReload_Impl() || pSh->GetCreateMode() == 
SfxObjectCreateMode::EMBEDDED )
 rSet.DisableItem(nWhich);
-else
-{
-// If any ChildFrame is reloadable, the slot is enabled,
-// so you can perform CTRL-Reload
-rSet.Put( SfxBoolItem( nWhich, false));
-}
-
 break;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130724] New: Strange values come out with autofill.

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130724

Bug ID: 130724
   Summary: Strange values come out with autofill.
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nashimo...@hotmail.co.jp

Description:
Strange values ​​such as -4.41 appear when auto-filling with -6.0
and -5.9 in Calc.
I want the value change to be just 0.1.

Steps to Reproduce:
1.Enter -6 to a cell, and -5.9 to the next cell.
2.Do AutoFill by the 2 cells.


Actual Results:
The value after -4.3 is not correct. These value contain small errors.

Expected Results:
Width is exactlly 0.1.


Reproducible: Always


User Profile Reset: No



Additional Info:
バージョン: 6.2.8.2 (x64)
Build ID: f82ddfca21ebc1e222a662a32b25c0c9d20169ee
CPU threads: 8; OS:Windows 10.0; UI render: default; VCL: win; 
ロケール: ja-JP (ja_JP); UIの言語: ja-JP
Calc: CL

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


[Libreoffice-bugs] [Bug 130320] LibO 6: Windows 10 content indexing does not work

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130320

--- Comment #27 from Michail Pappas  ---
(In reply to V Stuart Foote from comment #24)
> (In reply to Michail Pappas from comment #23)
> 
> @Michall, rather seems they are intertwined. NEEDINFO to you to at your
> 'work' systems, open a regedit session and check the recorded persistent
> handler,if any, for the HKCR\.odp, HKCR\.ods, HKCR\.odt stanzas.

C:\>reg query HKCR\.odt /s

HKEY_CLASSES_ROOT\.odt
(Default)REG_SZLibreOffice.WriterDocument.1
Content TypeREG_SZapplication/vnd.oasis.opendocument.text
PerceivedTypeREG_SZdocument

HKEY_CLASSES_ROOT\.odt\LibreOffice.WriterDocument.1

HKEY_CLASSES_ROOT\.odt\LibreOffice.WriterDocument.1\ShellNew
FileNameREG_SZC:\Program
Files\LibreOffice\share\template\shellnew\soffice.odt

HKEY_CLASSES_ROOT\.odt\OpenWithList

HKEY_CLASSES_ROOT\.odt\OpenWithList\WordPad.exe
(Default)REG_SZ

HKEY_CLASSES_ROOT\.odt\OpenWithProgids
AppXpv9rfrdnqrvf0122088ba0jqxe5sr88zREG_NONE
LibreOffice.WriterDocument.1REG_SZ

HKEY_CLASSES_ROOT\.odt\PersistentHandler
(Default)REG_SZ{7BC0E713-5703-45BE-A29D-5D46D8B39262}

HKEY_CLASSES_ROOT\.odt\shellex

HKEY_CLASSES_ROOT\.odt\shellex\{00021500---C000-0046}
(Default)REG_SZ{087B3AE3-E237-4467-B8DB-5A38AB959AC9}

HKEY_CLASSES_ROOT\.odt\shellex\{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}
(Default)REG_SZ{3B092F0C-7696-40E3-A80F-68D74DA84210}



C:\>reg query HKCR\.ods /s

HKEY_CLASSES_ROOT\.ods
(Default)REG_SZLibreOffice.CalcDocument.1
Content TypeREG_SZapplication/vnd.oasis.opendocument.spreadsheet

HKEY_CLASSES_ROOT\.ods\LibreOffice.CalcDocument.1

HKEY_CLASSES_ROOT\.ods\LibreOffice.CalcDocument.1\ShellNew
FileNameREG_SZC:\Program
Files\LibreOffice\share\template\shellnew\soffice.ods

HKEY_CLASSES_ROOT\.ods\OpenWithProgids
AppXb2ct2xh8sh7ng9mvrwkkwgbtkmxvv6arREG_NONE
LibreOffice.CalcDocument.1REG_SZ

HKEY_CLASSES_ROOT\.ods\PersistentHandler
(Default)REG_SZ{7BC0E713-5703-45BE-A29D-5D46D8B39262}

HKEY_CLASSES_ROOT\.ods\shellex

HKEY_CLASSES_ROOT\.ods\shellex\{00021500---C000-0046}
(Default)REG_SZ{087B3AE3-E237-4467-B8DB-5A38AB959AC9}

HKEY_CLASSES_ROOT\.ods\shellex\{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}
(Default)REG_SZ{3B092F0C-7696-40E3-A80F-68D74DA84210}

C:\>reg query HKCR\.odp /s

HKEY_CLASSES_ROOT\.odp
(Default)REG_SZLibreOffice.ImpressDocument.1
Content TypeREG_SZapplication/vnd.oasis.opendocument.presentation

HKEY_CLASSES_ROOT\.odp\LibreOffice.ImpressDocument.1

HKEY_CLASSES_ROOT\.odp\LibreOffice.ImpressDocument.1\ShellNew
FileNameREG_SZC:\Program
Files\LibreOffice\share\template\shellnew\soffice.odp

HKEY_CLASSES_ROOT\.odp\OpenWithProgids
AppXy5xs3camjkzrcz169vvpb6wa227tkvnnREG_NONE
LibreOffice.ImpressDocument.1REG_SZ

HKEY_CLASSES_ROOT\.odp\PersistentHandler
(Default)REG_SZ{7BC0E713-5703-45BE-A29D-5D46D8B39262}

HKEY_CLASSES_ROOT\.odp\shellex

HKEY_CLASSES_ROOT\.odp\shellex\{00021500---C000-0046}
(Default)REG_SZ{087B3AE3-E237-4467-B8DB-5A38AB959AC9}

HKEY_CLASSES_ROOT\.odp\shellex\{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}
(Default)REG_SZ{3B092F0C-7696-40E3-A80F-68D74DA84210}

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


[Libreoffice-bugs] [Bug 106179] [META] Writer comment bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

David Dainel  changed:

   What|Removed |Added

URL||https://www.yallacleaning.c
   ||om/cleaning-dubai/

--- Comment #7 from David Dainel  ---
This was done after Marvel realized that since the character's design looked
nothing like the toy, they could assume ownership if they used a different
name.https://www.yallacleaning.com/cleaning-dubai/

--- Comment #8 from David Dainel  ---
This was done after Marvel realized that since the character's design looked
nothing like the toy, they could assume ownership if they used a different
name.https://www.yallacleaning.com/cleaning-dubai/

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


[Libreoffice-bugs] [Bug 106179] [META] Writer comment bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

David Dainel  changed:

   What|Removed |Added

URL||https://www.yallacleaning.c
   ||om/cleaning-dubai/

--- Comment #7 from David Dainel  ---
This was done after Marvel realized that since the character's design looked
nothing like the toy, they could assume ownership if they used a different
name.https://www.yallacleaning.com/cleaning-dubai/

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


[Libreoffice-bugs] [Bug 95861] Writer Web -- rework HTML export and import filters to use HTML 5 and inline CSS3 styles

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95861

V Stuart Foote  changed:

   What|Removed |Added

 CC||shaforost...@gmail.com

--- Comment #19 from V Stuart Foote  ---
*** Bug 130720 has been marked as a duplicate of this bug. ***

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


[Libreoffice-ux-advise] [Bug 95861] Writer Web -- rework HTML export and import filters to use HTML 5 and inline CSS3 styles

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95861

V Stuart Foote  changed:

   What|Removed |Added

 CC||shaforost...@gmail.com

--- Comment #19 from V Stuart Foote  ---
*** Bug 130720 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 130720] HTML5 Save/Export with Audio/Video tags

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130720

V Stuart Foote  changed:

   What|Removed |Added

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

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


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

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

2020-02-16 Thread Aron Budea (via logerrit)
 sfx2/source/sidebar/SidebarController.cxx |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 99751473531c6d022c2089bf162901b41a616895
Author: Aron Budea 
AuthorDate: Sun Feb 16 23:46:57 2020 +0100
Commit: Aron Budea 
CommitDate: Mon Feb 17 05:05:40 2020 +0100

sidebar: Distinguish between Impress and the rest for LOK

The parameter introduced in 26bcfbe48b30e0a525a0f25b73ddcacdd158256b
was unused.

Change-Id: Iee928520bb1a4033cf10f0ca60c687b73d09aaf4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88829
Tested-by: Jenkins
Reviewed-by: Ashod Nakashian 

diff --git a/sfx2/source/sidebar/SidebarController.cxx 
b/sfx2/source/sidebar/SidebarController.cxx
index c56c6ed9e2c2..20dcdae1cdfb 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -71,13 +71,13 @@ namespace
 const static sal_Int32 gnWidthCloseThreshold (70);
 const static sal_Int32 gnWidthOpenThreshold (40);
 
-std::string UnoNameFromDeckId(const OUString& rsDeckId)
+std::string UnoNameFromDeckId(const OUString& rsDeckId, bool isImpress = 
false)
 {
 if (rsDeckId == "SdCustomAnimationDeck")
 return ".uno:CustomAnimation";
 
 if (rsDeckId == "PropertyDeck")
-return ".uno:Sidebar";
+return isImpress ? ".uno:ModifyPage" : ".uno:Sidebar";
 
 if (rsDeckId == "SdLayoutsDeck")
 return ".uno:ModifyPage";
@@ -236,7 +236,7 @@ void SidebarController::disposeDecks()
 {
 if (const SfxViewShell* pViewShell = mpViewFrame->GetViewShell())
 {
-const std::string hide = UnoNameFromDeckId(msCurrentDeckId);
+const std::string hide = UnoNameFromDeckId(msCurrentDeckId, 
vcl::EnumContext::Application::Impress == 
vcl::EnumContext::GetApplicationEnum(GetCurrentContext().msApplication));
 if (!hide.empty())
 
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_STATE_CHANGED,
(hide + 
"=false").c_str());
@@ -754,13 +754,13 @@ void SidebarController::SwitchToDeck (
 {
 if (msCurrentDeckId != rDeckDescriptor.msId)
 {
-const std::string hide = UnoNameFromDeckId(msCurrentDeckId);
+const std::string hide = UnoNameFromDeckId(msCurrentDeckId, 
vcl::EnumContext::Application::Impress == 
vcl::EnumContext::GetApplicationEnum(GetCurrentContext().msApplication));
 if (!hide.empty())
 
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_STATE_CHANGED,
(hide + 
"=false").c_str());
 }
 
-const std::string show = UnoNameFromDeckId(rDeckDescriptor.msId);
+const std::string show = UnoNameFromDeckId(rDeckDescriptor.msId, 
vcl::EnumContext::Application::Impress == 
vcl::EnumContext::GetApplicationEnum(GetCurrentContext().msApplication));
 if (!show.empty())
 
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_STATE_CHANGED,
(show + 
"=true").c_str());
@@ -1310,7 +1310,7 @@ void SidebarController::UpdateDeckOpenState()
 
 if (const SfxViewShell* pViewShell = 
mpViewFrame->GetViewShell())
 {
-const std::string uno = UnoNameFromDeckId(msCurrentDeckId);
+const std::string uno = UnoNameFromDeckId(msCurrentDeckId, 
vcl::EnumContext::Application::Impress == 
vcl::EnumContext::GetApplicationEnum(GetCurrentContext().msApplication));
 if (!uno.empty())
 
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_STATE_CHANGED,
 (uno + 
"=true").c_str());
@@ -1348,7 +1348,7 @@ void SidebarController::UpdateDeckOpenState()
 
 if (const SfxViewShell* pViewShell = 
mpViewFrame->GetViewShell())
 {
-const std::string uno = UnoNameFromDeckId(msCurrentDeckId);
+const std::string uno = UnoNameFromDeckId(msCurrentDeckId, 
vcl::EnumContext::Application::Impress == 
vcl::EnumContext::GetApplicationEnum(GetCurrentContext().msApplication));
 if (!uno.empty())
 
pViewShell->libreOfficeKitViewCallback(LOK_CALLBACK_STATE_CHANGED,
 (uno + 
"=false").c_str());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-02-16 Thread Aron Budea (via logerrit)
 loleaflet/src/control/Control.Toolbar.js |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 40f9341d4416838ada58eff9f2579d8f29a7ef5b
Author: Aron Budea 
AuthorDate: Sun Feb 16 23:52:53 2020 +0100
Commit: Aron Budea 
CommitDate: Mon Feb 17 05:06:14 2020 +0100

loleaflet: Remove generic sidebar toolbar button in Impress

It was introduced as a partial fix to sidebar deck toolbar buttons
not showing pressed state in bcd7af96579181969f1d6c1c977731e030fe3c6e
but causes issues.

Hiding/unhiding by mixing the generic and specific sidebar buttons
can permanently hide the sidebar.

Change-Id: I436d296698dde2aed7f0a3aab268e561767013b7
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/88830
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Ashod Nakashian 

diff --git a/loleaflet/src/control/Control.Toolbar.js 
b/loleaflet/src/control/Control.Toolbar.js
index c60962057..3fa2f6c33 100644
--- a/loleaflet/src/control/Control.Toolbar.js
+++ b/loleaflet/src/control/Control.Toolbar.js
@@ -1691,7 +1691,7 @@ function onDocLayerInit() {
break;
case 'presentation':
if (toolbarUp) {
-   toolbarUp.show('breaksidebar', 'sidebar', 'modifypage');
+   toolbarUp.show('breaksidebar', 'modifypage');
}
 
var presentationToolbar = w2ui['presentation-toolbar'];
@@ -1718,7 +1718,7 @@ function onDocLayerInit() {
if (toolbarUp)
toolbarUp.show('leftpara', 'centerpara', 'rightpara', 
'justifypara', 'breakpara', 'linespacing',
'breakspacing', 'defaultbullet', 'defaultnumbering', 
'breakbullet', 'inserttextbox', 'inserttable', 'backcolor',
-   'breaksidebar', 'sidebar', 'modifypage', 
'slidechangewindow', 'customanimation', 'masterslidespanel');
+   'breaksidebar', 'modifypage', 'slidechangewindow', 
'customanimation', 'masterslidespanel');
if (statusbar)
statusbar.show('prev', 'next');
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130723] New: FORMATTING:hyperlinks broken into 2 after saving

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130723

Bug ID: 130723
   Summary: FORMATTING:hyperlinks broken into 2 after saving
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vincent_hy...@hotmail.com

Created attachment 157934
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157934=edit
This is the saved file where the links with section sign are broken into 2

If the link starts with double 'Section Sign' character 0xA7, after saving, the
link is broken into two pointing to the same target in the
Navigation/Hyperlinks section.

-- 
You are receiving this mail because:
You 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: compilerplugins/Makefile-clang.mk

2020-02-16 Thread Andrea Gelmini (via logerrit)
 compilerplugins/Makefile-clang.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4caa7b790cf99eebbe47fc2e6a56124c42f1f3fc
Author: Andrea Gelmini 
AuthorDate: Fri Feb 14 22:34:33 2020 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Feb 17 04:08:22 2020 +0100

Fix typo

Change-Id: I9ec38d517d176ecd8dad074f3d96769f85eec311
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88745
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/compilerplugins/Makefile-clang.mk 
b/compilerplugins/Makefile-clang.mk
index 266919cf02b8..65cfa67cb1ec 100644
--- a/compilerplugins/Makefile-clang.mk
+++ b/compilerplugins/Makefile-clang.mk
@@ -103,7 +103,7 @@ else
 CLANGWERROR := -Werror
 # When COMPILER_PLUGINS_CXXFLAGS (obtained via `llvm-config --cxxflags`) 
contains options like
 # -Wno-maybe-uninitialized that are targeting GCC (when LLVM was actually 
built with GCC), and
-# COMPILER_PLUGINS_CXX (defaulting to CXX) deonotes a Clang that does not 
understand those options,
+# COMPILER_PLUGINS_CXX (defaulting to CXX) denotes a Clang that does not 
understand those options,
 # it fails with -Werror,-Wunknown-warning-option, so we need 
-Wno-unknown-warning-option (but which
 # GCC does not understand) at least with -Werror:
 ifeq ($(COMPILER_PLUGINS_COM_IS_CLANG),TRUE)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129820] Format "Standard" appears (replaced) Format "General" in Variables (Field)

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129820

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 130371] calc: editing: ui: weakness with named ranges, copying of cell to another sheet creates name reference not in dropdown, and not 'undone' with undo of copy,

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130371

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130295] Libre Office Draw does not save file if options in edit points are used

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130295

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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


[Libreoffice-bugs] [Bug 130354] Cannot sign existing PDF

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130354

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130370] calc: editing: ui: weakness with named ranges, move of cell to another sheet destroys referencing to local name reference there

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130370

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 130291] Opening a file from start center is very slow

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130291

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 126906] Libre Writer Locks Up Itself and the Whole GNOME Desktop Upon Pasting Web Page Contents

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126906

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

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


[Libreoffice-bugs] [Bug 130295] Libre Office Draw does not save file if options in edit points are used

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130295

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 130295] Libre Office Draw does not save file if options in edit points are used

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130295

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

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


[Libreoffice-bugs] [Bug 126906] Libre Writer Locks Up Itself and the Whole GNOME Desktop Upon Pasting Web Page Contents

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126906

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 113259] soffice --convert-to hangs on Windows Server 2016 when called multiple times

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113259

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 113259] soffice --convert-to hangs on Windows Server 2016 when called multiple times

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113259

--- Comment #23 from QA Administrators  ---
Dear mif,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 120744] link to external data does not work when named range of cells containing linked formulas

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120744

--- Comment #21 from QA Administrators  ---
Dear Edmund Laugasson,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 77007] FILEOPEN: User asked to save changes upon exit from unmodified XLS file (because of chart)

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77007

Aron Budea  changed:

   What|Removed |Added

   Hardware|Other   |All
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=57
   ||530
Summary|FILEOPEN: User asked to |FILEOPEN: User asked to
   |save changes upon exit from |save changes upon exit from
   |unmodified XLS file |unmodified XLS file
   |(possibly because of|(because of chart)
   |particular chart)   |
Version|4.0.4.2 release |4.0.0.3 release
 CC||ba...@caesar.elte.hu
   Keywords||bibisected, bisected,
   ||regression

--- Comment #15 from Aron Budea  ---
Still repro with 7.0.0.0.alpha0+ (718f540fb63af27c1336f89213444e9af753b8a9).

This is actually a regression that started with the following commit,
bibisected using repo bibisect-41max.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=bb97ecdbcc8d8dafd39e728b21bc68efee4eccbc
author  Markus Mohrhard
2012-12-22 14:19:38 +0100
committer   Markus Mohrhard
2012-12-22 14:26:43 +0100

storing the chart doc while loading is a bad idea, fdo#57530

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


[Libreoffice-bugs] [Bug 128575] Lack of coordination between the location of the words, and the click location

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128575

ori  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from ori  ---
Now everything looks Ok.
Please tell me how to help translate the other things that aren't translated to
hebrew

https://i.imgur.com/3iyZuCW.png

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


[Libreoffice-bugs] [Bug 130671] Fileopen XLS: Chart axis titles in wrong position

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130671

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #2 from Aron Budea  ---
The placement of the axis title of the chart on the left moved somewhere in the
following range, bibisected using repo bibisect-43all:
https://cgit.freedesktop.org/libreoffice/core/log/?qt=range=4316e643ef345b0f673b4a03a80a4b7cb3185588..ae4e4a11d4300f7448cb6bd170fcb034542caddc

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


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

2020-02-16 Thread Jan-Marek Glogowski (via logerrit)
 sc/qa/uitest/options/tdf122977.py |   13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

New commits:
commit 592bfa4d21e22ca5aa0ce228388558c52941b81a
Author: Jan-Marek Glogowski 
AuthorDate: Sun Feb 16 18:51:07 2020 +0100
Commit: Jan-Marek Glogowski 
CommitDate: Mon Feb 17 02:55:36 2020 +0100

Fix UITest_options: changed property name

Seems the color widget was changed into a tree at some point, so
the entry amount is now in "Children" instead of "EntryCount".

Change-Id: Ief6e6d0ebc4a6571a7f7e978b838eb49b2e051cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88831
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/sc/qa/uitest/options/tdf122977.py 
b/sc/qa/uitest/options/tdf122977.py
index ee8d4ff3b4c1..11d0ff9c 100644
--- a/sc/qa/uitest/options/tdf122977.py
+++ b/sc/qa/uitest/options/tdf122977.py
@@ -19,6 +19,7 @@ class chartDefaultColors(UITestCase):
 xCalcDoc = self.xUITest.getTopFocusWindow()
 gridwin = xCalcDoc.getChild("grid_window")
 document = self.ui_test.get_component()
+
 #Go to Tools -> Options -> Charts -> Default Colors
 self.ui_test.execute_dialog_through_command(".uno:OptionsTreeDialog")  
#optionsdialog
 xDialogOpt = self.xUITest.getTopFocusWindow()
@@ -32,12 +33,14 @@ class chartDefaultColors(UITestCase):
 xAdd = xDialogOpt.getChild("add")
 xDelete = xDialogOpt.getChild("delete")
 xDefault = xDialogOpt.getChild("default")
+
 #click Default - reset
 xDefault.executeAction("CLICK", tuple())
-nrDefaultColors = get_state_as_dict(xColors)["EntryCount"]
+nrDefaultColors = get_state_as_dict(xColors)["Children"]
 nrDefaultColors1 = int(nrDefaultColors) + 1
 xAdd.executeAction("CLICK", tuple())#add new color
-self.assertEqual(get_state_as_dict(xColors)["EntryCount"], 
str(nrDefaultColors1))
+self.assertEqual(get_state_as_dict(xColors)["Children"], 
str(nrDefaultColors1))
+
 #delete new color
 def handle_delete_dlg(dialog):
 xyesBtn = dialog.getChild("yes")
@@ -45,13 +48,13 @@ class chartDefaultColors(UITestCase):
 
 self.ui_test.execute_blocking_action(xDelete.executeAction, 
args=('CLICK', ()),
 dialog_handler=handle_delete_dlg)
-self.assertEqual(get_state_as_dict(xColors)["EntryCount"], 
nrDefaultColors)
+self.assertEqual(get_state_as_dict(xColors)["Children"], 
nrDefaultColors)
 
 xAdd.executeAction("CLICK", tuple())#add new color
-self.assertEqual(get_state_as_dict(xColors)["EntryCount"], 
str(nrDefaultColors1))
+self.assertEqual(get_state_as_dict(xColors)["Children"], 
str(nrDefaultColors1))
 #click Default
 xDefault.executeAction("CLICK", tuple())
-self.assertEqual(get_state_as_dict(xColors)["EntryCount"], 
nrDefaultColors)
+self.assertEqual(get_state_as_dict(xColors)["Children"], 
nrDefaultColors)
 
 xCancelBtn = xDialogOpt.getChild("cancel")
 self.ui_test.close_dialog_through_button(xCancelBtn)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: dbaccess/Module_dbaccess.mk framework/Module_framework.mk sc/Module_sc.mk sfx2/Module_sfx2.mk svl/Module_svl.mk svtools/Module_svtools.mk svx/Module_svx.mk sw/Module_sw

2020-02-16 Thread Jan-Marek Glogowski (via logerrit)
 dbaccess/Module_dbaccess.mk   |2 --
 framework/Module_framework.mk |2 --
 sc/Module_sc.mk   |2 --
 sfx2/Module_sfx2.mk   |4 
 svl/Module_svl.mk |2 --
 svtools/Module_svtools.mk |2 --
 svx/Module_svx.mk |2 --
 sw/Module_sw.mk   |4 
 unoxml/Module_unoxml.mk   |2 --
 9 files changed, 22 deletions(-)

New commits:
commit e81414d39bdded7fefb733559656b7bd3458bbe5
Author: Jan-Marek Glogowski 
AuthorDate: Sun Feb 16 21:00:57 2020 +0100
Commit: Jan-Marek Glogowski 
CommitDate: Mon Feb 17 02:45:56 2020 +0100

Drop needless junit and python make conditionals

JunitTest and PythonTest modules check for these themself.

Change-Id: Ia453bc99571738b01cc8f161f346cb6c37b2e429
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88832
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 

diff --git a/dbaccess/Module_dbaccess.mk b/dbaccess/Module_dbaccess.mk
index 50d601e853ae..a84bd57f2f82 100644
--- a/dbaccess/Module_dbaccess.mk
+++ b/dbaccess/Module_dbaccess.mk
@@ -83,13 +83,11 @@ $(eval $(call 
gb_Module_add_subsequentcheck_targets,dbaccess,\
 JunitTest_dbaccess_unoapi \
 ))
 
-ifneq ($(DISABLE_PYTHON),TRUE)
 ifneq ($(ENABLE_JAVA),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,dbaccess,\
PythonTest_dbaccess_python \
 ))
 endif
-endif
 
 # screenshots
 $(eval $(call gb_Module_add_screenshot_targets,dbaccess,\
diff --git a/framework/Module_framework.mk b/framework/Module_framework.mk
index 93ac5e79618f..8b136ac92dc7 100644
--- a/framework/Module_framework.mk
+++ b/framework/Module_framework.mk
@@ -37,11 +37,9 @@ $(eval $(call gb_Module_add_l10n_targets,framework,\
 AllLangMoTarget_fwk \
 ))
 
-ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,framework,\
 JunitTest_framework_complex \
 JunitTest_framework_unoapi \
 ))
-endif
 
 # vim: set noet sw=4 ts=4:
diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index d52537f1c908..a56b9d4c9f70 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -217,11 +217,9 @@ $(eval $(call gb_Module_add_perfcheck_targets,sc,\
CppunitTest_sc_tablesheetobj \
 ))
 
-ifneq ($(DISABLE_PYTHON),TRUE)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
PythonTest_sc_python \
 ))
-endif
 
 # screenshots
 $(eval $(call gb_Module_add_screenshot_targets,sc,\
diff --git a/sfx2/Module_sfx2.mk b/sfx2/Module_sfx2.mk
index b3a1f061b853..8ebe54cef9c7 100644
--- a/sfx2/Module_sfx2.mk
+++ b/sfx2/Module_sfx2.mk
@@ -38,18 +38,14 @@ $(eval $(call gb_Module_add_check_targets,sfx2,\
 CppunitTest_sfx2_classification \
 ))
 
-ifneq ($(ENABLE_JAVA),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sfx2,\
 JunitTest_sfx2_complex \
 JunitTest_sfx2_unoapi \
 ))
-endif
 
-ifneq ($(DISABLE_PYTHON),TRUE)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sfx2,\
PythonTest_sfx2_python \
 ))
-endif
 
 #todo: clean up quickstarter stuff in both libraries
 #todo: move standard pool to svl
diff --git a/svl/Module_svl.mk b/svl/Module_svl.mk
index 2569edb05b64..6283df82eadb 100644
--- a/svl/Module_svl.mk
+++ b/svl/Module_svl.mk
@@ -40,11 +40,9 @@ $(eval $(call gb_Module_add_check_targets,svl,\
CppunitTest_svl_urihelper \
 ))
 
-ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,svl,\
 JunitTest_svl_complex \
 ))
-endif
 
 #todo: dde platform dependent
 #todo: package_inc
diff --git a/svtools/Module_svtools.mk b/svtools/Module_svtools.mk
index d51140366b20..33af7b52229c 100644
--- a/svtools/Module_svtools.mk
+++ b/svtools/Module_svtools.mk
@@ -43,11 +43,9 @@ endif
 
 endif
 
-ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,svtools,\
 JunitTest_svtools_unoapi \
 ))
-endif
 
 # screenshots
 $(eval $(call gb_Module_add_screenshot_targets,svtools,\
diff --git a/svx/Module_svx.mk b/svx/Module_svx.mk
index 48ab6bcb071d..c4d816e6fc5d 100644
--- a/svx/Module_svx.mk
+++ b/svx/Module_svx.mk
@@ -47,11 +47,9 @@ $(eval $(call gb_Module_add_targets,svx,\
 ))
 endif
 
-ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,svx,\
 JunitTest_svx_unoapi \
 ))
-endif
 
 #todo: noopt for EnhanceCustomShapesFunctionParser.cxx on Solaris Sparc and 
MacOSX
 #todo: -DBOOST_SPIRIT_USE_OLD_NAMESPACE only in CustomShapes ?
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk
index 06611c2fc283..f8b250f57cbf 100644
--- a/sw/Module_sw.mk
+++ b/sw/Module_sw.mk
@@ -126,7 +126,6 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\
 ))
 endif
 
-ifneq ($(OOO_JUNIT_JAR),)
 $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
 JunitTest_sw_complex \
 JunitTest_sw_unoapi_1 \
@@ -134,13 +133,10 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
 JunitTest_sw_unoapi_3 \
 JunitTest_sw_unoapi_4 \
 ))
-endif
 
-ifneq ($(DISABLE_PYTHON),TRUE)
 $(eval $(call 

Application for student internship in GSOC 2020

2020-02-16 Thread Shivam Baranwal 19BCE1350
Sir,

   I am glad that I could reach you. It is an honour for me to
write to you. I am BTech. first year student pursuing Computer Science and
Engineering course  at The Vellore Institute Of Technology, Chennai, India.
It has always been a dream for me to work in an open source environment and
I have been working hard for it. I think now the time has come to introduce
myself at this level. Based on the projects that you are offering, I
consider myself eligible to join your coding team. I am attaching the
kind-of-resume document along with this mail so that you get a clear idea
of my capabilities and interest.

   Thank you for your time. I’ll wait for a positive reply.



Shivam Baranwal


SHIVAM BARANWAL RESUME(1).docx
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 130722] Can't use "Multiple Operations" with a DSUM function

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130722

--- Comment #1 from Dan Chall  ---
Created attachment 157933
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157933=edit
The simple spreadsheet illustrates the problem.

I checked ask.libreoffice.org first and found one entry that seemed nominally
to describe the sort of problem I found, and one of the comments suggested a
posting of a bug report. That's why I came here.

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


[Libreoffice-bugs] [Bug 130722] New: Can't use "Multiple Operations" with a DSUM function

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130722

Bug ID: 130722
   Summary: Can't use "Multiple Operations" with a DSUM function
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: Other
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: danch...@gmail.com

Description:
I have a valid call to DSUM. It works when I have a simple data table and a
simple criteria table, searching for one value in one field. Then I tried to
populate the value I'm searching for using Multiple Operations, and I get a 504
error. the variable is a text cell in the first row of the criteria table.  If
I use a simple formula (LEFT() ) then the table is populated correctly. But if
the formula is a call to DSUM, with the variable being the text value in the
first row of the criteria table, I get 504 errors. 

I haven't seen any reason this wouldn't work. I no longer have access to Excel
but this is something I often did in Excel years ago. 

Steps to Reproduce:
1.Create simple data table
2.create simple criteria table
3.write formula using DSUM with the criteria being a match for a simple string
in one field. Notice that the formula evaluates correctly
4. create a multiple operations table for one variable, three formulas. The
first formula is LEFT(X,2) where X is the string in the first row of the
criteria. The second formula is DSUM(DATATABLE, 3,CRITERIA). I expect to see
the sum of column 3 for matching rows.  The third formula uses column 2. The
fourth formula uses RIGHT(X,3)

Actual Results:
The LEFT and RIGHT formulas evaluate correctly but the DSUM formulas do not. I
get 504 errors for all the DSUM calls

Expected Results:
I expect to see the DSUM call computed correctly for each value in my table
plugged into the second row of the criteria field. When the populated value is
the sample constant plugged into the first row of the criteria table, I expect
to see the DSUM evaluation identical to when the formula is calculated
normally, not in a table.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
I'll post a simple spreadsheet.

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


Infra call on Tue, Feb 18 at 17:30 UTC

2020-02-16 Thread Guilhem Moulin
Hi there,

The next infra call will take place at `date -d "Tue Feb 18 17:30:00 UTC 2020"`
(18:30:00 Berlin time).

We'll meet at https://jitsi.documentfoundation.org/infra and write the minutes
to https://pad.documentfoundation.org/p/infra .  Agenda TBA.

See you there!
Cheers,
-- 
Guilhem.


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


[Libreoffice-bugs] [Bug 130714] Mojave Operating System (macOS 10.14.5) for Apple laptops has a dark mode option

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130714

V Stuart Foote  changed:

   What|Removed |Added

Summary|The lates Mojave Operating  |Mojave Operating System
   |System (iOS) for the Apple  |(macOS 10.14.5) for Apple
   |laptops has a dark mode |laptops has a dark mode
   |option  |option

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


[Libreoffice-bugs] [Bug 118017] support macOS dark mode

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118017

V Stuart Foote  changed:

   What|Removed |Added

 CC||franco.ragghianti@telkomsa.
   ||net

--- Comment #4 from V Stuart Foote  ---
*** Bug 130714 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 130714] The lates Mojave Operating System (iOS) for the Apple laptops has a dark mode option

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130714

V Stuart Foote  changed:

   What|Removed |Added

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

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


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

-- 
You are receiving this mail because:
You 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-4' - icon-themes/elementary icon-themes/elementary_svg icon-themes/karasa_jaga icon-themes/karasa_jaga_svg icon-themes/sifr icon-themes/sifr_dark

2020-02-16 Thread rizmut (via logerrit)
 dev/null   
|binary
 icon-themes/elementary/cmd/32/bg/bold.png  
|binary
 icon-themes/elementary/cmd/32/bg/italic.png
|binary
 icon-themes/elementary/cmd/32/selectunprotectedcells.png   
|binary
 icon-themes/elementary/cmd/32/toolprotectiondocument.png   
|binary
 icon-themes/elementary/cmd/bg/lc_bold.png  
|binary
 icon-themes/elementary/cmd/bg/lc_italic.png
|binary
 icon-themes/elementary/cmd/bg/sc_bold.png  
|binary
 icon-themes/elementary/cmd/bg/sc_italic.png
|binary
 icon-themes/elementary/cmd/lc_entirecell.png   
|binary
 icon-themes/elementary/cmd/lc_insertfield.png  
|binary
 icon-themes/elementary/cmd/lc_selectunprotectedcells.png   
|binary
 icon-themes/elementary/cmd/sc_toolprotectiondocument.png   
|binary
 icon-themes/elementary/links.txt   
|   27 
 icon-themes/elementary/sw/res/sc20183.png  
|binary
 icon-themes/elementary_svg/cmd/32/bg/bold.svg  
|1 
 icon-themes/elementary_svg/cmd/32/bg/italic.svg
|1 
 icon-themes/elementary_svg/cmd/32/nl/bold.svg  
|2 
 icon-themes/elementary_svg/cmd/32/selectunprotectedcells.svg   
|1 
 icon-themes/elementary_svg/cmd/32/toolprotectiondocument.svg   
|1 
 icon-themes/elementary_svg/cmd/bg/lc_bold.svg  
|1 
 icon-themes/elementary_svg/cmd/bg/lc_italic.svg
|1 
 icon-themes/elementary_svg/cmd/bg/sc_bold.svg  
|2 
 icon-themes/elementary_svg/cmd/bg/sc_italic.svg
|5 
 icon-themes/elementary_svg/cmd/lc_entirecell.svg   
|2 
 icon-themes/elementary_svg/cmd/lc_insertfield.svg  
|2 
 icon-themes/elementary_svg/cmd/lc_selectunprotectedcells.svg   
|1 
 icon-themes/elementary_svg/cmd/sc_toolprotectiondocument.svg   
|2 
 icon-themes/karasa_jaga/cmd/32/subscript.png   
|binary
 icon-themes/karasa_jaga/cmd/32/superscript.png 
|binary
 icon-themes/karasa_jaga/cmd/lc_subscript.png   
|binary
 icon-themes/karasa_jaga/cmd/lc_superscript.png 
|binary
 icon-themes/karasa_jaga/cmd/sc_subscript.png   
|binary
 icon-themes/karasa_jaga/cmd/sc_superscript.png 
|binary
 icon-themes/karasa_jaga/links.txt  
| 3906 +-
 icon-themes/karasa_jaga/sw/res/sc20183.png 
|binary
 icon-themes/karasa_jaga_svg/cmd/32/subscript.svg   
|2 
 icon-themes/karasa_jaga_svg/cmd/32/superscript.svg 
|2 
 icon-themes/karasa_jaga_svg/cmd/lc_subscript.svg   
|2 
 icon-themes/karasa_jaga_svg/cmd/lc_superscript.svg 
|2 
 icon-themes/karasa_jaga_svg/cmd/sc_subscript.svg   
|2 
 icon-themes/karasa_jaga_svg/cmd/sc_superscript.svg 
|2 
 icon-themes/sifr/links.txt 
|3 
 icon-themes/sifr/sw/res/sidebar/pageproppanel/column_L_copy_24x24.png  
|binary
 icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_copy_24x24.png  
|binary
 icon-themes/sifr/sw/res/sidebar/pageproppanel/formatcopy_24x24.png 
|binary
 icon-themes/sifr/sw/res/sidebar/pageproppanel/portraitcopy_24x24.png   
|binary
 icon-themes/sifr_dark/links.txt
|3 
 icon-themes/sifr_dark/sw/res/sidebar/pageproppanel/column_L_copy_24x24.png 
|binary
 icon-themes/sifr_dark/sw/res/sidebar/pageproppanel/format_L_copy_24x24.png 
|binary
 icon-themes/sifr_dark/sw/res/sidebar/pageproppanel/formatcopy_24x24.png
|binary
 icon-themes/sifr_dark/sw/res/sidebar/pageproppanel/portraitcopy_24x24.png  
|binary
 icon-themes/sifr_dark_svg/sw/res/sc20238.svg   
|1 
 icon-themes/sifr_dark_svg/sw/res/sidebar/pageproppanel/column_L_copy_24x24.svg 
|1 
 icon-themes/sifr_dark_svg/sw/res/sidebar/pageproppanel/format_L_copy_24x24.svg 
|1 
 icon-themes/sifr_dark_svg/sw/res/sidebar/pageproppanel/formatcopy_24x24.svg
|1 
 

[Libreoffice-bugs] [Bug 130150] Broken clipping in PDF export

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130150

Thorsten Behrens (CIB)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |t...@libreoffice.org
   |desktop.org |

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


[Libreoffice-bugs] [Bug 126906] Libre Writer Locks Up Itself and the Whole GNOME Desktop Upon Pasting Web Page Contents

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126906

--- Comment #3 from launch...@startport.com ---
I can still reproduce this on Kubuntu 19.10. Here's a video of me reproducing
it:
https://youtu.be/EM26C_Q-hKA

I was using GNOME when I first reported this bug. KDE is handling this better
than GNOME did, but Libre Office Writer still becomes unusable after following
the exact steps I outlined above.

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


[Libreoffice-commits] core.git: Branch 'feature/cib_contract138c' - 4 commits - configure.ac sc/qa sc/source

2020-02-16 Thread Thorsten Behrens (via logerrit)
 configure.ac|2 
 sc/qa/unit/data/ods/autoheight2rows.ods |binary
 sc/qa/unit/data/ods/tdf62268.ods|binary
 sc/qa/unit/helper/qahelper.cxx  |3 -
 sc/qa/unit/subsequent_export-test.cxx   |   59 +
 sc/qa/unit/subsequent_filters-test.cxx  |   65 ++--
 sc/source/core/data/segmenttree.cxx |4 +
 sc/source/filter/xml/xmlimprt.cxx   |   20 +
 sc/source/filter/xml/xmlimprt.hxx   |4 +
 sc/source/filter/xml/xmlrowi.cxx|   15 +++
 10 files changed, 134 insertions(+), 38 deletions(-)

New commits:
commit 05e407d7083d598691190090f244c75f1d18915a
Author: Thorsten Behrens 
AuthorDate: Mon Feb 17 00:55:36 2020 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Feb 17 00:55:36 2020 +0100

Release 6.2.9.3

Change-Id: I54a07b03e58fa3e600321b484132f98c8a8a7793

diff --git a/configure.ac b/configure.ac
index 6d962c3acddf..b3724fff8595 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.2.9.2],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.2.9.3],[],[],[http://documentfoundation.org/])
 
 AC_PREREQ([2.59])
 
commit 486aba66bb8456ae9f7989d2bef1dec886dd9d8d
Author: Thorsten Behrens 
AuthorDate: Sun Feb 16 12:14:01 2020 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Feb 17 00:54:17 2020 +0100

tdf#123971 don't clobber entire RowHeight range on updates

Use start index from current loop variable, not full range; otherwise
we're always clobbering values from (possibly higher) upper rows.

Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88785
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
(cherry picked from commit f55140c7376c330bcdac071592aada75e8781e19)

Conflicts:
sc/qa/unit/subsequent_filters-test.cxx

Change-Id: I3add7c2358710f4ae3927e7b0a1c1ff544965a03

diff --git a/sc/qa/unit/data/ods/autoheight2rows.ods 
b/sc/qa/unit/data/ods/autoheight2rows.ods
index b687701240c1..099df137ff64 100644
Binary files a/sc/qa/unit/data/ods/autoheight2rows.ods and 
b/sc/qa/unit/data/ods/autoheight2rows.ods differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index 6b6b3deaf6a1..4266fed9bbf4 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -4295,11 +4295,16 @@ void ScFiltersTest::testAutoheight2Rows()
 
 SCTAB nTab = 0;
 int nHeight1 = rDoc.GetRowHeight(0, nTab, false);
-int nHeight3 = rDoc.GetRowHeight(2, nTab, false);
+int nHeight2 = rDoc.GetRowHeight(1, nTab, false);
+int nHeight4 = rDoc.GetRowHeight(3, nTab, false);
+int nHeight5 = rDoc.GetRowHeight(4, nTab, false);
 
 // We will do relative comparison, because calculated autoheight
 // can be different on different platforms
-CPPUNIT_ASSERT_MESSAGE("Row #3 shoud be thinner than #1", nHeight3 < 
nHeight1);
+CPPUNIT_ASSERT_MESSAGE("Row #1 and row #4 must have same height after load 
& auto-adjust",
+   abs( nHeight1 - nHeight4 ) < 10 );
+CPPUNIT_ASSERT_MESSAGE("Row #2 and row #5 must have same height after load 
& auto-adjust",
+   abs( nHeight2 - nHeight5 ) < 10 );
 
 xDocSh->DoClose();
 }
diff --git a/sc/source/core/data/segmenttree.cxx 
b/sc/source/core/data/segmenttree.cxx
index 4c01deb06172..0f96946d806a 100644
--- a/sc/source/core/data/segmenttree.cxx
+++ b/sc/source/core/data/segmenttree.cxx
@@ -106,7 +106,9 @@ void ScFlatSegmentsImpl::setValueIf(SCCOLROW nPos1, S
 getRangeData(nCurrentStartRow, aRangeData);
 if (rPredicate(aRangeData.mnValue))
 {
-setValue(nPos1, std::min(nPos2, aRangeData.mnPos2), 
nValue);
+// set value from current iteration point on, til end of range.
+// Note that aRangeData may well contain much lower values for 
nPos1
+setValue(nCurrentStartRow, std::min(nPos2, 
aRangeData.mnPos2), nValue);
 }
 
 // even if nPos2 is bigger than nPos2 this should terminate the loop
commit facee65a643ff82eda0dd6f03b7e94cf900f59e0
Author: Vasily Melenchuk 
AuthorDate: Wed Apr 24 12:50:50 2019 +0300
Commit: Thorsten Behrens 
CommitDate: Mon Feb 17 00:51:36 2020 +0100

calc: extra unittest for rows autoheight on load

Change-Id: Ie5310d3c3d4fde59a0718dbda228c638b7e0c366
Reviewed-on: https://gerrit.libreoffice.org/71235
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
(cherry picked from commit 5a2aba31867e0912700f6c976f152116d902fe21)

diff --git a/sc/qa/unit/data/ods/autoheight2rows.ods 
b/sc/qa/unit/data/ods/autoheight2rows.ods
new file mode 100644
index 

[Libreoffice-bugs] [Bug 123810] [META] Classification bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123810
Bug 123810 depends on bug 101043, which changed state.

Bug 101043 Summary: LO52rc3 OSX: the Classification toolbar has grey, not theme 
adjusting background
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 101043] LO52rc3 OSX: the Classification toolbar has grey, not theme adjusting background

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

Martin Srebotnjak  changed:

   What|Removed |Added

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

--- Comment #10 from Martin Srebotnjak  ---
IT is not true, there is still a bug here.
See for yourself - the attached screenshot of LO 6.4.1.1 with Slovenian
langpack on MacOS - using a built-in Personalization green theme.

The TSCP toolbar obviously cannot overlay the theme's overlay, just displays
the basic background color of the theme.

It is a bug. Should I change the bug's title?

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


[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239
Bug 103239 depends on bug 101043, which changed state.

Bug 101043 Summary: LO52rc3 OSX: the Classification toolbar has grey, not theme 
adjusting background
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 101043] LO52rc3 OSX: the Classification toolbar has grey, not theme adjusting background

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

--- Comment #9 from Martin Srebotnjak  ---
Created attachment 157932
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157932=edit
TSCP toolbar problem persists, although less critical

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


[Libreoffice-commits] core.git: sc/qa sc/source

2020-02-16 Thread Thorsten Behrens (via logerrit)
 sc/qa/unit/data/ods/autoheight2rows.ods |binary
 sc/qa/unit/subsequent_filters-test.cxx  |9 +++--
 sc/source/core/data/segmenttree.cxx |4 +++-
 3 files changed, 10 insertions(+), 3 deletions(-)

New commits:
commit f55140c7376c330bcdac071592aada75e8781e19
Author: Thorsten Behrens 
AuthorDate: Sun Feb 16 12:14:01 2020 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Feb 17 00:41:07 2020 +0100

tdf#123971 don't clobber entire RowHeight range on updates

Use start index from current loop variable, not full range; otherwise
we're always clobbering values from (possibly higher) upper rows.

Change-Id: I3add7c2358710f4ae3927e7b0a1c1ff544965a03
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88785
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/sc/qa/unit/data/ods/autoheight2rows.ods 
b/sc/qa/unit/data/ods/autoheight2rows.ods
index b687701240c1..099df137ff64 100644
Binary files a/sc/qa/unit/data/ods/autoheight2rows.ods and 
b/sc/qa/unit/data/ods/autoheight2rows.ods differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index d57404bc3ed9..4038430dceee 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -4323,11 +4323,16 @@ void ScFiltersTest::testAutoheight2Rows()
 
 SCTAB nTab = 0;
 int nHeight1 = rDoc.GetRowHeight(0, nTab, false);
-int nHeight3 = rDoc.GetRowHeight(2, nTab, false);
+int nHeight2 = rDoc.GetRowHeight(1, nTab, false);
+int nHeight4 = rDoc.GetRowHeight(3, nTab, false);
+int nHeight5 = rDoc.GetRowHeight(4, nTab, false);
 
 // We will do relative comparison, because calculated autoheight
 // can be different on different platforms
-CPPUNIT_ASSERT_MESSAGE("Row #3 should be thinner than #1", nHeight3 < 
nHeight1);
+CPPUNIT_ASSERT_MESSAGE("Row #1 and row #4 must have same height after load 
& auto-adjust",
+   abs( nHeight1 - nHeight4 ) < 10 );
+CPPUNIT_ASSERT_MESSAGE("Row #2 and row #5 must have same height after load 
& auto-adjust",
+   abs( nHeight2 - nHeight5 ) < 10 );
 
 xDocSh->DoClose();
 }
diff --git a/sc/source/core/data/segmenttree.cxx 
b/sc/source/core/data/segmenttree.cxx
index b4116168002f..254f0f875571 100644
--- a/sc/source/core/data/segmenttree.cxx
+++ b/sc/source/core/data/segmenttree.cxx
@@ -110,7 +110,9 @@ void ScFlatSegmentsImpl::setValueIf(SCCOLROW nPos1, S
 getRangeData(nCurrentStartRow, aRangeData);
 if (rPredicate(aRangeData.mnValue))
 {
-setValue(nPos1, std::min(nPos2, aRangeData.mnPos2), 
nValue);
+// set value from current iteration point on, til end of range.
+// Note that aRangeData may well contain much lower values for 
nPos1
+setValue(nCurrentStartRow, std::min(nPos2, 
aRangeData.mnPos2), nValue);
 }
 
 // even if nPos2 is bigger than nPos2 this should terminate the loop
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 127589] Filesave XLSX: Missing data in two graphs that were shown before

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127589

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #8 from Eike Rathke  ---
Unassigning for the time being.

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


[Libreoffice-bugs] [Bug 74244] macOS: Version info only shows three digits, not full version information

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74244

eisa01  changed:

   What|Removed |Added

   Severity|major   |trivial
Summary|OSX LibreOffice.App Version |macOS: Version info only
   |is incorrect on 4.2.0.4 |shows three digits, not
   |RELEASE through 4.2.2.1 |full version information
   |RC1, let's make that|
   |consistent with the "About" |
   |window  |
   Priority|medium  |low
   Hardware|x86 (IA32)  |All

--- Comment #17 from eisa01  ---
Clearer title and lowering importance

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


[Libreoffice-bugs] [Bug 74244] OSX LibreOffice.App Version is incorrect on 4.2.0.4 RELEASE through 4.2.2.1 RC1, let's make that consistent with the "About" window

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74244

eisa01  changed:

   What|Removed |Added

 CC||asmaloney...@gmail.com

--- Comment #16 from eisa01  ---
*** Bug 120153 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 120153] {macOS} Finder shows incorrect version number in column view

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120153

eisa01  changed:

   What|Removed |Added

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

--- Comment #18 from eisa01  ---


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

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


[Libreoffice-bugs] [Bug 90796] [META] HiDPI / Retina bugs

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90796
Bug 90796 depends on bug 87032, which changed state.

Bug 87032 Summary: libreoffice not support imac 5k retina display
https://bugs.documentfoundation.org/show_bug.cgi?id=87032

   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 87032] libreoffice not support imac 5k retina display

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87032

eisa01  changed:

   What|Removed |Added

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

--- Comment #4 from eisa01  ---
I can't see this ever actually being confirmed, and I'm sure we'll hear about
it if anyone actually has it after bug #122218

No activity for 6 years, so I doubt it

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


[Libreoffice-bugs] [Bug 123810] [META] Classification bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123810
Bug 123810 depends on bug 101043, which changed state.

Bug 101043 Summary: LO52rc3 OSX: the Classification toolbar has grey, not theme 
adjusting background
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

   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 101043] LO52rc3 OSX: the Classification toolbar has grey, not theme adjusting background

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

eisa01  changed:

   What|Removed |Added

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

--- Comment #8 from eisa01  ---
There's now only a TSCP Classification toolbar. That does not exhibit this
problem

Version: 7.0.0.0.alpha0+
Build ID: 0cb4f304abf6f8dd6b40eb800788d2fe80581813
CPU threads: 4; OS: Mac OS X 10.14.6; UI render: default; VCL: osx; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239
Bug 103239 depends on bug 101043, which changed state.

Bug 101043 Summary: LO52rc3 OSX: the Classification toolbar has grey, not theme 
adjusting background
https://bugs.documentfoundation.org/show_bug.cgi?id=101043

   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-commits] dictionaries.git: Branch 'libreoffice-6-4' - af_ZA/af_ZA.aff af_ZA/af_ZA.dic af_ZA/description.xml

2020-02-16 Thread Kris van der Merwe (via logerrit)
 af_ZA/af_ZA.aff   |  149 -
 af_ZA/af_ZA.dic   | 6017 +++---
 af_ZA/description.xml |2 
 3 files changed, 3382 insertions(+), 2786 deletions(-)

New commits:
commit 2e25022c7405dc29aab47f26369bbcc21fbe6e68
Author: Kris van der Merwe 
AuthorDate: Sun Feb 16 11:31:26 2020 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Feb 16 23:31:40 2020 +0100

Updated Afrikaans dictionary

Change-Id: I778714df63b70d9beacc2e48dc538afe88fd1c5f
Reviewed-on: https://gerrit.libreoffice.org/c/dictionaries/+/88705
Tested-by: Adolfo Jayme Barrientos 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/af_ZA/af_ZA.aff b/af_ZA/af_ZA.aff
index 2aa7cf7..e8bb7de 100644
--- a/af_ZA/af_ZA.aff
+++ b/af_ZA/af_ZA.aff
@@ -1,6 +1,6 @@
 # af_ZA.aff - Afrikaans (af) affix file for use in hunspell
 #
-# Copyright (C) 2019 Kris van der Merwe
+# Copyright (C) 2020 Kris van der Merwe
 # ... created from the Afrikaans ispell affix file by Dwayne Bailey
 # ... created from the Afrikaans ispell affix file by Reinier de Vos
 #
@@ -20,12 +20,12 @@
 #
 
 # This Afrikaans dictionary is maintained on Puzzlefoundry.com
-# It is possible to edit dictionaries through the Puzzlefoundry.com interface
+# It is possible to edit dictionaries through the Puzzlefoundry.com interface 
(on request)
 # Your improvements will then be included in future releases.
 #
 # Die Afrikaanse speltoets data word op PuzzleFoundry.com instandgehou en 
geproduseer
-# Dit is moontlik om PuzzleFoundry.com woordeboeke direk op die web te wysig.
-# In so geval word woordeboek-redigeervermoë aan u toegestaan.
+# Dit is moontlik om PuzzleFoundry.com woordeboeke direk deur die 
web-koppelvlak te wysig.
+# Woordeboek-redigeervermoë word toegestaan op versoek.
 # Ek (Kris) kan ook gekontak word deur die PuzzleFoundry.com kontak bladsy
 #
 
@@ -33,7 +33,7 @@ SET UTF-8
 
 TRY eraisontlgkdumpbvwhfyjëêc-ï'zxöéôqSBVOKGATDPMHRWLIENUFJCXZèûâüä
 
-#NOSPLITSUGS
+NOSPLITSUGS
 
 
 # ordinale nommers 1ste, 2de, 3de, 4de, 5de ... 20ste ...
@@ -51,7 +51,7 @@ COMPOUNDRULE qp
 COMPOUNDRULE mn*t
 COMPOUNDRULE nnn*t
 
-WORDCHARS 0123456789
+WORDCHARS 0123456789-
 
 # Certain characters are considered "close" to others
 #
@@ -109,6 +109,12 @@ REP kie tjie
 REP ntjie nkie
 REP aaitjie aadjie
 
+BREAK 2
+BREAK -
+BREAK --
+
+
+#
 # Conjugation rules
 # Woord verbuiging reëls
 #
@@ -133,81 +139,83 @@ PFX F 0 af .
 PFX G Y 1
 PFX G 0 ge .
 
-SFX H N 1
-SFX H   0 heid .
+SFX H N 2
+SFX H 0 heid [^ëe]
+SFX H 0 nheid [ëe]
 
 SFX J N 16
-SFX J   0  tjie   .[aeiouy]
-SFX J   0  tjies  .[aeiouy]
-SFX J   0  tjie   .[aeiouyëê][lnr]
-SFX J   0  tjies  .[aeiouyëê][lnr]
-SFX J   0  etjie   ^.{1,3}[aeiouyëê]ng
-SFX J   0  etjies  ^.{1,3}[aeiouyëê]ng
-SFX J   0  pie.[aeiou]m
-SFX J   0  pies   .[aeiou]m
-SFX J   0  jie.[aeioun](d|t)
-SFX J   0  jies   .[aeioun](d|t)
-SFX J   0  'tjies .+[^aeiouyëêlngrmdtp]
-SFX J   0  'tjie  .+[^aeiouyëêlngrmdtp]
-SFX J   0  'etjies ^[flmnrsx]
-SFX J   0  'etjie  ^[flmnrsx]
-SFX J   0  'tjies ^[^flmnrsx]
-SFX J   0  'tjie  ^[^flmnrsx]
+SFX J  0 tjie   .[aeiouy]
+SFX J  0 tjies  .[aeiouy]
+SFX J  0 tjie   .[aeiouyëê][lnr]
+SFX J  0 tjies  .[aeiouyëê][lnr]
+SFX J  0 etjie  ^.{1,3}[aeiouyëê]ng
+SFX J  0 etjies ^.{1,3}[aeiouyëê]ng
+SFX J  0 pie   .[aeiou]m
+SFX J  0 pies  .[aeiou]m
+SFX J  0 jie   .[aeioun][dt]
+SFX J  0 jies  .[aeioun][dt]
+SFX J  0 'tjies .+[^aeiouyëêlngrmdtp]
+SFX J  0 'tjie  .+[^aeiouyëêlngrmdtp]
+SFX J  0 'etjies ^[flmnrsx]
+SFX J  0 'etjie  ^[flmnrsx]
+SFX J  0 'tjies ^[^flmnrsx]
+SFX J  0 'tjie  ^[^flmnrsx]
 
 PFX K Y 1
 PFX K 0 op .
 
 SFX L N 1
-SFX L   0 te .
+SFX L  0 te .
 
 PFX M Y 1
 PFX M 0 oor .
 
 SFX N N 1
-SFX N   0 de .
+SFX N  0 de .
 
 PFX O Y 1
 PFX O 0 on .
 
-SFX P N 31
-SFX P   ad de aad
-SFX P   ag e aag
-SFX P   ak ke aak
-SFX P   al le aal
-SFX P   am me aam
-SFX P   an ne aan
-SFX P   ap pe aap
-SFX P   ar re aar
-SFX P   as se aas
-SFX P   at te aat
-SFX P   ed de eed
-SFX P   eg ge eeg
-SFX P   ek ke eek
-SFX P   el le eel
-SFX P   em me eem
-SFX P   en ne een
-SFX P   ep pe eep
-SFX P   er re eer
-SFX P   es se ees
-SFX P   et te eet
-SFX P   od de ood
-SFX P   og ë  oog
-SFX P   ok ke ook
-SFX P   ol le ool
-SFX P   om me oom
-SFX P   on ne oon
-SFX P   op pe oop
-SFX P   or re oor
-SFX P   ot te oot
-SFX P   un ne uun
-SFX P   ur re uur
+SFX P N 32
+SFX P  ad de aad
+SFX P  ag e  aag
+SFX P  ak ke aak
+SFX P  al le aal
+SFX P  am me aam
+SFX P  an ne aan
+SFX P  ap pe aap
+SFX P  ar re aar
+SFX P  as se aas
+SFX P  at te aat
+SFX P  ed de eed
+SFX P  eg ge eeg
+SFX P  ek ke eek
+SFX P  el le eel
+SFX P  em me eem
+SFX P  id de heid
+SFX P  en ne [eï]en
+SFX P  ep pe eep
+SFX P  er re eer
+SFX P  es se ees
+SFX P  et te eet
+SFX P  od de ood
+SFX P  og ë  oog
+SFX P  ok ke ook
+SFX P  ol le ool
+SFX P  om me oom
+SFX P  on ne oon
+SFX P  op pe oop
+SFX P  or re oor
+SFX P  ot te oot
+SFX P  un ne uun
+SFX P  ur re uur
 
 SFX S N 2
-SFX S   0 s 

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - dictionaries

2020-02-16 Thread Kris van der Merwe (via logerrit)
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c90b58d2cac07cacaaa43f3c1e20f5439225f434
Author: Kris van der Merwe 
AuthorDate: Sun Feb 16 23:31:40 2020 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Feb 16 23:31:40 2020 +0100

Update git submodules

* Update dictionaries from branch 'libreoffice-6-4'
  to 2e25022c7405dc29aab47f26369bbcc21fbe6e68
  - Updated Afrikaans dictionary

Change-Id: I778714df63b70d9beacc2e48dc538afe88fd1c5f
Reviewed-on: https://gerrit.libreoffice.org/c/dictionaries/+/88705
Tested-by: Adolfo Jayme Barrientos 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/dictionaries b/dictionaries
index ab88309069f2..2e25022c7405 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit ab88309069f2df5dd010654d294c094ff2adc970
+Subproject commit 2e25022c7405dc29aab47f26369bbcc21fbe6e68
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130699] Assert on undo/redo table captions

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130699

--- Comment #2 from Jim Raykowski  ---
This assert is easily seen with patch applied that adds insert caption menu
item to Navigator table context menu. 

https://gerrit.libreoffice.org/c/core/+/88828

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


[Libreoffice-bugs] [Bug 124098] LibreCalc6.2: Opening a Calc with some formulas: It writes "adapt Row Height" which is taking ages to load!

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124098

Thorsten Behrens (CIB)  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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


[Libreoffice-bugs] [Bug 125077] [META] regressions introduced by row height recalculation on document load

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125077

Thorsten Behrens (CIB)  changed:

   What|Removed |Added

 Depends on|123971  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123971
[Bug 123971] Row height incorrect in Calc on reload regression when row
contains multiline text and cells with different font sizes
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 130721] non-breaking space looks ugly in justified text, naming mix up

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130721

mikola...@gmail.com changed:

   What|Removed |Added

Summary|non-breaking space looks|non-breaking space looks
   |ugly when justified, naming |ugly in justified text,
   |mix up  |naming mix up

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


[Libreoffice-bugs] [Bug 130721] New: non-breaking space looks ugly when justified, naming mix up

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130721

Bug ID: 130721
   Summary: non-breaking space looks ugly when justified, naming
mix up
   Product: LibreOffice
   Version: 6.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikola...@gmail.com

tl;dr: non-breaking space looks ugly and it's typographic issue.

Explanation

There are few things about non-breaking space (ctrl+shift+space) in LibreOffice
Writer, and it's even not clear to me where the bug exists: in behavior, used
name, or translation.

As far as I know there are few types of spaces:
- non-breaking space https://en.wikipedia.org/wiki/Non-breaking_space
- hard space: https://en.wikipedia.org/wiki/Hard_space
- soft space (seen on wiki Hard space but do not understand)

I do not know how Polish names match English names here:
- "spacja niełamiąca" (literally non-breaking space): is a space which does not
allow to break the words between the paragraphs, but is stretched in justified
text in the same way as normal space,
- "twarda spacja" (literally hard space): it's "spacja niełamiąca" but it has
constant width even in justified text,

so if the name meaning explained above are the same in both languages then:
(bug) In LibreOffice non-breaking space behaves as hard space

else if non-breaking space means the same as "twarda spacja" then:
(feature request) it would be awesome to have the "spacja niełamiąca"
implemented in LibreOffice, so people are able to write properly looking
documents.

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


[Libreoffice-bugs] [Bug 104426] Calc: Online help for array calculation key combination is incorrectly given as Ctrl+Shift+Return on macOS instead of Cmd+Shift+Return

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104426

eisa01  changed:

   What|Removed |Added

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

--- Comment #3 from eisa01  ---
This is fixed in the new online help

https://help.libreoffice.org/6.4/en-US/text/scalc/01/04060107.html?DbPAR=CALC#bm_id3147273

-- 
You are receiving this mail because:
You 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-4-1' - sd/source

2020-02-16 Thread Caolán McNamara (via logerrit)
 sd/source/ui/slidesorter/controller/SlsFocusManager.cxx  |8 --
 sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx |   13 ---
 sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx  |4 +--
 3 files changed, 12 insertions(+), 13 deletions(-)

New commits:
commit 6d1efc2b5dac95647b6e2c1ed7059e1964acf4fa
Author: Caolán McNamara 
AuthorDate: Mon Feb 10 16:46:22 2020 +
Commit: Thorsten Behrens 
CommitDate: Sun Feb 16 23:06:08 2020 +0100

tdf#130440 only select first page fallback if seting to current page failed

Change-Id: Iee4f9cef9659837e9ce131e3bfc8da3e8d87bf84
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88388
Tested-by: Michael Stahl 
Reviewed-by: Michael Stahl 
(cherry picked from commit 4abdcf7c73d16f6fee28dd0502f06a8385ebf019)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88505
Reviewed-by: Xisco Faulí 
Reviewed-by: Adolfo Jayme Barrientos 
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 

diff --git a/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx 
b/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx
index d61784d28921..7e928cbfea36 100644
--- a/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsFocusManager.cxx
@@ -141,13 +141,15 @@ model::SharedPageDescriptor 
FocusManager::GetFocusedPageDescriptor() const
 return mrSlideSorter.GetModel().GetPageDescriptor(mnPageIndex);
 }
 
-void FocusManager::SetFocusedPage (const model::SharedPageDescriptor& 
rpDescriptor)
+bool FocusManager::SetFocusedPage (const model::SharedPageDescriptor& 
rpDescriptor)
 {
 if (rpDescriptor.get() != nullptr)
 {
 FocusHider aFocusHider (*this);
 mnPageIndex = (rpDescriptor->GetPage()->GetPageNum()-1)/2;
+return true;
 }
+return false;
 }
 
 void FocusManager::SetFocusedPage (sal_Int32 nPageIndex)
@@ -156,9 +158,9 @@ void FocusManager::SetFocusedPage (sal_Int32 nPageIndex)
 mnPageIndex = nPageIndex;
 }
 
-void FocusManager::SetFocusedPageToCurrentPage()
+bool FocusManager::SetFocusedPageToCurrentPage()
 {
-
SetFocusedPage(mrSlideSorter.GetController().GetCurrentSlideManager()->GetCurrentSlide());
+return 
SetFocusedPage(mrSlideSorter.GetController().GetCurrentSlideManager()->GetCurrentSlide());
 }
 
 bool FocusManager::IsFocusShowing() const
diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx 
b/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
index bacf5fdf0323..9eaa7b50c8a2 100644
--- a/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsSelectionObserver.cxx
@@ -121,16 +121,13 @@ void SelectionObserver::EndObservation()
 }
 maInsertedPages.clear();
 }
-else
-{
-// tdf#129346 nothing currently selected, select something, if possible
-if (rSelector.GetPageCount())
-rSelector.SelectPage(0);
-}
 
 aUpdateLock.Release();
-
mrSlideSorter.GetController().GetFocusManager().SetFocusedPageToCurrentPage();
-
+bool bSuccess = 
mrSlideSorter.GetController().GetFocusManager().SetFocusedPageToCurrentPage();
+// tdf#129346 nothing currently selected, select something, if possible
+// but (tdf#129346) only if setting focus to current page failed
+if (!bSuccess && rSelector.GetPageCount())
+rSelector.SelectPage(0);
 }
 
 } } } // end of namespace ::sd::slidesorter::controller
diff --git a/sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx 
b/sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx
index 6a8dec636a7c..0455206ebfcc 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlsFocusManager.hxx
@@ -115,7 +115,7 @@ public:
 One of the page descriptors that are currently managed by the
 SlideSorterModel.
 */
-void SetFocusedPage (const model::SharedPageDescriptor& rDescriptor);
+bool SetFocusedPage (const model::SharedPageDescriptor& rDescriptor);
 
 /** Set the focused page to the one described by the given page
 index.  The visibility of the focus indicator is not modified.
@@ -124,7 +124,7 @@ public:
 */
 void SetFocusedPage (sal_Int32 nPageIndex);
 
-void SetFocusedPageToCurrentPage();
+bool SetFocusedPageToCurrentPage();
 
 /** Return  when the focus indicator is currently shown.  A
 prerequisite is that the window managed by this focus manager has
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130028] TRACK CHANGES: Writer - Changes are not shown when the case of a single word is changed to uppercase

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130028

eisa01  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0
 CC||ipla...@tuta.io

--- Comment #10 from eisa01  ---
Strange, if "manage" doesn't show anything, then there's no recorded changes.

Are you 100% you put on record track changes before testing?

Otherwise I see you are on a old macOS version

Alex, how did you confirm this previously? Is it like comment #3 and comment #5
?

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

2020-02-16 Thread Bjoern Michaelsen (via logerrit)
 sw/inc/fldbas.hxx |2 +
 sw/inc/fmtfld.hxx |6 
 sw/source/core/fields/fldbas.cxx  |5 +++
 sw/source/core/txtnode/atrfld.cxx |7 +
 sw/source/filter/ww8/wrtw8nds.cxx |2 -
 sw/source/filter/ww8/wrtww8.hxx   |3 +-
 sw/source/filter/ww8/ww8atr.cxx   |   50 --
 7 files changed, 40 insertions(+), 35 deletions(-)

New commits:
commit bcc942fc34aad7db9b96c0e3d395c7426822327b
Author: Bjoern Michaelsen 
AuthorDate: Sun Feb 16 20:38:38 2020 +0100
Commit: Björn Michaelsen 
CommitDate: Sun Feb 16 22:42:06 2020 +0100

GatherRefFields for ww8

Change-Id: Ic40c1241854bdbcdf7987ab592e0f07ecdd73f0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88823
Tested-by: Jenkins
Reviewed-by: Björn Michaelsen 

diff --git a/sw/inc/fldbas.hxx b/sw/inc/fldbas.hxx
index 8601dea443b8..92a94fb8a096 100644
--- a/sw/inc/fldbas.hxx
+++ b/sw/inc/fldbas.hxx
@@ -35,6 +35,7 @@ class SwFormatField;
 class SwRootFrame;
 class SvNumberFormatter;
 class IDocumentRedlineAccess;
+class SwGetRefField;
 namespace com { namespace sun { namespace star { namespace beans { class 
XPropertySet; } } } }
 namespace com { namespace sun { namespace star { namespace uno { class Any; } 
} } }
 
@@ -277,6 +278,7 @@ public:
 void CollectPostIts(std::vector& rvFormatFields, 
IDocumentRedlineAccess const& rIDRA, bool HideRedlines);
 bool HasHiddenInformationNotes();
 void GatherNodeIndex(std::vector& rvNodeIndex);
+void GatherRefFields(std::vector& rvRFields, const 
sal_uInt16 nTyp);
 };
 
 inline void SwFieldType::UpdateFields() const
diff --git a/sw/inc/fmtfld.hxx b/sw/inc/fmtfld.hxx
index e68a9be41582..3ddce1977d96 100644
--- a/sw/inc/fmtfld.hxx
+++ b/sw/inc/fmtfld.hxx
@@ -27,6 +27,7 @@
 #include "swdllapi.h"
 #include "calbck.hxx"
 #include "ndindex.hxx"
+#include "reffld.hxx"
 
 class SwField;
 class SwTextField;
@@ -61,6 +62,11 @@ namespace sw {
 std::vector& m_rvNodeIndex;
 GatherNodeIndexHint(std::vector& rvNodeIndex) : 
m_rvNodeIndex(rvNodeIndex) {};
 };
+struct GatherRefFieldsHint final : SfxHint {
+std::vector& m_rvRFields;
+const sal_uInt16 m_nType;
+GatherRefFieldsHint(std::vector& rvRFields, const 
sal_uInt16 nType) : m_rvRFields(rvRFields), m_nType(nType) {};
+};
 }
 
 
diff --git a/sw/source/core/fields/fldbas.cxx b/sw/source/core/fields/fldbas.cxx
index a56b2c81302b..921c69752935 100644
--- a/sw/source/core/fields/fldbas.cxx
+++ b/sw/source/core/fields/fldbas.cxx
@@ -185,6 +185,11 @@ void SwFieldType::GatherNodeIndex(std::vector& 
rvNodeIndex)
 CallSwClientNotify(sw::GatherNodeIndexHint(rvNodeIndex));
 }
 
+void SwFieldType::GatherRefFields(std::vector& rvRFields, 
const sal_uInt16 nTyp)
+{
+CallSwClientNotify(sw::GatherRefFieldsHint(rvRFields, nTyp));
+}
+
 void SwFieldTypes::dumpAsXml(xmlTextWriterPtr pWriter) const
 {
 xmlTextWriterStartElement(pWriter, BAD_CAST("SwFieldTypes"));
diff --git a/sw/source/core/txtnode/atrfld.cxx 
b/sw/source/core/txtnode/atrfld.cxx
index 88b67c451b94..99eb71787ec0 100644
--- a/sw/source/core/txtnode/atrfld.cxx
+++ b/sw/source/core/txtnode/atrfld.cxx
@@ -266,6 +266,13 @@ void SwFormatField::SwClientNotify( const SwModify& 
rModify, const SfxHint& rHin
 {
 if(auto pTextField = GetTextField())
 
pGatherNodeIndexHint->m_rvNodeIndex.push_back(pTextField->GetTextNode().GetIndex());
+} else if (const auto pGatherRefFieldsHint = dynamic_cast(  ))
+{
+if(!GetTextField() || pGatherRefFieldsHint->m_nType != 
GetField()->GetSubType())
+return;
+SwTextNode* pNd = GetTextField()->GetpTextNode();
+if(pNd && pNd->GetNodes().IsDocNodes())
+
pGatherRefFieldsHint->m_rvRFields.push_back(static_cast(GetField()));
 }
 }
 
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index 70a855efc7ed..53b709bc0f21 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -1217,7 +1217,7 @@ OUString BookmarkToWriter(const OUString )
 
 void SwWW8AttrIter::OutSwFormatRefMark(const SwFormatRefMark& rAttr)
 {
-if ( m_rExport.HasRefToObject( REF_SETREFATTR, (), 0 ) )
+if(m_rExport.HasRefToAttr(rAttr.GetRefName()))
 m_rExport.AppendBookmark( MSWordExportBase::GetBookmarkName( 
REF_SETREFATTR,
 (), 0 ));
 }
diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx
index 6ca1eb7d8717..21df13a16f6c 100644
--- a/sw/source/filter/ww8/wrtww8.hxx
+++ b/sw/source/filter/ww8/wrtww8.hxx
@@ -634,7 +634,8 @@ public:
 }
 
 /// Find the reference.
-bool HasRefToObject( sal_uInt16 nTyp, const OUString* pName, sal_uInt16 
nSeqNo );
+bool HasRefToAttr(const OUString& rName);
+bool HasRefToFootOrEndnote(const bool isEndNote, const sal_uInt16 nSeqNo);
 
 /// Find the bookmark name.
 static OUString 

[Libreoffice-bugs] [Bug 130589] Sorting goes wrong, text is moved between cells

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130589

--- Comment #6 from Fritz Schmidt  ---
No, sorry, the file has no images I could remove. It consists of a single table
containing about 21900 lines and three columns. 
I edit this table once per week. I know, some patience is necessary. Also
sorting takes several minutes (measured the time now for loading on my
computer: 6 minutes 40 seconds).
May be, when it's loaded, it might take some additional time until you can work
with it, but then it's no problem. Of course, as I wrote above, sorting takes
relatively long time, also saving it takes, I guess, 10 to 20 seconds (and
saving reveals a memory leak).

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

2020-02-16 Thread Muhammet Kara (via logerrit)
 onlineupdate/source/update/updater/updater.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 1bc6f5868fd5e780e70f999144432f30d8f64149
Author: Muhammet Kara 
AuthorDate: Sun Feb 16 21:12:10 2020 +0300
Commit: Muhammet Kara 
CommitDate: Sun Feb 16 22:32:47 2020 +0100

Proper error check for fwrite in updater.cxx

A less-than-zero check for an unsigned value of type size_t
doesn't make sense, and:

If the return value of fwrite differs from the count parameter,
it means that a writing error prevented the function from completing.
In this case, the error indicator (ferror) will be set for the stream.

Change-Id: I344e608b2bc03a4a117fc5cca1acb8e26eda247a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88817
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/onlineupdate/source/update/updater/updater.cxx 
b/onlineupdate/source/update/updater/updater.cxx
index 006e2ffe5a94..54750afb4218 100644
--- a/onlineupdate/source/update/updater/updater.cxx
+++ b/onlineupdate/source/update/updater/updater.cxx
@@ -731,8 +731,9 @@ static int ensure_copy(const NS_tchar *path, const NS_tchar 
*dest)
 
 while (written < read)
 {
-size_t chunkWritten = fwrite(buffer, 1, read - written, outfile);
-if (chunkWritten <= 0)
+size_t nCount = read - written;
+size_t chunkWritten = fwrite(buffer, 1, nCount, outfile);
+if (chunkWritten != nCount)
 {
 LOG(("ensure_copy: failed to write the file: " LOG_S ", err: 
%d",
  dest, errno));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130720] New: HTML5 Save/Export with Audio/Video tags

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130720

Bug ID: 130720
   Summary: HTML5 Save/Export with Audio/Video tags
   Product: LibreOffice
   Version: 6.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shaforost...@gmail.com

Description:
Right now I can save LibreOffice Writer document as HTML. It has 'HTML 4.0
Transitional' inside.

I would like LO to be able to save documents as HTML5. Use case: I would like
to be able to insert an audio file into Writer document and have it in the form
of HTML audio or video object:




Steps to Reproduce:
Open Writer, 'Insert' -> 'Movie and Sound' select an mp3 file, save document as
HTML(5).

Actual Results:
Only wav files can be inserted as a media object, also they are only saved as
an image in HTML.

Expected Results:
Audio file is inserted in the document (first of all as a link, but embeddeding
into document might also be useful) and can be played from Writer and from
web-browser when resulting HTML file is opened in it


Reproducible: Always


User Profile Reset: No



Additional Info:
I have tried inserting an audio object using menu 'Insert' -> 'Movie and Sound'
specifying mp3 or m4a file, but it always reported that it does not support
this file format. I believe that such popular formats as mp3 and m4a/aac should
be supported

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


[Libreoffice-bugs] [Bug 130524] Videos display black screen on F5 slideshow - OK with Shift+F5 on slide

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130524

--- Comment #3 from Oliver Grimm  ---
I also CANNOT reproduce this bug here with LO 6.4.1, Linux, Debian testing,
VCL: kf5.

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


[Libreoffice-bugs] [Bug 130699] Assert on undo/redo table captions

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130699

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

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

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


[Libreoffice-bugs] [Bug 130699] Assert on undo/redo table captions

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130699

Julien Nabet  changed:

   What|Removed |Added

Version|unspecified |7.0.0.0.alpha0+ Master
 Ever confirmed|0   |1
   Keywords||haveBacktrace
 Status|UNCONFIRMED |NEW

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


[Libreoffice-bugs] [Bug 130575] Impress will reject an inserted video if the filename contains square brackets

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130575

--- Comment #1 from Oliver Grimm  ---
cannot reproduce here on Version

Build-ID: 1:6.4.1~rc1-2 Debian testing
CPU-Threads: 2; BS: Linux 5.4; UI-Render: Standard; VCL: kf5; 
Gebietsschema: de-DE (de_DE.UTF-8); UI-Sprache: de-DE
Calc: threaded

Works fine here for file names with or without square brackets.

This observation might be related to #123127 though.

Can you please provide a detailed version info from impress main menu | help |
about libreoffice?

Can you reproduce this bug for other file types?

How exactly did you insert the mp4 file? via main menu or drag-and-drop?

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


[Libreoffice-bugs] [Bug 130674] Empty window behind password dialog

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130674

--- Comment #8 from Thorsten Wagner  ---
There was a similar issue concerning Preferences dialog which has been fixed:
tdf#127751

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


[Libreoffice-bugs] [Bug 130295] Libre Office Draw does not save file if options in edit points are used

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130295

--- Comment #2 from t...@kreartiv.com ---
Created attachment 157930
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157930=edit
Sample File Libre Office Draw for Bug 130295

Hello,

to reproduce the bug,
Click on the purple polygon, hit F8, choose a point and choose "Smooth
Transition" or "symmetric transistion" from the edit point menu. After that,
the file can no longer be saved.

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


[Libreoffice-bugs] [Bug 84560] FILEOPEN: Libreoffice silently ignores errors when creating the lockfile

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84560

--- Comment #5 from vide...@gmail.com ---
I set up a WebDAV share on my Windows 7 computer 64 bits service pack 1.
But there is no space available on this share.
When I open a file test.odt, the lock file is not created because the share
is full. The WebDAV server sends  507 code but no warning message is displayed
to user. 
Moreover, when I try to save file modifications, no error messages is displayed 
and Libreoffice Writer is as if everything went well.

https://www.eekpe.com/ho-ke-door-lyrics-satbir-aulakh/
https://www.eekpe.com/

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


[Libreoffice-ux-advise] [Bug 101646] UI option "Scaling" was removed

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101646

--- Comment #51 from bchemnet  ---
William - I can confirm that the font size issue seems to have disappeared when
I switched to XFCE 4.14.

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


[Libreoffice-bugs] [Bug 101646] UI option "Scaling" was removed

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101646

--- Comment #51 from bchemnet  ---
William - I can confirm that the font size issue seems to have disappeared when
I switched to XFCE 4.14.

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


[Libreoffice-bugs] [Bug 130719] New: Overwriting Writer styles does not overwrite changes to Marginalia paragraph style

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130719

Bug ID: 130719
   Summary: Overwriting Writer styles does not overwrite changes
to Marginalia paragraph style
   Product: LibreOffice
   Version: 6.4.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jedim...@gmail.com

Description:
If you make changes to the Marginalia paragraph style (along with other
paragraph styles like Text Body and Heading 1), and you decide to revert back
to the original default template styles, loading styles from the Default
template and specifying Overwrite, does NOT actually overwrite the Marginalia
style like it does the other styles.

Steps to Reproduce:
1. Change some paragraph styles in Writer (i.e. make default font Times New
Roman & Text Body have 18 pt indent)
2. Change Marginalia paragraph style (in my initial case I changed the indent
from 113.4 pt indent to 72 pt and gave it a colored Area of Light Gray 5)
3. Save the changes
4. Go to Styles, Load Styles, select Styles category and Default template,
check the boxes for Text, Frame, Pages, Numbering, and (especially) Overwrite,
then clock Ok

Actual Results:
The paragraph styles that you changed are reverted back to their settings in
the Default template, EXCEPT for the Marginalia style, which retains the
changes you made to the style in your document

Expected Results:
I expect that ALL the paragraph styles should revert back to their settings in
the default template.


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no

>From Help - About:
Version: 6.4.0.3 (x64)
Build ID: b0a288ab3d2d4774cb44b62f04d5d28733ac6df8
CPU threads: 4; OS: Windows 10.0 Build 18362; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

I want to add that I'm not sure which version this first occurred in. I do
frequently reload the default styles, but I haven't used the marginalia style
too much before so never had a chance to notice before.

Also, I just completely reinstalled LibreOffice a few days ago (2020-02-12),
completely uninstalling it and wiping it's user profile, so this is (minor some
minor configuration changes I made) a new install.

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


[Libreoffice-bugs] [Bug 130589] Sorting goes wrong, text is moved between cells

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130589

--- Comment #5 from Dieter  ---
After more than five minutes the document was open, but you really can't work
with this document (LO always becomes unresponsive). Document has a size of
more than 12 MB (but only around 95 pages). Does it contain images? If this is
the case, could you please remove them, so we can work with it?

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


[Libreoffice-bugs] [Bug 130702] Font rendering problem in Libre Office

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130702

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Dieter  ---
(In reply to florin.arjocu from comment #1)
> This is a very old bug, I have reported it some time ago

Please give information about the number of the bug you've reported some time
ago.

=> NEEDINFO

Basically, it's a good idea to remember a bug report, but you shouldn't do this
with opening a new report.

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


[Libreoffice-bugs] [Bug 124176] Use pragma once instead of include guards

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124176

--- Comment #75 from Commit Notification 
 ---
Mohamed Sameh committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/3f515b85e08872f1239e599c708fec6fe09a7b3a

tdf#124176: Use pragma once instead of include guards

It will be available in 7.0.0.

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

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

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


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

2020-02-16 Thread Mohamed Sameh (via logerrit)
 avmedia/source/macavf/manager.hxx |5 +
 avmedia/source/macavf/player.hxx  |5 +
 avmedia/source/macavf/window.hxx  |5 +
 avmedia/source/viewer/mediaevent_impl.hxx |5 +
 4 files changed, 4 insertions(+), 16 deletions(-)

New commits:
commit 3f515b85e08872f1239e599c708fec6fe09a7b3a
Author: Mohamed Sameh 
AuthorDate: Fri Feb 14 03:55:26 2020 -0500
Commit: Muhammet Kara 
CommitDate: Sun Feb 16 20:50:48 2020 +0100

tdf#124176: Use pragma once instead of include guards

Change-Id: If4e891742a59eb975be8353510dad71cadc546e7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88671
Tested-by: Jenkins
Reviewed-by: Muhammet Kara 

diff --git a/avmedia/source/macavf/manager.hxx 
b/avmedia/source/macavf/manager.hxx
index 9f8f6da2f59d..2320e8bb4656 100644
--- a/avmedia/source/macavf/manager.hxx
+++ b/avmedia/source/macavf/manager.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_AVMEDIA_SOURCE_MACAVF_MANAGER_HXX
-#define INCLUDED_AVMEDIA_SOURCE_MACAVF_MANAGER_HXX
+#pragma once
 
 #include "macavfcommon.hxx"
 #include 
@@ -51,6 +50,4 @@ private:
 } // namespace macavf
 } // namespace avmedia
 
-#endif // INCLUDED_AVMEDIA_SOURCE_MACAVF_MANAGER_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/avmedia/source/macavf/player.hxx b/avmedia/source/macavf/player.hxx
index 99b79b843459..22867b1af20f 100644
--- a/avmedia/source/macavf/player.hxx
+++ b/avmedia/source/macavf/player.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_AVMEDIA_SOURCE_MACAVF_PLAYER_HXX
-#define INCLUDED_AVMEDIA_SOURCE_MACAVF_PLAYER_HXX
+#pragma once
 
 #include 
 #include "macavfcommon.hxx"
@@ -83,6 +82,4 @@ private:
 } // namespace macavf
 } // namespace avmedia
 
-#endif // INCLUDED_AVMEDIA_SOURCE_MACAVF_PLAYER_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/avmedia/source/macavf/window.hxx b/avmedia/source/macavf/window.hxx
index d8d1f71b3772..9f078cdd9b31 100644
--- a/avmedia/source/macavf/window.hxx
+++ b/avmedia/source/macavf/window.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_AVMEDIA_SOURCE_MACAVF_WINDOW_HXX
-#define INCLUDED_AVMEDIA_SOURCE_MACAVF_WINDOW_HXX
+#pragma once
 
 #include "macavfcommon.hxx"
 #include 
@@ -110,6 +109,4 @@ private:
 } // namespace macavf
 } // namespace avmedia
 
-#endif // INCLUDED_AVMEDIA_SOURCE_MACAVF_WINDOW_HXX
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/avmedia/source/viewer/mediaevent_impl.hxx 
b/avmedia/source/viewer/mediaevent_impl.hxx
index f9827983..9c864ecff29d 100644
--- a/avmedia/source/viewer/mediaevent_impl.hxx
+++ b/avmedia/source/viewer/mediaevent_impl.hxx
@@ -17,8 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#ifndef INCLUDED_AVMEDIA_SOURCE_VIEWER_MEDIAEVENT_IMPL_HXX
-#define INCLUDED_AVMEDIA_SOURCE_VIEWER_MEDIAEVENT_IMPL_HXX
+#pragma once
 
 #include 
 #include 
@@ -76,6 +75,4 @@ namespace avmedia
 }
 }
 
-#endif
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130707] FILEOPEN: Writer document "Read Error. Format error discovered in the file in sub-document content.xml at 2, 68950(row, col)."

2020-02-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130707

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

I confirm that reverting
https://gerrit.libreoffice.org/plugins/gitiles/core/+/28d67b792724a23015dec32fb0278b729f676736,
I can open the file.
(of course, 28d67b792724a23015dec32fb0278b729f676736 may have revealed another
bug that must be 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-commits] core.git: vcl/source

2020-02-16 Thread Julien Nabet (via logerrit)
 vcl/source/fontsubset/sft.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 7fddb9a1f69a1bac676ad48421256a1ba0274c83
Author: Julien Nabet 
AuthorDate: Sat Feb 15 11:21:31 2020 +0100
Commit: Julien Nabet 
CommitDate: Sun Feb 16 20:26:16 2020 +0100

cid#1458437: useless call in vcl/sft

Change-Id: If67a7c21b04f7195e8cbab6d90d1dd24426b5dea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88752
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx
index 02f5a4df9d68..a0737320d257 100644
--- a/vcl/source/fontsubset/sft.cxx
+++ b/vcl/source/fontsubset/sft.cxx
@@ -2430,8 +2430,6 @@ void GetTTGlobalFontInfo(TrueTypeFont *ttf, 
TTGlobalFontInfo *info)
 info->descender = XUnits(UPEm, GetInt16(table, HHEA_descender_offset));
 info->linegap   = XUnits(UPEm, GetInt16(table, HHEA_lineGap_offset));
 }
-
-getTable(ttf, O_vhea);
 }
 
 GlyphData *GetTTRawGlyphData(TrueTypeFont *ttf, sal_uInt32 glyphID)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   >