[Libreoffice-bugs] [Bug 123666] File open/save dialog size too small on Manjaro/KDE

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123666

--- Comment #1 from Vera Blagoveschenskaya  ---
Hello, 
I've checked for x64 ALT Linux (started LO with kde4/kde5) - sizes of the
dialogs are normal for me.

Can't reproduce for

Version: 6.1.6.0.0+
Build ID: 2ab2280f21fa491154e17c303dc70fcf059123b3
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:libreoffice-6-1, Time:
2019-02-13_11:49:06
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded

Can't reproduce for

Version: 6.3.0.0.alpha0+
Build ID: 4187b2beaa3d1294cd5c76ec0b662f3f4fadc421
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-02-25_07:04:36
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
Calc: threaded

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

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

2019-02-25 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfexport/data/tdf123393.rtf|   14 +
 sw/qa/extras/rtfexport/rtfexport5.cxx|   13 
 writerfilter/source/rtftok/rtfdispatchsymbol.cxx |4 +-
 writerfilter/source/rtftok/rtfdocumentimpl.cxx   |   35 +++
 writerfilter/source/rtftok/rtfdocumentimpl.hxx   |5 +++
 5 files changed, 58 insertions(+), 13 deletions(-)

New commits:
commit b7dabb80f45a65713f114c61e1d695f3f8093812
Author: Miklos Vajna 
AuthorDate: Mon Feb 25 21:38:48 2019 +0100
Commit: Miklos Vajna 
CommitDate: Tue Feb 26 08:56:48 2019 +0100

tdf#123393 RTF import: fix too big font size in table cell

The reason was that A2 had an explicit paragraph style reference, but A1
did not, so table buffering caused A2 style to affect A1 style as well.

Combine this with style deduplication, and then A2 style considered the
direct formatting (font size) in A1 to be redundant, so it was lost on
import.

Fix the problem by moving the copy properties buffering to a
single function, and there buffering not only the properties, but also
the active style index.

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

diff --git a/sw/qa/extras/rtfexport/data/tdf123393.rtf 
b/sw/qa/extras/rtfexport/data/tdf123393.rtf
new file mode 100644
index ..381b038d314c
--- /dev/null
+++ b/sw/qa/extras/rtfexport/data/tdf123393.rtf
@@ -0,0 +1,14 @@
+{\rtf1
+{\fonttbl
+{\f0 Times New Roman;}
+}
+{\stylesheet
+{\s0\fs20 Normal;}
+{\s31\fs14 Body Text 3;}
+}
+Before\par
+\trowd\cellx2694\cellx4678
+\pard\intbl\fs14 A1\cell
+\pard\intbl\s31\fs14 B1\cell\row
+\pard\plain After\par
+}
diff --git a/sw/qa/extras/rtfexport/rtfexport5.cxx 
b/sw/qa/extras/rtfexport/rtfexport5.cxx
index fb5e0b8f4168..2fb059831e97 100644
--- a/sw/qa/extras/rtfexport/rtfexport5.cxx
+++ b/sw/qa/extras/rtfexport/rtfexport5.cxx
@@ -657,6 +657,19 @@ DECLARE_RTFEXPORT_TEST(testFdo84679, "fdo84679.rtf")
 getProperty(getParagraphOfText(1, xCell->getText()), 
"ParaBottomMargin"));
 }
 
+DECLARE_RTFEXPORT_TEST(testTdf123393, "tdf123393.rtf")
+{
+uno::Reference xTextTablesSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xTables(xTextTablesSupplier->getTextTables(),
+uno::UNO_QUERY);
+uno::Reference xTable(xTables->getByIndex(0), 
uno::UNO_QUERY);
+uno::Reference xCell(xTable->getCellByName("A1"), 
uno::UNO_QUERY);
+// Without the accompanying fix in place, this test would have failed with
+// 'Expected: 7; Actual  : 10', i.e. font size was too large.
+CPPUNIT_ASSERT_EQUAL(
+7.f, getProperty(getRun(getParagraphOfText(1, 
xCell->getText()), 1), "CharHeight"));
+}
+
 DECLARE_RTFEXPORT_TEST(testFdo83464, "fdo83464.rtf")
 {
 // Problem was that the text in the textframe had wrong font.
diff --git a/writerfilter/source/rtftok/rtfdispatchsymbol.cxx 
b/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
index e3b212a1dfdd..6d7d9cefabaa 100644
--- a/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
+++ b/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
@@ -184,10 +184,10 @@ RTFError RTFDocumentImpl::dispatchSymbol(RTFKeyword 
nKeyword)
 // There were no runs in the cell, so we need to send 
paragraph and character properties here.
 auto pPValue = new 
RTFValue(m_aStates.top().aParagraphAttributes,
 m_aStates.top().aParagraphSprms);
-m_aTableBufferStack.back().emplace_back(Buf_t(BUFFER_PROPS, 
pPValue, nullptr));
+bufferProperties(m_aTableBufferStack.back(), pPValue, nullptr);
 auto pCValue = new 
RTFValue(m_aStates.top().aCharacterAttributes,
 m_aStates.top().aCharacterSprms);
-m_aTableBufferStack.back().emplace_back(Buf_t(BUFFER_PROPS, 
pCValue, nullptr));
+bufferProperties(m_aTableBufferStack.back(), pCValue, nullptr);
 }
 
 RTFValue::Pointer_t pValue;
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 2d2d63ca5a4e..c29a54d7fbc9 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -572,7 +572,7 @@ void RTFDocumentImpl::checkNeedPap()
 {
 auto pValue = new RTFValue(m_aStates.top().aParagraphAttributes,
m_aStates.top().aParagraphSprms);
-m_aStates.top().pCurrentBuffer->push_back(Buf_t(BUFFER_PROPS, 
pValue, nullptr));
+bufferProperties(*m_aStates.top().pCurrentBuffer, pValue, nullptr);
 }
 }
 }
@@ -590,7 +590,7 @@ void RTFDocumentImpl::runProps()
 {
 auto pValue
 = new 

[Libreoffice-bugs] [Bug 123715] windows setup no longer lists programs using files being installed

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123715

l...@royal.net changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED
 CC||l...@royal.net

--- Comment #2 from l...@royal.net ---
Yes, I tried installing 6.1.5 and it now behaves the same way - my bad, sorry.

It was not a service however - when re-installing 6.2 I closed all programs
which usually lock the files and it installed without requesting a reboot.

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

[Libreoffice-bugs] [Bug 123678] Libreoffice 6.2 Calc cells containing hyperlink

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123678

--- Comment #2 from Vera Blagoveschenskaya  ---
Created attachment 149596
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149596=edit
screen

-- 
You are receiving this mail because:
You 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/headless vcl/inc vcl/osx vcl/qt5 vcl/unx vcl/win

2019-02-25 Thread Libreoffice Gerrit user
 vcl/headless/svpdummies.cxx |2 +-
 vcl/headless/svpframe.cxx   |2 +-
 vcl/inc/headless/svpdummies.hxx |2 +-
 vcl/inc/headless/svpframe.hxx   |2 +-
 vcl/inc/osx/salframe.h  |2 +-
 vcl/inc/osx/salobj.h|2 +-
 vcl/inc/qt5/Qt5Frame.hxx|2 +-
 vcl/inc/qt5/Qt5Object.hxx   |2 +-
 vcl/inc/salframe.hxx|2 +-
 vcl/inc/salobj.hxx  |2 +-
 vcl/inc/unx/gtk/gtkframe.hxx|2 +-
 vcl/inc/unx/gtk/gtkobject.hxx   |2 +-
 vcl/inc/unx/salframe.h  |2 +-
 vcl/inc/unx/salobj.h|4 ++--
 vcl/inc/win/salframe.h  |2 +-
 vcl/inc/win/salobj.h|2 +-
 vcl/osx/salframe.cxx|2 +-
 vcl/osx/salobj.cxx  |2 +-
 vcl/qt5/Qt5Frame.cxx|2 +-
 vcl/qt5/Qt5Object.cxx   |2 +-
 vcl/unx/generic/window/salframe.cxx |2 +-
 vcl/unx/generic/window/salobj.cxx   |4 ++--
 vcl/unx/gtk/gtkobject.cxx   |2 +-
 vcl/unx/gtk/gtksalframe.cxx |2 +-
 vcl/unx/gtk3/gtk3gtkframe.cxx   |2 +-
 vcl/unx/gtk3/gtk3gtkobject.cxx  |2 +-
 vcl/win/window/salframe.cxx |2 +-
 vcl/win/window/salobj.cxx   |2 +-
 28 files changed, 30 insertions(+), 30 deletions(-)

New commits:
commit 984a0c79cb57789cff6416900fc363eefead44db
Author: Noel Grandin 
AuthorDate: Mon Feb 25 14:49:41 2019 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 26 08:47:04 2019 +0100

sal_uIntPtr->sal_uInt32 inSalClipRegion::BeginSetClipRegion

sal_uInt32 seems reasonable given that this is the number of rectanges
in an image.

And then convert all of the other BeginSetClipRegion methods to use
sal_uInt32 too.

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

diff --git a/vcl/headless/svpdummies.cxx b/vcl/headless/svpdummies.cxx
index 54fa5ecc0328..21a054761ea2 100644
--- a/vcl/headless/svpdummies.cxx
+++ b/vcl/headless/svpdummies.cxx
@@ -35,7 +35,7 @@ SvpSalObject::~SvpSalObject()
 }
 
 void SvpSalObject::ResetClipRegion() {}
-void SvpSalObject::BeginSetClipRegion( sal_uLong ) {}
+void SvpSalObject::BeginSetClipRegion( sal_uInt32 ) {}
 void SvpSalObject::UnionClipRegion( long, long, long, long ) {}
 void SvpSalObject::EndSetClipRegion() {}
 void SvpSalObject::SetPosSize( long, long, long, long ) {}
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx
index 4df5328f8cea..f54103ff1ecc 100644
--- a/vcl/headless/svpframe.cxx
+++ b/vcl/headless/svpframe.cxx
@@ -491,7 +491,7 @@ void SvpSalFrame::ResetClipRegion()
 {
 }
 
-void SvpSalFrame::BeginSetClipRegion( sal_uLong )
+void SvpSalFrame::BeginSetClipRegion( sal_uInt32 )
 {
 }
 
diff --git a/vcl/inc/headless/svpdummies.hxx b/vcl/inc/headless/svpdummies.hxx
index 419cc541dc84..0b7ddf89b15a 100644
--- a/vcl/inc/headless/svpdummies.hxx
+++ b/vcl/inc/headless/svpdummies.hxx
@@ -38,7 +38,7 @@ public:
 
 // override all pure virtual methods
 virtual voidResetClipRegion() override;
-virtual voidBeginSetClipRegion( sal_uLong nRects ) 
override;
+virtual voidBeginSetClipRegion( sal_uInt32 nRects ) 
override;
 virtual voidUnionClipRegion( long nX, long nY, long 
nWidth, long nHeight ) override;
 virtual voidEndSetClipRegion() override;
 
diff --git a/vcl/inc/headless/svpframe.hxx b/vcl/inc/headless/svpframe.hxx
index 15d582ee378d..c997d7716f04 100644
--- a/vcl/inc/headless/svpframe.hxx
+++ b/vcl/inc/headless/svpframe.hxx
@@ -110,7 +110,7 @@ public:
 virtual voidSetParent( SalFrame* pNewParent ) override;
 virtual boolSetPluginParent( SystemParentData* pNewParent 
) override;
 virtual voidResetClipRegion() override;
-virtual voidBeginSetClipRegion( sal_uLong nRects ) 
override;
+virtual voidBeginSetClipRegion( sal_uInt32 nRects ) 
override;
 virtual voidUnionClipRegion( long nX, long nY, long 
nWidth, long nHeight ) override;
 virtual voidEndSetClipRegion() override;
 
diff --git a/vcl/inc/osx/salframe.h b/vcl/inc/osx/salframe.h
index 85121d80d125..e7bb03008db6 100644
--- a/vcl/inc/osx/salframe.h
+++ b/vcl/inc/osx/salframe.h
@@ -156,7 +156,7 @@ public:
 // set clip region to none (-> rectangular windows, normal state)
 virtual void ResetClipRegion() override;
 // start setting the clipregion consisting of nRects rectangles
-virtual void BeginSetClipRegion( sal_uLong nRects ) override;
+virtual void BeginSetClipRegion( sal_uInt32 nRects ) override;
 // add a rectangle to the clip region
 virtual void UnionClipRegion( long nX, long nY, long nWidth, long nHeight 

[Libreoffice-bugs] [Bug 123716] Loading indicator when starting a presentation

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123716

--- Comment #2 from Nicolas Christener  ---
Created attachment 149595
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149595=edit
Example presentation

This is an example presentation with some pictures showing the problem.

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

[Libreoffice-bugs] [Bug 123716] Loading indicator when starting a presentation

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123716

--- Comment #1 from Nicolas Christener  ---
Created attachment 149594
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149594=edit
Switching to presentation mode at 0:10, loading takes until ~0:22

This video shows the loading of a larger presentation and especially the delay
until something actually happens. A loading indicator would probably improve
the situation quite a bit.

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

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||115509


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115509
[Bug 115509] pdf export of calc charts as image: LO 5.2 – 6.0
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378
Bug 103378 depends on bug 115509, which changed state.

Bug 115509 Summary: pdf export of calc charts as image: LO 5.2 – 6.0
https://bugs.documentfoundation.org/show_bug.cgi?id=115509

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 111392] FILESAVE: Calc exports chart as empty PDF

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111392

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||ice...@web.de

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
*** Bug 115509 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 123678] Libreoffice 6.2 Calc cells containing hyperlink

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123678

Vera Blagoveschenskaya  changed:

   What|Removed |Added

 CC||ver...@basealt.ru
 Ever confirmed|0   |1
 Blocks||107733
 Status|UNCONFIRMED |NEW

--- Comment #1 from Vera Blagoveschenskaya  ---
I can confirm the following behavior:
- hyperlinks www.google.com, www,yandex.ru redirects to an empty page in my
Chromium browser
- reproduced only for .xls format (not reproduced for .xlsx, .ods)

See screenshot.

Reproduced for

Version: 6.3.0.0.alpha0+
Build ID: 4187b2beaa3d1294cd5c76ec0b662f3f4fadc421
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-02-25_07:04:36
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
Calc: threaded

Reproduced for

Version: 6.2.2.0.0+
Build ID: b17bffe4eb15e4cec969aa2699ce8be60e01b1c1
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-2, Time:
2019-02-25_17:41:32
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
Calc: threaded

Also reproduced if to start LO with GTK3.


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733

Vera Blagoveschenskaya  changed:

   What|Removed |Added

 Depends on||123678


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123678
[Bug 123678] Libreoffice 6.2 Calc cells containing hyperlink
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 115509] pdf export of calc charts as image: LO 5.2 – 6.0

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115509

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED
 Blocks||103378

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---


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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103378
[Bug 103378] [META] PDF export 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 123682] character formatting changes while projecting

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123682

--- Comment #1 from Hiromi Kuramoto  ---
Created attachment 149593
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149593=edit
screenshot

I confirmed change of the character formatting. 
When I project your slide, underlines disappear and a strange trapezoid appears
on the picture.

Is this result same as you checked?

my environment is below:
Version: 6.2.0.3
Build ID: 98c6a8a1c6c7b144ce3cc729e34964b47ce25d62
CPU threads: 4; OS: Mac OS X 10.12.5; UI render: default; VCL: osx; 
Locale: en-US (ja_JP.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 123716] New: Loading indicator when starting a presentation

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123716

Bug ID: 123716
   Summary: Loading indicator when starting a presentation
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
Starting a larger presentation (in my case around 4MB) takes quite a while on
an iPad and the user does not get a loading indicator.

In my case it takes 12 seconds until the presentation starts - this is too long
for a user and should be imprved.

While it would be good to speed up the loading itself, I think a loading
indicator would already improve the situation quite a bit. So maybe show a gray
overlay with a spinning circle so the user knows, something is happening.

Steps to Reproduce:
1. Open the attached slide deck
2. Start presentation mode

Actual Results:
It takes approx 12s (on my 2018 iPad) to initially load the presentation and
during loading no indicator, that something is happening is shown.

Expected Results:
Either loading should be more or less instantly or a loading indicator should
show some activity so the user knows the app is working on something.


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 114209] Problems with rendering vertical text in charts - no anti-aliasing when OpenGL is enabled

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114209

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||93529


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=93529
[Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||114209


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114209
[Bug 114209] Problems with rendering vertical text in charts - no anti-aliasing
when OpenGL is enabled
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123715] windows setup no longer lists programs using files being installed

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123715

--- Comment #1 from Mike Kaganski  ---
No change in this regards was made in installer. I believe that there was
something else on your system that was not possible to resolve by closing
applications, and thus led to reboot request. Windows Restart Manager (the
component of MSI that is performing the function discussed) has limited
abilities, e.g. it cannot restart a service if it's a service that locks
something.

I let it UNCONFIRMED though, to see if someone is able to reproduce some
consistent change in behavior in 6.2.

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

[Libreoffice-bugs] [Bug 123714] calc autocalculate failing sometimes on editing (move or delete of cells or undo) in ranges referenced in formulas

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123714

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||114170


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114170
[Bug 114170] FILEOPEN XLSX Microsoft Excel offers many customization options
for chart data labels that are not interpreted by Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108816] [META] Writer toolbar bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108816
Bug 108816 depends on bug 119167, which changed state.

Bug 119167 Summary: The Track changes toolbar is appended to the Table toolbar, 
should be stacked and pinned left
https://bugs.documentfoundation.org/show_bug.cgi?id=119167

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 114170] FILEOPEN XLSX Microsoft Excel offers many customization options for chart data labels that are not interpreted by Calc

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114170

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||75057


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 113505] Performance of Calc Chart auto updating could be better

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113505

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||113505


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113505
[Bug 113505] Performance of Calc Chart auto updating could be better
-- 
You are receiving this mail because:
You 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

2019-02-25 Thread Libreoffice Gerrit user
 officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu | 
   6 +++---
 officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu   | 
   6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 0631a91c1dafbd754a8d2bc2ccae03b547754cbd
Author: Gabor Kelemen 
AuthorDate: Tue Feb 26 00:33:27 2019 +0100
Commit: Heiko Tietze 
CommitDate: Tue Feb 26 08:25:41 2019 +0100

tdf#119167 Show Table toolbar above Track Changes toolbar

This way bottom docked toolbars appear above each other
to avoid Table pushing Track Changes out from under the mouse cursor

Change-Id: Ic0a9e745246bce6d12cfb17d6adf8ad703753168
Reviewed-on: https://gerrit.libreoffice.org/68365
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu
index 30bbcf2b0913..a8e4e8ee0bae 100644
--- 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu
+++ 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterGlobalWindowState.xcu
@@ -159,7 +159,7 @@
   
   
 
-  0,2
+  0,3
 
 
   1
@@ -179,7 +179,7 @@
   
   
 
-  0,3
+  0,4
 
 
   1
@@ -776,7 +776,7 @@
   
   
 
-  1,2
+  0,2
 
 
   1
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
index fe41f19e58f9..28d178091f7c 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu
@@ -237,7 +237,7 @@
   
   
 
-  0,2
+  0,3
 
 
   1
@@ -257,7 +257,7 @@
   
   
 
-  0,3
+  0,4
 
 
   1
@@ -874,7 +874,7 @@
   
   
 
-  1,2
+  0,2
 
 
   1
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_svg

2019-02-25 Thread Libreoffice Gerrit user
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.png
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.png
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.png
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.png  
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-chevron-down.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-chevron-up.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-circle-curve.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-curve-down.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-curve-up.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-fade-left.png  
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-fade-right.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-fade-up-and-left.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-fade-up-and-right.png  
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-fade-up.png
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-inflate.png
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-open-circle-curve.png  
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-open-circle-pour.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-plain-text.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-slant-down.png 
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-slant-up.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-stop.png   
|binary
 icon-themes/sifr/cmd/lc_fontworkshapetype.fontwork-wave.png   
|binary
 icon-themes/sifr/cmd/lc_glueescapedirectionbottom.png 
|binary
 icon-themes/sifr/cmd/lc_glueescapedirectionleft.png   
|binary
 icon-themes/sifr/cmd/lc_glueescapedirectionright.png  
|binary
 icon-themes/sifr/cmd/lc_glueescapedirectiontop.png
|binary
 icon-themes/sifr/cmd/lc_gluehorzaligncenter.png   
|binary
 icon-themes/sifr/cmd/lc_gluehorzalignleft.png 
|binary
 icon-themes/sifr/cmd/lc_gluehorzalignright.png
|binary
 icon-themes/sifr/cmd/lc_glueinsertpoint.png   
|binary
 icon-themes/sifr/cmd/lc_gluepercent.png   
|binary
 icon-themes/sifr/cmd/lc_gluevertalignbottom.png   
|binary
 icon-themes/sifr/cmd/lc_gluevertaligncenter.png   
|binary
 icon-themes/sifr/cmd/lc_gluevertaligntop.png  
|binary
 icon-themes/sifr/cmd/lc_numberformatpercent.png   
|binary
 icon-themes/sifr/cmd/lc_numberformatscientific.png
|binary
 icon-themes/sifr/cmd/lc_rect.png  
|binary
 icon-themes/sifr/cmd/lc_rect_unfilled.png 
|binary
 icon-themes/sifr/cmd/lc_zoomnext.png  
|binary
 icon-themes/sifr/cmd/lc_zoomprevious.png  
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-down-curve.png   
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-down-pour.png
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-left-curve.png   
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-left-pour.png
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png  
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-right-pour.png   
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-up-curve.png 
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-arch-up-pour.png  
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-chevron-down.png  
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-chevron-up.png
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-circle-curve.png  
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-curve-down.png
|binary
 icon-themes/sifr_dark/cmd/lc_fontworkshapetype.fontwork-curve-up.png  

[Libreoffice-bugs] [Bug 112250] empty values in y-axis of empty chart

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112250

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||75057
   Keywords||filter:xlsx


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||112250


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112250
[Bug 112250] empty values in y-axis of empty chart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 111392] FILESAVE: Calc exports chart as empty PDF

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111392

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||103378

--- Comment #5 from Roman Kuznetsov <79045_79...@mail.ru> ---
still repro in

Version: 6.3.0.0.alpha0+
Build ID: c57dc7d41bd62f933cffab6131edb7252606382d
CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||111392


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=111392
[Bug 111392] FILESAVE: Calc exports chart as empty PDF
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123692] Incorrect refresh of the preview area in the "Print" window when resizing the window.

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123692

--- Comment #4 from Vera Blagoveschenskaya  ---
Created attachment 149592
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149592=edit
video.mkv

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

[Libreoffice-bugs] [Bug 123692] Incorrect refresh of the preview area in the "Print" window when resizing the window.

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123692

--- Comment #3 from Vera Blagoveschenskaya  ---
Created attachment 149591
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149591=edit
screen-confirm

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

[Libreoffice-bugs] [Bug 123692] Incorrect refresh of the preview area in the "Print" window when resizing the window.

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123692

Vera Blagoveschenskaya  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||ver...@basealt.ru
 Blocks||103309

--- Comment #2 from Vera Blagoveschenskaya  ---
I can reproduce it for 6.3.0.0.alpha0+, 6.2.2.0.0+, 6.1.6.0.0+

Version: 6.3.0.0.alpha0+
Build ID: 4187b2beaa3d1294cd5c76ec0b662f3f4fadc421
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-02-25_07:04:36
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
Calc: threaded

Version: 6.2.2.0.0+
Build ID: b17bffe4eb15e4cec969aa2699ce8be60e01b1c1
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-2, Time:
2019-02-25_17:41:32
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
Calc: threaded

Version: 6.1.6.0.0+
Build ID: 2ab2280f21fa491154e17c303dc70fcf059123b3
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:libreoffice-6-1, Time:
2019-02-13_11:49:06
Locale: ru-RU (ru_RU.UTF-8); Calc: group threaded

+ ADDITIONAL Problem for 6.1.6.0.0+
Interface 'lags', please see video in the attachment


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103309

Vera Blagoveschenskaya  changed:

   What|Removed |Added

 Depends on||123692


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123692
[Bug 123692] Incorrect refresh of the preview area in the "Print" window when
resizing the window.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108538] [META] Chart feature enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||108913


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108913
[Bug 108913] Charts/Diagrams in Calc as an own table/tab
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108913] Charts/Diagrams in Calc as an own table/tab

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108913

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108538


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature 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 108538] [META] Chart feature enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||97464


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on|97464   |


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 97464] Anchor chart to screen

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97464

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks|90486   |108538


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature 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 90486] [META] Chart bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on|97834   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97834
[Bug 97834] Enhancement: Different chart types for primary / secondary axis
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108704] Intermittant chart update

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108704

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart 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 108538] [META] Chart feature enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||97834


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97834
[Bug 97834] Enhancement: Different chart types for primary / secondary axis
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 97834] Enhancement: Different chart types for primary / secondary axis

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97834

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks|90486   |108538


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature 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 90486] [META] Chart bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||108704


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 123715] New: windows setup no longer lists programs using files being installed

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123715

Bug ID: 123715
   Summary: windows setup no longer lists programs using files
being installed
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: l...@royal.net

Description:
Prior to 6.2 when windows setup encountered a locked shared file it identified
the program using this file and prompted to terminate the offending program.
6.2 no longer does that, if it encounters a locked file it displays an
information message and prompts for reboot after the installation even when all
usual suspects where killed before the installation was allowed to proceed. win
10 64

Please restore the pre-6.2 handling of locked files.

Steps to Reproduce:
1. make sure that some LO files are locked by running programs  - in my case it
usually where ms outlook and mozilla seamonkey 
2. start setup


Actual Results:
a message box informing that files are locked and PC will have to be rebooted 
after  the installation will pop up and after the installation setup will
prompt to reboot

Expected Results:
a message box listing programs locking the files should pop up with options to
either terminate these programs or continue and reboot afterwards


Reproducible: Always


User Profile Reset: No



Additional Info:

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

[Libreoffice-bugs] [Bug 98851] Charts move in .xlsx files

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98851

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

   Keywords||filter:xlsx
 Blocks||75057

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
still repro in

Version: 6.3.0.0.alpha0+
Build ID: c57dc7d41bd62f933cffab6131edb7252606382d
CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||98851


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98851
[Bug 98851] Charts move in .xlsx files
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123714] New: calc autocalculate failing sometimes on editing (move or delete of cells or undo) in ranges referenced in formulas

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123714

Bug ID: 123714
   Summary: calc autocalculate failing sometimes on editing (move
or delete of cells or undo) in ranges referenced in
formulas
   Product: LibreOffice
   Version: 4.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: newbie...@gmx.de

Description:
i observed some funny malfunctions, 

suspect them being results of malfunctioning 'autocalculate', 

(strg-shift-F9 corrects them) 

got a hint on #121002, tested the 'fix' mentioned there with ver. dev
6.2.2.0.0, 

got funny results again, 

(sum of a range not updated after deleting the content of one of the cells in
the calculated range), 

i tried to produce a script to reproduce, 

got one for moving cells, see in 'steps to reproduce', 

acc. to my testing still buggy in ver. dev 6.2.2.0.0

a long description and links to other errors which i suspect being related to
this bug you can find in 

https://ask.libreoffice.org/en/question/184419/strange-wrong-results-in-lo-calc-autocalculate-broken/

Steps to Reproduce:
0. maybee simpler sheets fail too, i had no time to check, 

1. create a new sheet, 

2. check that autocalculate is on, 

3. enter '77,05' in C2, C3, C4 (without the quotation marks), 

4. enter '1,1' in D1 (without the quotation marks), 

5. enter '1,2' in E1 (without the quotation marks),

6. enter formula '=$C2*A2*D$1' in D2 (without quotation marks)

7. copy this formula to E2

8. mark cells D2 and E2 and drag down - expand - the formula to D2:E4, 

9. enter '1' in A2, A3, A4 (without the quotation marks),

10. observe results in D2:D4,

11. select cells A2 and A3 and move them with the mouse to B2:B3, 

12. check the results in E2:E3, in my case E3 gave a result, but E2 remained
'0' despite that the formula and referenced cells should produce the same
result as E3, 

13. triggering a 'hard recalc' with 'strg-shift-F9' changes the value shown in
E2 from '0' to '92,46', that looks better, 

14. from other research i suspect something fundamentally broken with
autocalculate since ver. 4.2.2 and request in depth  research and fixing, it
can't be tolerated that a productive software produces results 'by chance', 

15. frequently pressing 'ctrl-shift-F9' may help, but i'd prefer a functioning
function 'autocalculate' as it was in versions up to 4.1.6.2, 


Actual Results:
E2 is not! updated as expected, 

the result shown in E2: '0' and the formula in the cell: '=$C2*B2*E$1' do not
match!

E3 is! updated, 

E2 is! updated after pressing ctrl-shift-F9

Expected Results:
E2 should be updated by autocalculate in the same manner as E3

when autocalculate is on cell E2 should always! show a value that matches the
formula in the cell, 


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
i think this bug is one of a group of similar malfunctions based on one
fundamental fault. it is severe and should not! be plastered with something
that corrects just this occurence, instead someone should try to find and
correct the fundamental error.  

hardware all: i couldn't test on 'all' systems, other reports reg. similar
malfunctions let me think the fault is hardware independent, 

OS all: same as above, 

happens sometimes: the bug shows up in random rare cases, the script i provided
is somewhat 'stable' in failing 

latest tested version: 

Version: 6.2.2.0.0+ (x64)
Build ID: f184af314ec43fbac5bb22cd3ebc09ccdf865a7c
CPU threads: 8; OS: Windows 6.1; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:libreoffice-6-2, Time: 2019-02-24_01:44:59
Locale: de-DE (de_DE); UI-Language: en-US
Calc: threaded
See Log: f184af314ec43fbac5bb22cd3ebc09ccdf865a7c

first version i found complaints over similar problems: 

4.2, 

i tested: 

- 4.1.6.2 being free of all malfunctions i found reported on the web, 

- 4.2.0.1 changing the behaviour how to adopt formulas with references to
ranges when cells within the range are moved, 

- many inbetween, x86 as well as x64, all having randomly inconsistent
behaviour reg. what and when is to be 'autocalculated' on deletion, move or
undos in referenced ranges, 

- the ocurrence of the errors is unpredictible, mostly the calculations are
correct, the errors show up in random places, random situations and random
times, it's difficult to catch one reproducible, 

- the malfunction is somehow dependent on the place in the sheet, if you copy
the range A1:G4 produced with the script above to another place in the sheet -
e.g. A6 or I1 - the results there are correct, in my case E2 still shows '0'
despite plenty cells in the sheet have been altered and autocalculate should!
have been triggered! 

user profile: i'd reset once when testing on version 5.4.X, no change, 


[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||97834


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97834
[Bug 97834] Enhancement: Different chart types for primary / secondary axis
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 97834] Enhancement: Different chart types for primary / secondary axis

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97834

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||97464


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 97464] Anchor chart to screen

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97464

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||90486


Referenced Bugs:

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

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

2019-02-25 Thread Libreoffice Gerrit user
 vcl/inc/qt5/Qt5Timer.hxx |2 +-
 vcl/inc/saltimer.hxx |2 +-
 vcl/inc/unx/saltimer.h   |2 +-
 vcl/inc/win/saltimer.h   |2 +-
 vcl/qt5/Qt5Timer.cxx |2 +-
 vcl/win/app/saltimer.cxx |2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 589ce33041df5ca1c3f6d914d5d33d0fffb69f8f
Author: Noel Grandin 
AuthorDate: Mon Feb 25 14:38:21 2019 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 26 07:35:04 2019 +0100

sal_uIntPtr->sal_uInt64 in SalTimer::Start

because the call site specifies millis in a sal_uInt64 variable

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

diff --git a/vcl/inc/qt5/Qt5Timer.hxx b/vcl/inc/qt5/Qt5Timer.hxx
index 9d68f0b200c5..20b2a4c70cf7 100644
--- a/vcl/inc/qt5/Qt5Timer.hxx
+++ b/vcl/inc/qt5/Qt5Timer.hxx
@@ -40,7 +40,7 @@ Q_SIGNALS:
 public:
 Qt5Timer();
 
-virtual void Start(sal_uIntPtr nMS) override;
+virtual void Start(sal_uInt64 nMS) override;
 virtual void Stop() override;
 };
 
diff --git a/vcl/inc/saltimer.hxx b/vcl/inc/saltimer.hxx
index 726d71eba335..8c849a8c9c2e 100644
--- a/vcl/inc/saltimer.hxx
+++ b/vcl/inc/saltimer.hxx
@@ -40,7 +40,7 @@ public:
 virtual ~SalTimer() COVERITY_NOEXCEPT_FALSE;
 
 // AutoRepeat and Restart
-virtual voidStart( sal_uLong nMS ) = 0;
+virtual voidStart( sal_uInt64 nMS ) = 0;
 virtual voidStop() = 0;
 
 // Callbacks (indepen in \sv\source\app\timer.cxx)
diff --git a/vcl/inc/unx/saltimer.h b/vcl/inc/unx/saltimer.h
index 93d4ad613b52..bc209da3a6fb 100644
--- a/vcl/inc/unx/saltimer.h
+++ b/vcl/inc/unx/saltimer.h
@@ -31,7 +31,7 @@ public:
 virtual ~X11SalTimer() override;
 
 // override all pure virtual methods
-void  Start( sal_uIntPtr nMS ) override;
+void  Start( sal_uInt64 nMS ) override;
 void  Stop() override;
 };
 
diff --git a/vcl/inc/win/saltimer.h b/vcl/inc/win/saltimer.h
index 3dd18f0a485f..8cce204e8428 100644
--- a/vcl/inc/win/saltimer.h
+++ b/vcl/inc/win/saltimer.h
@@ -51,7 +51,7 @@ public:
 WinSalTimer();
 virtual ~WinSalTimer() override;
 
-virtual void Start(sal_uIntPtr nMS) override;
+virtual void Start(sal_uInt64 nMS) override;
 virtual void Stop() override;
 
 inline bool IsDirectTimeout() const;
diff --git a/vcl/qt5/Qt5Timer.cxx b/vcl/qt5/Qt5Timer.cxx
index 7fcb7e17dcda..9868052dd85f 100644
--- a/vcl/qt5/Qt5Timer.cxx
+++ b/vcl/qt5/Qt5Timer.cxx
@@ -42,7 +42,7 @@ void Qt5Timer::timeoutActivated()
 
 void Qt5Timer::startTimer(int nMS) { m_aTimer.start(nMS); }
 
-void Qt5Timer::Start(sal_uIntPtr nMS) { Q_EMIT startTimerSignal(nMS); }
+void Qt5Timer::Start(sal_uInt64 nMS) { Q_EMIT startTimerSignal(nMS); }
 
 void Qt5Timer::stopTimer() { m_aTimer.stop(); }
 
diff --git a/vcl/win/app/saltimer.cxx b/vcl/win/app/saltimer.cxx
index e89dbd561425..44f33b3ee4f7 100644
--- a/vcl/win/app/saltimer.cxx
+++ b/vcl/win/app/saltimer.cxx
@@ -105,7 +105,7 @@ WinSalTimer::~WinSalTimer()
 Stop();
 }
 
-void WinSalTimer::Start( sal_uLong nMS )
+void WinSalTimer::Start( sal_uInt64 nMS )
 {
 WinSalInstance *pInst = GetSalData()->mpInstance;
 if ( pInst && !pInst->IsMainThread() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: 2 commits - vcl/headless vcl/inc vcl/ios vcl/opengl vcl/qt5 vcl/quartz vcl/source vcl/unx vcl/win

2019-02-25 Thread Libreoffice Gerrit user
 vcl/headless/svpgdi.cxx  |2 +-
 vcl/inc/headless/svpgdi.hxx  |2 +-
 vcl/inc/openglgdiimpl.hxx|2 +-
 vcl/inc/qt5/Qt5Graphics.hxx  |2 +-
 vcl/inc/quartz/salgdi.h  |2 +-
 vcl/inc/salgdi.hxx   |4 ++--
 vcl/inc/salgdiimpl.hxx   |2 +-
 vcl/inc/unx/genpspgraphics.h |2 +-
 vcl/inc/unx/salbmp.h |2 +-
 vcl/inc/unx/salgdi.h |2 +-
 vcl/inc/win/salgdi.h |2 +-
 vcl/ios/dummies.cxx  |2 +-
 vcl/opengl/gdiimpl.cxx   |2 +-
 vcl/qt5/Qt5Graphics_GDI.cxx  |2 +-
 vcl/quartz/salgdicommon.cxx  |2 +-
 vcl/source/gdi/salgdilayout.cxx  |2 +-
 vcl/unx/generic/gdi/gdiimpl.cxx  |2 +-
 vcl/unx/generic/gdi/gdiimpl.hxx  |2 +-
 vcl/unx/generic/gdi/salbmp.cxx   |2 +-
 vcl/unx/generic/gdi/salgdi.cxx   |2 +-
 vcl/unx/generic/print/genpspgraphics.cxx |2 +-
 vcl/win/gdi/gdiimpl.cxx  |2 +-
 vcl/win/gdi/salgdi.cxx   |2 +-
 23 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit b792e4ee22d7b625a214f6eceb1c223f35b9a606
Author: Noel Grandin 
AuthorDate: Mon Feb 25 14:30:01 2019 +0200
Commit: Noel Grandin 
CommitDate: Tue Feb 26 07:34:56 2019 +0100

sal_uLong->sal_uInt32 in drawEPS

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

diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index fed0c45af4e3..fafa73fa3c56 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -1885,7 +1885,7 @@ void SvpSalGraphics::invert(sal_uInt32 nPoints, const 
SalPoint* pPtAry, SalInver
 invert(aPoly, nFlags);
 }
 
-bool SvpSalGraphics::drawEPS( long, long, long, long, void*, sal_uLong )
+bool SvpSalGraphics::drawEPS( long, long, long, long, void*, sal_uInt32 )
 {
 return false;
 }
diff --git a/vcl/inc/headless/svpgdi.hxx b/vcl/inc/headless/svpgdi.hxx
index 89e141b78d21..1f00f21249e9 100644
--- a/vcl/inc/headless/svpgdi.hxx
+++ b/vcl/inc/headless/svpgdi.hxx
@@ -255,7 +255,7 @@ public:
 virtual voidinvert( long nX, long nY, long nWidth, long 
nHeight, SalInvert nFlags ) override;
 virtual voidinvert( sal_uInt32 nPoints, const SalPoint* 
pPtAry, SalInvert nFlags ) override;
 
-virtual booldrawEPS( long nX, long nY, long nWidth, long nHeight, 
void* pPtr, sal_uLong nSize ) override;
+virtual booldrawEPS( long nX, long nY, long nWidth, long nHeight, 
void* pPtr, sal_uInt32 nSize ) override;
 
 virtual SystemGraphicsData GetGraphicsData() const override;
 
diff --git a/vcl/inc/openglgdiimpl.hxx b/vcl/inc/openglgdiimpl.hxx
index 132a64327e42..9c888ae62906 100644
--- a/vcl/inc/openglgdiimpl.hxx
+++ b/vcl/inc/openglgdiimpl.hxx
@@ -330,7 +330,7 @@ public:
 long nX, long nY,
 long nWidth, long nHeight,
 void* pPtr,
-sal_uLong nSize ) override;
+sal_uInt32 nSize ) override;
 
 /** Render bitmap with alpha channel
 
diff --git a/vcl/inc/qt5/Qt5Graphics.hxx b/vcl/inc/qt5/Qt5Graphics.hxx
index b11f926f72bb..fe7e3b3012f0 100644
--- a/vcl/inc/qt5/Qt5Graphics.hxx
+++ b/vcl/inc/qt5/Qt5Graphics.hxx
@@ -142,7 +142,7 @@ public:
 virtual void invert(sal_uInt32 nPoints, const SalPoint* pPtAry, SalInvert 
nFlags) override;
 
 virtual bool drawEPS(long nX, long nY, long nWidth, long nHeight, void* 
pPtr,
- sal_uLong nSize) override;
+ sal_uInt32 nSize) override;
 
 virtual bool blendBitmap(const SalTwoRect&, const SalBitmap& rBitmap) 
override;
 
diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h
index 63bf71090c21..adb5d30429ff 100644
--- a/vcl/inc/quartz/salgdi.h
+++ b/vcl/inc/quartz/salgdi.h
@@ -264,7 +264,7 @@ public:
 virtual voidinvert( long nX, long nY, long nWidth, long 
nHeight, SalInvert nFlags) override;
 virtual voidinvert( sal_uInt32 nPoints, const SalPoint* 
pPtAry, SalInvert nFlags ) override;
 
-virtual booldrawEPS( long nX, long nY, long nWidth, long 
nHeight, void* pPtr, sal_uLong nSize ) override;
+virtual booldrawEPS( long nX, long nY, long nWidth, long 
nHeight, void* pPtr, sal_uInt32 nSize ) override;
 
 virtual boolblendBitmap( const SalTwoRect&,
  const SalBitmap& rBitmap ) override;
diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx
index 5313f24c73b8..fdd93ce00813 100644
--- a/vcl/inc/salgdi.hxx
+++ b/vcl/inc/salgdi.hxx
@@ -336,7 +336,7 @@ public:
 long nX, long nY,
 long nWidth, long 

[Libreoffice-bugs] [Bug 123711] Problem with Font name filtering

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123711

--- Comment #2 from Vera Blagoveschenskaya  ---
Hello,
I can't reproduce this for 6.2.2.0.0+ and 6.3.0.0.alpha0+
Possibly the problem is gone.

Not reproduced for 6.2.2.0.0+  

Version: 6.2.2.0.0+
Build ID: ba5e640cc4880ef023b5ea501b1b99e0a3ba25bd
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-2, Time:
2019-02-13_04:26:01
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
Calc: threaded

Not reproduced for 6.3.0.0.alpha0+

Version: 6.3.0.0.alpha0+
Build ID: 8193e697d286595aa62859011761adeb002244e3
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kde5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-02-20_19:53:18
Locale: ru-RU (ru_RU.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 123713] New: Proposed Scale Tool feature

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123713

Bug ID: 123713
   Summary: Proposed Scale Tool feature
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gr...@flightoffire.com.au

Created attachment 149589
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149589=edit
LibreOffic Scale Tool proposal description

This is not a bug but a proposal for a new scale tool in LibreOffice.

See attached my thoughts for full details.

Any questions please let me know.

Keep up the good work.

Regards,

Grant.

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

[Libreoffice-bugs] [Bug 123708] EDITING Calc crashes when trying to move part of an array

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123708

--- Comment #3 from Hiromi Kuramoto  ---
I confirmed the bug in my environment

with:
Version: 6.2.0.3
Build ID: 98c6a8a1c6c7b144ce3cc729e34964b47ce25d62
CPU threads: 4; OS: Mac OS X 10.12.5; UI render: default; VCL: osx; 
Locale: en-US (ja_JP.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 88969] Object-triggered animation can't work more than once

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88969

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.3.0

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

[Libreoffice-bugs] [Bug 88969] Object-triggered animation can't work more than once

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88969

--- Comment #10 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88969 restart interactive sequence.

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

2019-02-25 Thread Libreoffice Gerrit user
 sd/source/core/CustomAnimationEffect.cxx |2 
 slideshow/source/engine/animationnodes/basecontainernode.cxx |   23 +--
 slideshow/source/inc/basecontainernode.hxx   |1 
 3 files changed, 23 insertions(+), 3 deletions(-)

New commits:
commit 7e18b87566c55b38ca812c28b01ed346d45e94b8
Author: Mark Hung 
AuthorDate: Sun Feb 24 17:49:03 2019 +0800
Commit: Mark Hung 
CommitDate: Tue Feb 26 04:57:21 2019 +0100

tdf#88969 restart interactive sequence.

This patch allows the whole interactive sequence to
restart automatically when it's done. User don't
need to insert multiple pause toggle command to
a media object just for toggling the media
multiple times.

Change-Id: I000a55f580917327ae438ea8e79e62f63275cce7
Reviewed-on: https://gerrit.libreoffice.org/68283
Tested-by: Jenkins
Reviewed-by: Mark Hung 

diff --git a/sd/source/core/CustomAnimationEffect.cxx 
b/sd/source/core/CustomAnimationEffect.cxx
index 418a52b35e05..04f4fed1e035 100644
--- a/sd/source/core/CustomAnimationEffect.cxx
+++ b/sd/source/core/CustomAnimationEffect.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -3099,6 +3100,7 @@ InteractiveSequencePtr 
MainSequence::createInteractiveSequence( const css::uno::
 uno::Sequence< css::beans::NamedValue > aUserData
 { { "node-type", 
css::uno::makeAny(css::presentation::EffectNodeType::INTERACTIVE_SEQUENCE) } };
 xISRoot->setUserData( aUserData );
+xISRoot->setRestart( css::animations::AnimationRestart::WHEN_NOT_ACTIVE );
 
 Reference< XChild > xChild( mxSequenceRoot, UNO_QUERY_THROW );
 Reference< XTimeContainer > xParent( xChild->getParent(), UNO_QUERY_THROW 
);
diff --git a/slideshow/source/engine/animationnodes/basecontainernode.cxx 
b/slideshow/source/engine/animationnodes/basecontainernode.cxx
index d48df81161cb..e8e5dfbd7f88 100644
--- a/slideshow/source/engine/animationnodes/basecontainernode.cxx
+++ b/slideshow/source/engine/animationnodes/basecontainernode.cxx
@@ -19,6 +19,7 @@
 
 
 #include 
+#include 
 #include 
 #include 
 #include "nodetools.hxx"
@@ -32,6 +33,19 @@ using namespace com::sun::star;
 
 namespace slideshow {
 namespace internal {
+namespace {
+bool isRepeatIndefinite(const uno::Reference& 
xNode)
+{
+return xNode->getRepeatCount().hasValue() && 
isIndefiniteTiming(xNode->getRepeatCount());
+}
+
+bool isRestart(const uno::Reference& xNode)
+{
+sal_Int16 nRestart = xNode->getRestart();
+return nRestart == animations::AnimationRestart::WHEN_NOT_ACTIVE ||
+nRestart == animations::AnimationRestart::ALWAYS;
+}
+}
 
 BaseContainerNode::BaseContainerNode(
 const uno::Reference< animations::XAnimationNode >& xNode,
@@ -41,7 +55,8 @@ BaseContainerNode::BaseContainerNode(
   maChildren(),
   mnFinishedChildren(0),
   mnLeftIterations(0),
-  mbRepeatIndefinite(xNode->getRepeatCount().hasValue() && 
isIndefiniteTiming(xNode->getRepeatCount())),
+  mbRepeatIndefinite(isRepeatIndefinite(xNode)),
+  mbRestart(isRestart(xNode)),
   mbDurationIndefinite( isIndefiniteTiming( xNode->getEnd() ) &&
 isIndefiniteTiming( xNode->getDuration() ) )
 {
@@ -144,9 +159,11 @@ bool BaseContainerNode::notifyDeactivatedChild(
 {
 mnLeftIterations -= 1.0;
 }
-if( mnLeftIterations >= 1.0 )
+if(mnLeftIterations >= 1.0 || mbRestart)
 {
-bFinished = false;
+if (mnLeftIterations >= 1.0)
+bFinished = false;
+
 EventSharedPtr aRepetitionEvent =
 makeDelay( [this] () { this->repeat(); },
0.0,
diff --git a/slideshow/source/inc/basecontainernode.hxx 
b/slideshow/source/inc/basecontainernode.hxx
index ca07eff16687..a86f05f08186 100644
--- a/slideshow/source/inc/basecontainernode.hxx
+++ b/slideshow/source/inc/basecontainernode.hxx
@@ -86,6 +86,7 @@ protected:
 
 private:
 const bool  mbRepeatIndefinite;
+const bool  mbRestart;
 const bool  mbDurationIndefinite;
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 109398] Some lines of text are not visible for assistive technologies

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109398

--- Comment #11 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 95759] Comment scrollbars sometimes wrong

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95759

--- Comment #9 from QA Administrators  ---
** Please read this message in its entirety before responding **

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 123712] New: CALC SHEET WITH IMAGE, THE IMAGE SHIFTED WHEN PRINT /EXPORT TO PDF IN SOME STATUS

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123712

Bug ID: 123712
   Summary: CALC SHEET WITH IMAGE, THE IMAGE SHIFTED WHEN PRINT
/EXPORT TO PDF IN SOME STATUS
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jacklin...@gmail.com

Description:
CALC SHEET WITH IMAGE, THE IMAGE SHIFTED WHEN PRINT OR EXPORT TO PDF IN SOME
CONDITIONS:
1.THE CALC SHEET WITH IMAGES WAS EDITED (ANY CELL, NOT IMAGE), THEN PRINTED
MORE THAN 2 SHEETS AT SAME TIME (EX: PRINT SHEET1 & SHEET2 AT THE SAME TIME),
THEN IMAGE WILL SHIFTED

2.SMAE AS STEP.1 BUT PRINTED ONLY SINGE SHEET WITH IMAGE, THEN IMAGE POSITION
NORMAL (NOT SHIFTED)

3. AFTER SAVE & CLOSE THE FILE, THEN RE-OPEN THE FILE, IN ANY CONDITION
(MULTI-SHEET OR SINGLE SHEET) THE IMAGE POSITION WILL PRINT NORMAL (NOT
SHIFFTED)

Steps to Reproduce:
1.OPEN THE FILE WITH AT LEAST 2 CALC WORKSHEETS (SHEET1 & SHEET2...)
2.Edit any worksheet with images (edit any cell, not image)
3.Print at least 2 worksheet at the same time (ex:SHEET1 & SHEET2...)

Actual Results:
The worksheet edited when printed, the image will shifted to some position.

Expected Results:
The worksheet edited when printed, the image should be the same position as
screen shows.


Reproducible: Always


User Profile Reset: No



Additional Info:
1. If only print single worksheet, everything is normal.
or
2. if save and close the file. 
   then re-open the file, then everything is normal
   - print the single worksheet / multi worksheet , the image not shifted

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

[Libreoffice-bugs] [Bug 123680] Can not save the conditional format

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123680

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
What file format do you use to save?

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

[Libreoffice-bugs] [Bug 123607] UI: Choice of extra toolbars forgotten when switching to different view (e.g. NotebookBar)

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123607

Durgapriyanka  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Durgapriyanka  ---
Thank you for reporting this bug. I can reproduce this.

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

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

[Libreoffice-bugs] [Bug 123711] Problem with Font name filtering

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123711

--- Comment #1 from Leandro Martín Drudi  ---
Created attachment 149588
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149588=edit
In two versions and an aesthetic problem with the fields to modify the size of
the typography.

As you can see, there is a problem with the size of the font fields, font style
and font size. It is uncomfortable for work. The size options can not be
displayed correctly and it is worse when expressed in percentages.

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

[Libreoffice-bugs] [Bug 123711] New: Problem with Font name filtering

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123711

Bug ID: 123711
   Summary: Problem with Font name filtering
   Product: LibreOffice
   Version: 6.2.1.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sanipache...@outlook.com.ar

Description:
A minor error, but aesthetically and functionally is annoying. The end user
will find a malfunction and could abandon the new version by returning to a
previous one or, worse, to another software package.

Steps to Reproduce:
Format -> Character


Actual Results:
The name of the font is not filtered in the list

Expected Results:
The name of the font located and selected in the list.


Reproducible: Always


User Profile Reset: Yes



Additional Info:

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

[Libreoffice-bugs] [Bug 123710] New: Unable to delete individual item from recent files and loading file time has extended considerably

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123710

Bug ID: 123710
   Summary: Unable to delete individual item from recent files and
loading file time has extended considerably
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rhbud...@dodo.com.au

Description:
Unable to delete individual item from recent files and loading file time has
extended considerably.
change occurred about two weeks ago using then existing version.  Updated to
current 6.2.0.3, problem persists.
when I click on recent doc to open I receive password entry field then a delete
X appears on recent item, otherwise not able to delete single recent item.

Actual Results:
not able to delete single 

Expected Results:
to be able to delete any single item from recent files


Reproducible: Always


User Profile Reset: Yes



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

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

Re: How to get a bitmap of page or shape in a unit test?

2019-02-25 Thread Regina Henschel

Hi Miklos,

Miklos Vajna schrieb am 25-Feb-19 um 09:44:

Hi Regina,

On Mon, Feb 25, 2019 at 01:13:00AM +0100, Regina Henschel 
 wrote:

I have tried to do it the same as in SdImportTest::testTdf93124 in
import-tests.cxx in sd/qa/unit. But I only get a bitmap of the page without
the shape.


Asserting pixel data in bitmap is really the last resort. :-)

If possible, it's much better to do something vector-based. Either
export the shape or page into a metafile:

sw/qa/extras/layout/layout.cxx:2349


Still in import-tests.cxx, I have now the lines

sd::DrawDocShellRef xDocShRef = 
loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/tdf121845_Two_commands_U.odp"), 
ODP);


std::shared_ptr xMetaFile = 
xDocShRef.get()->GetPreviewMetaFile();

xMetaFile->dumpAsXml(OUString("myfirstmetafile.xml"));
MetafileXmlDump dumper;
xmlDocPtr pXmlDoc = XmlTestTools::dumpAndParse(dumper, *xMetaFile);

But the content of 'myfirstmetafile.xml' has no shape, but only the 
page. Background color and size of the page is correct.
[Of cause, the file 'myfirstmetafile.xml' does not belong to a final 
solution.]


The problem is similar. I do not get the shape.

Kind regards
Regina

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

[Libreoffice-bugs] [Bug 123412] Base: Connection to data source error

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123412

--- Comment #8 from Tim  ---
Today with firebird embedded database I got the error, but not with an HSQLDB
Embedded!

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

Re: MacUpdate - your app listing has been updated

2019-02-25 Thread Eike Rathke
Hi MacUpdate,

On Saturday, 2019-02-23 11:42:23 -0500, MacUpdate wrote:

> Hi The Document Foundation, We have updated your application listing for
>LibreOffice 6.2.3 on MacUpdate.com. Please take a moment to review your
>application's information to make sure that everything is correct.

> https://www.macupdate.com/app/mac/35446/libreoffice

Almost.. please note that the release number is 6.2.0.3 instead of 6.2.3
If you have to shorten the release number then please use 6.2.0 instead,
otherwise it would be confused with upcoming releases 6.2.1, 6.2.2,
6.2.3, ...

Also, TDF maintains two release branches, currently 6.1.x the
conservative release branch, now at 6.1.5, and 6.2.x the release branch
for early adopters, now at 6.2.0; please see
https://www.libreoffice.org/download/download/

I suggest you offer both releases as well.

The link to the "changelog" you provide
https://wiki.documentfoundation.org/Releases/6.2.0/RC1#List_of_fixed_bugs
is only the list of fixed bugs since the 6.2.0 Beta1 release.
Better for a x.y.0 release would be a link to the release notes, here
https://wiki.documentfoundation.org/ReleaseNotes/6.2

Thanks
  Eike

-- 
GPG key 0x6A6CD5B765632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A


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

[Libreoffice-bugs] [Bug 123708] EDITING Calc crashes when trying to move part of an array

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123708

raal  changed:

   What|Removed |Added

 CC||l.lu...@collabora.com
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #2 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Luboš Luňák ; Could you possibly take a look at this one?
Thanks

a79e88101e6ecc177dd9de08f7c5fa0fd4a9843b is the first bad commit
commit a79e88101e6ecc177dd9de08f7c5fa0fd4a9843b
Author: Jenkins Build User 
Date:   Wed Oct 10 13:22:44 2018 +0200

source sha:79449d73900d7a9bf061244d76f5f8eecc441198

author  Luboš Luňák  2018-10-01 14:26:57 +0200
committer   Luboš Luňák  2018-10-10 13:01:59
+0200
commit  79449d73900d7a9bf061244d76f5f8eecc441198 (patch)
treee85f9bc29941cbf5e5ccb858ee4703ae67d00810
parent  b1721b04d8a921a69230927cd7995d8c5d8f5fe2 (diff)
make VLOOKUP in Calc thread-safe

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

[Libreoffice-bugs] [Bug 123708] EDITING Calc crashes when trying to move part of an array

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123708

raal  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 CC||r...@post.cz
   Severity|normal  |major
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Priority|medium  |high

--- Comment #1 from raal  ---
Confirm with Version: 6.3.0.0.alpha0+
Build ID: 465939feb0e9c382e5581b53b72008979ece4807
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

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

[Libreoffice-bugs] [Bug 123673] Add a command to update all indices

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123673

--- Comment #10 from stefan_lange...@t-online.de  
---
Many thanks for the help! My problem related to update (many) indices is
resolved, even if the function is good hidden in the Standard User Interface.
But in the new Tabbed User Interface exists an icon for the wider working
function "Update All" in the tab "References" - easy to find and not hidden!

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

[Libreoffice-bugs] [Bug 123705] After save a DOCX file, it gives a error when it try to be open

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123705

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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

[Libreoffice-bugs] [Bug 123671] Crash in: atig6txx.dll EDITING

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123671

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from raal  ---
Hello,
Thank you for reporting the bug. Unfortunately without clear steps to reproduce
it, we cannot track down the origin of the problem. Please provide a clearer
set of step-by-step instructions on how to reproduce the problem.

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

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

2019-02-25 Thread Libreoffice Gerrit user
 sw/uiconfig/swform/menubar/menubar.xml  |  502 +---
 sw/uiconfig/swform/popupmenu/table.xml  |   79 +++
 sw/uiconfig/swform/popupmenu/text.xml   |   61 ++
 sw/uiconfig/swform/toolbar/arrowshapes.xml  |   32 -
 sw/uiconfig/swform/toolbar/basicshapes.xml  |   20 
 sw/uiconfig/swform/toolbar/bezierobjectbar.xml  |   11 
 sw/uiconfig/swform/toolbar/calloutshapes.xml|3 
 sw/uiconfig/swform/toolbar/drawbar.xml  |   36 +
 sw/uiconfig/swform/toolbar/drawingobjectbar.xml |   66 +--
 sw/uiconfig/swform/toolbar/fullscreenbar.xml|   19 
 sw/uiconfig/swform/toolbar/graphicobjectbar.xml |   17 
 sw/uiconfig/swform/toolbar/insertbar.xml|   31 -
 sw/uiconfig/swform/toolbar/moreformcontrols.xml |6 
 sw/uiconfig/swform/toolbar/numobjectbar.xml |   20 
 sw/uiconfig/swform/toolbar/previewobjectbar.xml |   17 
 sw/uiconfig/swform/toolbar/standardbar.xml  |   41 +
 sw/uiconfig/swform/toolbar/starshapes.xml   |8 
 sw/uiconfig/swform/toolbar/symbolshapes.xml |   16 
 sw/uiconfig/swform/toolbar/tableobjectbar.xml   |   47 +-
 sw/uiconfig/swform/toolbar/viewerbar.xml|1 
 20 files changed, 732 insertions(+), 301 deletions(-)

New commits:
commit 140fd0a1b1da1b0b14bda17c926dd8f95750ba92
Author: andreas kainz 
AuthorDate: Thu Feb 21 18:19:56 2019 +0100
Commit: andreas_kainz 
CommitDate: Mon Feb 25 22:53:59 2019 +0100

sync swform ui files with swriter ui files

Change-Id: I1657c495928f8c7b86032c974a218f8db4f9b6ba
Reviewed-on: https://gerrit.libreoffice.org/68170
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/sw/uiconfig/swform/menubar/menubar.xml 
b/sw/uiconfig/swform/menubar/menubar.xml
index 466d11e8cc70..29c302be97b2 100644
--- a/sw/uiconfig/swform/menubar/menubar.xml
+++ b/sw/uiconfig/swform/menubar/menubar.xml
@@ -94,46 +94,59 @@
   
   
   
-  
-  
+  
+
+  
+  
+
+  
+  
+  
   
 
   
   
 
   
-  
+  
   
   
   
-  
   
   
 
   
-  
   
   
   
-  
-  
   
+  
+  
+  
+  
+  
   
+  
+  
+  
+  
   
 
   
-  
   
-  
-  
-  
-  
-  
   
-  
+  
+
+  
+  
+  
+
+  
+  
   
   
   
+  
   
   
 
@@ -148,20 +161,36 @@
   
   
   
-  
-  
+  
   
-  
+  
+
+  
+  
+  
+
+  
+  
+  
   
   
-  
-  
-  
+  
+  
+  
+  
   
+  
+  
+  
+  
+  
   
   
   
 
+  
+  
+  
   
   
   
@@ -176,7 +205,60 @@
   
 
   
-  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+
+  
+   
+  
+  
+
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
   
   
 
@@ -189,59 +271,122 @@
   
 
   
+  
   
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
+  
+
+  
+  
+  
+
+  
   
 
   
-  
   
+  
 
   
   
-  
-  
-  
-  
-
-  
-  
-
-  
-  
-
-  
-  
-  
-   
-  
-  
+  
+  
+  
 
-  
-  
-  
+  
+  
+  
 
   
-  
-  
-  
-  
   
-  
+  
 
   
   
 
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  

Re: Problems building LibreOffice for Android using Mac

2019-02-25 Thread Tor Lillqvist
On Mon, 25 Feb 2019 at 21:47, Laura Garcia Gonzalez 
wrote:

> Ok, thanks for the reply. I found this Get Started tutorial [1] and I was
> hoping it would work for Mac.
>

That is for building LibreOffice itself for Mac, not the Android app.

So... I am primarily interested in working on the Android Viewer project.
> Will I be able to build it in a Windows machine?
> What is the optimal OS to make it work?  I guess that Linux.
>

Yes, Linux.

--tml

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

MacUpdate - your app listing has been updated

2019-02-25 Thread MacUpdate
Title: Untitled Document








  




  




  




  

  
  

  
  

  

  

   App Listing Updated
  Hi The Document Foundation, We have updated your application listing for LibreOffice 6.2.3 on MacUpdate.com. Please take a moment to review your application's information to make sure that everything is correct. 
 	
  
  

  
View your updated app listing 
  

  
  
You can login to your Developer Account to reply to comments and view stats, or submit new updates and changes to your app listing.
  

  

  
  

  

		
		
  

		
		
 
		
		
  
  
Desktop Install Compatibility
  MacUpdate Desktop 6 is helping developers  make it easier for users to fully install and use their apps. Download Desktop 6 and to ensure your app works with the “Install” link on our download pages.
		  
		  
   
		  
		  
		  
  
	  
	  
	  

  

  
  

  

Advertise With MacUpdate
The best Mac devs advertise their apps on MacUpdate.com because it’s the most targeted, highly performing Mac app advertising you can find on the web. Contact a...@macupdate.com to guarantee your annual ad campaigns get booked and expand your app’s audience.

  
  



  
Learn more

  



  

  
  

  
Questions? Contact our Content Update Team upda...@macupdate.com.
  

  
  

  
  

  
You are receiving this offer because you have an app listed on MacUpdate.com. Add us to your address book or white list to ensure reliable delivery.
	
  © 2018 MacUpdate  - All Rights Reserved
  526 W. 14th St. #100 • Traverse City, MI 49684
  

  




  




  




  








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

[Libreoffice-bugs] [Bug 123705] After save a DOCX file, it gives a error when it try to be open

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123705

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

On pc Debian x86-64 with master sources updated some days ago + enable-dbgutil,
I got an assert after having changed a bit the file and saved 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 123709] Font Rendering Issue after update to 6.2.0 in both editor and GUI

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123709

--- Comment #1 from donaldbrown2...@gmail.com ---
Created attachment 149586
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149586=edit
The Issue in writer

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

[Libreoffice-bugs] [Bug 123709] New: Font Rendering Issue after update to 6.2.0 in both editor and GUI

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123709

Bug ID: 123709
   Summary: Font Rendering Issue after update to 6.2.0 in both
editor and GUI
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: donaldbrown2...@gmail.com

Description:
Since updating to version 6.2.0, all text in editors and menus that are part of
LibreOffice has become blurry and difficult to read. As far as I can tell, this
applies to all components of LibreOffice.

Steps to Reproduce:
Open LibreOffice

Actual Results:
All text renders as incredibly blurry and unreadable outside of window
decorations and the "File Edit etc" bar.

Expected Results:
I expected text to render as it does normally, in a readable manner.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Help - About LibreOffice:

Version: 6.2.0.3
Build ID: 6.2.0-3
CPU threads: 8; OS: Linux 4.20; UI render: default; VCL: kde5; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

My Computer:

OS: Arch Linux x86_64
Host: Thinkpad T480s
Kernel: 4.20.12-arch1-1-ARCH
Resolution: 2560x1440
DE: KDE
WM: KWin

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

[Libreoffice-bugs] [Bug 123705] After save a DOCX file, it gives a error when it try to be open

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123705

Julien Nabet  changed:

   What|Removed |Added

 Attachment #149580|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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

[Libreoffice-bugs] [Bug 119167] The Track changes toolbar is appended to the Table toolbar, should be stacked and pinned left

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119167

Gabor Kelemen  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||kelem...@ubuntu.com
   Assignee|libreoffice-b...@lists.free |kelem...@ubuntu.com
   |desktop.org |

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

[Libreoffice-commits] core.git: desktop/source desktop/uiconfig

2019-02-25 Thread Libreoffice Gerrit user
 desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx   |3 
 desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx |  117 ---
 desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx |   26 +-
 desktop/uiconfig/ui/updateinstalldialog.ui   |   23 +-
 4 files changed, 83 insertions(+), 86 deletions(-)

New commits:
commit ecefb04ed64656c4c25ac6960d71be35ece6a583
Author: Caolán McNamara 
AuthorDate: Mon Feb 25 11:43:17 2019 +
Commit: Caolán McNamara 
CommitDate: Mon Feb 25 22:05:14 2019 +0100

weld UpdateInstallDialog

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

diff --git a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx 
b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
index e0307f0cd142..e0dc0b36e92b 100644
--- a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
+++ b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
@@ -915,7 +915,8 @@ void ExtensionCmdQueue::Thread::_checkForUpdates(
 short nDialogResult = RET_OK;
 if ( !dataDownload.empty() )
 {
-nDialogResult = ScopedVclPtrInstance( 
m_pDialogHelper? m_pDialogHelper->getWindow() : nullptr, dataDownload, 
m_xContext )->Execute();
+UpdateInstallDialog aDlg(m_pDialogHelper? 
m_pDialogHelper->getFrameWeld() : nullptr, dataDownload, m_xContext);
+nDialogResult = aDlg.run();
 pUpdateDialog->notifyMenubar( false, true ); // Check, if there 
are still pending updates to be notified via menu bar icon
 }
 else
diff --git a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx 
b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
index 8ab299c8b46a..025d556b169f 100644
--- a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
@@ -191,80 +191,62 @@ void UpdateInstallDialog::Thread::execute()
 }
 
 UpdateInstallDialog::UpdateInstallDialog(
-vcl::Window * parent,
+weld::Window* pParent,
 std::vector & aVecUpdateData,
-cssu::Reference< cssu::XComponentContext > const & xCtx):
-ModalDialog(
-parent,
-"UpdateInstallDialog","desktop/ui/updateinstalldialog.ui"),
-
-m_thread(new Thread(xCtx, *this, aVecUpdateData)),
-m_bError(false),
-m_bNoEntry(true),
-m_sInstalling(DpResId(RID_DLG_UPDATE_INSTALL_INSTALLING)),
-m_sFinished(DpResId(RID_DLG_UPDATE_INSTALL_FINISHED)),
-m_sNoErrors(DpResId(RID_DLG_UPDATE_INSTALL_NO_ERRORS)),
-m_sErrorDownload(DpResId(RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD)),
-
m_sErrorInstallation(DpResId(RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION)),
-
m_sErrorLicenseDeclined(DpResId(RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED)),
-m_sNoInstall(DpResId(RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL)),
-
m_sThisErrorOccurred(DpResId(RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED))
+cssu::Reference< cssu::XComponentContext > const & xCtx)
+: GenericDialogController(pParent, "desktop/ui/updateinstalldialog.ui",
+  "UpdateInstallDialog")
+, m_thread(new Thread(xCtx, *this, aVecUpdateData))
+, m_bError(false)
+, m_bNoEntry(true)
+, m_sInstalling(DpResId(RID_DLG_UPDATE_INSTALL_INSTALLING))
+, m_sFinished(DpResId(RID_DLG_UPDATE_INSTALL_FINISHED))
+, m_sNoErrors(DpResId(RID_DLG_UPDATE_INSTALL_NO_ERRORS))
+, m_sErrorDownload(DpResId(RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD))
+, m_sErrorInstallation(DpResId(RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION))
+, 
m_sErrorLicenseDeclined(DpResId(RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED))
+, m_sNoInstall(DpResId(RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL))
+, m_sThisErrorOccurred(DpResId(RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED))
+, m_xFt_action(m_xBuilder->weld_label("DOWNLOADING"))
+, m_xStatusbar(m_xBuilder->weld_progress_bar("STATUSBAR"))
+, m_xFt_extension_name(m_xBuilder->weld_label("EXTENSION_NAME"))
+, m_xMle_info(m_xBuilder->weld_text_view("INFO"))
+, m_xHelp(m_xBuilder->weld_button("help"))
+, m_xOk(m_xBuilder->weld_button("ok"))
+, m_xCancel(m_xBuilder->weld_button("cancel"))
 {
-get(m_pFt_action, "DOWNLOADING");
-get(m_pStatusbar, "STATUSBAR");
-get(m_pFt_extension_name, "EXTENSION_NAME");
-get(m_pMle_info, "INFO");
-m_pMle_info->set_height_request(m_pMle_info->GetTextHeight() * 5);
-m_pMle_info->set_width_request(m_pMle_info->approximate_char_width() * 56);
-get(m_pHelp, "help");
-get(m_pOk, "ok");
-get(m_pCancel, "cancel");
+m_xMle_info->set_size_request(m_xMle_info->get_approximate_digit_width() * 
52,
+  m_xMle_info->get_height_rows(5));
 
 m_xExtensionManager = 

[Libreoffice-bugs] [Bug 123686] Impossible to re-install LibreOffice: "Error 1714"

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123686

--- Comment #2 from Pascal  ---
Hi Andre,

I tried the proposed solution, but I can not execute I have a message informing
me that the package does not exist. Anyway I was trying to install the same
version of OoO.
My version of Win 10 is 1809 (operating system version 17763.316). I already
need a repair of Win 10

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

[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||92348


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=92348
[Bug 92348] Chart which is invisible in Excel shown in Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 92348] Chart which is invisible in Excel shown in Calc

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92348

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||75057
   Keywords||filter:xlsx

--- Comment #12 from Roman Kuznetsov <79045_79...@mail.ru> ---
still repro in

Version: 6.3.0.0.alpha0+ (x64)
Build ID: 47c498417248444cab4e8f597ddeec4e0d585a71
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-21_08:39:21
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 94284] Calc does not export Charts to XLS with axis set to start or end (see Comment 8)

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94284

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||90486, 109072


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=109072
[Bug 109072] [META] XLS (binary) format bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 109072] [META] XLS (binary) format bug tracker

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109072

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||94284


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94284
[Bug 94284] Calc does not export Charts to XLS with axis set to start or end
(see Comment 8)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||94284


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94284
[Bug 94284] Calc does not export Charts to XLS with axis set to start or end
(see Comment 8)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108538] [META] Chart feature enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||82269


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82269
[Bug 82269] Provide option to allow charts to snap to cell grid
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108019] [META] Calc UX bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108019

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||82269


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82269
[Bug 82269] Provide option to allow charts to snap to cell grid
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 82269] Provide option to allow charts to snap to cell grid

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82269

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108019, 108538


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108019
[Bug 108019] [META] Calc UX bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature 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 86349] [META] Context menu bugs and enhancements

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||120896


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120896
[Bug 120896] Context menu does not appear over cell contents after the spell
check context menu was active
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||86349


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||101298


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101298
[Bug 101298] Read only document context menu has unusable items
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 101298] Read only document context menu has unusable items

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101298

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||86349


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu 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 92999] EDITING: Context Menu off the screen upon scrolling

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92999

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||86349

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Carlos Marques from comment #0)
> Calc: Context Menu attaches to the cursor and disappears of screen after
> scroll or selection of large number of lines.
> 
> Example:
> Select 100 adjacent lines (using keyboard Ctrl+shift+down, not the mouse). 
> Try to show context menu pressing context menu key. The context menu does
> not show. It follows the intial cursor position which is now off the screen.

If it means "context menu key" on the keyboard then still repro in

Version: 6.3.0.0.alpha0+ (x64)
Build ID: 47c498417248444cab4e8f597ddeec4e0d585a71
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-21_08:39:21
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded


Referenced Bugs:

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

2019-02-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||92999


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=92999
[Bug 92999] EDITING: Context Menu off the screen upon scrolling
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

  1   2   3   4   >